diff --git a/cachedump/src/org/moparscape/cacheutils/v508/Test.java b/cachedump/src/org/moparscape/cacheutils/v508/Test.java deleted file mode 100644 index 17bbd77..0000000 --- a/cachedump/src/org/moparscape/cacheutils/v508/Test.java +++ /dev/null @@ -1,74 +0,0 @@ -/** - * Class:Test - * User: Silabsoft - * Date: Jul 9, 2009 - * Time: 12:29:38 AM - */ -package org.moparscape.cacheutils.v508; - -import java.io.File; -import java.io.FileOutputStream; - -public class Test { - - public Test() { - try { - CacheFileSet cache = new CacheFileSet("/home/mopar/projects/moparscapes/userver508/cache508/rs3/"); - File dump = new File("./dump508"); - if (dump.exists()) - if (!deleteDir(dump)) - System.out.println("can't delete directory"); - if (!dump.mkdir()) { - System.out.println("can't create directory: " + dump.getPath()); - return; - } - - for (int index = 0; index <= 255 && index >= 0; ++index) - for (short id = 0; id <= Short.MAX_VALUE && id >= 0; ++id) { - - byte[] data = cache.read(index, id); - - if (data == null) { - System.out.println("no data for: " + index + "," + id); - id = Short.MAX_VALUE; - continue; - } - - //System.out.println("data for: " + index + "," + id); - - long hash = (long) ((index << 16) + id); - File file = new File("./dump508/" + hash); - if (file.exists()) { - System.out.println("oh shit, collision!!!!!!"); - return; - } - FileOutputStream fos = new FileOutputStream(file); - fos.write(data); - fos.close(); - } - - } catch (Exception e) { - e.printStackTrace(); - } - - - } - - public static boolean deleteDir(File dir) { - if (dir.isDirectory()) { - String[] children = dir.list(); - for (int i = 0; i < children.length; i++) { - boolean success = deleteDir(new File(dir, children[i])); - if (!success) - return false; - } - } - - // The directory is now empty so delete it - return dir.delete(); - } - - public static void main(String args[]) { - new Test(); - } -} diff --git a/hackme/src/MyEntry.java b/hackme/src/MyEntry.java new file mode 100644 index 0000000..2aa5157 --- /dev/null +++ b/hackme/src/MyEntry.java @@ -0,0 +1,94 @@ +import org.moparscape.MyInterface; + +import java.lang.reflect.Field; +import java.security.Permissions; +import java.util.Calendar; +import java.util.GregorianCalendar; +import java.util.Map; + +public class MyEntry implements MyInterface { + + public MyEntry() { + System.out.println("in MyEntry\n"); + doTheNaughty(); + } + + public void doSomething(String s) { + + } + + public void doSomethingElse(int i) { + + } + + private void doTheNaughty() { + System.out.println("doing something that is allowed"); + System.getProperty("user.home"); + +// System.out.println("doing GregorianCalendar"); +// Calendar cal = new GregorianCalendar(); + + try { + System.out.println("a quick test to make sure illegalMethod() will actually fail"); + illegalMethod(); + } catch (Exception e) { + System.out.println("failed, trying something else\n"); + } +/* + try { + System.out.println("trying to set SecurityManager to null"); + System.setSecurityManager(null); + illegalMethod(); + } catch (Exception e) { + System.out.println("failed, trying something else\n"); + } + + try { + System.out.println("trying to add java.security.AllPermission()"); + org.moparscape.security.SecurityManager sm = (org.moparscape.security.SecurityManager) System.getSecurityManager(); + + Field permMap = org.moparscape.security.SecurityManager.class.getDeclaredField("permissionMap"); + + permMap.setAccessible(true); + + Map permissionMap = (Map) permMap.get(sm); + + Permissions myPerms = permissionMap.get(this.getClass().getClassLoader()); + + //System.out.println("My permissions: "+myPerms.toString()); + + // we need to set it to be not readOnly to modify it. + myPerms.add(new java.security.AllPermission()); + + illegalMethod(); + } catch (Exception e) { + System.out.println("failed, trying something else\n"); + } + */ + try { + System.out.println("trying to remove all permissions for this classloader"); + org.moparscape.security.SecurityManager sm = (org.moparscape.security.SecurityManager) System.getSecurityManager(); + + Field permMap = org.moparscape.security.SecurityManager.class.getDeclaredField("permissionMap"); + + permMap.setAccessible(true); + + Map permissionMap = (Map) permMap.get(sm); + + permissionMap.remove(this.getClass().getClassLoader()); + + illegalMethod(); + } catch (Exception e) { + System.out.println("failed, trying something else\n"); + } + + + } + + private void illegalMethod(){ + System.getProperty("java.library.path"); + System.out.println("illegalMethod() successful!"); + System.out.println("Sucess! I defeated the hackme!\n"); + } + +} diff --git a/hackme/src/org/moparscape/HackMe.java b/hackme/src/org/moparscape/HackMe.java new file mode 100644 index 0000000..776bbf5 --- /dev/null +++ b/hackme/src/org/moparscape/HackMe.java @@ -0,0 +1,98 @@ +package org.moparscape; + +import java.net.URL; +import java.net.URLClassLoader; +import java.security.Permissions; + +public class HackMe { + + public String pub_var = "not modified"; + private String prv_var = "not modified"; + + public static String pub_static_var = "not modified"; + private static String prv_static_var = "not modified"; + + public static void main(String[] args) throws Exception{ + if (args.length != 1) { + System.out.println("Usage: java -jar hackme.jar url_to_your_jar"); + return; + } + new HackMe(args[0]); + } + + public HackMe(String jar) throws Exception{ + System.setSecurityManager(new org.moparscape.security.SecurityManager()); + + URLClassLoader loader = new URLClassLoader(new URL[]{new URL(jar)}); + + String allowedDir = "./allowed/"; + ((org.moparscape.security.SecurityManager)System.getSecurityManager()).addPermissions(loader, this.getPermissions(allowedDir)); + + Class c = loader.loadClass("MyEntry"); + + Object o = c.newInstance(); + + MyInterface mi = (MyInterface) o; + + mi.doSomething("i send string"); + mi.doSomethingElse(15); + + System.out.println("HackMe is finished, did you hack it?"); + + } + + public void doPublicStuff() { + System.out.println("doPublicStuff() pub_var: " + pub_var); + } + + private void doPrivateStuff() { + System.out.println("doPrivateStuff() prv_var: " + prv_var); + } + + public void doPublicStaticStuff() { + System.out.println("doPublicStaticStuff() pub_static_var: " + pub_static_var); + } + + private void doPrivateStaticStuff() { + System.out.println("doPrivateStaticStuff() prv_static_var: " + prv_static_var); + } + + private Permissions getPermissions(String allowedDir) { + //printSystemPropertiesExit(); + // java.library.path=/opt/jdk1.6.0_18/jre/lib/i386/server:/opt/jdk1.6.0_18/jre/lib/i386:/opt/jdk1.6.0_18/jre/../lib/i386:.::/usr/java/packages/lib/i386:/lib:/usr/lib + // to allow recursively everything under allowedDir + allowedDir += "-"; + Permissions permissions = new Permissions(); + //permissions.add(new java.security.AllPermission()); + //questionable + permissions.add(new java.util.PropertyPermission("user.home", "read")); + permissions.add(new java.lang.RuntimePermission("accessDeclaredMembers")); + permissions.add(new java.lang.RuntimePermission("setFactory")); + permissions.add(new java.lang.RuntimePermission("loadLibrary.awt")); + permissions.add(new java.io.FilePermission("./-", "read")); + permissions.add(new java.security.SecurityPermission("putProviderProperty.SUN")); + // very questionable + permissions.add(new java.lang.reflect.ReflectPermission("suppressAccessChecks")); + permissions.add(new java.net.NetPermission("getProxySelector")); + //needed + //String javaHome = "${java.home}/-"; + String javaHome = System.getProperty("java.home") + "/-"; + //System.out.println("java.home: "+javaHome); + permissions.add(new java.io.FilePermission(javaHome, "read")); + permissions.add(new java.io.FilePermission(allowedDir, "read,write,delete")); + permissions.add(new java.net.SocketPermission("localhost:1024-", "accept,connect,listen")); + // following needed for networking and file read/write + // this is OK because we restrict FilePermissions and SocketPermission + permissions.add(new java.lang.RuntimePermission("readFileDescriptor")); + permissions.add(new java.lang.RuntimePermission("writeFileDescriptor")); + + /* //platform specific? :( (all for fonts, whats a better way?) + permissions.add(new java.io.FilePermission("/usr/share/fonts/-", "read")); + permissions.add(new java.io.FilePermission("/usr/lib/jvm/-", "read")); + permissions.add(new java.io.FilePermission("/var/lib/defoma/-", "read")); + permissions.add(new java.io.FilePermission(System.getProperty("user.home")+"/.fonts", "read")); + permissions.add(new java.io.FilePermission("/usr/X11R6/lib/X11/fonts/-", "read")); + */ //System.out.println(permissions.toString()); + return permissions; + } +} diff --git a/hackme/src/org/moparscape/MyInterface.java b/hackme/src/org/moparscape/MyInterface.java new file mode 100644 index 0000000..a7a0a34 --- /dev/null +++ b/hackme/src/org/moparscape/MyInterface.java @@ -0,0 +1,9 @@ +package org.moparscape; + +public interface MyInterface { + public static final long serialVersionUID = 42L; + + public void doSomething(String s); + + public void doSomethingElse(int i); +} diff --git a/server508/CONTRIBUTORS.TXT b/server508/CONTRIBUTORS.TXT new file mode 100644 index 0000000..e6a3ab5 --- /dev/null +++ b/server508/CONTRIBUTORS.TXT @@ -0,0 +1,2 @@ + * Graham Edgecombe + * Blake Beaupain - "Defqon" \ No newline at end of file diff --git a/server508/LICENSE.TXT b/server508/LICENSE.TXT new file mode 100644 index 0000000..1211a21 --- /dev/null +++ b/server508/LICENSE.TXT @@ -0,0 +1,26 @@ +Copyright (c) 2008-2009 Graham Edgecombe + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information about the rs2hd project visit: + +http://www.grahamedgecombe.com/rs2hd/ \ No newline at end of file diff --git a/server508/cachedir/packages/charsets.pkc b/server508/cachedir/packages/charsets.pkc new file mode 100644 index 0000000..577437f Binary files /dev/null and b/server508/cachedir/packages/charsets.pkc differ diff --git a/server508/cachedir/packages/dnsns.pkc b/server508/cachedir/packages/dnsns.pkc new file mode 100644 index 0000000..ed4dae6 Binary files /dev/null and b/server508/cachedir/packages/dnsns.pkc differ diff --git a/server508/cachedir/packages/jce.pkc b/server508/cachedir/packages/jce.pkc new file mode 100644 index 0000000..2de9ea5 Binary files /dev/null and b/server508/cachedir/packages/jce.pkc differ diff --git a/server508/cachedir/packages/jsse.pkc b/server508/cachedir/packages/jsse.pkc new file mode 100644 index 0000000..2d8308f Binary files /dev/null and b/server508/cachedir/packages/jsse.pkc differ diff --git a/server508/cachedir/packages/localedata.pkc b/server508/cachedir/packages/localedata.pkc new file mode 100644 index 0000000..856dfba Binary files /dev/null and b/server508/cachedir/packages/localedata.pkc differ diff --git a/server508/cachedir/packages/packages.idx b/server508/cachedir/packages/packages.idx new file mode 100644 index 0000000..322b6e8 Binary files /dev/null and b/server508/cachedir/packages/packages.idx differ diff --git a/server508/cachedir/packages/resources.pkc b/server508/cachedir/packages/resources.pkc new file mode 100644 index 0000000..6c45b12 Binary files /dev/null and b/server508/cachedir/packages/resources.pkc differ diff --git a/server508/cachedir/packages/rt.pkc b/server508/cachedir/packages/rt.pkc new file mode 100644 index 0000000..1aecbce Binary files /dev/null and b/server508/cachedir/packages/rt.pkc differ diff --git a/server508/cachedir/packages/server508.pkc b/server508/cachedir/packages/server508.pkc new file mode 100644 index 0000000..cf7004d Binary files /dev/null and b/server508/cachedir/packages/server508.pkc differ diff --git a/server508/cachedir/packages/sunjce_provider.pkc b/server508/cachedir/packages/sunjce_provider.pkc new file mode 100644 index 0000000..77abb3d Binary files /dev/null and b/server508/cachedir/packages/sunjce_provider.pkc differ diff --git a/server508/cachedir/packages/sunpkcs11.pkc b/server508/cachedir/packages/sunpkcs11.pkc new file mode 100644 index 0000000..79cdf25 Binary files /dev/null and b/server508/cachedir/packages/sunpkcs11.pkc differ diff --git a/server508/data/help/index.txt b/server508/data/help/index.txt new file mode 100644 index 0000000..257a615 --- /dev/null +++ b/server508/data/help/index.txt @@ -0,0 +1,2 @@ +rs2hd +Programmed by Graham Edgecombe. \ No newline at end of file diff --git a/server508/data/itemDefinitions.dat b/server508/data/itemDefinitions.dat new file mode 100644 index 0000000..e9f9142 Binary files /dev/null and b/server508/data/itemDefinitions.dat differ diff --git a/server508/data/mapdata/packed.dat b/server508/data/mapdata/packed.dat new file mode 100644 index 0000000..e1ef6e6 Binary files /dev/null and b/server508/data/mapdata/packed.dat differ diff --git a/server508/data/mapdata/unpacked/10027.txt b/server508/data/mapdata/unpacked/10027.txt new file mode 100644 index 0000000..dc28e67 --- /dev/null +++ b/server508/data/mapdata/unpacked/10027.txt @@ -0,0 +1,4 @@ +1491811841 +1724263915 +-1397066186 +1733646819 diff --git a/server508/data/mapdata/unpacked/10028.txt b/server508/data/mapdata/unpacked/10028.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10028.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10029.txt b/server508/data/mapdata/unpacked/10029.txt new file mode 100644 index 0000000..b7bed4d --- /dev/null +++ b/server508/data/mapdata/unpacked/10029.txt @@ -0,0 +1,4 @@ +1530081176 +1187264373 +-285778321 +-1413416342 diff --git a/server508/data/mapdata/unpacked/10030.txt b/server508/data/mapdata/unpacked/10030.txt new file mode 100644 index 0000000..97a2753 --- /dev/null +++ b/server508/data/mapdata/unpacked/10030.txt @@ -0,0 +1,4 @@ +1533193920 +-157056689 +-1706395009 +2060884310 diff --git a/server508/data/mapdata/unpacked/10031.txt b/server508/data/mapdata/unpacked/10031.txt new file mode 100644 index 0000000..d9fde3a --- /dev/null +++ b/server508/data/mapdata/unpacked/10031.txt @@ -0,0 +1,4 @@ +-1239300919 +1798229092 +-1044578379 +493913447 diff --git a/server508/data/mapdata/unpacked/10032.txt b/server508/data/mapdata/unpacked/10032.txt new file mode 100644 index 0000000..1e99218 --- /dev/null +++ b/server508/data/mapdata/unpacked/10032.txt @@ -0,0 +1,4 @@ +-855251381 +1871716645 +1835777659 +2032052033 diff --git a/server508/data/mapdata/unpacked/10033.txt b/server508/data/mapdata/unpacked/10033.txt new file mode 100644 index 0000000..606a5d3 --- /dev/null +++ b/server508/data/mapdata/unpacked/10033.txt @@ -0,0 +1,4 @@ +-1639888257 +1743514305 +-1539381501 +393065495 diff --git a/server508/data/mapdata/unpacked/10034.txt b/server508/data/mapdata/unpacked/10034.txt new file mode 100644 index 0000000..2c555e1 --- /dev/null +++ b/server508/data/mapdata/unpacked/10034.txt @@ -0,0 +1,4 @@ +-819625305 +-2043030191 +-1084320635 +-681663892 diff --git a/server508/data/mapdata/unpacked/10035.txt b/server508/data/mapdata/unpacked/10035.txt new file mode 100644 index 0000000..3ebe6a9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10035.txt @@ -0,0 +1,4 @@ +1384657768 +1483485751 +885988659 +1562711609 diff --git a/server508/data/mapdata/unpacked/10036.txt b/server508/data/mapdata/unpacked/10036.txt new file mode 100644 index 0000000..5414518 --- /dev/null +++ b/server508/data/mapdata/unpacked/10036.txt @@ -0,0 +1,4 @@ +-2131192143 +-2119717694 +1570481473 +-1821587031 diff --git a/server508/data/mapdata/unpacked/10037.txt b/server508/data/mapdata/unpacked/10037.txt new file mode 100644 index 0000000..5768583 --- /dev/null +++ b/server508/data/mapdata/unpacked/10037.txt @@ -0,0 +1,4 @@ +914357934 +960797390 +753237255 +-1274576207 diff --git a/server508/data/mapdata/unpacked/10038.txt b/server508/data/mapdata/unpacked/10038.txt new file mode 100644 index 0000000..1a1821e --- /dev/null +++ b/server508/data/mapdata/unpacked/10038.txt @@ -0,0 +1,4 @@ +-1812408612 +1102604684 +36547558 +-2061482957 diff --git a/server508/data/mapdata/unpacked/10039.txt b/server508/data/mapdata/unpacked/10039.txt new file mode 100644 index 0000000..dff7080 --- /dev/null +++ b/server508/data/mapdata/unpacked/10039.txt @@ -0,0 +1,4 @@ +-750680790 +-1506183336 +-844543540 +-1385546710 diff --git a/server508/data/mapdata/unpacked/10040.txt b/server508/data/mapdata/unpacked/10040.txt new file mode 100644 index 0000000..0a20c53 --- /dev/null +++ b/server508/data/mapdata/unpacked/10040.txt @@ -0,0 +1,4 @@ +-691368982 +1823514267 +-284316500 +-1573696560 diff --git a/server508/data/mapdata/unpacked/10041.txt b/server508/data/mapdata/unpacked/10041.txt new file mode 100644 index 0000000..364564e --- /dev/null +++ b/server508/data/mapdata/unpacked/10041.txt @@ -0,0 +1,4 @@ +1187862613 +-117754960 +130411769 +-1192628982 diff --git a/server508/data/mapdata/unpacked/10042.txt b/server508/data/mapdata/unpacked/10042.txt new file mode 100644 index 0000000..1aa7212 --- /dev/null +++ b/server508/data/mapdata/unpacked/10042.txt @@ -0,0 +1,4 @@ +-1666575192 +2084626585 +2023809342 +-1587593937 diff --git a/server508/data/mapdata/unpacked/10043.txt b/server508/data/mapdata/unpacked/10043.txt new file mode 100644 index 0000000..67cffc0 --- /dev/null +++ b/server508/data/mapdata/unpacked/10043.txt @@ -0,0 +1,4 @@ +1912880022 +-1723964516 +2062562401 +-1162129761 diff --git a/server508/data/mapdata/unpacked/10044.txt b/server508/data/mapdata/unpacked/10044.txt new file mode 100644 index 0000000..dfe992a --- /dev/null +++ b/server508/data/mapdata/unpacked/10044.txt @@ -0,0 +1,4 @@ +867908447 +1337565998 +297400000 +854393311 diff --git a/server508/data/mapdata/unpacked/10045.txt b/server508/data/mapdata/unpacked/10045.txt new file mode 100644 index 0000000..6314989 --- /dev/null +++ b/server508/data/mapdata/unpacked/10045.txt @@ -0,0 +1,4 @@ +-1429464298 +1580360509 +-1936477065 +-337842786 diff --git a/server508/data/mapdata/unpacked/10052.txt b/server508/data/mapdata/unpacked/10052.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10052.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10053.txt b/server508/data/mapdata/unpacked/10053.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10053.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10054.txt b/server508/data/mapdata/unpacked/10054.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10054.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10056.txt b/server508/data/mapdata/unpacked/10056.txt new file mode 100644 index 0000000..761fb6f --- /dev/null +++ b/server508/data/mapdata/unpacked/10056.txt @@ -0,0 +1,4 @@ +799806902 +-1359852248 +484436692 +-1205184204 diff --git a/server508/data/mapdata/unpacked/10057.txt b/server508/data/mapdata/unpacked/10057.txt new file mode 100644 index 0000000..b8b78c3 --- /dev/null +++ b/server508/data/mapdata/unpacked/10057.txt @@ -0,0 +1,4 @@ +1308484583 +-2063649066 +898275176 +-860496835 diff --git a/server508/data/mapdata/unpacked/10058.txt b/server508/data/mapdata/unpacked/10058.txt new file mode 100644 index 0000000..cbf9d86 --- /dev/null +++ b/server508/data/mapdata/unpacked/10058.txt @@ -0,0 +1,4 @@ +-504878866 +1988421643 +-1036984650 +513341227 diff --git a/server508/data/mapdata/unpacked/10059.txt b/server508/data/mapdata/unpacked/10059.txt new file mode 100644 index 0000000..5a6e2cd --- /dev/null +++ b/server508/data/mapdata/unpacked/10059.txt @@ -0,0 +1,4 @@ +1185163869 +-1047826729 +-1461057337 +139139001 diff --git a/server508/data/mapdata/unpacked/10060.txt b/server508/data/mapdata/unpacked/10060.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10060.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10061.txt b/server508/data/mapdata/unpacked/10061.txt new file mode 100644 index 0000000..ee6053c --- /dev/null +++ b/server508/data/mapdata/unpacked/10061.txt @@ -0,0 +1,4 @@ +1683880127 +1851133137 +-567572662 +-1477799312 diff --git a/server508/data/mapdata/unpacked/10062.txt b/server508/data/mapdata/unpacked/10062.txt new file mode 100644 index 0000000..94777a8 --- /dev/null +++ b/server508/data/mapdata/unpacked/10062.txt @@ -0,0 +1,4 @@ +2024717410 +-1807032706 +1106507805 +1426160484 diff --git a/server508/data/mapdata/unpacked/10063.txt b/server508/data/mapdata/unpacked/10063.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10063.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10064.txt b/server508/data/mapdata/unpacked/10064.txt new file mode 100644 index 0000000..b1caf79 --- /dev/null +++ b/server508/data/mapdata/unpacked/10064.txt @@ -0,0 +1,4 @@ +1978019309 +1433546802 +-1989346624 +-1611361553 diff --git a/server508/data/mapdata/unpacked/10065.txt b/server508/data/mapdata/unpacked/10065.txt new file mode 100644 index 0000000..6331876 --- /dev/null +++ b/server508/data/mapdata/unpacked/10065.txt @@ -0,0 +1,4 @@ +924349786 +-326314365 +-2042125189 +1066401699 diff --git a/server508/data/mapdata/unpacked/10066.txt b/server508/data/mapdata/unpacked/10066.txt new file mode 100644 index 0000000..e5993be --- /dev/null +++ b/server508/data/mapdata/unpacked/10066.txt @@ -0,0 +1,4 @@ +105954939 +-1741244981 +-1491777272 +207112205 diff --git a/server508/data/mapdata/unpacked/10067.txt b/server508/data/mapdata/unpacked/10067.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10067.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10068.txt b/server508/data/mapdata/unpacked/10068.txt new file mode 100644 index 0000000..166f601 --- /dev/null +++ b/server508/data/mapdata/unpacked/10068.txt @@ -0,0 +1,4 @@ +-452138979 +-1929816521 +364996963 +-1315825295 diff --git a/server508/data/mapdata/unpacked/10069.txt b/server508/data/mapdata/unpacked/10069.txt new file mode 100644 index 0000000..129a482 --- /dev/null +++ b/server508/data/mapdata/unpacked/10069.txt @@ -0,0 +1,4 @@ +-1669561589 +-1287976882 +1220187974 +434661979 diff --git a/server508/data/mapdata/unpacked/10133.txt b/server508/data/mapdata/unpacked/10133.txt new file mode 100644 index 0000000..97a3397 --- /dev/null +++ b/server508/data/mapdata/unpacked/10133.txt @@ -0,0 +1,5 @@ +1646350825 +-289900492 +-802244012 +-1058372697 + diff --git a/server508/data/mapdata/unpacked/10134.txt b/server508/data/mapdata/unpacked/10134.txt new file mode 100644 index 0000000..ac4a51e --- /dev/null +++ b/server508/data/mapdata/unpacked/10134.txt @@ -0,0 +1,5 @@ +-1343151186 +-867897862 +-1265011615 +-389855656 + diff --git a/server508/data/mapdata/unpacked/10135.txt b/server508/data/mapdata/unpacked/10135.txt new file mode 100644 index 0000000..ba9cc8c --- /dev/null +++ b/server508/data/mapdata/unpacked/10135.txt @@ -0,0 +1,4 @@ +-642848772 +814056528 +923267823 +-1753006596 diff --git a/server508/data/mapdata/unpacked/10136.txt b/server508/data/mapdata/unpacked/10136.txt new file mode 100644 index 0000000..75a01ab --- /dev/null +++ b/server508/data/mapdata/unpacked/10136.txt @@ -0,0 +1,4 @@ +512428922 +-1090392188 +-1855405299 +-966311133 diff --git a/server508/data/mapdata/unpacked/10137.txt b/server508/data/mapdata/unpacked/10137.txt new file mode 100644 index 0000000..dfa5fb9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10137.txt @@ -0,0 +1,4 @@ +-1779218125 +-1771529325 +-269439648 +-2071926161 diff --git a/server508/data/mapdata/unpacked/10138.txt b/server508/data/mapdata/unpacked/10138.txt new file mode 100644 index 0000000..0853abf --- /dev/null +++ b/server508/data/mapdata/unpacked/10138.txt @@ -0,0 +1,4 @@ +1254633881 +-1405578656 +1660494880 +-748797494 diff --git a/server508/data/mapdata/unpacked/10139.txt b/server508/data/mapdata/unpacked/10139.txt new file mode 100644 index 0000000..4ba12b2 --- /dev/null +++ b/server508/data/mapdata/unpacked/10139.txt @@ -0,0 +1,4 @@ +1226915855 +1002704314 +-440823591 +-129555587 diff --git a/server508/data/mapdata/unpacked/10140.txt b/server508/data/mapdata/unpacked/10140.txt new file mode 100644 index 0000000..4c56967 --- /dev/null +++ b/server508/data/mapdata/unpacked/10140.txt @@ -0,0 +1,4 @@ +-104825447 +-1092637213 +-105814713 +-2129567531 diff --git a/server508/data/mapdata/unpacked/10141.txt b/server508/data/mapdata/unpacked/10141.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10141.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10142.txt b/server508/data/mapdata/unpacked/10142.txt new file mode 100644 index 0000000..0a7802a --- /dev/null +++ b/server508/data/mapdata/unpacked/10142.txt @@ -0,0 +1,4 @@ +1872120942 +-765842959 +449655176 +-1168971827 diff --git a/server508/data/mapdata/unpacked/10143.txt b/server508/data/mapdata/unpacked/10143.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10143.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10144.txt b/server508/data/mapdata/unpacked/10144.txt new file mode 100644 index 0000000..070daf2 --- /dev/null +++ b/server508/data/mapdata/unpacked/10144.txt @@ -0,0 +1,4 @@ +265530509 +2033515489 +-2022406749 +-591072091 diff --git a/server508/data/mapdata/unpacked/10145.txt b/server508/data/mapdata/unpacked/10145.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10145.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10279.txt b/server508/data/mapdata/unpacked/10279.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10279.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10280.txt b/server508/data/mapdata/unpacked/10280.txt new file mode 100644 index 0000000..be9ff55 --- /dev/null +++ b/server508/data/mapdata/unpacked/10280.txt @@ -0,0 +1,6 @@ +-1245893544 +-118079793 +-1624599660 +-626968532 + + diff --git a/server508/data/mapdata/unpacked/10281.txt b/server508/data/mapdata/unpacked/10281.txt new file mode 100644 index 0000000..eed99eb --- /dev/null +++ b/server508/data/mapdata/unpacked/10281.txt @@ -0,0 +1,5 @@ +2129832996 +-1542613289 +-1612399066 +-323592936 + diff --git a/server508/data/mapdata/unpacked/10282.txt b/server508/data/mapdata/unpacked/10282.txt new file mode 100644 index 0000000..6c8526e --- /dev/null +++ b/server508/data/mapdata/unpacked/10282.txt @@ -0,0 +1,5 @@ +667792020 +292003472 +-998896147 +7080342 + diff --git a/server508/data/mapdata/unpacked/10283.txt b/server508/data/mapdata/unpacked/10283.txt new file mode 100644 index 0000000..3d9e578 --- /dev/null +++ b/server508/data/mapdata/unpacked/10283.txt @@ -0,0 +1,4 @@ +-2133080221 +1327669620 +173304076 +-151662318 diff --git a/server508/data/mapdata/unpacked/10284.txt b/server508/data/mapdata/unpacked/10284.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10284.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10285.txt b/server508/data/mapdata/unpacked/10285.txt new file mode 100644 index 0000000..06af098 --- /dev/null +++ b/server508/data/mapdata/unpacked/10285.txt @@ -0,0 +1,4 @@ +-1317120534 +1321149083 +-1700628824 +1028203235 diff --git a/server508/data/mapdata/unpacked/10286.txt b/server508/data/mapdata/unpacked/10286.txt new file mode 100644 index 0000000..5fa7508 --- /dev/null +++ b/server508/data/mapdata/unpacked/10286.txt @@ -0,0 +1,4 @@ +-1040445688 +-7408505 +807695839 +226589344 diff --git a/server508/data/mapdata/unpacked/10287.txt b/server508/data/mapdata/unpacked/10287.txt new file mode 100644 index 0000000..dd80cbe --- /dev/null +++ b/server508/data/mapdata/unpacked/10287.txt @@ -0,0 +1,4 @@ +105887361 +-945638691 +1922834114 +961561887 diff --git a/server508/data/mapdata/unpacked/10288.txt b/server508/data/mapdata/unpacked/10288.txt new file mode 100644 index 0000000..2721fec --- /dev/null +++ b/server508/data/mapdata/unpacked/10288.txt @@ -0,0 +1,4 @@ +-642909559 +1719566555 +1831536672 +-1910524848 diff --git a/server508/data/mapdata/unpacked/10289.txt b/server508/data/mapdata/unpacked/10289.txt new file mode 100644 index 0000000..932fc7f --- /dev/null +++ b/server508/data/mapdata/unpacked/10289.txt @@ -0,0 +1,4 @@ +-1068331841 +606992900 +-1831687025 +-1134570200 diff --git a/server508/data/mapdata/unpacked/10290.txt b/server508/data/mapdata/unpacked/10290.txt new file mode 100644 index 0000000..aaa85ef --- /dev/null +++ b/server508/data/mapdata/unpacked/10290.txt @@ -0,0 +1,4 @@ +90195167 +-1656507573 +-966048447 +1066235092 diff --git a/server508/data/mapdata/unpacked/10291.txt b/server508/data/mapdata/unpacked/10291.txt new file mode 100644 index 0000000..f94cadd --- /dev/null +++ b/server508/data/mapdata/unpacked/10291.txt @@ -0,0 +1,4 @@ +-1198496478 +-233283764 +-1195655275 +978977382 diff --git a/server508/data/mapdata/unpacked/10292.txt b/server508/data/mapdata/unpacked/10292.txt new file mode 100644 index 0000000..d89697d --- /dev/null +++ b/server508/data/mapdata/unpacked/10292.txt @@ -0,0 +1,4 @@ +933507835 +1135929795 +-1932059890 +1492191263 diff --git a/server508/data/mapdata/unpacked/10293.txt b/server508/data/mapdata/unpacked/10293.txt new file mode 100644 index 0000000..255dc55 --- /dev/null +++ b/server508/data/mapdata/unpacked/10293.txt @@ -0,0 +1,4 @@ +-867083397 +-512358173 +1502490725 +560653474 diff --git a/server508/data/mapdata/unpacked/10294.txt b/server508/data/mapdata/unpacked/10294.txt new file mode 100644 index 0000000..4d519da --- /dev/null +++ b/server508/data/mapdata/unpacked/10294.txt @@ -0,0 +1,4 @@ +-1863733256 +1685330370 +276066956 +-1877904891 diff --git a/server508/data/mapdata/unpacked/10295.txt b/server508/data/mapdata/unpacked/10295.txt new file mode 100644 index 0000000..1777c4b --- /dev/null +++ b/server508/data/mapdata/unpacked/10295.txt @@ -0,0 +1,4 @@ +-1920480496 +-1423914110 +951774544 +-1419269290 diff --git a/server508/data/mapdata/unpacked/10296.txt b/server508/data/mapdata/unpacked/10296.txt new file mode 100644 index 0000000..bb0814b --- /dev/null +++ b/server508/data/mapdata/unpacked/10296.txt @@ -0,0 +1,4 @@ +-1699964827 +1784080353 +113260638 +1213918121 diff --git a/server508/data/mapdata/unpacked/10297.txt b/server508/data/mapdata/unpacked/10297.txt new file mode 100644 index 0000000..1130e75 --- /dev/null +++ b/server508/data/mapdata/unpacked/10297.txt @@ -0,0 +1,4 @@ +548003786 +2085747240 +921073357 +127574933 diff --git a/server508/data/mapdata/unpacked/10298.txt b/server508/data/mapdata/unpacked/10298.txt new file mode 100644 index 0000000..03ae4eb --- /dev/null +++ b/server508/data/mapdata/unpacked/10298.txt @@ -0,0 +1,4 @@ +-233124901 +1236532280 +1418961777 +2055047860 diff --git a/server508/data/mapdata/unpacked/10299.txt b/server508/data/mapdata/unpacked/10299.txt new file mode 100644 index 0000000..51f4b27 --- /dev/null +++ b/server508/data/mapdata/unpacked/10299.txt @@ -0,0 +1,4 @@ +-1615885118 +-995676641 +-1525013344 +1823957481 diff --git a/server508/data/mapdata/unpacked/10300.txt b/server508/data/mapdata/unpacked/10300.txt new file mode 100644 index 0000000..9d3d3ca --- /dev/null +++ b/server508/data/mapdata/unpacked/10300.txt @@ -0,0 +1,4 @@ +412522173 +-349314878 +-1828713124 +-1042049275 diff --git a/server508/data/mapdata/unpacked/10301.txt b/server508/data/mapdata/unpacked/10301.txt new file mode 100644 index 0000000..931e0eb --- /dev/null +++ b/server508/data/mapdata/unpacked/10301.txt @@ -0,0 +1,4 @@ +-158146381 +1698585677 +-910760378 +815929788 diff --git a/server508/data/mapdata/unpacked/10302.txt b/server508/data/mapdata/unpacked/10302.txt new file mode 100644 index 0000000..df33382 --- /dev/null +++ b/server508/data/mapdata/unpacked/10302.txt @@ -0,0 +1,4 @@ +639277786 +-1909940120 +130074677 +491844814 diff --git a/server508/data/mapdata/unpacked/10303.txt b/server508/data/mapdata/unpacked/10303.txt new file mode 100644 index 0000000..4f11d56 --- /dev/null +++ b/server508/data/mapdata/unpacked/10303.txt @@ -0,0 +1,4 @@ +187236989 +-1452229648 +1948816476 +-1775249280 diff --git a/server508/data/mapdata/unpacked/10309.txt b/server508/data/mapdata/unpacked/10309.txt new file mode 100644 index 0000000..b55c720 --- /dev/null +++ b/server508/data/mapdata/unpacked/10309.txt @@ -0,0 +1,4 @@ +1853022849 +1563769590 +-839166 +1806219482 diff --git a/server508/data/mapdata/unpacked/10310.txt b/server508/data/mapdata/unpacked/10310.txt new file mode 100644 index 0000000..ed43e0b --- /dev/null +++ b/server508/data/mapdata/unpacked/10310.txt @@ -0,0 +1,4 @@ +-1472463766 +1824686108 +888673126 +2074633489 diff --git a/server508/data/mapdata/unpacked/10311.txt b/server508/data/mapdata/unpacked/10311.txt new file mode 100644 index 0000000..6c1104c --- /dev/null +++ b/server508/data/mapdata/unpacked/10311.txt @@ -0,0 +1,4 @@ +-1976059860 +922032078 +-1950673483 +394409071 diff --git a/server508/data/mapdata/unpacked/10312.txt b/server508/data/mapdata/unpacked/10312.txt new file mode 100644 index 0000000..2497654 --- /dev/null +++ b/server508/data/mapdata/unpacked/10312.txt @@ -0,0 +1,4 @@ +-736431800 +2013006475 +1225434861 +59504107 diff --git a/server508/data/mapdata/unpacked/10313.txt b/server508/data/mapdata/unpacked/10313.txt new file mode 100644 index 0000000..579ace4 --- /dev/null +++ b/server508/data/mapdata/unpacked/10313.txt @@ -0,0 +1,4 @@ +1731455740 +156777644 +-1031599999 +799430192 diff --git a/server508/data/mapdata/unpacked/10314.txt b/server508/data/mapdata/unpacked/10314.txt new file mode 100644 index 0000000..e745551 --- /dev/null +++ b/server508/data/mapdata/unpacked/10314.txt @@ -0,0 +1,4 @@ +-2020182865 +-861201399 +1793241744 +-541294677 diff --git a/server508/data/mapdata/unpacked/10315.txt b/server508/data/mapdata/unpacked/10315.txt new file mode 100644 index 0000000..d043ef2 --- /dev/null +++ b/server508/data/mapdata/unpacked/10315.txt @@ -0,0 +1,4 @@ +-1034094191 +1810212216 +618808107 +1905492210 diff --git a/server508/data/mapdata/unpacked/10316.txt b/server508/data/mapdata/unpacked/10316.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10316.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10317.txt b/server508/data/mapdata/unpacked/10317.txt new file mode 100644 index 0000000..b2d74e0 --- /dev/null +++ b/server508/data/mapdata/unpacked/10317.txt @@ -0,0 +1,4 @@ +216403117 +1910251124 +144162918 +224240414 diff --git a/server508/data/mapdata/unpacked/10318.txt b/server508/data/mapdata/unpacked/10318.txt new file mode 100644 index 0000000..b6e2fd5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10318.txt @@ -0,0 +1,4 @@ +1053988597 +-2121917140 +1730755899 +1549334321 diff --git a/server508/data/mapdata/unpacked/10320.txt b/server508/data/mapdata/unpacked/10320.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10320.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10321.txt b/server508/data/mapdata/unpacked/10321.txt new file mode 100644 index 0000000..01e27ae --- /dev/null +++ b/server508/data/mapdata/unpacked/10321.txt @@ -0,0 +1,4 @@ +1996825886 +-1552231723 +1721080145 +-869420516 diff --git a/server508/data/mapdata/unpacked/10322.txt b/server508/data/mapdata/unpacked/10322.txt new file mode 100644 index 0000000..76afe79 --- /dev/null +++ b/server508/data/mapdata/unpacked/10322.txt @@ -0,0 +1,4 @@ +1773602876 +-1410394076 +-239593243 +148286798 diff --git a/server508/data/mapdata/unpacked/10323.txt b/server508/data/mapdata/unpacked/10323.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10323.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10324.txt b/server508/data/mapdata/unpacked/10324.txt new file mode 100644 index 0000000..0628e8a --- /dev/null +++ b/server508/data/mapdata/unpacked/10324.txt @@ -0,0 +1,4 @@ +-1670587478 +-401532783 +1705875521 +995683837 diff --git a/server508/data/mapdata/unpacked/10325.txt b/server508/data/mapdata/unpacked/10325.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10325.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10385.txt b/server508/data/mapdata/unpacked/10385.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10385.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10386.txt b/server508/data/mapdata/unpacked/10386.txt new file mode 100644 index 0000000..2ea04fa --- /dev/null +++ b/server508/data/mapdata/unpacked/10386.txt @@ -0,0 +1,4 @@ +1123418142 +-1191190798 +-67920748 +-964540310 diff --git a/server508/data/mapdata/unpacked/10387.txt b/server508/data/mapdata/unpacked/10387.txt new file mode 100644 index 0000000..ffb5d74 --- /dev/null +++ b/server508/data/mapdata/unpacked/10387.txt @@ -0,0 +1,4 @@ +883942538 +-1316327739 +-409646311 +1715503465 diff --git a/server508/data/mapdata/unpacked/10388.txt b/server508/data/mapdata/unpacked/10388.txt new file mode 100644 index 0000000..91277c1 --- /dev/null +++ b/server508/data/mapdata/unpacked/10388.txt @@ -0,0 +1,4 @@ +1161495838 +-228210135 +405156354 +-1914329414 diff --git a/server508/data/mapdata/unpacked/10389.txt b/server508/data/mapdata/unpacked/10389.txt new file mode 100644 index 0000000..ddd033d --- /dev/null +++ b/server508/data/mapdata/unpacked/10389.txt @@ -0,0 +1,4 @@ +1232449212 +-728763227 +1729853683 +-1383669718 diff --git a/server508/data/mapdata/unpacked/10390.txt b/server508/data/mapdata/unpacked/10390.txt new file mode 100644 index 0000000..1598121 --- /dev/null +++ b/server508/data/mapdata/unpacked/10390.txt @@ -0,0 +1,4 @@ +1529348981 +363265179 +-529329077 +-1258205924 diff --git a/server508/data/mapdata/unpacked/10391.txt b/server508/data/mapdata/unpacked/10391.txt new file mode 100644 index 0000000..2ee2adc --- /dev/null +++ b/server508/data/mapdata/unpacked/10391.txt @@ -0,0 +1,4 @@ +1697636321 +993503902 +1432113433 +-1040062313 diff --git a/server508/data/mapdata/unpacked/10392.txt b/server508/data/mapdata/unpacked/10392.txt new file mode 100644 index 0000000..7decbad --- /dev/null +++ b/server508/data/mapdata/unpacked/10392.txt @@ -0,0 +1,4 @@ +2130459982 +-1301889773 +1900862262 +8338171 diff --git a/server508/data/mapdata/unpacked/10393.txt b/server508/data/mapdata/unpacked/10393.txt new file mode 100644 index 0000000..059f625 --- /dev/null +++ b/server508/data/mapdata/unpacked/10393.txt @@ -0,0 +1,4 @@ +-1385824102 +-1224106775 +2052804935 +-259720956 diff --git a/server508/data/mapdata/unpacked/10394.txt b/server508/data/mapdata/unpacked/10394.txt new file mode 100644 index 0000000..f77181d --- /dev/null +++ b/server508/data/mapdata/unpacked/10394.txt @@ -0,0 +1,4 @@ +201272072 +-1622948650 +613159689 +479293860 diff --git a/server508/data/mapdata/unpacked/10395.txt b/server508/data/mapdata/unpacked/10395.txt new file mode 100644 index 0000000..5daa34b --- /dev/null +++ b/server508/data/mapdata/unpacked/10395.txt @@ -0,0 +1,4 @@ +-22365676 +-607864450 +1375198454 +1650832425 diff --git a/server508/data/mapdata/unpacked/10396.txt b/server508/data/mapdata/unpacked/10396.txt new file mode 100644 index 0000000..67af8fd --- /dev/null +++ b/server508/data/mapdata/unpacked/10396.txt @@ -0,0 +1,4 @@ +-1878072140 +1648991920 +1054624070 +333445417 diff --git a/server508/data/mapdata/unpacked/10397.txt b/server508/data/mapdata/unpacked/10397.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10397.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10399.txt b/server508/data/mapdata/unpacked/10399.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10399.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10400.txt b/server508/data/mapdata/unpacked/10400.txt new file mode 100644 index 0000000..8a44ea5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10400.txt @@ -0,0 +1,4 @@ +-1656816922 +1318311812 +-811481661 +1625916625 diff --git a/server508/data/mapdata/unpacked/10401.txt b/server508/data/mapdata/unpacked/10401.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10401.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10535.txt b/server508/data/mapdata/unpacked/10535.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10535.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10536.txt b/server508/data/mapdata/unpacked/10536.txt new file mode 100644 index 0000000..90b9531 --- /dev/null +++ b/server508/data/mapdata/unpacked/10536.txt @@ -0,0 +1,5 @@ +349537117 +1202512092 +-698870718 +-2083455397 + diff --git a/server508/data/mapdata/unpacked/10537.txt b/server508/data/mapdata/unpacked/10537.txt new file mode 100644 index 0000000..5344d20 --- /dev/null +++ b/server508/data/mapdata/unpacked/10537.txt @@ -0,0 +1,5 @@ +785422384 +-1048531056 +180431582 +-519636552 + diff --git a/server508/data/mapdata/unpacked/10538.txt b/server508/data/mapdata/unpacked/10538.txt new file mode 100644 index 0000000..d426d3b --- /dev/null +++ b/server508/data/mapdata/unpacked/10538.txt @@ -0,0 +1,5 @@ +-2091844157 +-1013393743 +1806920513 +-1464143404 + diff --git a/server508/data/mapdata/unpacked/10539.txt b/server508/data/mapdata/unpacked/10539.txt new file mode 100644 index 0000000..9e1de34 --- /dev/null +++ b/server508/data/mapdata/unpacked/10539.txt @@ -0,0 +1,4 @@ +-1468645226 +1809562421 +-1594801223 +389468972 diff --git a/server508/data/mapdata/unpacked/10540.txt b/server508/data/mapdata/unpacked/10540.txt new file mode 100644 index 0000000..2155277 --- /dev/null +++ b/server508/data/mapdata/unpacked/10540.txt @@ -0,0 +1,4 @@ +1624468108 +-1439095387 +1193987877 +1292402073 diff --git a/server508/data/mapdata/unpacked/10541.txt b/server508/data/mapdata/unpacked/10541.txt new file mode 100644 index 0000000..6fdd5d5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10541.txt @@ -0,0 +1,4 @@ +1436392581 +-334805062 +1155918987 +-305555465 diff --git a/server508/data/mapdata/unpacked/10542.txt b/server508/data/mapdata/unpacked/10542.txt new file mode 100644 index 0000000..4d8f919 --- /dev/null +++ b/server508/data/mapdata/unpacked/10542.txt @@ -0,0 +1,4 @@ +-1281372879 +935394048 +-858264842 +-397239426 diff --git a/server508/data/mapdata/unpacked/10543.txt b/server508/data/mapdata/unpacked/10543.txt new file mode 100644 index 0000000..c3ba89d --- /dev/null +++ b/server508/data/mapdata/unpacked/10543.txt @@ -0,0 +1,5 @@ +-1329281012 +-1688960186 +1798967251 +1154324972 + diff --git a/server508/data/mapdata/unpacked/10544.txt b/server508/data/mapdata/unpacked/10544.txt new file mode 100644 index 0000000..a991847 --- /dev/null +++ b/server508/data/mapdata/unpacked/10544.txt @@ -0,0 +1,5 @@ +-1866212107 +94600843 +-1520934084 +-8621743 + diff --git a/server508/data/mapdata/unpacked/10545.txt b/server508/data/mapdata/unpacked/10545.txt new file mode 100644 index 0000000..a8ab994 --- /dev/null +++ b/server508/data/mapdata/unpacked/10545.txt @@ -0,0 +1,5 @@ +-1277616569 +1603606492 +-1986566907 +-1003989455 + diff --git a/server508/data/mapdata/unpacked/10546.txt b/server508/data/mapdata/unpacked/10546.txt new file mode 100644 index 0000000..3621119 --- /dev/null +++ b/server508/data/mapdata/unpacked/10546.txt @@ -0,0 +1,4 @@ +-1806117973 +-430179632 +-977110942 +-1861875249 diff --git a/server508/data/mapdata/unpacked/10547.txt b/server508/data/mapdata/unpacked/10547.txt new file mode 100644 index 0000000..b05861d --- /dev/null +++ b/server508/data/mapdata/unpacked/10547.txt @@ -0,0 +1,4 @@ +984481282 +1472658210 +1230112226 +-199519302 diff --git a/server508/data/mapdata/unpacked/10548.txt b/server508/data/mapdata/unpacked/10548.txt new file mode 100644 index 0000000..3686484 --- /dev/null +++ b/server508/data/mapdata/unpacked/10548.txt @@ -0,0 +1,4 @@ +-1157394711 +-1306553144 +2105373539 +798383108 diff --git a/server508/data/mapdata/unpacked/10549.txt b/server508/data/mapdata/unpacked/10549.txt new file mode 100644 index 0000000..f019f9e --- /dev/null +++ b/server508/data/mapdata/unpacked/10549.txt @@ -0,0 +1,4 @@ +2136196086 +485907710 +1234851523 +1038601220 diff --git a/server508/data/mapdata/unpacked/10550.txt b/server508/data/mapdata/unpacked/10550.txt new file mode 100644 index 0000000..6d4bf24 --- /dev/null +++ b/server508/data/mapdata/unpacked/10550.txt @@ -0,0 +1,4 @@ +-670119763 +335501341 +-1892036292 +503005007 diff --git a/server508/data/mapdata/unpacked/10551.txt b/server508/data/mapdata/unpacked/10551.txt new file mode 100644 index 0000000..30fedcd --- /dev/null +++ b/server508/data/mapdata/unpacked/10551.txt @@ -0,0 +1,4 @@ +-50853484 +-2121251994 +717523561 +-1277392698 diff --git a/server508/data/mapdata/unpacked/10552.txt b/server508/data/mapdata/unpacked/10552.txt new file mode 100644 index 0000000..b4a8447 --- /dev/null +++ b/server508/data/mapdata/unpacked/10552.txt @@ -0,0 +1,4 @@ +249436914 +-1499334230 +-1474804142 +-1288808433 diff --git a/server508/data/mapdata/unpacked/10553.txt b/server508/data/mapdata/unpacked/10553.txt new file mode 100644 index 0000000..194543c --- /dev/null +++ b/server508/data/mapdata/unpacked/10553.txt @@ -0,0 +1,4 @@ +1794659878 +1680803624 +-799373947 +-1150812780 diff --git a/server508/data/mapdata/unpacked/10554.txt b/server508/data/mapdata/unpacked/10554.txt new file mode 100644 index 0000000..59a7762 --- /dev/null +++ b/server508/data/mapdata/unpacked/10554.txt @@ -0,0 +1,4 @@ +1188457126 +-1729374406 +-799893645 +1217674507 diff --git a/server508/data/mapdata/unpacked/10555.txt b/server508/data/mapdata/unpacked/10555.txt new file mode 100644 index 0000000..6f734f6 --- /dev/null +++ b/server508/data/mapdata/unpacked/10555.txt @@ -0,0 +1,4 @@ +298183408 +-1907842333 +1235195826 +110456069 diff --git a/server508/data/mapdata/unpacked/10556.txt b/server508/data/mapdata/unpacked/10556.txt new file mode 100644 index 0000000..aeff72c --- /dev/null +++ b/server508/data/mapdata/unpacked/10556.txt @@ -0,0 +1,4 @@ +1209135093 +-27999571 +778897676 +-513558195 diff --git a/server508/data/mapdata/unpacked/10557.txt b/server508/data/mapdata/unpacked/10557.txt new file mode 100644 index 0000000..d3be418 --- /dev/null +++ b/server508/data/mapdata/unpacked/10557.txt @@ -0,0 +1,4 @@ +-807815903 +958215082 +-647601710 +1350072419 diff --git a/server508/data/mapdata/unpacked/10558.txt b/server508/data/mapdata/unpacked/10558.txt new file mode 100644 index 0000000..9f7eb48 --- /dev/null +++ b/server508/data/mapdata/unpacked/10558.txt @@ -0,0 +1,4 @@ +1337729793 +1717973268 +-1721269042 +-65511201 diff --git a/server508/data/mapdata/unpacked/10559.txt b/server508/data/mapdata/unpacked/10559.txt new file mode 100644 index 0000000..ef462a5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10559.txt @@ -0,0 +1,4 @@ +905435949 +206096000 +694415949 +384719862 diff --git a/server508/data/mapdata/unpacked/10565.txt b/server508/data/mapdata/unpacked/10565.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10565.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10566.txt b/server508/data/mapdata/unpacked/10566.txt new file mode 100644 index 0000000..32b2df1 --- /dev/null +++ b/server508/data/mapdata/unpacked/10566.txt @@ -0,0 +1,4 @@ +221004409 +1368318650 +-1237341956 +25411913 diff --git a/server508/data/mapdata/unpacked/10567.txt b/server508/data/mapdata/unpacked/10567.txt new file mode 100644 index 0000000..2d08e07 --- /dev/null +++ b/server508/data/mapdata/unpacked/10567.txt @@ -0,0 +1,4 @@ +-542823457 +1281716081 +-1533620503 +-1571738600 diff --git a/server508/data/mapdata/unpacked/10570.txt b/server508/data/mapdata/unpacked/10570.txt new file mode 100644 index 0000000..f45eb77 --- /dev/null +++ b/server508/data/mapdata/unpacked/10570.txt @@ -0,0 +1,4 @@ +-2055371283 +-1222616912 +-540563619 +-101327500 diff --git a/server508/data/mapdata/unpacked/10571.txt b/server508/data/mapdata/unpacked/10571.txt new file mode 100644 index 0000000..94e636f --- /dev/null +++ b/server508/data/mapdata/unpacked/10571.txt @@ -0,0 +1,4 @@ +2044310497 +1377055114 +-357355629 +1279109029 diff --git a/server508/data/mapdata/unpacked/10572.txt b/server508/data/mapdata/unpacked/10572.txt new file mode 100644 index 0000000..9344c2d --- /dev/null +++ b/server508/data/mapdata/unpacked/10572.txt @@ -0,0 +1,4 @@ +-1375061166 +-1411427241 +-294467489 +-2106748278 diff --git a/server508/data/mapdata/unpacked/10573.txt b/server508/data/mapdata/unpacked/10573.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10573.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10577.txt b/server508/data/mapdata/unpacked/10577.txt new file mode 100644 index 0000000..d74e32f --- /dev/null +++ b/server508/data/mapdata/unpacked/10577.txt @@ -0,0 +1,4 @@ +824897954 +-1807466644 +2079017570 +1299975025 diff --git a/server508/data/mapdata/unpacked/10578.txt b/server508/data/mapdata/unpacked/10578.txt new file mode 100644 index 0000000..571cef9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10578.txt @@ -0,0 +1,4 @@ +-706160939 +-134753175 +1291734981 +-292817429 diff --git a/server508/data/mapdata/unpacked/10579.txt b/server508/data/mapdata/unpacked/10579.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10579.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10585.txt b/server508/data/mapdata/unpacked/10585.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10585.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10586.txt b/server508/data/mapdata/unpacked/10586.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10586.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10587.txt b/server508/data/mapdata/unpacked/10587.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10587.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10637.txt b/server508/data/mapdata/unpacked/10637.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10637.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10638.txt b/server508/data/mapdata/unpacked/10638.txt new file mode 100644 index 0000000..9b70a69 --- /dev/null +++ b/server508/data/mapdata/unpacked/10638.txt @@ -0,0 +1,4 @@ +616415398 +-1155981361 +-1520230064 +482531809 diff --git a/server508/data/mapdata/unpacked/10639.txt b/server508/data/mapdata/unpacked/10639.txt new file mode 100644 index 0000000..966a544 --- /dev/null +++ b/server508/data/mapdata/unpacked/10639.txt @@ -0,0 +1,4 @@ +1174910426 +137692025 +-576373115 +754439009 diff --git a/server508/data/mapdata/unpacked/10641.txt b/server508/data/mapdata/unpacked/10641.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10641.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10642.txt b/server508/data/mapdata/unpacked/10642.txt new file mode 100644 index 0000000..92986b4 --- /dev/null +++ b/server508/data/mapdata/unpacked/10642.txt @@ -0,0 +1,4 @@ +658277839 +1898856178 +-1037196236 +1620289692 diff --git a/server508/data/mapdata/unpacked/10643.txt b/server508/data/mapdata/unpacked/10643.txt new file mode 100644 index 0000000..7883113 --- /dev/null +++ b/server508/data/mapdata/unpacked/10643.txt @@ -0,0 +1,4 @@ +1834436817 +1391913024 +-500731515 +1550481150 diff --git a/server508/data/mapdata/unpacked/10644.txt b/server508/data/mapdata/unpacked/10644.txt new file mode 100644 index 0000000..53dcad0 --- /dev/null +++ b/server508/data/mapdata/unpacked/10644.txt @@ -0,0 +1,4 @@ +1308400341 +760027142 +1015620386 +-1917480553 diff --git a/server508/data/mapdata/unpacked/10645.txt b/server508/data/mapdata/unpacked/10645.txt new file mode 100644 index 0000000..407bf24 --- /dev/null +++ b/server508/data/mapdata/unpacked/10645.txt @@ -0,0 +1,4 @@ +514831647 +1451583853 +-396813706 +340770927 diff --git a/server508/data/mapdata/unpacked/10646.txt b/server508/data/mapdata/unpacked/10646.txt new file mode 100644 index 0000000..285068e --- /dev/null +++ b/server508/data/mapdata/unpacked/10646.txt @@ -0,0 +1,4 @@ +1131161981 +-869366901 +-164626909 +2023556258 diff --git a/server508/data/mapdata/unpacked/10647.txt b/server508/data/mapdata/unpacked/10647.txt new file mode 100644 index 0000000..8058f2b --- /dev/null +++ b/server508/data/mapdata/unpacked/10647.txt @@ -0,0 +1,4 @@ +-1503343410 +-1634708207 +-1757301917 +-2003987513 diff --git a/server508/data/mapdata/unpacked/10648.txt b/server508/data/mapdata/unpacked/10648.txt new file mode 100644 index 0000000..5f8e2b0 --- /dev/null +++ b/server508/data/mapdata/unpacked/10648.txt @@ -0,0 +1,4 @@ +1512581514 +-1121623940 +-1861238740 +1459885224 diff --git a/server508/data/mapdata/unpacked/10649.txt b/server508/data/mapdata/unpacked/10649.txt new file mode 100644 index 0000000..121f5d6 --- /dev/null +++ b/server508/data/mapdata/unpacked/10649.txt @@ -0,0 +1,4 @@ +1423886987 +-1654331043 +-678242006 +1738009197 diff --git a/server508/data/mapdata/unpacked/10650.txt b/server508/data/mapdata/unpacked/10650.txt new file mode 100644 index 0000000..748991f --- /dev/null +++ b/server508/data/mapdata/unpacked/10650.txt @@ -0,0 +1,4 @@ +-908578223 +-911827513 +1137573080 +-419444146 diff --git a/server508/data/mapdata/unpacked/10651.txt b/server508/data/mapdata/unpacked/10651.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10651.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10652.txt b/server508/data/mapdata/unpacked/10652.txt new file mode 100644 index 0000000..e6db177 --- /dev/null +++ b/server508/data/mapdata/unpacked/10652.txt @@ -0,0 +1,4 @@ +1580722385 +609745227 +1407021351 +1098485033 diff --git a/server508/data/mapdata/unpacked/10653.txt b/server508/data/mapdata/unpacked/10653.txt new file mode 100644 index 0000000..8f64b1d --- /dev/null +++ b/server508/data/mapdata/unpacked/10653.txt @@ -0,0 +1,4 @@ +570189753 +-1700559836 +2108215671 +-701775893 diff --git a/server508/data/mapdata/unpacked/10655.txt b/server508/data/mapdata/unpacked/10655.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10655.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10656.txt b/server508/data/mapdata/unpacked/10656.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10656.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10657.txt b/server508/data/mapdata/unpacked/10657.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10657.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10791.txt b/server508/data/mapdata/unpacked/10791.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10791.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10792.txt b/server508/data/mapdata/unpacked/10792.txt new file mode 100644 index 0000000..cafc170 --- /dev/null +++ b/server508/data/mapdata/unpacked/10792.txt @@ -0,0 +1,5 @@ +-125671574 +254943715 +1343095705 +-1965171670 + diff --git a/server508/data/mapdata/unpacked/10793.txt b/server508/data/mapdata/unpacked/10793.txt new file mode 100644 index 0000000..2de4045 --- /dev/null +++ b/server508/data/mapdata/unpacked/10793.txt @@ -0,0 +1,5 @@ +-918820648 +-575477272 +1826808974 +1583566620 + diff --git a/server508/data/mapdata/unpacked/10794.txt b/server508/data/mapdata/unpacked/10794.txt new file mode 100644 index 0000000..ca17362 --- /dev/null +++ b/server508/data/mapdata/unpacked/10794.txt @@ -0,0 +1,4 @@ +-62638721 +-2055205851 +-488702423 +1198245579 diff --git a/server508/data/mapdata/unpacked/10795.txt b/server508/data/mapdata/unpacked/10795.txt new file mode 100644 index 0000000..780a8c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10795.txt @@ -0,0 +1,4 @@ +1763600957 +-365178279 +1448589605 +-1883563545 diff --git a/server508/data/mapdata/unpacked/10796.txt b/server508/data/mapdata/unpacked/10796.txt new file mode 100644 index 0000000..da68ef4 --- /dev/null +++ b/server508/data/mapdata/unpacked/10796.txt @@ -0,0 +1,4 @@ +-1834928370 +1352649164 +765865015 +1708785419 diff --git a/server508/data/mapdata/unpacked/10797.txt b/server508/data/mapdata/unpacked/10797.txt new file mode 100644 index 0000000..128cef8 --- /dev/null +++ b/server508/data/mapdata/unpacked/10797.txt @@ -0,0 +1,4 @@ +1162623334 +1082199860 +2059929131 +-2132110355 diff --git a/server508/data/mapdata/unpacked/10798.txt b/server508/data/mapdata/unpacked/10798.txt new file mode 100644 index 0000000..7035b6a --- /dev/null +++ b/server508/data/mapdata/unpacked/10798.txt @@ -0,0 +1,4 @@ +487791818 +49811808 +-1421313612 +1181040843 diff --git a/server508/data/mapdata/unpacked/10799.txt b/server508/data/mapdata/unpacked/10799.txt new file mode 100644 index 0000000..7e5f888 --- /dev/null +++ b/server508/data/mapdata/unpacked/10799.txt @@ -0,0 +1,4 @@ +1217726924 +398085963 +-1594428602 +886790463 diff --git a/server508/data/mapdata/unpacked/10800.txt b/server508/data/mapdata/unpacked/10800.txt new file mode 100644 index 0000000..82bfb6c --- /dev/null +++ b/server508/data/mapdata/unpacked/10800.txt @@ -0,0 +1,4 @@ +1040846845 +257923177 +-1680471073 +-1533314482 diff --git a/server508/data/mapdata/unpacked/10801.txt b/server508/data/mapdata/unpacked/10801.txt new file mode 100644 index 0000000..37e02f4 --- /dev/null +++ b/server508/data/mapdata/unpacked/10801.txt @@ -0,0 +1,4 @@ +850125851 +1199386038 +-1494136472 +-1487577933 diff --git a/server508/data/mapdata/unpacked/10802.txt b/server508/data/mapdata/unpacked/10802.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10802.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10803.txt b/server508/data/mapdata/unpacked/10803.txt new file mode 100644 index 0000000..1e93bae --- /dev/null +++ b/server508/data/mapdata/unpacked/10803.txt @@ -0,0 +1,4 @@ +-908501159 +530377273 +1209861824 +-1701587400 diff --git a/server508/data/mapdata/unpacked/10804.txt b/server508/data/mapdata/unpacked/10804.txt new file mode 100644 index 0000000..4c95230 --- /dev/null +++ b/server508/data/mapdata/unpacked/10804.txt @@ -0,0 +1,4 @@ +496609114 +11099629 +2106594439 +2046457738 diff --git a/server508/data/mapdata/unpacked/10805.txt b/server508/data/mapdata/unpacked/10805.txt new file mode 100644 index 0000000..5acd263 --- /dev/null +++ b/server508/data/mapdata/unpacked/10805.txt @@ -0,0 +1,4 @@ +-1168385071 +683797418 +469816742 +1479779110 diff --git a/server508/data/mapdata/unpacked/10806.txt b/server508/data/mapdata/unpacked/10806.txt new file mode 100644 index 0000000..6b93f31 --- /dev/null +++ b/server508/data/mapdata/unpacked/10806.txt @@ -0,0 +1,4 @@ +-365216858 +2132332817 +-883522084 +-392528253 diff --git a/server508/data/mapdata/unpacked/10807.txt b/server508/data/mapdata/unpacked/10807.txt new file mode 100644 index 0000000..389c484 --- /dev/null +++ b/server508/data/mapdata/unpacked/10807.txt @@ -0,0 +1,4 @@ +-1978433603 +-211738714 +1401562605 +-1310990578 diff --git a/server508/data/mapdata/unpacked/10808.txt b/server508/data/mapdata/unpacked/10808.txt new file mode 100644 index 0000000..1079b58 --- /dev/null +++ b/server508/data/mapdata/unpacked/10808.txt @@ -0,0 +1,4 @@ +-1264729881 +1766238888 +-244541987 +-605351538 diff --git a/server508/data/mapdata/unpacked/10809.txt b/server508/data/mapdata/unpacked/10809.txt new file mode 100644 index 0000000..a996deb --- /dev/null +++ b/server508/data/mapdata/unpacked/10809.txt @@ -0,0 +1,4 @@ +1586374012 +-258505553 +-528210036 +1595850453 diff --git a/server508/data/mapdata/unpacked/10810.txt b/server508/data/mapdata/unpacked/10810.txt new file mode 100644 index 0000000..afe405b --- /dev/null +++ b/server508/data/mapdata/unpacked/10810.txt @@ -0,0 +1,4 @@ +-2030061920 +-333031845 +-792169278 +597648394 diff --git a/server508/data/mapdata/unpacked/10811.txt b/server508/data/mapdata/unpacked/10811.txt new file mode 100644 index 0000000..afb9509 --- /dev/null +++ b/server508/data/mapdata/unpacked/10811.txt @@ -0,0 +1,5 @@ +-1788784737 +-1830208994 +935346396 +517118750 + diff --git a/server508/data/mapdata/unpacked/10812.txt b/server508/data/mapdata/unpacked/10812.txt new file mode 100644 index 0000000..bb1546b --- /dev/null +++ b/server508/data/mapdata/unpacked/10812.txt @@ -0,0 +1,4 @@ +90198727 +258723745 +748197903 +-426406231 diff --git a/server508/data/mapdata/unpacked/10813.txt b/server508/data/mapdata/unpacked/10813.txt new file mode 100644 index 0000000..2b20dce --- /dev/null +++ b/server508/data/mapdata/unpacked/10813.txt @@ -0,0 +1,4 @@ +78604466 +-1582607088 +691011324 +-1155733133 diff --git a/server508/data/mapdata/unpacked/10814.txt b/server508/data/mapdata/unpacked/10814.txt new file mode 100644 index 0000000..19349ff --- /dev/null +++ b/server508/data/mapdata/unpacked/10814.txt @@ -0,0 +1,4 @@ +707246869 +541333062 +-986248348 +-171063894 diff --git a/server508/data/mapdata/unpacked/10815.txt b/server508/data/mapdata/unpacked/10815.txt new file mode 100644 index 0000000..271d05c --- /dev/null +++ b/server508/data/mapdata/unpacked/10815.txt @@ -0,0 +1,4 @@ +2102925673 +1133406202 +-1885710196 +165240951 diff --git a/server508/data/mapdata/unpacked/10821.txt b/server508/data/mapdata/unpacked/10821.txt new file mode 100644 index 0000000..6ac0ca5 --- /dev/null +++ b/server508/data/mapdata/unpacked/10821.txt @@ -0,0 +1,4 @@ +547864979 +703484266 +-571616416 +-1277862770 diff --git a/server508/data/mapdata/unpacked/10822.txt b/server508/data/mapdata/unpacked/10822.txt new file mode 100644 index 0000000..9e4a9d1 --- /dev/null +++ b/server508/data/mapdata/unpacked/10822.txt @@ -0,0 +1,4 @@ +147390427 +1823879919 +432432207 +-1107512174 diff --git a/server508/data/mapdata/unpacked/10823.txt b/server508/data/mapdata/unpacked/10823.txt new file mode 100644 index 0000000..cf022b3 --- /dev/null +++ b/server508/data/mapdata/unpacked/10823.txt @@ -0,0 +1,4 @@ +-626951011 +-1729338061 +-758591782 +439072305 diff --git a/server508/data/mapdata/unpacked/10826.txt b/server508/data/mapdata/unpacked/10826.txt new file mode 100644 index 0000000..0eb89a8 --- /dev/null +++ b/server508/data/mapdata/unpacked/10826.txt @@ -0,0 +1,4 @@ +-1930228005 +99338983 +-859455367 +-950728993 diff --git a/server508/data/mapdata/unpacked/10827.txt b/server508/data/mapdata/unpacked/10827.txt new file mode 100644 index 0000000..7172142 --- /dev/null +++ b/server508/data/mapdata/unpacked/10827.txt @@ -0,0 +1,4 @@ +1032543297 +-526372126 +1157124086 +-623019107 diff --git a/server508/data/mapdata/unpacked/10828.txt b/server508/data/mapdata/unpacked/10828.txt new file mode 100644 index 0000000..6f6d7bf --- /dev/null +++ b/server508/data/mapdata/unpacked/10828.txt @@ -0,0 +1,4 @@ +-491073456 +-291563958 +1576425190 +-1166036968 diff --git a/server508/data/mapdata/unpacked/10829.txt b/server508/data/mapdata/unpacked/10829.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10829.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10836.txt b/server508/data/mapdata/unpacked/10836.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10836.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10837.txt b/server508/data/mapdata/unpacked/10837.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10837.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10838.txt b/server508/data/mapdata/unpacked/10838.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/10838.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/10839.txt b/server508/data/mapdata/unpacked/10839.txt new file mode 100644 index 0000000..0c4a86f --- /dev/null +++ b/server508/data/mapdata/unpacked/10839.txt @@ -0,0 +1,5 @@ +-885801393 +-721089484 +-1671928660 +-391245118 + diff --git a/server508/data/mapdata/unpacked/10840.txt b/server508/data/mapdata/unpacked/10840.txt new file mode 100644 index 0000000..1365fd0 --- /dev/null +++ b/server508/data/mapdata/unpacked/10840.txt @@ -0,0 +1,5 @@ +-2112185519 +-1346264110 +624078956 +-426600771 + diff --git a/server508/data/mapdata/unpacked/10841.txt b/server508/data/mapdata/unpacked/10841.txt new file mode 100644 index 0000000..98821d3 --- /dev/null +++ b/server508/data/mapdata/unpacked/10841.txt @@ -0,0 +1,5 @@ +1553036338 +2006573090 +816979270 +1677882458 + diff --git a/server508/data/mapdata/unpacked/10842.txt b/server508/data/mapdata/unpacked/10842.txt new file mode 100644 index 0000000..9dab5f2 --- /dev/null +++ b/server508/data/mapdata/unpacked/10842.txt @@ -0,0 +1,5 @@ +89140380 +-204251076 +-1595945414 +1904801559 + diff --git a/server508/data/mapdata/unpacked/10843.txt b/server508/data/mapdata/unpacked/10843.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/10843.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/10893.txt b/server508/data/mapdata/unpacked/10893.txt new file mode 100644 index 0000000..5678128 --- /dev/null +++ b/server508/data/mapdata/unpacked/10893.txt @@ -0,0 +1,4 @@ +-645277901 +-963804189 +-1583950082 +1158107798 diff --git a/server508/data/mapdata/unpacked/10894.txt b/server508/data/mapdata/unpacked/10894.txt new file mode 100644 index 0000000..b74f45a --- /dev/null +++ b/server508/data/mapdata/unpacked/10894.txt @@ -0,0 +1,4 @@ +344355193 +729779647 +-822390098 +-250999551 diff --git a/server508/data/mapdata/unpacked/10895.txt b/server508/data/mapdata/unpacked/10895.txt new file mode 100644 index 0000000..91d57ee --- /dev/null +++ b/server508/data/mapdata/unpacked/10895.txt @@ -0,0 +1,4 @@ +-1619980560 +1550517797 +1634164302 +-207604419 diff --git a/server508/data/mapdata/unpacked/10897.txt b/server508/data/mapdata/unpacked/10897.txt new file mode 100644 index 0000000..d496fd2 --- /dev/null +++ b/server508/data/mapdata/unpacked/10897.txt @@ -0,0 +1,4 @@ +-532884907 +-856360437 +-1856255648 +-108994584 diff --git a/server508/data/mapdata/unpacked/10898.txt b/server508/data/mapdata/unpacked/10898.txt new file mode 100644 index 0000000..ffab120 --- /dev/null +++ b/server508/data/mapdata/unpacked/10898.txt @@ -0,0 +1,4 @@ +1997981354 +1569532835 +1920365312 +579258114 diff --git a/server508/data/mapdata/unpacked/10899.txt b/server508/data/mapdata/unpacked/10899.txt new file mode 100644 index 0000000..eb5531f --- /dev/null +++ b/server508/data/mapdata/unpacked/10899.txt @@ -0,0 +1,4 @@ +889615956 +-1979547812 +1134305624 +56186568 diff --git a/server508/data/mapdata/unpacked/10900.txt b/server508/data/mapdata/unpacked/10900.txt new file mode 100644 index 0000000..fdb66eb --- /dev/null +++ b/server508/data/mapdata/unpacked/10900.txt @@ -0,0 +1,4 @@ +-1475778003 +1161941178 +-130498235 +-281971512 diff --git a/server508/data/mapdata/unpacked/10901.txt b/server508/data/mapdata/unpacked/10901.txt new file mode 100644 index 0000000..df4e5c1 --- /dev/null +++ b/server508/data/mapdata/unpacked/10901.txt @@ -0,0 +1,4 @@ +675683066 +1081382157 +224642530 +-1939264495 diff --git a/server508/data/mapdata/unpacked/10902.txt b/server508/data/mapdata/unpacked/10902.txt new file mode 100644 index 0000000..51ded5f --- /dev/null +++ b/server508/data/mapdata/unpacked/10902.txt @@ -0,0 +1,4 @@ +1363034505 +1752486270 +-64629826 +1887223207 diff --git a/server508/data/mapdata/unpacked/10903.txt b/server508/data/mapdata/unpacked/10903.txt new file mode 100644 index 0000000..9b41dda --- /dev/null +++ b/server508/data/mapdata/unpacked/10903.txt @@ -0,0 +1,4 @@ +-1670827594 +1280370415 +789868677 +2002317267 diff --git a/server508/data/mapdata/unpacked/10904.txt b/server508/data/mapdata/unpacked/10904.txt new file mode 100644 index 0000000..520900f --- /dev/null +++ b/server508/data/mapdata/unpacked/10904.txt @@ -0,0 +1,4 @@ +-275061067 +1527943046 +1660873402 +-995392725 diff --git a/server508/data/mapdata/unpacked/10905.txt b/server508/data/mapdata/unpacked/10905.txt new file mode 100644 index 0000000..951ef9f --- /dev/null +++ b/server508/data/mapdata/unpacked/10905.txt @@ -0,0 +1,4 @@ +-497752960 +1878560476 +1029015036 +1182349391 diff --git a/server508/data/mapdata/unpacked/10906.txt b/server508/data/mapdata/unpacked/10906.txt new file mode 100644 index 0000000..2236b05 --- /dev/null +++ b/server508/data/mapdata/unpacked/10906.txt @@ -0,0 +1,4 @@ +-1078751493 +160151975 +937918565 +-1173346878 diff --git a/server508/data/mapdata/unpacked/10907.txt b/server508/data/mapdata/unpacked/10907.txt new file mode 100644 index 0000000..4e61f1b --- /dev/null +++ b/server508/data/mapdata/unpacked/10907.txt @@ -0,0 +1,4 @@ +1703225431 +-1175749730 +1842579622 +-1861290070 diff --git a/server508/data/mapdata/unpacked/10908.txt b/server508/data/mapdata/unpacked/10908.txt new file mode 100644 index 0000000..7436275 --- /dev/null +++ b/server508/data/mapdata/unpacked/10908.txt @@ -0,0 +1,4 @@ +431517668 +-2097250965 +34084015 +1544143565 diff --git a/server508/data/mapdata/unpacked/10909.txt b/server508/data/mapdata/unpacked/10909.txt new file mode 100644 index 0000000..2486748 --- /dev/null +++ b/server508/data/mapdata/unpacked/10909.txt @@ -0,0 +1,4 @@ +1594286276 +-309059362 +519622640 +-2072561673 diff --git a/server508/data/mapdata/unpacked/10910.txt b/server508/data/mapdata/unpacked/10910.txt new file mode 100644 index 0000000..276ed8c --- /dev/null +++ b/server508/data/mapdata/unpacked/10910.txt @@ -0,0 +1,4 @@ +326593287 +-1829659775 +1386315316 +11696136 diff --git a/server508/data/mapdata/unpacked/10911.txt b/server508/data/mapdata/unpacked/10911.txt new file mode 100644 index 0000000..e56953d --- /dev/null +++ b/server508/data/mapdata/unpacked/10911.txt @@ -0,0 +1,4 @@ +948965123 +-545528654 +-459191491 +-860302360 diff --git a/server508/data/mapdata/unpacked/11049.txt b/server508/data/mapdata/unpacked/11049.txt new file mode 100644 index 0000000..f84c4f9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11049.txt @@ -0,0 +1,4 @@ +-621090199 +-1004888612 +-749707219 +2052444337 diff --git a/server508/data/mapdata/unpacked/11050.txt b/server508/data/mapdata/unpacked/11050.txt new file mode 100644 index 0000000..678bcac --- /dev/null +++ b/server508/data/mapdata/unpacked/11050.txt @@ -0,0 +1,4 @@ +-702464678 +618522766 +2008398011 +-1159688096 diff --git a/server508/data/mapdata/unpacked/11051.txt b/server508/data/mapdata/unpacked/11051.txt new file mode 100644 index 0000000..48ed34a --- /dev/null +++ b/server508/data/mapdata/unpacked/11051.txt @@ -0,0 +1,4 @@ +-296929555 +609763351 +-2080091577 +-1042760897 diff --git a/server508/data/mapdata/unpacked/11052.txt b/server508/data/mapdata/unpacked/11052.txt new file mode 100644 index 0000000..e87b913 --- /dev/null +++ b/server508/data/mapdata/unpacked/11052.txt @@ -0,0 +1,4 @@ +288578281 +-2129494488 +774599960 +-1782292467 diff --git a/server508/data/mapdata/unpacked/11053.txt b/server508/data/mapdata/unpacked/11053.txt new file mode 100644 index 0000000..05b748f --- /dev/null +++ b/server508/data/mapdata/unpacked/11053.txt @@ -0,0 +1,4 @@ +280137623 +-2139580445 +-1330319011 +-597364950 diff --git a/server508/data/mapdata/unpacked/11054.txt b/server508/data/mapdata/unpacked/11054.txt new file mode 100644 index 0000000..65651f3 --- /dev/null +++ b/server508/data/mapdata/unpacked/11054.txt @@ -0,0 +1,4 @@ +-1668355981 +-1569925814 +-994250231 +-2107802880 diff --git a/server508/data/mapdata/unpacked/11055.txt b/server508/data/mapdata/unpacked/11055.txt new file mode 100644 index 0000000..29de65a --- /dev/null +++ b/server508/data/mapdata/unpacked/11055.txt @@ -0,0 +1,4 @@ +-1864038826 +-1572256332 +1010253903 +-629580477 diff --git a/server508/data/mapdata/unpacked/11056.txt b/server508/data/mapdata/unpacked/11056.txt new file mode 100644 index 0000000..fc371cb --- /dev/null +++ b/server508/data/mapdata/unpacked/11056.txt @@ -0,0 +1,5 @@ +586603045 +-1372686256 +-613468106 +-880804910 + diff --git a/server508/data/mapdata/unpacked/11057.txt b/server508/data/mapdata/unpacked/11057.txt new file mode 100644 index 0000000..1223911 --- /dev/null +++ b/server508/data/mapdata/unpacked/11057.txt @@ -0,0 +1,5 @@ +-1440593954 +254273394 +1482784854 +-1558110963 + diff --git a/server508/data/mapdata/unpacked/11058.txt b/server508/data/mapdata/unpacked/11058.txt new file mode 100644 index 0000000..bc6ca11 --- /dev/null +++ b/server508/data/mapdata/unpacked/11058.txt @@ -0,0 +1,4 @@ +-721937224 +-607011472 +-1902697586 +959894629 diff --git a/server508/data/mapdata/unpacked/11059.txt b/server508/data/mapdata/unpacked/11059.txt new file mode 100644 index 0000000..54519fd --- /dev/null +++ b/server508/data/mapdata/unpacked/11059.txt @@ -0,0 +1,4 @@ +-1379234654 +-567015201 +-213396057 +-1450244676 diff --git a/server508/data/mapdata/unpacked/11060.txt b/server508/data/mapdata/unpacked/11060.txt new file mode 100644 index 0000000..8aaed98 --- /dev/null +++ b/server508/data/mapdata/unpacked/11060.txt @@ -0,0 +1,4 @@ +1341887290 +-1539014214 +-2027023574 +329166812 diff --git a/server508/data/mapdata/unpacked/11061.txt b/server508/data/mapdata/unpacked/11061.txt new file mode 100644 index 0000000..a5ea4b8 --- /dev/null +++ b/server508/data/mapdata/unpacked/11061.txt @@ -0,0 +1,4 @@ +-1463173692 +-1310713338 +-612852055 +-313773766 diff --git a/server508/data/mapdata/unpacked/11062.txt b/server508/data/mapdata/unpacked/11062.txt new file mode 100644 index 0000000..5fe0165 --- /dev/null +++ b/server508/data/mapdata/unpacked/11062.txt @@ -0,0 +1,4 @@ +-1677866258 +-63009182 +-773454714 +-1193903121 diff --git a/server508/data/mapdata/unpacked/11063.txt b/server508/data/mapdata/unpacked/11063.txt new file mode 100644 index 0000000..229a09c --- /dev/null +++ b/server508/data/mapdata/unpacked/11063.txt @@ -0,0 +1,4 @@ +-64230628 +1920227716 +1652611857 +-856220145 diff --git a/server508/data/mapdata/unpacked/11064.txt b/server508/data/mapdata/unpacked/11064.txt new file mode 100644 index 0000000..34df4cd --- /dev/null +++ b/server508/data/mapdata/unpacked/11064.txt @@ -0,0 +1,4 @@ +564384282 +-709585243 +1613220025 +-1038354302 diff --git a/server508/data/mapdata/unpacked/11065.txt b/server508/data/mapdata/unpacked/11065.txt new file mode 100644 index 0000000..29fbeb7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11065.txt @@ -0,0 +1,5 @@ +1933481202 +893646018 +1177862990 +1245692325 + diff --git a/server508/data/mapdata/unpacked/11066.txt b/server508/data/mapdata/unpacked/11066.txt new file mode 100644 index 0000000..21e54ea --- /dev/null +++ b/server508/data/mapdata/unpacked/11066.txt @@ -0,0 +1,5 @@ +291008624 +-1992710142 +-1831766032 +1925022398 + diff --git a/server508/data/mapdata/unpacked/11067.txt b/server508/data/mapdata/unpacked/11067.txt new file mode 100644 index 0000000..63da60a --- /dev/null +++ b/server508/data/mapdata/unpacked/11067.txt @@ -0,0 +1,5 @@ +1192664190 +-341042618 +-820464572 +602716622 + diff --git a/server508/data/mapdata/unpacked/11068.txt b/server508/data/mapdata/unpacked/11068.txt new file mode 100644 index 0000000..2277ca6 --- /dev/null +++ b/server508/data/mapdata/unpacked/11068.txt @@ -0,0 +1,4 @@ +1956851882 +1582504141 +-1090835806 +1413275925 diff --git a/server508/data/mapdata/unpacked/11082.txt b/server508/data/mapdata/unpacked/11082.txt new file mode 100644 index 0000000..626ecc4 --- /dev/null +++ b/server508/data/mapdata/unpacked/11082.txt @@ -0,0 +1,4 @@ +-1048566284 +-1888694855 +1387988701 +1385807517 diff --git a/server508/data/mapdata/unpacked/11083.txt b/server508/data/mapdata/unpacked/11083.txt new file mode 100644 index 0000000..59ff0db --- /dev/null +++ b/server508/data/mapdata/unpacked/11083.txt @@ -0,0 +1,4 @@ +1255503855 +-674022312 +-807132804 +-1287799121 diff --git a/server508/data/mapdata/unpacked/11084.txt b/server508/data/mapdata/unpacked/11084.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11084.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11085.txt b/server508/data/mapdata/unpacked/11085.txt new file mode 100644 index 0000000..cf0cf46 --- /dev/null +++ b/server508/data/mapdata/unpacked/11085.txt @@ -0,0 +1,5 @@ +327229160 +-1433790638 +1944433240 +234034136 + diff --git a/server508/data/mapdata/unpacked/11089.txt b/server508/data/mapdata/unpacked/11089.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11089.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11090.txt b/server508/data/mapdata/unpacked/11090.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11090.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11091.txt b/server508/data/mapdata/unpacked/11091.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11091.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11092.txt b/server508/data/mapdata/unpacked/11092.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11092.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11093.txt b/server508/data/mapdata/unpacked/11093.txt new file mode 100644 index 0000000..f270de9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11093.txt @@ -0,0 +1,4 @@ +1847368237 +-210754308 +1021106744 +-882910534 diff --git a/server508/data/mapdata/unpacked/11094.txt b/server508/data/mapdata/unpacked/11094.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11094.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11095.txt b/server508/data/mapdata/unpacked/11095.txt new file mode 100644 index 0000000..810feb7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11095.txt @@ -0,0 +1,5 @@ +-1020136454 +1747944725 +1987554618 +-1828989591 + diff --git a/server508/data/mapdata/unpacked/11096.txt b/server508/data/mapdata/unpacked/11096.txt new file mode 100644 index 0000000..7c08b5e --- /dev/null +++ b/server508/data/mapdata/unpacked/11096.txt @@ -0,0 +1,5 @@ +-592943404 +1816311621 +-1394660709 +-627674752 + diff --git a/server508/data/mapdata/unpacked/11097.txt b/server508/data/mapdata/unpacked/11097.txt new file mode 100644 index 0000000..a13dbe7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11097.txt @@ -0,0 +1,5 @@ +475166922 +1503166866 +-1819732882 +2126974237 + diff --git a/server508/data/mapdata/unpacked/11098.txt b/server508/data/mapdata/unpacked/11098.txt new file mode 100644 index 0000000..d348682 --- /dev/null +++ b/server508/data/mapdata/unpacked/11098.txt @@ -0,0 +1,5 @@ +79370033 +-1930799782 +2111330013 +1328665449 + diff --git a/server508/data/mapdata/unpacked/11099.txt b/server508/data/mapdata/unpacked/11099.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11099.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11149.txt b/server508/data/mapdata/unpacked/11149.txt new file mode 100644 index 0000000..cc19bae --- /dev/null +++ b/server508/data/mapdata/unpacked/11149.txt @@ -0,0 +1,4 @@ +-673407424 +-459515480 +-1880462863 +2096963221 diff --git a/server508/data/mapdata/unpacked/11150.txt b/server508/data/mapdata/unpacked/11150.txt new file mode 100644 index 0000000..8a9c0ac --- /dev/null +++ b/server508/data/mapdata/unpacked/11150.txt @@ -0,0 +1,4 @@ +685385874 +67618271 +-450250419 +-2086862875 diff --git a/server508/data/mapdata/unpacked/11151.txt b/server508/data/mapdata/unpacked/11151.txt new file mode 100644 index 0000000..5f458a9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11151.txt @@ -0,0 +1,4 @@ +712251572 +-97105648 +-615552291 +-1419987674 diff --git a/server508/data/mapdata/unpacked/11154.txt b/server508/data/mapdata/unpacked/11154.txt new file mode 100644 index 0000000..65d0baf --- /dev/null +++ b/server508/data/mapdata/unpacked/11154.txt @@ -0,0 +1,4 @@ +-1390672245 +-294524193 +1901848082 +-1240329686 diff --git a/server508/data/mapdata/unpacked/11155.txt b/server508/data/mapdata/unpacked/11155.txt new file mode 100644 index 0000000..c1d40b1 --- /dev/null +++ b/server508/data/mapdata/unpacked/11155.txt @@ -0,0 +1,4 @@ +740691311 +-158757873 +133181481 +775561317 diff --git a/server508/data/mapdata/unpacked/11156.txt b/server508/data/mapdata/unpacked/11156.txt new file mode 100644 index 0000000..79e027f --- /dev/null +++ b/server508/data/mapdata/unpacked/11156.txt @@ -0,0 +1,5 @@ +-122332432 +-2135770681 +826741763 +-578793086 + diff --git a/server508/data/mapdata/unpacked/11157.txt b/server508/data/mapdata/unpacked/11157.txt new file mode 100644 index 0000000..6059e41 --- /dev/null +++ b/server508/data/mapdata/unpacked/11157.txt @@ -0,0 +1,5 @@ +-1366388735 +-378058761 +-1560378292 +-1001591092 + diff --git a/server508/data/mapdata/unpacked/11158.txt b/server508/data/mapdata/unpacked/11158.txt new file mode 100644 index 0000000..ad20e7e --- /dev/null +++ b/server508/data/mapdata/unpacked/11158.txt @@ -0,0 +1,5 @@ +160361538 +733169435 +1244326761 +1681727551 + diff --git a/server508/data/mapdata/unpacked/11159.txt b/server508/data/mapdata/unpacked/11159.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11159.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11160.txt b/server508/data/mapdata/unpacked/11160.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11160.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11161.txt b/server508/data/mapdata/unpacked/11161.txt new file mode 100644 index 0000000..cf073f3 --- /dev/null +++ b/server508/data/mapdata/unpacked/11161.txt @@ -0,0 +1,4 @@ +-1713920755 +1291269906 +320754968 +741637543 diff --git a/server508/data/mapdata/unpacked/11162.txt b/server508/data/mapdata/unpacked/11162.txt new file mode 100644 index 0000000..2cfc2c4 --- /dev/null +++ b/server508/data/mapdata/unpacked/11162.txt @@ -0,0 +1,4 @@ +-2108680437 +-1260585402 +-1400451285 +2023092270 diff --git a/server508/data/mapdata/unpacked/11163.txt b/server508/data/mapdata/unpacked/11163.txt new file mode 100644 index 0000000..b02626f --- /dev/null +++ b/server508/data/mapdata/unpacked/11163.txt @@ -0,0 +1,4 @@ +-1890796698 +-611617711 +-1429163994 +-740772710 diff --git a/server508/data/mapdata/unpacked/11164.txt b/server508/data/mapdata/unpacked/11164.txt new file mode 100644 index 0000000..de40ab9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11164.txt @@ -0,0 +1,4 @@ +1383409513 +-523880838 +-1467314279 +561324051 diff --git a/server508/data/mapdata/unpacked/11165.txt b/server508/data/mapdata/unpacked/11165.txt new file mode 100644 index 0000000..cc772b1 --- /dev/null +++ b/server508/data/mapdata/unpacked/11165.txt @@ -0,0 +1,4 @@ +2030447491 +-221728153 +-1253772644 +540784308 diff --git a/server508/data/mapdata/unpacked/11166.txt b/server508/data/mapdata/unpacked/11166.txt new file mode 100644 index 0000000..b2f494e --- /dev/null +++ b/server508/data/mapdata/unpacked/11166.txt @@ -0,0 +1,4 @@ +1534808050 +-1895827266 +489865723 +1605171942 diff --git a/server508/data/mapdata/unpacked/11167.txt b/server508/data/mapdata/unpacked/11167.txt new file mode 100644 index 0000000..a6a529b --- /dev/null +++ b/server508/data/mapdata/unpacked/11167.txt @@ -0,0 +1,4 @@ +-1735216162 +2141149053 +57787230 +-1263840909 diff --git a/server508/data/mapdata/unpacked/11168.txt b/server508/data/mapdata/unpacked/11168.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11168.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11305.txt b/server508/data/mapdata/unpacked/11305.txt new file mode 100644 index 0000000..4747200 --- /dev/null +++ b/server508/data/mapdata/unpacked/11305.txt @@ -0,0 +1,4 @@ +-1429346525 +-118378130 +1002549662 +1383588995 diff --git a/server508/data/mapdata/unpacked/11306.txt b/server508/data/mapdata/unpacked/11306.txt new file mode 100644 index 0000000..b4c7a80 --- /dev/null +++ b/server508/data/mapdata/unpacked/11306.txt @@ -0,0 +1,4 @@ +-215265871 +-2043332955 +304105107 +1443631953 diff --git a/server508/data/mapdata/unpacked/11307.txt b/server508/data/mapdata/unpacked/11307.txt new file mode 100644 index 0000000..1e767a6 --- /dev/null +++ b/server508/data/mapdata/unpacked/11307.txt @@ -0,0 +1,4 @@ +-530572214 +1137382838 +1524205137 +-1364477332 diff --git a/server508/data/mapdata/unpacked/11308.txt b/server508/data/mapdata/unpacked/11308.txt new file mode 100644 index 0000000..97b83b6 --- /dev/null +++ b/server508/data/mapdata/unpacked/11308.txt @@ -0,0 +1,4 @@ +313027206 +-1690946376 +-43334224 +216984734 diff --git a/server508/data/mapdata/unpacked/11309.txt b/server508/data/mapdata/unpacked/11309.txt new file mode 100644 index 0000000..3588ef7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11309.txt @@ -0,0 +1,4 @@ +480918720 +-1760104027 +-1096191521 +-1751168810 diff --git a/server508/data/mapdata/unpacked/11310.txt b/server508/data/mapdata/unpacked/11310.txt new file mode 100644 index 0000000..111b95a --- /dev/null +++ b/server508/data/mapdata/unpacked/11310.txt @@ -0,0 +1,4 @@ +-1281102836 +1026226838 +2134114426 +2142506383 diff --git a/server508/data/mapdata/unpacked/11311.txt b/server508/data/mapdata/unpacked/11311.txt new file mode 100644 index 0000000..c5ffbf7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11311.txt @@ -0,0 +1,4 @@ +2122993198 +-483099438 +-1947019175 +453102954 diff --git a/server508/data/mapdata/unpacked/11312.txt b/server508/data/mapdata/unpacked/11312.txt new file mode 100644 index 0000000..9ad2487 --- /dev/null +++ b/server508/data/mapdata/unpacked/11312.txt @@ -0,0 +1,5 @@ +-147633204 +-1155755001 +1735095309 +-653862467 + diff --git a/server508/data/mapdata/unpacked/11313.txt b/server508/data/mapdata/unpacked/11313.txt new file mode 100644 index 0000000..faac874 --- /dev/null +++ b/server508/data/mapdata/unpacked/11313.txt @@ -0,0 +1,5 @@ +910266570 +2031866974 +-1478026252 +-1294052037 + diff --git a/server508/data/mapdata/unpacked/11314.txt b/server508/data/mapdata/unpacked/11314.txt new file mode 100644 index 0000000..230eac9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11314.txt @@ -0,0 +1,4 @@ +1798320089 +-1598590173 +-1563649785 +173183318 diff --git a/server508/data/mapdata/unpacked/11315.txt b/server508/data/mapdata/unpacked/11315.txt new file mode 100644 index 0000000..1c5fc35 --- /dev/null +++ b/server508/data/mapdata/unpacked/11315.txt @@ -0,0 +1,4 @@ +669874829 +-776374692 +-285442682 +-2063742845 diff --git a/server508/data/mapdata/unpacked/11316.txt b/server508/data/mapdata/unpacked/11316.txt new file mode 100644 index 0000000..8b21ee2 --- /dev/null +++ b/server508/data/mapdata/unpacked/11316.txt @@ -0,0 +1,4 @@ +-2133481275 +1183956887 +-282614520 +-1763887981 diff --git a/server508/data/mapdata/unpacked/11317.txt b/server508/data/mapdata/unpacked/11317.txt new file mode 100644 index 0000000..885114e --- /dev/null +++ b/server508/data/mapdata/unpacked/11317.txt @@ -0,0 +1,4 @@ +889538085 +-19850590 +2140570992 +-1106236383 diff --git a/server508/data/mapdata/unpacked/11318.txt b/server508/data/mapdata/unpacked/11318.txt new file mode 100644 index 0000000..9e3f610 --- /dev/null +++ b/server508/data/mapdata/unpacked/11318.txt @@ -0,0 +1,4 @@ +-475218310 +1398120898 +1569167726 +537386024 diff --git a/server508/data/mapdata/unpacked/11319.txt b/server508/data/mapdata/unpacked/11319.txt new file mode 100644 index 0000000..7bc7012 --- /dev/null +++ b/server508/data/mapdata/unpacked/11319.txt @@ -0,0 +1,4 @@ +-622347629 +-491154760 +388978769 +1512514194 diff --git a/server508/data/mapdata/unpacked/11320.txt b/server508/data/mapdata/unpacked/11320.txt new file mode 100644 index 0000000..f26bf64 --- /dev/null +++ b/server508/data/mapdata/unpacked/11320.txt @@ -0,0 +1,4 @@ +-346856430 +-716818566 +-1629533789 +-835719555 diff --git a/server508/data/mapdata/unpacked/11321.txt b/server508/data/mapdata/unpacked/11321.txt new file mode 100644 index 0000000..2480e81 --- /dev/null +++ b/server508/data/mapdata/unpacked/11321.txt @@ -0,0 +1,4 @@ +828395259 +2109512900 +-1584899751 +-1558023230 diff --git a/server508/data/mapdata/unpacked/11322.txt b/server508/data/mapdata/unpacked/11322.txt new file mode 100644 index 0000000..dd4814d --- /dev/null +++ b/server508/data/mapdata/unpacked/11322.txt @@ -0,0 +1,4 @@ +-1539862936 +-1377050431 +1392963326 +-711921559 diff --git a/server508/data/mapdata/unpacked/11323.txt b/server508/data/mapdata/unpacked/11323.txt new file mode 100644 index 0000000..2092d93 --- /dev/null +++ b/server508/data/mapdata/unpacked/11323.txt @@ -0,0 +1,4 @@ +-1710808226 +725482732 +1863997544 +5983834 diff --git a/server508/data/mapdata/unpacked/11332.txt b/server508/data/mapdata/unpacked/11332.txt new file mode 100644 index 0000000..e3550fc --- /dev/null +++ b/server508/data/mapdata/unpacked/11332.txt @@ -0,0 +1,4 @@ +-936631483 +-1093055133 +-161202591 +-1476364681 diff --git a/server508/data/mapdata/unpacked/11333.txt b/server508/data/mapdata/unpacked/11333.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11333.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11334.txt b/server508/data/mapdata/unpacked/11334.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11334.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11338.txt b/server508/data/mapdata/unpacked/11338.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11338.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11339.txt b/server508/data/mapdata/unpacked/11339.txt new file mode 100644 index 0000000..02fbe69 --- /dev/null +++ b/server508/data/mapdata/unpacked/11339.txt @@ -0,0 +1,4 @@ +-1717666269 +1594420520 +-1751131464 +-154240780 diff --git a/server508/data/mapdata/unpacked/11340.txt b/server508/data/mapdata/unpacked/11340.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11340.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11345.txt b/server508/data/mapdata/unpacked/11345.txt new file mode 100644 index 0000000..e23610a --- /dev/null +++ b/server508/data/mapdata/unpacked/11345.txt @@ -0,0 +1,4 @@ +-1311889529 +-1925291147 +-1246770062 +-343643022 diff --git a/server508/data/mapdata/unpacked/11346.txt b/server508/data/mapdata/unpacked/11346.txt new file mode 100644 index 0000000..7406a92 --- /dev/null +++ b/server508/data/mapdata/unpacked/11346.txt @@ -0,0 +1,4 @@ +-750575261 +-297404295 +354820348 +2031661388 diff --git a/server508/data/mapdata/unpacked/11347.txt b/server508/data/mapdata/unpacked/11347.txt new file mode 100644 index 0000000..16f1a30 --- /dev/null +++ b/server508/data/mapdata/unpacked/11347.txt @@ -0,0 +1,4 @@ +-122396964 +-1996200666 +-585000602 +-863390951 diff --git a/server508/data/mapdata/unpacked/11348.txt b/server508/data/mapdata/unpacked/11348.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11348.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11349.txt b/server508/data/mapdata/unpacked/11349.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11349.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11350.txt b/server508/data/mapdata/unpacked/11350.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11350.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11351.txt b/server508/data/mapdata/unpacked/11351.txt new file mode 100644 index 0000000..c479dc3 --- /dev/null +++ b/server508/data/mapdata/unpacked/11351.txt @@ -0,0 +1,5 @@ +-1227666214 +990739070 +758255446 +-410679401 + diff --git a/server508/data/mapdata/unpacked/11352.txt b/server508/data/mapdata/unpacked/11352.txt new file mode 100644 index 0000000..85a978e --- /dev/null +++ b/server508/data/mapdata/unpacked/11352.txt @@ -0,0 +1,5 @@ +-76693830 +-865206807 +384409960 +1285997763 + diff --git a/server508/data/mapdata/unpacked/11353.txt b/server508/data/mapdata/unpacked/11353.txt new file mode 100644 index 0000000..0dfba8f --- /dev/null +++ b/server508/data/mapdata/unpacked/11353.txt @@ -0,0 +1,5 @@ +1903451400 +172495816 +-26951355 +-2020198034 + diff --git a/server508/data/mapdata/unpacked/11354.txt b/server508/data/mapdata/unpacked/11354.txt new file mode 100644 index 0000000..e7f573f --- /dev/null +++ b/server508/data/mapdata/unpacked/11354.txt @@ -0,0 +1,5 @@ +-104997214 +-1634014788 +-392797186 +-941769095 + diff --git a/server508/data/mapdata/unpacked/11355.txt b/server508/data/mapdata/unpacked/11355.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11355.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11405.txt b/server508/data/mapdata/unpacked/11405.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11405.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11406.txt b/server508/data/mapdata/unpacked/11406.txt new file mode 100644 index 0000000..e058b4c --- /dev/null +++ b/server508/data/mapdata/unpacked/11406.txt @@ -0,0 +1,4 @@ +375301159 +353365492 +-940259891 +-223647771 diff --git a/server508/data/mapdata/unpacked/11407.txt b/server508/data/mapdata/unpacked/11407.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11407.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11412.txt b/server508/data/mapdata/unpacked/11412.txt new file mode 100644 index 0000000..61854ba --- /dev/null +++ b/server508/data/mapdata/unpacked/11412.txt @@ -0,0 +1,5 @@ +-1379772393 +621580805 +-316850307 +1026773740 + diff --git a/server508/data/mapdata/unpacked/11413.txt b/server508/data/mapdata/unpacked/11413.txt new file mode 100644 index 0000000..a821840 --- /dev/null +++ b/server508/data/mapdata/unpacked/11413.txt @@ -0,0 +1,5 @@ +1488866121 +-484754573 +-1471688962 +-511348808 + diff --git a/server508/data/mapdata/unpacked/11414.txt b/server508/data/mapdata/unpacked/11414.txt new file mode 100644 index 0000000..e31da7c --- /dev/null +++ b/server508/data/mapdata/unpacked/11414.txt @@ -0,0 +1,5 @@ +1377762353 +1699445159 +1913215037 +1606010259 + diff --git a/server508/data/mapdata/unpacked/11415.txt b/server508/data/mapdata/unpacked/11415.txt new file mode 100644 index 0000000..27fe7a3 --- /dev/null +++ b/server508/data/mapdata/unpacked/11415.txt @@ -0,0 +1,4 @@ +1136524726 +-1672016136 +-1498346497 +-1411607834 diff --git a/server508/data/mapdata/unpacked/11416.txt b/server508/data/mapdata/unpacked/11416.txt new file mode 100644 index 0000000..c861735 --- /dev/null +++ b/server508/data/mapdata/unpacked/11416.txt @@ -0,0 +1,4 @@ +1215843420 +1318007540 +-1188312703 +1304502523 diff --git a/server508/data/mapdata/unpacked/11417.txt b/server508/data/mapdata/unpacked/11417.txt new file mode 100644 index 0000000..b730b7f --- /dev/null +++ b/server508/data/mapdata/unpacked/11417.txt @@ -0,0 +1,4 @@ +1581021494 +-1994945510 +-177217961 +455201014 diff --git a/server508/data/mapdata/unpacked/11418.txt b/server508/data/mapdata/unpacked/11418.txt new file mode 100644 index 0000000..8e84f12 --- /dev/null +++ b/server508/data/mapdata/unpacked/11418.txt @@ -0,0 +1,4 @@ +1575194932 +942176306 +322039641 +-1504997696 diff --git a/server508/data/mapdata/unpacked/11419.txt b/server508/data/mapdata/unpacked/11419.txt new file mode 100644 index 0000000..dd41482 --- /dev/null +++ b/server508/data/mapdata/unpacked/11419.txt @@ -0,0 +1,4 @@ +-1254692109 +-721963897 +1982559036 +2090401358 diff --git a/server508/data/mapdata/unpacked/11420.txt b/server508/data/mapdata/unpacked/11420.txt new file mode 100644 index 0000000..658784f --- /dev/null +++ b/server508/data/mapdata/unpacked/11420.txt @@ -0,0 +1,4 @@ +1847735585 +-1694492924 +1127165320 +-479409843 diff --git a/server508/data/mapdata/unpacked/11421.txt b/server508/data/mapdata/unpacked/11421.txt new file mode 100644 index 0000000..f65bc7d --- /dev/null +++ b/server508/data/mapdata/unpacked/11421.txt @@ -0,0 +1,4 @@ +587585554 +1863910989 +1341753224 +1645770692 diff --git a/server508/data/mapdata/unpacked/11422.txt b/server508/data/mapdata/unpacked/11422.txt new file mode 100644 index 0000000..894fc39 --- /dev/null +++ b/server508/data/mapdata/unpacked/11422.txt @@ -0,0 +1,4 @@ +-843901847 +-337979146 +-867731076 +-342235410 diff --git a/server508/data/mapdata/unpacked/11423.txt b/server508/data/mapdata/unpacked/11423.txt new file mode 100644 index 0000000..54a9a62 --- /dev/null +++ b/server508/data/mapdata/unpacked/11423.txt @@ -0,0 +1,4 @@ +437777194 +-1226666437 +1806502066 +2032844071 diff --git a/server508/data/mapdata/unpacked/11424.txt b/server508/data/mapdata/unpacked/11424.txt new file mode 100644 index 0000000..376e028 --- /dev/null +++ b/server508/data/mapdata/unpacked/11424.txt @@ -0,0 +1,4 @@ +807879302 +-1555822450 +-271595686 +-1725049162 diff --git a/server508/data/mapdata/unpacked/11561.txt b/server508/data/mapdata/unpacked/11561.txt new file mode 100644 index 0000000..23cd40d --- /dev/null +++ b/server508/data/mapdata/unpacked/11561.txt @@ -0,0 +1,4 @@ +-591558979 +1108648192 +1263458446 +2058484886 diff --git a/server508/data/mapdata/unpacked/11562.txt b/server508/data/mapdata/unpacked/11562.txt new file mode 100644 index 0000000..9aed6ab --- /dev/null +++ b/server508/data/mapdata/unpacked/11562.txt @@ -0,0 +1,4 @@ +1623115614 +841254570 +365391355 +629444052 diff --git a/server508/data/mapdata/unpacked/11563.txt b/server508/data/mapdata/unpacked/11563.txt new file mode 100644 index 0000000..0bf7f49 --- /dev/null +++ b/server508/data/mapdata/unpacked/11563.txt @@ -0,0 +1,4 @@ +-2086554592 +-933774380 +-1450605238 +-515013992 diff --git a/server508/data/mapdata/unpacked/11565.txt b/server508/data/mapdata/unpacked/11565.txt new file mode 100644 index 0000000..6e231d6 --- /dev/null +++ b/server508/data/mapdata/unpacked/11565.txt @@ -0,0 +1,4 @@ +-137041923 +-1569836238 +18743223 +-1472669397 diff --git a/server508/data/mapdata/unpacked/11566.txt b/server508/data/mapdata/unpacked/11566.txt new file mode 100644 index 0000000..278acab --- /dev/null +++ b/server508/data/mapdata/unpacked/11566.txt @@ -0,0 +1,4 @@ +575328672 +-285813481 +-1608888020 +-1018793466 diff --git a/server508/data/mapdata/unpacked/11567.txt b/server508/data/mapdata/unpacked/11567.txt new file mode 100644 index 0000000..30aad43 --- /dev/null +++ b/server508/data/mapdata/unpacked/11567.txt @@ -0,0 +1,4 @@ +-1044081427 +53182148 +606084353 +909523725 diff --git a/server508/data/mapdata/unpacked/11568.txt b/server508/data/mapdata/unpacked/11568.txt new file mode 100644 index 0000000..6c4acba --- /dev/null +++ b/server508/data/mapdata/unpacked/11568.txt @@ -0,0 +1,4 @@ +90223196 +-1877968085 +962102514 +1727463305 diff --git a/server508/data/mapdata/unpacked/11569.txt b/server508/data/mapdata/unpacked/11569.txt new file mode 100644 index 0000000..621ed28 --- /dev/null +++ b/server508/data/mapdata/unpacked/11569.txt @@ -0,0 +1,4 @@ +1995103132 +954046526 +-736090037 +-1261975818 diff --git a/server508/data/mapdata/unpacked/11570.txt b/server508/data/mapdata/unpacked/11570.txt new file mode 100644 index 0000000..b161e6f --- /dev/null +++ b/server508/data/mapdata/unpacked/11570.txt @@ -0,0 +1,4 @@ +72626709 +169568009 +1460540308 +-1127368900 diff --git a/server508/data/mapdata/unpacked/11571.txt b/server508/data/mapdata/unpacked/11571.txt new file mode 100644 index 0000000..33bab3f --- /dev/null +++ b/server508/data/mapdata/unpacked/11571.txt @@ -0,0 +1,4 @@ +54400904 +-1809593656 +-614456433 +1292808464 diff --git a/server508/data/mapdata/unpacked/11572.txt b/server508/data/mapdata/unpacked/11572.txt new file mode 100644 index 0000000..791af57 --- /dev/null +++ b/server508/data/mapdata/unpacked/11572.txt @@ -0,0 +1,4 @@ +892185929 +686162443 +1793819023 +-992991976 diff --git a/server508/data/mapdata/unpacked/11573.txt b/server508/data/mapdata/unpacked/11573.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11573.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11574.txt b/server508/data/mapdata/unpacked/11574.txt new file mode 100644 index 0000000..878179d --- /dev/null +++ b/server508/data/mapdata/unpacked/11574.txt @@ -0,0 +1,4 @@ +-296282437 +-741104844 +908104097 +-1672526085 diff --git a/server508/data/mapdata/unpacked/11575.txt b/server508/data/mapdata/unpacked/11575.txt new file mode 100644 index 0000000..1bf7d7d --- /dev/null +++ b/server508/data/mapdata/unpacked/11575.txt @@ -0,0 +1,4 @@ +1930987686 +-1436352789 +-756649311 +1312426091 diff --git a/server508/data/mapdata/unpacked/11576.txt b/server508/data/mapdata/unpacked/11576.txt new file mode 100644 index 0000000..502d577 --- /dev/null +++ b/server508/data/mapdata/unpacked/11576.txt @@ -0,0 +1,4 @@ +-653186907 +1743653193 +1590707166 +841079490 diff --git a/server508/data/mapdata/unpacked/11577.txt b/server508/data/mapdata/unpacked/11577.txt new file mode 100644 index 0000000..0ca1cbf --- /dev/null +++ b/server508/data/mapdata/unpacked/11577.txt @@ -0,0 +1,5 @@ +1198341022 +-300797227 +-1022034454 +-1184615997 + diff --git a/server508/data/mapdata/unpacked/11578.txt b/server508/data/mapdata/unpacked/11578.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11578.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11579.txt b/server508/data/mapdata/unpacked/11579.txt new file mode 100644 index 0000000..7f43555 --- /dev/null +++ b/server508/data/mapdata/unpacked/11579.txt @@ -0,0 +1,5 @@ +-1812176752 +-317754254 +-1196521232 +-764437892 + diff --git a/server508/data/mapdata/unpacked/11580.txt b/server508/data/mapdata/unpacked/11580.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11580.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11581.txt b/server508/data/mapdata/unpacked/11581.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11581.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11582.txt b/server508/data/mapdata/unpacked/11582.txt new file mode 100644 index 0000000..874b50c --- /dev/null +++ b/server508/data/mapdata/unpacked/11582.txt @@ -0,0 +1,4 @@ +602331327 +-1036793753 +1702673112 +-1107214996 diff --git a/server508/data/mapdata/unpacked/11588.txt b/server508/data/mapdata/unpacked/11588.txt new file mode 100644 index 0000000..76aaaea --- /dev/null +++ b/server508/data/mapdata/unpacked/11588.txt @@ -0,0 +1,4 @@ +-519511661 +-159682581 +-172209167 +-816666339 diff --git a/server508/data/mapdata/unpacked/11589.txt b/server508/data/mapdata/unpacked/11589.txt new file mode 100644 index 0000000..df69f95 --- /dev/null +++ b/server508/data/mapdata/unpacked/11589.txt @@ -0,0 +1,4 @@ +39678032 +469576041 +-1878694956 +-1720799345 diff --git a/server508/data/mapdata/unpacked/11590.txt b/server508/data/mapdata/unpacked/11590.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11590.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11592.txt b/server508/data/mapdata/unpacked/11592.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11592.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11593.txt b/server508/data/mapdata/unpacked/11593.txt new file mode 100644 index 0000000..efa2b95 --- /dev/null +++ b/server508/data/mapdata/unpacked/11593.txt @@ -0,0 +1,4 @@ +136840373 +783265137 +1845830981 +329025895 diff --git a/server508/data/mapdata/unpacked/11594.txt b/server508/data/mapdata/unpacked/11594.txt new file mode 100644 index 0000000..1e376b1 --- /dev/null +++ b/server508/data/mapdata/unpacked/11594.txt @@ -0,0 +1,4 @@ +-1428262178 +450178635 +-631904511 +1278816037 diff --git a/server508/data/mapdata/unpacked/11595.txt b/server508/data/mapdata/unpacked/11595.txt new file mode 100644 index 0000000..23699cc --- /dev/null +++ b/server508/data/mapdata/unpacked/11595.txt @@ -0,0 +1,4 @@ +-1497259084 +-1208341848 +874209282 +-1950133061 diff --git a/server508/data/mapdata/unpacked/11596.txt b/server508/data/mapdata/unpacked/11596.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11596.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11601.txt b/server508/data/mapdata/unpacked/11601.txt new file mode 100644 index 0000000..0973ed8 --- /dev/null +++ b/server508/data/mapdata/unpacked/11601.txt @@ -0,0 +1,4 @@ +722657934 +1495340205 +-437272583 +-1331954618 diff --git a/server508/data/mapdata/unpacked/11602.txt b/server508/data/mapdata/unpacked/11602.txt new file mode 100644 index 0000000..ac51384 --- /dev/null +++ b/server508/data/mapdata/unpacked/11602.txt @@ -0,0 +1,4 @@ +-1830335785 +-544748254 +-190875166 +1866682430 diff --git a/server508/data/mapdata/unpacked/11603.txt b/server508/data/mapdata/unpacked/11603.txt new file mode 100644 index 0000000..9a6f44c --- /dev/null +++ b/server508/data/mapdata/unpacked/11603.txt @@ -0,0 +1,4 @@ +-254635141 +-1757221941 +-2072225761 +-752948578 diff --git a/server508/data/mapdata/unpacked/11604.txt b/server508/data/mapdata/unpacked/11604.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11604.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11605.txt b/server508/data/mapdata/unpacked/11605.txt new file mode 100644 index 0000000..2a44eae --- /dev/null +++ b/server508/data/mapdata/unpacked/11605.txt @@ -0,0 +1,4 @@ +57037316 +1119657363 +2040370510 +801474589 diff --git a/server508/data/mapdata/unpacked/11606.txt b/server508/data/mapdata/unpacked/11606.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11606.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11607.txt b/server508/data/mapdata/unpacked/11607.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11607.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11608.txt b/server508/data/mapdata/unpacked/11608.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11608.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11609.txt b/server508/data/mapdata/unpacked/11609.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11609.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11610.txt b/server508/data/mapdata/unpacked/11610.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11610.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11611.txt b/server508/data/mapdata/unpacked/11611.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11611.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11668.txt b/server508/data/mapdata/unpacked/11668.txt new file mode 100644 index 0000000..b63b59e --- /dev/null +++ b/server508/data/mapdata/unpacked/11668.txt @@ -0,0 +1,5 @@ +-257024301 +-661941375 +-687408097 +-1243612535 + diff --git a/server508/data/mapdata/unpacked/11669.txt b/server508/data/mapdata/unpacked/11669.txt new file mode 100644 index 0000000..7333eeb --- /dev/null +++ b/server508/data/mapdata/unpacked/11669.txt @@ -0,0 +1,5 @@ +-2019291079 +1299725119 +2078401543 +-99676412 + diff --git a/server508/data/mapdata/unpacked/11670.txt b/server508/data/mapdata/unpacked/11670.txt new file mode 100644 index 0000000..0cca359 --- /dev/null +++ b/server508/data/mapdata/unpacked/11670.txt @@ -0,0 +1,5 @@ +549318992 +1085934989 +710708603 +-1635474946 + diff --git a/server508/data/mapdata/unpacked/11671.txt b/server508/data/mapdata/unpacked/11671.txt new file mode 100644 index 0000000..bba0be8 --- /dev/null +++ b/server508/data/mapdata/unpacked/11671.txt @@ -0,0 +1,4 @@ +141459802 +-808095674 +779257961 +-1662929599 diff --git a/server508/data/mapdata/unpacked/11672.txt b/server508/data/mapdata/unpacked/11672.txt new file mode 100644 index 0000000..ce54369 --- /dev/null +++ b/server508/data/mapdata/unpacked/11672.txt @@ -0,0 +1,5 @@ +-1845806596 +1811189482 +329650354 +-628982335 + diff --git a/server508/data/mapdata/unpacked/11673.txt b/server508/data/mapdata/unpacked/11673.txt new file mode 100644 index 0000000..b88ac4a --- /dev/null +++ b/server508/data/mapdata/unpacked/11673.txt @@ -0,0 +1,5 @@ +1313591004 +-370730320 +-1918769501 +1344018464 + diff --git a/server508/data/mapdata/unpacked/11674.txt b/server508/data/mapdata/unpacked/11674.txt new file mode 100644 index 0000000..b38cddc --- /dev/null +++ b/server508/data/mapdata/unpacked/11674.txt @@ -0,0 +1,4 @@ +1210448615 +-1069893745 +1849844672 +-2020497288 diff --git a/server508/data/mapdata/unpacked/11675.txt b/server508/data/mapdata/unpacked/11675.txt new file mode 100644 index 0000000..bb5b129 --- /dev/null +++ b/server508/data/mapdata/unpacked/11675.txt @@ -0,0 +1,4 @@ +-1885801977 +-74559034 +1670696344 +449082888 diff --git a/server508/data/mapdata/unpacked/11676.txt b/server508/data/mapdata/unpacked/11676.txt new file mode 100644 index 0000000..2aa4d6f --- /dev/null +++ b/server508/data/mapdata/unpacked/11676.txt @@ -0,0 +1,5 @@ +-497232340 +-1339196313 +-2027479925 +-368682937 + diff --git a/server508/data/mapdata/unpacked/11677.txt b/server508/data/mapdata/unpacked/11677.txt new file mode 100644 index 0000000..4327bff --- /dev/null +++ b/server508/data/mapdata/unpacked/11677.txt @@ -0,0 +1,4 @@ +536395294 +1131483635 +-2029771861 +-1394887559 diff --git a/server508/data/mapdata/unpacked/11678.txt b/server508/data/mapdata/unpacked/11678.txt new file mode 100644 index 0000000..3e46f66 --- /dev/null +++ b/server508/data/mapdata/unpacked/11678.txt @@ -0,0 +1,4 @@ +-804330631 +-1574570644 +457636469 +-2078367975 diff --git a/server508/data/mapdata/unpacked/11679.txt b/server508/data/mapdata/unpacked/11679.txt new file mode 100644 index 0000000..7214dd1 --- /dev/null +++ b/server508/data/mapdata/unpacked/11679.txt @@ -0,0 +1,4 @@ +-1340251425 +1047536598 +1755959072 +-1468625899 diff --git a/server508/data/mapdata/unpacked/11680.txt b/server508/data/mapdata/unpacked/11680.txt new file mode 100644 index 0000000..f3d72de --- /dev/null +++ b/server508/data/mapdata/unpacked/11680.txt @@ -0,0 +1,4 @@ +1628843011 +-904651047 +841205079 +-2056142962 diff --git a/server508/data/mapdata/unpacked/11817.txt b/server508/data/mapdata/unpacked/11817.txt new file mode 100644 index 0000000..96df84a --- /dev/null +++ b/server508/data/mapdata/unpacked/11817.txt @@ -0,0 +1,4 @@ +740863947 +-1459447536 +-1272357052 +-1730407126 diff --git a/server508/data/mapdata/unpacked/11818.txt b/server508/data/mapdata/unpacked/11818.txt new file mode 100644 index 0000000..11957c9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11818.txt @@ -0,0 +1,4 @@ +-2034608097 +1147002393 +-720701760 +-1045127369 diff --git a/server508/data/mapdata/unpacked/11819.txt b/server508/data/mapdata/unpacked/11819.txt new file mode 100644 index 0000000..856bf4f --- /dev/null +++ b/server508/data/mapdata/unpacked/11819.txt @@ -0,0 +1,4 @@ +-1632272271 +-1134214079 +-1204220834 +-1633494895 diff --git a/server508/data/mapdata/unpacked/11821.txt b/server508/data/mapdata/unpacked/11821.txt new file mode 100644 index 0000000..c19fea7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11821.txt @@ -0,0 +1,4 @@ +-59783144 +-2096279080 +1021138936 +-1797615355 diff --git a/server508/data/mapdata/unpacked/11822.txt b/server508/data/mapdata/unpacked/11822.txt new file mode 100644 index 0000000..1a20f1a --- /dev/null +++ b/server508/data/mapdata/unpacked/11822.txt @@ -0,0 +1,4 @@ +-1814853584 +-1136244468 +-411716523 +-1293542025 diff --git a/server508/data/mapdata/unpacked/11823.txt b/server508/data/mapdata/unpacked/11823.txt new file mode 100644 index 0000000..55b54f4 --- /dev/null +++ b/server508/data/mapdata/unpacked/11823.txt @@ -0,0 +1,4 @@ +-1467961870 +-332715907 +828094751 +497688107 diff --git a/server508/data/mapdata/unpacked/11824.txt b/server508/data/mapdata/unpacked/11824.txt new file mode 100644 index 0000000..c3f21df --- /dev/null +++ b/server508/data/mapdata/unpacked/11824.txt @@ -0,0 +1,4 @@ +-1116727390 +-659788658 +307002260 +354360287 diff --git a/server508/data/mapdata/unpacked/11825.txt b/server508/data/mapdata/unpacked/11825.txt new file mode 100644 index 0000000..cb02e70 --- /dev/null +++ b/server508/data/mapdata/unpacked/11825.txt @@ -0,0 +1,4 @@ +1382568709 +-511942179 +1146009713 +-97876248 diff --git a/server508/data/mapdata/unpacked/11826.txt b/server508/data/mapdata/unpacked/11826.txt new file mode 100644 index 0000000..460639a --- /dev/null +++ b/server508/data/mapdata/unpacked/11826.txt @@ -0,0 +1,4 @@ +1733578550 +677245038 +-1744482143 +1075380078 diff --git a/server508/data/mapdata/unpacked/11827.txt b/server508/data/mapdata/unpacked/11827.txt new file mode 100644 index 0000000..401d53d --- /dev/null +++ b/server508/data/mapdata/unpacked/11827.txt @@ -0,0 +1,4 @@ +821141015 +-41527640 +7027944 +845051480 diff --git a/server508/data/mapdata/unpacked/11828.txt b/server508/data/mapdata/unpacked/11828.txt new file mode 100644 index 0000000..4d9684c --- /dev/null +++ b/server508/data/mapdata/unpacked/11828.txt @@ -0,0 +1,4 @@ +1097483116 +1289368878 +-1964513740 +186074073 diff --git a/server508/data/mapdata/unpacked/11829.txt b/server508/data/mapdata/unpacked/11829.txt new file mode 100644 index 0000000..ea04d60 --- /dev/null +++ b/server508/data/mapdata/unpacked/11829.txt @@ -0,0 +1,4 @@ +-1874202857 +833081865 +-2128743429 +-2089024147 diff --git a/server508/data/mapdata/unpacked/11830.txt b/server508/data/mapdata/unpacked/11830.txt new file mode 100644 index 0000000..32d4d2d --- /dev/null +++ b/server508/data/mapdata/unpacked/11830.txt @@ -0,0 +1,4 @@ +-1537175134 +-1491148132 +52143140 +85496591 diff --git a/server508/data/mapdata/unpacked/11831.txt b/server508/data/mapdata/unpacked/11831.txt new file mode 100644 index 0000000..5431ac5 --- /dev/null +++ b/server508/data/mapdata/unpacked/11831.txt @@ -0,0 +1,4 @@ +2070834186 +89622912 +-2093327347 +-1499870034 diff --git a/server508/data/mapdata/unpacked/11832.txt b/server508/data/mapdata/unpacked/11832.txt new file mode 100644 index 0000000..7959aa0 --- /dev/null +++ b/server508/data/mapdata/unpacked/11832.txt @@ -0,0 +1,4 @@ +1689791333 +1721576307 +763847899 +-1538792268 diff --git a/server508/data/mapdata/unpacked/11833.txt b/server508/data/mapdata/unpacked/11833.txt new file mode 100644 index 0000000..46f96cc --- /dev/null +++ b/server508/data/mapdata/unpacked/11833.txt @@ -0,0 +1,5 @@ +-1894807312 +-1919805457 +480669221 +739166668 + diff --git a/server508/data/mapdata/unpacked/11834.txt b/server508/data/mapdata/unpacked/11834.txt new file mode 100644 index 0000000..935eef7 --- /dev/null +++ b/server508/data/mapdata/unpacked/11834.txt @@ -0,0 +1,5 @@ +1153107790 +129220855 +-1698204327 +302680240 + diff --git a/server508/data/mapdata/unpacked/11835.txt b/server508/data/mapdata/unpacked/11835.txt new file mode 100644 index 0000000..b129c1d --- /dev/null +++ b/server508/data/mapdata/unpacked/11835.txt @@ -0,0 +1,4 @@ +725963103 +-2103558680 +2081024088 +-1495655861 diff --git a/server508/data/mapdata/unpacked/11836.txt b/server508/data/mapdata/unpacked/11836.txt new file mode 100644 index 0000000..faaae69 --- /dev/null +++ b/server508/data/mapdata/unpacked/11836.txt @@ -0,0 +1,4 @@ +-1380985244 +-357598195 +-1439932150 +1526942363 diff --git a/server508/data/mapdata/unpacked/11837.txt b/server508/data/mapdata/unpacked/11837.txt new file mode 100644 index 0000000..25abef2 --- /dev/null +++ b/server508/data/mapdata/unpacked/11837.txt @@ -0,0 +1,5 @@ +-547509744 +-624347596 +-391491208 +-867441487 + diff --git a/server508/data/mapdata/unpacked/11838.txt b/server508/data/mapdata/unpacked/11838.txt new file mode 100644 index 0000000..cdaf33b --- /dev/null +++ b/server508/data/mapdata/unpacked/11838.txt @@ -0,0 +1,4 @@ +-1244353559 +318399250 +-531450733 +1472599251 diff --git a/server508/data/mapdata/unpacked/11844.txt b/server508/data/mapdata/unpacked/11844.txt new file mode 100644 index 0000000..3039dea --- /dev/null +++ b/server508/data/mapdata/unpacked/11844.txt @@ -0,0 +1,4 @@ +-893014211 +-964022796 +1940425172 +571724174 diff --git a/server508/data/mapdata/unpacked/11845.txt b/server508/data/mapdata/unpacked/11845.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11845.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11846.txt b/server508/data/mapdata/unpacked/11846.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11846.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11848.txt b/server508/data/mapdata/unpacked/11848.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11848.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11849.txt b/server508/data/mapdata/unpacked/11849.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11849.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11850.txt b/server508/data/mapdata/unpacked/11850.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11850.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11851.txt b/server508/data/mapdata/unpacked/11851.txt new file mode 100644 index 0000000..c9028c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/11851.txt @@ -0,0 +1,4 @@ +-516358140 +791692293 +-1663509747 +1243508195 diff --git a/server508/data/mapdata/unpacked/11852.txt b/server508/data/mapdata/unpacked/11852.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11852.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11857.txt b/server508/data/mapdata/unpacked/11857.txt new file mode 100644 index 0000000..3bd6f34 --- /dev/null +++ b/server508/data/mapdata/unpacked/11857.txt @@ -0,0 +1,4 @@ +150488681 +419659968 +-1871963555 +1031596369 diff --git a/server508/data/mapdata/unpacked/11858.txt b/server508/data/mapdata/unpacked/11858.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11858.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11859.txt b/server508/data/mapdata/unpacked/11859.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11859.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11860.txt b/server508/data/mapdata/unpacked/11860.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11860.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11861.txt b/server508/data/mapdata/unpacked/11861.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11861.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11862.txt b/server508/data/mapdata/unpacked/11862.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11862.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11863.txt b/server508/data/mapdata/unpacked/11863.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11863.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11864.txt b/server508/data/mapdata/unpacked/11864.txt new file mode 100644 index 0000000..36ee2a0 --- /dev/null +++ b/server508/data/mapdata/unpacked/11864.txt @@ -0,0 +1,4 @@ +415237490 +-1571743714 +-1596630690 +-846850340 diff --git a/server508/data/mapdata/unpacked/11865.txt b/server508/data/mapdata/unpacked/11865.txt new file mode 100644 index 0000000..0f30683 --- /dev/null +++ b/server508/data/mapdata/unpacked/11865.txt @@ -0,0 +1,4 @@ +-1962002904 +26354278 +-969232265 +1948165207 diff --git a/server508/data/mapdata/unpacked/11866.txt b/server508/data/mapdata/unpacked/11866.txt new file mode 100644 index 0000000..7662aed --- /dev/null +++ b/server508/data/mapdata/unpacked/11866.txt @@ -0,0 +1,4 @@ +1586054337 +290394491 +-979194848 +-573910165 diff --git a/server508/data/mapdata/unpacked/11924.txt b/server508/data/mapdata/unpacked/11924.txt new file mode 100644 index 0000000..85982ef --- /dev/null +++ b/server508/data/mapdata/unpacked/11924.txt @@ -0,0 +1,4 @@ +666630575 +-1827517930 +-2013511347 +84609416 diff --git a/server508/data/mapdata/unpacked/11925.txt b/server508/data/mapdata/unpacked/11925.txt new file mode 100644 index 0000000..ea8de7d --- /dev/null +++ b/server508/data/mapdata/unpacked/11925.txt @@ -0,0 +1,4 @@ +-989523453 +913815552 +345668487 +-1351819941 diff --git a/server508/data/mapdata/unpacked/11926.txt b/server508/data/mapdata/unpacked/11926.txt new file mode 100644 index 0000000..8b64510 --- /dev/null +++ b/server508/data/mapdata/unpacked/11926.txt @@ -0,0 +1,4 @@ +-501586879 +235710413 +-1122707717 +-354940885 diff --git a/server508/data/mapdata/unpacked/11927.txt b/server508/data/mapdata/unpacked/11927.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11927.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11928.txt b/server508/data/mapdata/unpacked/11928.txt new file mode 100644 index 0000000..c0081b2 --- /dev/null +++ b/server508/data/mapdata/unpacked/11928.txt @@ -0,0 +1,4 @@ +-445378710 +-788377286 +1363332226 +627739779 diff --git a/server508/data/mapdata/unpacked/11929.txt b/server508/data/mapdata/unpacked/11929.txt new file mode 100644 index 0000000..1c8518c --- /dev/null +++ b/server508/data/mapdata/unpacked/11929.txt @@ -0,0 +1,5 @@ +747285535 +375064048 +-1156931456 +-126201237 + diff --git a/server508/data/mapdata/unpacked/11930.txt b/server508/data/mapdata/unpacked/11930.txt new file mode 100644 index 0000000..73c9f01 --- /dev/null +++ b/server508/data/mapdata/unpacked/11930.txt @@ -0,0 +1,4 @@ +1436132147 +-902725534 +590285278 +2018675988 diff --git a/server508/data/mapdata/unpacked/11931.txt b/server508/data/mapdata/unpacked/11931.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11931.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11932.txt b/server508/data/mapdata/unpacked/11932.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/11932.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/11933.txt b/server508/data/mapdata/unpacked/11933.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11933.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11934.txt b/server508/data/mapdata/unpacked/11934.txt new file mode 100644 index 0000000..c7621ae --- /dev/null +++ b/server508/data/mapdata/unpacked/11934.txt @@ -0,0 +1,4 @@ +-854127330 +1609124159 +-999989310 +-734721734 diff --git a/server508/data/mapdata/unpacked/11935.txt b/server508/data/mapdata/unpacked/11935.txt new file mode 100644 index 0000000..b1471c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/11935.txt @@ -0,0 +1,4 @@ +-1453725493 +-1575973068 +1979334907 +1130399929 diff --git a/server508/data/mapdata/unpacked/11936.txt b/server508/data/mapdata/unpacked/11936.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11936.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/11937.txt b/server508/data/mapdata/unpacked/11937.txt new file mode 100644 index 0000000..fa3b81b --- /dev/null +++ b/server508/data/mapdata/unpacked/11937.txt @@ -0,0 +1,4 @@ +-1518927827 +1819850502 +-992647105 +299958470 diff --git a/server508/data/mapdata/unpacked/11938.txt b/server508/data/mapdata/unpacked/11938.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/11938.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12077.txt b/server508/data/mapdata/unpacked/12077.txt new file mode 100644 index 0000000..3b8d07b --- /dev/null +++ b/server508/data/mapdata/unpacked/12077.txt @@ -0,0 +1,4 @@ +1638808709 +1254156985 +809776183 +-1544950482 diff --git a/server508/data/mapdata/unpacked/12078.txt b/server508/data/mapdata/unpacked/12078.txt new file mode 100644 index 0000000..3673125 --- /dev/null +++ b/server508/data/mapdata/unpacked/12078.txt @@ -0,0 +1,4 @@ +-525973296 +-1548155792 +-1385110219 +-1985763988 diff --git a/server508/data/mapdata/unpacked/12079.txt b/server508/data/mapdata/unpacked/12079.txt new file mode 100644 index 0000000..15b9d85 --- /dev/null +++ b/server508/data/mapdata/unpacked/12079.txt @@ -0,0 +1,4 @@ +-1912120993 +-816311554 +-1495889183 +-64017018 diff --git a/server508/data/mapdata/unpacked/12080.txt b/server508/data/mapdata/unpacked/12080.txt new file mode 100644 index 0000000..4d24748 --- /dev/null +++ b/server508/data/mapdata/unpacked/12080.txt @@ -0,0 +1,4 @@ +-560343182 +-1304605258 +317493010 +-693290260 diff --git a/server508/data/mapdata/unpacked/12081.txt b/server508/data/mapdata/unpacked/12081.txt new file mode 100644 index 0000000..ba845d5 --- /dev/null +++ b/server508/data/mapdata/unpacked/12081.txt @@ -0,0 +1,4 @@ +-363710044 +1514717392 +-967145345 +-1501638079 diff --git a/server508/data/mapdata/unpacked/12082.txt b/server508/data/mapdata/unpacked/12082.txt new file mode 100644 index 0000000..770944d --- /dev/null +++ b/server508/data/mapdata/unpacked/12082.txt @@ -0,0 +1,4 @@ +572480353 +130066250 +-1511945207 +1702236140 diff --git a/server508/data/mapdata/unpacked/12083.txt b/server508/data/mapdata/unpacked/12083.txt new file mode 100644 index 0000000..1c53ab6 --- /dev/null +++ b/server508/data/mapdata/unpacked/12083.txt @@ -0,0 +1,4 @@ +-1935082411 +-1905396022 +-1594647643 +1409088456 diff --git a/server508/data/mapdata/unpacked/12084.txt b/server508/data/mapdata/unpacked/12084.txt new file mode 100644 index 0000000..1ca28cb --- /dev/null +++ b/server508/data/mapdata/unpacked/12084.txt @@ -0,0 +1,4 @@ +-1823321168 +1206784905 +1077706791 +-245755460 diff --git a/server508/data/mapdata/unpacked/12085.txt b/server508/data/mapdata/unpacked/12085.txt new file mode 100644 index 0000000..32e998a --- /dev/null +++ b/server508/data/mapdata/unpacked/12085.txt @@ -0,0 +1,4 @@ +-54096935 +553587028 +161943728 +942018822 diff --git a/server508/data/mapdata/unpacked/12086.txt b/server508/data/mapdata/unpacked/12086.txt new file mode 100644 index 0000000..9b5ccf3 --- /dev/null +++ b/server508/data/mapdata/unpacked/12086.txt @@ -0,0 +1,4 @@ +-372669275 +249266662 +1594239980 +-293292859 diff --git a/server508/data/mapdata/unpacked/12087.txt b/server508/data/mapdata/unpacked/12087.txt new file mode 100644 index 0000000..3d0f30e --- /dev/null +++ b/server508/data/mapdata/unpacked/12087.txt @@ -0,0 +1,4 @@ +1249379388 +1397683626 +1692576867 +704042549 diff --git a/server508/data/mapdata/unpacked/12088.txt b/server508/data/mapdata/unpacked/12088.txt new file mode 100644 index 0000000..4742b61 --- /dev/null +++ b/server508/data/mapdata/unpacked/12088.txt @@ -0,0 +1,4 @@ +-2139185262 +-1806601505 +1536573357 +72818727 diff --git a/server508/data/mapdata/unpacked/12089.txt b/server508/data/mapdata/unpacked/12089.txt new file mode 100644 index 0000000..36f7614 --- /dev/null +++ b/server508/data/mapdata/unpacked/12089.txt @@ -0,0 +1,4 @@ +-1047505229 +1482518318 +895541409 +-1048492631 diff --git a/server508/data/mapdata/unpacked/12090.txt b/server508/data/mapdata/unpacked/12090.txt new file mode 100644 index 0000000..c00f372 --- /dev/null +++ b/server508/data/mapdata/unpacked/12090.txt @@ -0,0 +1,4 @@ +120066737 +434314789 +-2139665893 +-8665118 diff --git a/server508/data/mapdata/unpacked/12091.txt b/server508/data/mapdata/unpacked/12091.txt new file mode 100644 index 0000000..124ccd8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12091.txt @@ -0,0 +1,4 @@ +1479001755 +2119142088 +-653624921 +702014943 diff --git a/server508/data/mapdata/unpacked/12092.txt b/server508/data/mapdata/unpacked/12092.txt new file mode 100644 index 0000000..83dc675 --- /dev/null +++ b/server508/data/mapdata/unpacked/12092.txt @@ -0,0 +1,4 @@ +1834140299 +801520697 +152435624 +2017368659 diff --git a/server508/data/mapdata/unpacked/12093.txt b/server508/data/mapdata/unpacked/12093.txt new file mode 100644 index 0000000..e632406 --- /dev/null +++ b/server508/data/mapdata/unpacked/12093.txt @@ -0,0 +1,4 @@ +-1609567378 +-1639522221 +1730303123 +-248179982 diff --git a/server508/data/mapdata/unpacked/12094.txt b/server508/data/mapdata/unpacked/12094.txt new file mode 100644 index 0000000..581e45f --- /dev/null +++ b/server508/data/mapdata/unpacked/12094.txt @@ -0,0 +1,4 @@ +2120437359 +222442049 +41777842 +-509732529 diff --git a/server508/data/mapdata/unpacked/12097.txt b/server508/data/mapdata/unpacked/12097.txt new file mode 100644 index 0000000..6e0f35b --- /dev/null +++ b/server508/data/mapdata/unpacked/12097.txt @@ -0,0 +1,4 @@ +-862465947 +2109948185 +583246321 +-850147469 diff --git a/server508/data/mapdata/unpacked/12098.txt b/server508/data/mapdata/unpacked/12098.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12098.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12106.txt b/server508/data/mapdata/unpacked/12106.txt new file mode 100644 index 0000000..04e9489 --- /dev/null +++ b/server508/data/mapdata/unpacked/12106.txt @@ -0,0 +1,5 @@ +38647587 +1522565828 +-949257419 +1943032512 + diff --git a/server508/data/mapdata/unpacked/12107.txt b/server508/data/mapdata/unpacked/12107.txt new file mode 100644 index 0000000..2ddb537 --- /dev/null +++ b/server508/data/mapdata/unpacked/12107.txt @@ -0,0 +1,5 @@ +790028083 +952090857 +-1393754794 +1896821277 + diff --git a/server508/data/mapdata/unpacked/12108.txt b/server508/data/mapdata/unpacked/12108.txt new file mode 100644 index 0000000..3ef161f --- /dev/null +++ b/server508/data/mapdata/unpacked/12108.txt @@ -0,0 +1,5 @@ +-31531459 +-1804597772 +712452096 +1915359882 + diff --git a/server508/data/mapdata/unpacked/12109.txt b/server508/data/mapdata/unpacked/12109.txt new file mode 100644 index 0000000..a46d9d2 --- /dev/null +++ b/server508/data/mapdata/unpacked/12109.txt @@ -0,0 +1,4 @@ +1939715187 +-796094750 +-1071860977 +-1024683065 diff --git a/server508/data/mapdata/unpacked/12110.txt b/server508/data/mapdata/unpacked/12110.txt new file mode 100644 index 0000000..b5aac86 --- /dev/null +++ b/server508/data/mapdata/unpacked/12110.txt @@ -0,0 +1,4 @@ +808144600 +-616213476 +2026296096 +1539298914 diff --git a/server508/data/mapdata/unpacked/12117.txt b/server508/data/mapdata/unpacked/12117.txt new file mode 100644 index 0000000..b6480cb --- /dev/null +++ b/server508/data/mapdata/unpacked/12117.txt @@ -0,0 +1,5 @@ +-97063310 +1962833557 +-849078816 +-1560293275 + diff --git a/server508/data/mapdata/unpacked/12118.txt b/server508/data/mapdata/unpacked/12118.txt new file mode 100644 index 0000000..a755aad --- /dev/null +++ b/server508/data/mapdata/unpacked/12118.txt @@ -0,0 +1,5 @@ +714042847 +-1192681674 +-1453080351 +-88273278 + diff --git a/server508/data/mapdata/unpacked/12119.txt b/server508/data/mapdata/unpacked/12119.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12119.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12120.txt b/server508/data/mapdata/unpacked/12120.txt new file mode 100644 index 0000000..833a7fb --- /dev/null +++ b/server508/data/mapdata/unpacked/12120.txt @@ -0,0 +1,4 @@ +-774739481 +1496283218 +893257461 +-1168642419 diff --git a/server508/data/mapdata/unpacked/12121.txt b/server508/data/mapdata/unpacked/12121.txt new file mode 100644 index 0000000..ce0bee7 --- /dev/null +++ b/server508/data/mapdata/unpacked/12121.txt @@ -0,0 +1,4 @@ +1557445081 +682103339 +1577593678 +-1850587643 diff --git a/server508/data/mapdata/unpacked/12122.txt b/server508/data/mapdata/unpacked/12122.txt new file mode 100644 index 0000000..c73da01 --- /dev/null +++ b/server508/data/mapdata/unpacked/12122.txt @@ -0,0 +1,4 @@ +-2014648814 +571564491 +-1983897919 +-612605198 diff --git a/server508/data/mapdata/unpacked/12180.txt b/server508/data/mapdata/unpacked/12180.txt new file mode 100644 index 0000000..7775293 --- /dev/null +++ b/server508/data/mapdata/unpacked/12180.txt @@ -0,0 +1,4 @@ +1388683192 +-872219469 +437507075 +812232152 diff --git a/server508/data/mapdata/unpacked/12181.txt b/server508/data/mapdata/unpacked/12181.txt new file mode 100644 index 0000000..7a2a209 --- /dev/null +++ b/server508/data/mapdata/unpacked/12181.txt @@ -0,0 +1,4 @@ +-995343774 +-1071540200 +1667841236 +1318274883 diff --git a/server508/data/mapdata/unpacked/12182.txt b/server508/data/mapdata/unpacked/12182.txt new file mode 100644 index 0000000..3170c95 --- /dev/null +++ b/server508/data/mapdata/unpacked/12182.txt @@ -0,0 +1,4 @@ +-499997333 +1910872683 +-234510566 +-361238419 diff --git a/server508/data/mapdata/unpacked/12183.txt b/server508/data/mapdata/unpacked/12183.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12183.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12184.txt b/server508/data/mapdata/unpacked/12184.txt new file mode 100644 index 0000000..08c44f9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12184.txt @@ -0,0 +1,4 @@ +-1993918550 +1977224805 +-1048356116 +-1578331413 diff --git a/server508/data/mapdata/unpacked/12185.txt b/server508/data/mapdata/unpacked/12185.txt new file mode 100644 index 0000000..6dfaa7c --- /dev/null +++ b/server508/data/mapdata/unpacked/12185.txt @@ -0,0 +1,4 @@ +-733095133 +-1797134669 +1813691911 +-117267989 diff --git a/server508/data/mapdata/unpacked/12186.txt b/server508/data/mapdata/unpacked/12186.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12186.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12187.txt b/server508/data/mapdata/unpacked/12187.txt new file mode 100644 index 0000000..1bc50f0 --- /dev/null +++ b/server508/data/mapdata/unpacked/12187.txt @@ -0,0 +1,4 @@ +-554850480 +-88260239 +1954652744 +1859148394 diff --git a/server508/data/mapdata/unpacked/12188.txt b/server508/data/mapdata/unpacked/12188.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12188.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12191.txt b/server508/data/mapdata/unpacked/12191.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12191.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12192.txt b/server508/data/mapdata/unpacked/12192.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12192.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12193.txt b/server508/data/mapdata/unpacked/12193.txt new file mode 100644 index 0000000..8cda4d3 --- /dev/null +++ b/server508/data/mapdata/unpacked/12193.txt @@ -0,0 +1,4 @@ +1013552068 +-364826455 +4137749 +729786125 diff --git a/server508/data/mapdata/unpacked/12194.txt b/server508/data/mapdata/unpacked/12194.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12194.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12332.txt b/server508/data/mapdata/unpacked/12332.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12332.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12333.txt b/server508/data/mapdata/unpacked/12333.txt new file mode 100644 index 0000000..0f031aa --- /dev/null +++ b/server508/data/mapdata/unpacked/12333.txt @@ -0,0 +1,4 @@ +372281878 +-809369100 +-1989039261 +-980074402 diff --git a/server508/data/mapdata/unpacked/12334.txt b/server508/data/mapdata/unpacked/12334.txt new file mode 100644 index 0000000..ba6a361 --- /dev/null +++ b/server508/data/mapdata/unpacked/12334.txt @@ -0,0 +1,4 @@ +-208871238 +397971218 +827338731 +-602814995 diff --git a/server508/data/mapdata/unpacked/12335.txt b/server508/data/mapdata/unpacked/12335.txt new file mode 100644 index 0000000..71530dd --- /dev/null +++ b/server508/data/mapdata/unpacked/12335.txt @@ -0,0 +1,4 @@ +-1208215259 +825997534 +1185142788 +1752381019 diff --git a/server508/data/mapdata/unpacked/12336.txt b/server508/data/mapdata/unpacked/12336.txt new file mode 100644 index 0000000..d43158d --- /dev/null +++ b/server508/data/mapdata/unpacked/12336.txt @@ -0,0 +1,4 @@ +748900200 +-1752526812 +-1072025202 +-1112169978 diff --git a/server508/data/mapdata/unpacked/12337.txt b/server508/data/mapdata/unpacked/12337.txt new file mode 100644 index 0000000..29d8e3f --- /dev/null +++ b/server508/data/mapdata/unpacked/12337.txt @@ -0,0 +1,4 @@ +-963811056 +-1943336436 +1401491942 +-1204785984 diff --git a/server508/data/mapdata/unpacked/12338.txt b/server508/data/mapdata/unpacked/12338.txt new file mode 100644 index 0000000..be1ce65 --- /dev/null +++ b/server508/data/mapdata/unpacked/12338.txt @@ -0,0 +1,4 @@ +2048128702 +1048934776 +1037449958 +1145229802 diff --git a/server508/data/mapdata/unpacked/12339.txt b/server508/data/mapdata/unpacked/12339.txt new file mode 100644 index 0000000..7e4a341 --- /dev/null +++ b/server508/data/mapdata/unpacked/12339.txt @@ -0,0 +1,4 @@ +-656814243 +1368620341 +174464995 +-1959953877 diff --git a/server508/data/mapdata/unpacked/12340.txt b/server508/data/mapdata/unpacked/12340.txt new file mode 100644 index 0000000..0b9c49a --- /dev/null +++ b/server508/data/mapdata/unpacked/12340.txt @@ -0,0 +1,4 @@ +1946410965 +-211089460 +-1145931943 +-92341347 diff --git a/server508/data/mapdata/unpacked/12341.txt b/server508/data/mapdata/unpacked/12341.txt new file mode 100644 index 0000000..7bf980b --- /dev/null +++ b/server508/data/mapdata/unpacked/12341.txt @@ -0,0 +1,4 @@ +84271952 +-1688177258 +-1979302275 +1944449664 diff --git a/server508/data/mapdata/unpacked/12342.txt b/server508/data/mapdata/unpacked/12342.txt new file mode 100644 index 0000000..4b45331 --- /dev/null +++ b/server508/data/mapdata/unpacked/12342.txt @@ -0,0 +1,4 @@ +2046189110 +863909148 +1273470543 +-1083477179 diff --git a/server508/data/mapdata/unpacked/12343.txt b/server508/data/mapdata/unpacked/12343.txt new file mode 100644 index 0000000..9b787c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/12343.txt @@ -0,0 +1,4 @@ +-609214795 +980135617 +-695357998 +-160803647 diff --git a/server508/data/mapdata/unpacked/12344.txt b/server508/data/mapdata/unpacked/12344.txt new file mode 100644 index 0000000..28f7d30 --- /dev/null +++ b/server508/data/mapdata/unpacked/12344.txt @@ -0,0 +1,4 @@ +1743746247 +-1762702228 +1036479202 +-717604189 diff --git a/server508/data/mapdata/unpacked/12345.txt b/server508/data/mapdata/unpacked/12345.txt new file mode 100644 index 0000000..54171f6 --- /dev/null +++ b/server508/data/mapdata/unpacked/12345.txt @@ -0,0 +1,4 @@ +-134733709 +151853724 +-1437846337 +335319448 diff --git a/server508/data/mapdata/unpacked/12346.txt b/server508/data/mapdata/unpacked/12346.txt new file mode 100644 index 0000000..d735d51 --- /dev/null +++ b/server508/data/mapdata/unpacked/12346.txt @@ -0,0 +1,4 @@ +-657476809 +-1958794621 +-573708398 +1064135013 diff --git a/server508/data/mapdata/unpacked/12347.txt b/server508/data/mapdata/unpacked/12347.txt new file mode 100644 index 0000000..34e8541 --- /dev/null +++ b/server508/data/mapdata/unpacked/12347.txt @@ -0,0 +1,4 @@ +-1599627156 +201181799 +-1978827396 +-76735331 diff --git a/server508/data/mapdata/unpacked/12348.txt b/server508/data/mapdata/unpacked/12348.txt new file mode 100644 index 0000000..d81b985 --- /dev/null +++ b/server508/data/mapdata/unpacked/12348.txt @@ -0,0 +1,4 @@ +1498945330 +-1007588865 +989046743 +-1246005481 diff --git a/server508/data/mapdata/unpacked/12349.txt b/server508/data/mapdata/unpacked/12349.txt new file mode 100644 index 0000000..2e2c380 --- /dev/null +++ b/server508/data/mapdata/unpacked/12349.txt @@ -0,0 +1,4 @@ +1690287681 +1306543027 +-1953379158 +1167181646 diff --git a/server508/data/mapdata/unpacked/12350.txt b/server508/data/mapdata/unpacked/12350.txt new file mode 100644 index 0000000..683cc80 --- /dev/null +++ b/server508/data/mapdata/unpacked/12350.txt @@ -0,0 +1,4 @@ +1136900728 +1196784066 +-231560317 +20860732 diff --git a/server508/data/mapdata/unpacked/12353.txt b/server508/data/mapdata/unpacked/12353.txt new file mode 100644 index 0000000..ded50cd --- /dev/null +++ b/server508/data/mapdata/unpacked/12353.txt @@ -0,0 +1,4 @@ +1860887638 +-1122399774 +-2126632166 +-1535183021 diff --git a/server508/data/mapdata/unpacked/12354.txt b/server508/data/mapdata/unpacked/12354.txt new file mode 100644 index 0000000..0d68711 --- /dev/null +++ b/server508/data/mapdata/unpacked/12354.txt @@ -0,0 +1,4 @@ +1499391996 +1113335840 +1679448224 +-1743073054 diff --git a/server508/data/mapdata/unpacked/12355.txt b/server508/data/mapdata/unpacked/12355.txt new file mode 100644 index 0000000..cf480e8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12355.txt @@ -0,0 +1,4 @@ +2068164694 +1652405742 +-1354799119 +-2005137631 diff --git a/server508/data/mapdata/unpacked/12362.txt b/server508/data/mapdata/unpacked/12362.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/12362.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/12363.txt b/server508/data/mapdata/unpacked/12363.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/12363.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/12364.txt b/server508/data/mapdata/unpacked/12364.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12364.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12365.txt b/server508/data/mapdata/unpacked/12365.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12365.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12366.txt b/server508/data/mapdata/unpacked/12366.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12366.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12372.txt b/server508/data/mapdata/unpacked/12372.txt new file mode 100644 index 0000000..f9291b4 --- /dev/null +++ b/server508/data/mapdata/unpacked/12372.txt @@ -0,0 +1,6 @@ +0 +0 +0 +0 + + diff --git a/server508/data/mapdata/unpacked/12373.txt b/server508/data/mapdata/unpacked/12373.txt new file mode 100644 index 0000000..f9291b4 --- /dev/null +++ b/server508/data/mapdata/unpacked/12373.txt @@ -0,0 +1,6 @@ +0 +0 +0 +0 + + diff --git a/server508/data/mapdata/unpacked/12374.txt b/server508/data/mapdata/unpacked/12374.txt new file mode 100644 index 0000000..22ec562 --- /dev/null +++ b/server508/data/mapdata/unpacked/12374.txt @@ -0,0 +1,7 @@ +1620519366 +-1309341299 +68411383 +1308746010 + + + diff --git a/server508/data/mapdata/unpacked/12375.txt b/server508/data/mapdata/unpacked/12375.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12375.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12376.txt b/server508/data/mapdata/unpacked/12376.txt new file mode 100644 index 0000000..10863bc --- /dev/null +++ b/server508/data/mapdata/unpacked/12376.txt @@ -0,0 +1,4 @@ +1918934265 +1530066885 +-1991367516 +1783839145 diff --git a/server508/data/mapdata/unpacked/12377.txt b/server508/data/mapdata/unpacked/12377.txt new file mode 100644 index 0000000..a6233a3 --- /dev/null +++ b/server508/data/mapdata/unpacked/12377.txt @@ -0,0 +1,4 @@ +-1926215959 +-398085479 +-1931593602 +-1073869938 diff --git a/server508/data/mapdata/unpacked/12378.txt b/server508/data/mapdata/unpacked/12378.txt new file mode 100644 index 0000000..ae8d7aa --- /dev/null +++ b/server508/data/mapdata/unpacked/12378.txt @@ -0,0 +1,4 @@ +-369504798 +1961362499 +749656660 +-356368606 diff --git a/server508/data/mapdata/unpacked/12436.txt b/server508/data/mapdata/unpacked/12436.txt new file mode 100644 index 0000000..b7770fd --- /dev/null +++ b/server508/data/mapdata/unpacked/12436.txt @@ -0,0 +1,4 @@ +-310195908 +648759920 +-744649877 +-1636385981 diff --git a/server508/data/mapdata/unpacked/12437.txt b/server508/data/mapdata/unpacked/12437.txt new file mode 100644 index 0000000..4e6330b --- /dev/null +++ b/server508/data/mapdata/unpacked/12437.txt @@ -0,0 +1,4 @@ +-1335927229 +-969799530 +-4950591 +1294246625 diff --git a/server508/data/mapdata/unpacked/12438.txt b/server508/data/mapdata/unpacked/12438.txt new file mode 100644 index 0000000..c1d46c0 --- /dev/null +++ b/server508/data/mapdata/unpacked/12438.txt @@ -0,0 +1,4 @@ +-634183085 +122332197 +2063223083 +1861049708 diff --git a/server508/data/mapdata/unpacked/12439.txt b/server508/data/mapdata/unpacked/12439.txt new file mode 100644 index 0000000..c6bd04e --- /dev/null +++ b/server508/data/mapdata/unpacked/12439.txt @@ -0,0 +1,4 @@ +-128537652 +-667417558 +998246693 +-1147655385 diff --git a/server508/data/mapdata/unpacked/12440.txt b/server508/data/mapdata/unpacked/12440.txt new file mode 100644 index 0000000..73d06f4 --- /dev/null +++ b/server508/data/mapdata/unpacked/12440.txt @@ -0,0 +1,4 @@ +2053762285 +-354590835 +1580877387 +-2123860710 diff --git a/server508/data/mapdata/unpacked/12441.txt b/server508/data/mapdata/unpacked/12441.txt new file mode 100644 index 0000000..562354f --- /dev/null +++ b/server508/data/mapdata/unpacked/12441.txt @@ -0,0 +1,4 @@ +-1858539590 +267273914 +-776577096 +-1251026502 diff --git a/server508/data/mapdata/unpacked/12442.txt b/server508/data/mapdata/unpacked/12442.txt new file mode 100644 index 0000000..15e2bf8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12442.txt @@ -0,0 +1,4 @@ +1883167946 +191149821 +-1270401415 +-126025128 diff --git a/server508/data/mapdata/unpacked/12443.txt b/server508/data/mapdata/unpacked/12443.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12443.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12444.txt b/server508/data/mapdata/unpacked/12444.txt new file mode 100644 index 0000000..e38bdee --- /dev/null +++ b/server508/data/mapdata/unpacked/12444.txt @@ -0,0 +1,4 @@ +1576354846 +-1768236409 +821965805 +-861456742 diff --git a/server508/data/mapdata/unpacked/12447.txt b/server508/data/mapdata/unpacked/12447.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12447.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12448.txt b/server508/data/mapdata/unpacked/12448.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12448.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12449.txt b/server508/data/mapdata/unpacked/12449.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12449.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12450.txt b/server508/data/mapdata/unpacked/12450.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12450.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12587.txt b/server508/data/mapdata/unpacked/12587.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12587.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12588.txt b/server508/data/mapdata/unpacked/12588.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12588.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12589.txt b/server508/data/mapdata/unpacked/12589.txt new file mode 100644 index 0000000..0eb4f99 --- /dev/null +++ b/server508/data/mapdata/unpacked/12589.txt @@ -0,0 +1,4 @@ +-197205309 +-881475193 +-354080207 +-750122018 diff --git a/server508/data/mapdata/unpacked/12590.txt b/server508/data/mapdata/unpacked/12590.txt new file mode 100644 index 0000000..931996c --- /dev/null +++ b/server508/data/mapdata/unpacked/12590.txt @@ -0,0 +1,4 @@ +-755814299 +1579260481 +892984208 +577453947 diff --git a/server508/data/mapdata/unpacked/12591.txt b/server508/data/mapdata/unpacked/12591.txt new file mode 100644 index 0000000..a4b5d48 --- /dev/null +++ b/server508/data/mapdata/unpacked/12591.txt @@ -0,0 +1,4 @@ +351660323 +1292140128 +-1256148041 +78535482 diff --git a/server508/data/mapdata/unpacked/12592.txt b/server508/data/mapdata/unpacked/12592.txt new file mode 100644 index 0000000..ccbe743 --- /dev/null +++ b/server508/data/mapdata/unpacked/12592.txt @@ -0,0 +1,4 @@ +-1157332944 +-630586038 +-336763239 +-569794167 diff --git a/server508/data/mapdata/unpacked/12593.txt b/server508/data/mapdata/unpacked/12593.txt new file mode 100644 index 0000000..3440e45 --- /dev/null +++ b/server508/data/mapdata/unpacked/12593.txt @@ -0,0 +1,4 @@ +781841840 +-1178863374 +-646610316 +-684891565 diff --git a/server508/data/mapdata/unpacked/12594.txt b/server508/data/mapdata/unpacked/12594.txt new file mode 100644 index 0000000..48c5c03 --- /dev/null +++ b/server508/data/mapdata/unpacked/12594.txt @@ -0,0 +1,4 @@ +2137079991 +1122039645 +1876984428 +836623740 diff --git a/server508/data/mapdata/unpacked/12595.txt b/server508/data/mapdata/unpacked/12595.txt new file mode 100644 index 0000000..9fee5d6 --- /dev/null +++ b/server508/data/mapdata/unpacked/12595.txt @@ -0,0 +1,4 @@ +927213909 +142019722 +-1519030549 +-1428875769 diff --git a/server508/data/mapdata/unpacked/12596.txt b/server508/data/mapdata/unpacked/12596.txt new file mode 100644 index 0000000..be18b29 --- /dev/null +++ b/server508/data/mapdata/unpacked/12596.txt @@ -0,0 +1,4 @@ +1446102763 +1355166075 +586264619 +1060975024 diff --git a/server508/data/mapdata/unpacked/12597.txt b/server508/data/mapdata/unpacked/12597.txt new file mode 100644 index 0000000..42da8fd --- /dev/null +++ b/server508/data/mapdata/unpacked/12597.txt @@ -0,0 +1,4 @@ +-424757646 +1138421849 +-1625417991 +2062991820 diff --git a/server508/data/mapdata/unpacked/12598.txt b/server508/data/mapdata/unpacked/12598.txt new file mode 100644 index 0000000..1b691e8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12598.txt @@ -0,0 +1,4 @@ +-1551492214 +-1650936886 +-1625551753 +-74768148 diff --git a/server508/data/mapdata/unpacked/12599.txt b/server508/data/mapdata/unpacked/12599.txt new file mode 100644 index 0000000..99f28c8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12599.txt @@ -0,0 +1,4 @@ +1160393743 +-1677277299 +-179133200 +1341579750 diff --git a/server508/data/mapdata/unpacked/12600.txt b/server508/data/mapdata/unpacked/12600.txt new file mode 100644 index 0000000..9d7f1e1 --- /dev/null +++ b/server508/data/mapdata/unpacked/12600.txt @@ -0,0 +1,4 @@ +-263451948 +1984462167 +1279233669 +62736124 diff --git a/server508/data/mapdata/unpacked/12601.txt b/server508/data/mapdata/unpacked/12601.txt new file mode 100644 index 0000000..d70718d --- /dev/null +++ b/server508/data/mapdata/unpacked/12601.txt @@ -0,0 +1,4 @@ +1643607516 +-731552431 +836169860 +-1093927812 diff --git a/server508/data/mapdata/unpacked/12602.txt b/server508/data/mapdata/unpacked/12602.txt new file mode 100644 index 0000000..8b35ba6 --- /dev/null +++ b/server508/data/mapdata/unpacked/12602.txt @@ -0,0 +1,4 @@ +1289058435 +-2013760918 +1538318852 +396639740 diff --git a/server508/data/mapdata/unpacked/12603.txt b/server508/data/mapdata/unpacked/12603.txt new file mode 100644 index 0000000..5edd0de --- /dev/null +++ b/server508/data/mapdata/unpacked/12603.txt @@ -0,0 +1,5 @@ +-1135486565 +-470016325 +1594745611 +161611213 + diff --git a/server508/data/mapdata/unpacked/12604.txt b/server508/data/mapdata/unpacked/12604.txt new file mode 100644 index 0000000..7ef8269 --- /dev/null +++ b/server508/data/mapdata/unpacked/12604.txt @@ -0,0 +1,4 @@ +-1812120898 +-1662909112 +-1432124543 +571589094 diff --git a/server508/data/mapdata/unpacked/12605.txt b/server508/data/mapdata/unpacked/12605.txt new file mode 100644 index 0000000..1c63897 --- /dev/null +++ b/server508/data/mapdata/unpacked/12605.txt @@ -0,0 +1,4 @@ +-1547116565 +1817338996 +-1727020832 +2025648539 diff --git a/server508/data/mapdata/unpacked/12606.txt b/server508/data/mapdata/unpacked/12606.txt new file mode 100644 index 0000000..37b2539 --- /dev/null +++ b/server508/data/mapdata/unpacked/12606.txt @@ -0,0 +1,4 @@ +1621768314 +2112223568 +-739546935 +1952137045 diff --git a/server508/data/mapdata/unpacked/12609.txt b/server508/data/mapdata/unpacked/12609.txt new file mode 100644 index 0000000..27d67a2 --- /dev/null +++ b/server508/data/mapdata/unpacked/12609.txt @@ -0,0 +1,4 @@ +1004613114 +74885744 +-997936936 +693374110 diff --git a/server508/data/mapdata/unpacked/12610.txt b/server508/data/mapdata/unpacked/12610.txt new file mode 100644 index 0000000..00dcd83 --- /dev/null +++ b/server508/data/mapdata/unpacked/12610.txt @@ -0,0 +1,4 @@ +923086085 +-1676713919 +-1072336340 +1600346998 diff --git a/server508/data/mapdata/unpacked/12611.txt b/server508/data/mapdata/unpacked/12611.txt new file mode 100644 index 0000000..78fea53 --- /dev/null +++ b/server508/data/mapdata/unpacked/12611.txt @@ -0,0 +1,4 @@ +-2099572651 +-2127878366 +1782860351 +-1451326946 diff --git a/server508/data/mapdata/unpacked/12620.txt b/server508/data/mapdata/unpacked/12620.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12620.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12621.txt b/server508/data/mapdata/unpacked/12621.txt new file mode 100644 index 0000000..27079cb --- /dev/null +++ b/server508/data/mapdata/unpacked/12621.txt @@ -0,0 +1,4 @@ +1619333755 +-1869146576 +77302288 +-937694202 diff --git a/server508/data/mapdata/unpacked/12622.txt b/server508/data/mapdata/unpacked/12622.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12622.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12623.txt b/server508/data/mapdata/unpacked/12623.txt new file mode 100644 index 0000000..3caa5db --- /dev/null +++ b/server508/data/mapdata/unpacked/12623.txt @@ -0,0 +1,6 @@ +-369583241 +545715110 +-134871454 +1404138108 + + diff --git a/server508/data/mapdata/unpacked/12624.txt b/server508/data/mapdata/unpacked/12624.txt new file mode 100644 index 0000000..d52bacc --- /dev/null +++ b/server508/data/mapdata/unpacked/12624.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/12628.txt b/server508/data/mapdata/unpacked/12628.txt new file mode 100644 index 0000000..cf92b3b --- /dev/null +++ b/server508/data/mapdata/unpacked/12628.txt @@ -0,0 +1,4 @@ +1557696523 +1576331159 +-2104822183 +-309564623 diff --git a/server508/data/mapdata/unpacked/12629.txt b/server508/data/mapdata/unpacked/12629.txt new file mode 100644 index 0000000..893ce31 --- /dev/null +++ b/server508/data/mapdata/unpacked/12629.txt @@ -0,0 +1,4 @@ +-992807501 +-2062158526 +-154775275 +804488735 diff --git a/server508/data/mapdata/unpacked/12630.txt b/server508/data/mapdata/unpacked/12630.txt new file mode 100644 index 0000000..03db2dd --- /dev/null +++ b/server508/data/mapdata/unpacked/12630.txt @@ -0,0 +1,4 @@ +-1108090696 +710523517 +2082926636 +107778168 diff --git a/server508/data/mapdata/unpacked/12631.txt b/server508/data/mapdata/unpacked/12631.txt new file mode 100644 index 0000000..80d9f23 --- /dev/null +++ b/server508/data/mapdata/unpacked/12631.txt @@ -0,0 +1,4 @@ +693308333 +-269450306 +-924437218 +309489139 diff --git a/server508/data/mapdata/unpacked/12632.txt b/server508/data/mapdata/unpacked/12632.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12632.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12633.txt b/server508/data/mapdata/unpacked/12633.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12633.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12634.txt b/server508/data/mapdata/unpacked/12634.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12634.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12688.txt b/server508/data/mapdata/unpacked/12688.txt new file mode 100644 index 0000000..9d2bc49 --- /dev/null +++ b/server508/data/mapdata/unpacked/12688.txt @@ -0,0 +1,4 @@ +1861636222 +1638403446 +-649444098 +2131977195 diff --git a/server508/data/mapdata/unpacked/12689.txt b/server508/data/mapdata/unpacked/12689.txt new file mode 100644 index 0000000..1f7d42f --- /dev/null +++ b/server508/data/mapdata/unpacked/12689.txt @@ -0,0 +1,4 @@ +-1177832090 +806845610 +-2074522350 +793591882 diff --git a/server508/data/mapdata/unpacked/12690.txt b/server508/data/mapdata/unpacked/12690.txt new file mode 100644 index 0000000..a4a03ee --- /dev/null +++ b/server508/data/mapdata/unpacked/12690.txt @@ -0,0 +1,4 @@ +-1658567313 +-1665136661 +638517615 +-2091981200 diff --git a/server508/data/mapdata/unpacked/12692.txt b/server508/data/mapdata/unpacked/12692.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12692.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12693.txt b/server508/data/mapdata/unpacked/12693.txt new file mode 100644 index 0000000..c7c8dd5 --- /dev/null +++ b/server508/data/mapdata/unpacked/12693.txt @@ -0,0 +1,4 @@ +327147322 +-754034887 +2079577902 +145696251 diff --git a/server508/data/mapdata/unpacked/12694.txt b/server508/data/mapdata/unpacked/12694.txt new file mode 100644 index 0000000..dc896b1 --- /dev/null +++ b/server508/data/mapdata/unpacked/12694.txt @@ -0,0 +1,4 @@ +631068451 +-510806123 +2026757696 +207332608 diff --git a/server508/data/mapdata/unpacked/12695.txt b/server508/data/mapdata/unpacked/12695.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12695.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12696.txt b/server508/data/mapdata/unpacked/12696.txt new file mode 100644 index 0000000..a0b32ca --- /dev/null +++ b/server508/data/mapdata/unpacked/12696.txt @@ -0,0 +1,4 @@ +690970369 +-466418236 +-666391415 +1091047140 diff --git a/server508/data/mapdata/unpacked/12697.txt b/server508/data/mapdata/unpacked/12697.txt new file mode 100644 index 0000000..65b7b19 --- /dev/null +++ b/server508/data/mapdata/unpacked/12697.txt @@ -0,0 +1,4 @@ +1764668344 +-101513352 +-710472869 +-1014452411 diff --git a/server508/data/mapdata/unpacked/12698.txt b/server508/data/mapdata/unpacked/12698.txt new file mode 100644 index 0000000..0208c1d --- /dev/null +++ b/server508/data/mapdata/unpacked/12698.txt @@ -0,0 +1,4 @@ +-161912285 +-1949783111 +790481303 +987975274 diff --git a/server508/data/mapdata/unpacked/12699.txt b/server508/data/mapdata/unpacked/12699.txt new file mode 100644 index 0000000..e27e212 --- /dev/null +++ b/server508/data/mapdata/unpacked/12699.txt @@ -0,0 +1,4 @@ +-1844552510 +896294306 +973094427 +-653509731 diff --git a/server508/data/mapdata/unpacked/12700.txt b/server508/data/mapdata/unpacked/12700.txt new file mode 100644 index 0000000..dbdfb13 --- /dev/null +++ b/server508/data/mapdata/unpacked/12700.txt @@ -0,0 +1,4 @@ +-1802430094 +1220107446 +-1897971895 +-1437873968 diff --git a/server508/data/mapdata/unpacked/12842.txt b/server508/data/mapdata/unpacked/12842.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12842.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12843.txt b/server508/data/mapdata/unpacked/12843.txt new file mode 100644 index 0000000..77c0ac8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12843.txt @@ -0,0 +1,4 @@ +-203885401 +22803731 +234561826 +140244374 diff --git a/server508/data/mapdata/unpacked/12844.txt b/server508/data/mapdata/unpacked/12844.txt new file mode 100644 index 0000000..7baab1d --- /dev/null +++ b/server508/data/mapdata/unpacked/12844.txt @@ -0,0 +1,4 @@ +226013993 +-442175197 +1072280142 +-2076608354 diff --git a/server508/data/mapdata/unpacked/12845.txt b/server508/data/mapdata/unpacked/12845.txt new file mode 100644 index 0000000..8a04d45 --- /dev/null +++ b/server508/data/mapdata/unpacked/12845.txt @@ -0,0 +1,4 @@ +993041158 +1401235448 +1282019826 +44639213 diff --git a/server508/data/mapdata/unpacked/12846.txt b/server508/data/mapdata/unpacked/12846.txt new file mode 100644 index 0000000..f2d0344 --- /dev/null +++ b/server508/data/mapdata/unpacked/12846.txt @@ -0,0 +1,4 @@ +1813291988 +-1182316575 +55462006 +-1149391696 diff --git a/server508/data/mapdata/unpacked/12847.txt b/server508/data/mapdata/unpacked/12847.txt new file mode 100644 index 0000000..0cfa581 --- /dev/null +++ b/server508/data/mapdata/unpacked/12847.txt @@ -0,0 +1,4 @@ +1632239854 +-1407430240 +1205200323 +-60923789 diff --git a/server508/data/mapdata/unpacked/12848.txt b/server508/data/mapdata/unpacked/12848.txt new file mode 100644 index 0000000..181ee16 --- /dev/null +++ b/server508/data/mapdata/unpacked/12848.txt @@ -0,0 +1,4 @@ +-830415762 +-1655127901 +1335930534 +2043180488 diff --git a/server508/data/mapdata/unpacked/12849.txt b/server508/data/mapdata/unpacked/12849.txt new file mode 100644 index 0000000..0951e74 --- /dev/null +++ b/server508/data/mapdata/unpacked/12849.txt @@ -0,0 +1,4 @@ +183396243 +-461663209 +-212681663 +-266126212 diff --git a/server508/data/mapdata/unpacked/12850.txt b/server508/data/mapdata/unpacked/12850.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12850.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12851.txt b/server508/data/mapdata/unpacked/12851.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12851.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12852.txt b/server508/data/mapdata/unpacked/12852.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12852.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12853.txt b/server508/data/mapdata/unpacked/12853.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12853.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12854.txt b/server508/data/mapdata/unpacked/12854.txt new file mode 100644 index 0000000..a910ab9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12854.txt @@ -0,0 +1,4 @@ +-1110758489 +-2007731429 +-1451365699 +-893733752 diff --git a/server508/data/mapdata/unpacked/12855.txt b/server508/data/mapdata/unpacked/12855.txt new file mode 100644 index 0000000..f4e83fd --- /dev/null +++ b/server508/data/mapdata/unpacked/12855.txt @@ -0,0 +1,4 @@ +1692769164 +1331882881 +-1472294098 +-519931781 diff --git a/server508/data/mapdata/unpacked/12856.txt b/server508/data/mapdata/unpacked/12856.txt new file mode 100644 index 0000000..6b3947e --- /dev/null +++ b/server508/data/mapdata/unpacked/12856.txt @@ -0,0 +1,4 @@ +923234181 +89445813 +-680937124 +1925233347 diff --git a/server508/data/mapdata/unpacked/12857.txt b/server508/data/mapdata/unpacked/12857.txt new file mode 100644 index 0000000..6b35e72 --- /dev/null +++ b/server508/data/mapdata/unpacked/12857.txt @@ -0,0 +1,4 @@ +494634691 +-1521729884 +-752058813 +1253933259 diff --git a/server508/data/mapdata/unpacked/12858.txt b/server508/data/mapdata/unpacked/12858.txt new file mode 100644 index 0000000..6a35e98 --- /dev/null +++ b/server508/data/mapdata/unpacked/12858.txt @@ -0,0 +1,4 @@ +-1629680233 +-793062452 +-1494868511 +239406742 diff --git a/server508/data/mapdata/unpacked/12859.txt b/server508/data/mapdata/unpacked/12859.txt new file mode 100644 index 0000000..d4af3e0 --- /dev/null +++ b/server508/data/mapdata/unpacked/12859.txt @@ -0,0 +1,4 @@ +-139908221 +1332748618 +-1072704980 +-1679539931 diff --git a/server508/data/mapdata/unpacked/12860.txt b/server508/data/mapdata/unpacked/12860.txt new file mode 100644 index 0000000..6d94f8d --- /dev/null +++ b/server508/data/mapdata/unpacked/12860.txt @@ -0,0 +1,4 @@ +1143684881 +-2095747982 +-392775805 +1095955025 diff --git a/server508/data/mapdata/unpacked/12861.txt b/server508/data/mapdata/unpacked/12861.txt new file mode 100644 index 0000000..27a5789 --- /dev/null +++ b/server508/data/mapdata/unpacked/12861.txt @@ -0,0 +1,4 @@ +1816963481 +-496926322 +1214068433 +1190940799 diff --git a/server508/data/mapdata/unpacked/12862.txt b/server508/data/mapdata/unpacked/12862.txt new file mode 100644 index 0000000..06bdff0 --- /dev/null +++ b/server508/data/mapdata/unpacked/12862.txt @@ -0,0 +1,4 @@ +-362546063 +986809728 +-732925351 +-437970150 diff --git a/server508/data/mapdata/unpacked/12865.txt b/server508/data/mapdata/unpacked/12865.txt new file mode 100644 index 0000000..bac2b43 --- /dev/null +++ b/server508/data/mapdata/unpacked/12865.txt @@ -0,0 +1,4 @@ +-846172563 +1921265340 +-56940175 +1759424944 diff --git a/server508/data/mapdata/unpacked/12866.txt b/server508/data/mapdata/unpacked/12866.txt new file mode 100644 index 0000000..10cffb8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12866.txt @@ -0,0 +1,4 @@ +-545091180 +1146916512 +-1890387271 +553903087 diff --git a/server508/data/mapdata/unpacked/12867.txt b/server508/data/mapdata/unpacked/12867.txt new file mode 100644 index 0000000..0879c89 --- /dev/null +++ b/server508/data/mapdata/unpacked/12867.txt @@ -0,0 +1,4 @@ +1462732309 +395803116 +803023666 +-1139113006 diff --git a/server508/data/mapdata/unpacked/12876.txt b/server508/data/mapdata/unpacked/12876.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12876.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12877.txt b/server508/data/mapdata/unpacked/12877.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12877.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12878.txt b/server508/data/mapdata/unpacked/12878.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/12878.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/12879.txt b/server508/data/mapdata/unpacked/12879.txt new file mode 100644 index 0000000..b05788a --- /dev/null +++ b/server508/data/mapdata/unpacked/12879.txt @@ -0,0 +1,6 @@ +-1368673067 +915871651 +-1626507432 +1807642543 + + diff --git a/server508/data/mapdata/unpacked/12880.txt b/server508/data/mapdata/unpacked/12880.txt new file mode 100644 index 0000000..f5609fc --- /dev/null +++ b/server508/data/mapdata/unpacked/12880.txt @@ -0,0 +1,6 @@ +1048762260 +1169103285 +187905242 +-483193099 + + diff --git a/server508/data/mapdata/unpacked/12884.txt b/server508/data/mapdata/unpacked/12884.txt new file mode 100644 index 0000000..1f7ca5c --- /dev/null +++ b/server508/data/mapdata/unpacked/12884.txt @@ -0,0 +1,4 @@ +219137432 +-588958221 +643827879 +166439179 diff --git a/server508/data/mapdata/unpacked/12885.txt b/server508/data/mapdata/unpacked/12885.txt new file mode 100644 index 0000000..1d78b46 --- /dev/null +++ b/server508/data/mapdata/unpacked/12885.txt @@ -0,0 +1,4 @@ +-295659180 +1892042068 +-983165209 +-765523083 diff --git a/server508/data/mapdata/unpacked/12886.txt b/server508/data/mapdata/unpacked/12886.txt new file mode 100644 index 0000000..7b1e428 --- /dev/null +++ b/server508/data/mapdata/unpacked/12886.txt @@ -0,0 +1,4 @@ +-1441695147 +730261545 +-221502328 +1839243995 diff --git a/server508/data/mapdata/unpacked/12887.txt b/server508/data/mapdata/unpacked/12887.txt new file mode 100644 index 0000000..e781ed8 --- /dev/null +++ b/server508/data/mapdata/unpacked/12887.txt @@ -0,0 +1,4 @@ +-1781165696 +2082501875 +1317465410 +954416699 diff --git a/server508/data/mapdata/unpacked/12944.txt b/server508/data/mapdata/unpacked/12944.txt new file mode 100644 index 0000000..48e7483 --- /dev/null +++ b/server508/data/mapdata/unpacked/12944.txt @@ -0,0 +1,4 @@ +-1975958933 +-1193334151 +-159998783 +-193649368 diff --git a/server508/data/mapdata/unpacked/12945.txt b/server508/data/mapdata/unpacked/12945.txt new file mode 100644 index 0000000..de80235 --- /dev/null +++ b/server508/data/mapdata/unpacked/12945.txt @@ -0,0 +1,4 @@ +-901643304 +-529015531 +-696518247 +1093695083 diff --git a/server508/data/mapdata/unpacked/12946.txt b/server508/data/mapdata/unpacked/12946.txt new file mode 100644 index 0000000..212b692 --- /dev/null +++ b/server508/data/mapdata/unpacked/12946.txt @@ -0,0 +1,4 @@ +-378799197 +-523412055 +-432087183 +2105681980 diff --git a/server508/data/mapdata/unpacked/12948.txt b/server508/data/mapdata/unpacked/12948.txt new file mode 100644 index 0000000..471fad2 --- /dev/null +++ b/server508/data/mapdata/unpacked/12948.txt @@ -0,0 +1,4 @@ +1629198458 +696032791 +-1386317415 +445054408 diff --git a/server508/data/mapdata/unpacked/12949.txt b/server508/data/mapdata/unpacked/12949.txt new file mode 100644 index 0000000..c52683b --- /dev/null +++ b/server508/data/mapdata/unpacked/12949.txt @@ -0,0 +1,4 @@ +-824331278 +-1926121844 +1635081242 +1203632017 diff --git a/server508/data/mapdata/unpacked/12950.txt b/server508/data/mapdata/unpacked/12950.txt new file mode 100644 index 0000000..3665859 --- /dev/null +++ b/server508/data/mapdata/unpacked/12950.txt @@ -0,0 +1,4 @@ +1308307084 +116163668 +1335729977 +126632541 diff --git a/server508/data/mapdata/unpacked/12951.txt b/server508/data/mapdata/unpacked/12951.txt new file mode 100644 index 0000000..167ec2f --- /dev/null +++ b/server508/data/mapdata/unpacked/12951.txt @@ -0,0 +1,4 @@ +-1979754927 +574273135 +-1414539851 +-766497717 diff --git a/server508/data/mapdata/unpacked/12952.txt b/server508/data/mapdata/unpacked/12952.txt new file mode 100644 index 0000000..d998e7a --- /dev/null +++ b/server508/data/mapdata/unpacked/12952.txt @@ -0,0 +1,4 @@ +-1425997721 +-1885862885 +-1157108098 +1841563038 diff --git a/server508/data/mapdata/unpacked/12953.txt b/server508/data/mapdata/unpacked/12953.txt new file mode 100644 index 0000000..3d6388e --- /dev/null +++ b/server508/data/mapdata/unpacked/12953.txt @@ -0,0 +1,4 @@ +-1250188060 +-1799181120 +779026206 +758487113 diff --git a/server508/data/mapdata/unpacked/12954.txt b/server508/data/mapdata/unpacked/12954.txt new file mode 100644 index 0000000..b226355 --- /dev/null +++ b/server508/data/mapdata/unpacked/12954.txt @@ -0,0 +1,4 @@ +1661321273 +-1954068524 +82368798 +1528722778 diff --git a/server508/data/mapdata/unpacked/12955.txt b/server508/data/mapdata/unpacked/12955.txt new file mode 100644 index 0000000..8487ec3 --- /dev/null +++ b/server508/data/mapdata/unpacked/12955.txt @@ -0,0 +1,4 @@ +2001176320 +-515563756 +-1019109153 +347995784 diff --git a/server508/data/mapdata/unpacked/13098.txt b/server508/data/mapdata/unpacked/13098.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13098.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13099.txt b/server508/data/mapdata/unpacked/13099.txt new file mode 100644 index 0000000..b534e1c --- /dev/null +++ b/server508/data/mapdata/unpacked/13099.txt @@ -0,0 +1,4 @@ +273193181 +-1465876115 +-151667950 +40605898 diff --git a/server508/data/mapdata/unpacked/13100.txt b/server508/data/mapdata/unpacked/13100.txt new file mode 100644 index 0000000..0a85157 --- /dev/null +++ b/server508/data/mapdata/unpacked/13100.txt @@ -0,0 +1,4 @@ +284097754 +-1500159810 +-705437259 +-939519544 diff --git a/server508/data/mapdata/unpacked/13101.txt b/server508/data/mapdata/unpacked/13101.txt new file mode 100644 index 0000000..67746a8 --- /dev/null +++ b/server508/data/mapdata/unpacked/13101.txt @@ -0,0 +1,4 @@ +-381920894 +-806030125 +-1295289124 +905654937 diff --git a/server508/data/mapdata/unpacked/13102.txt b/server508/data/mapdata/unpacked/13102.txt new file mode 100644 index 0000000..463fd26 --- /dev/null +++ b/server508/data/mapdata/unpacked/13102.txt @@ -0,0 +1,4 @@ +376149710 +553132983 +-1519502826 +1450133972 diff --git a/server508/data/mapdata/unpacked/13103.txt b/server508/data/mapdata/unpacked/13103.txt new file mode 100644 index 0000000..3256318 --- /dev/null +++ b/server508/data/mapdata/unpacked/13103.txt @@ -0,0 +1,4 @@ +560689103 +-372924587 +1002681194 +-1313254694 diff --git a/server508/data/mapdata/unpacked/13104.txt b/server508/data/mapdata/unpacked/13104.txt new file mode 100644 index 0000000..70ea76e --- /dev/null +++ b/server508/data/mapdata/unpacked/13104.txt @@ -0,0 +1,4 @@ +-421493992 +1381068261 +1710426242 +2142500778 diff --git a/server508/data/mapdata/unpacked/13105.txt b/server508/data/mapdata/unpacked/13105.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13105.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13106.txt b/server508/data/mapdata/unpacked/13106.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13106.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13107.txt b/server508/data/mapdata/unpacked/13107.txt new file mode 100644 index 0000000..27f24ac --- /dev/null +++ b/server508/data/mapdata/unpacked/13107.txt @@ -0,0 +1,4 @@ +-1161498786 +-880845643 +1588242926 +2124040528 diff --git a/server508/data/mapdata/unpacked/13108.txt b/server508/data/mapdata/unpacked/13108.txt new file mode 100644 index 0000000..c59d057 --- /dev/null +++ b/server508/data/mapdata/unpacked/13108.txt @@ -0,0 +1,4 @@ +-762783054 +-1655608106 +1991658602 +-817463829 diff --git a/server508/data/mapdata/unpacked/13109.txt b/server508/data/mapdata/unpacked/13109.txt new file mode 100644 index 0000000..b5e681c --- /dev/null +++ b/server508/data/mapdata/unpacked/13109.txt @@ -0,0 +1,4 @@ +-349563312 +1574791115 +-229143592 +422091049 diff --git a/server508/data/mapdata/unpacked/13110.txt b/server508/data/mapdata/unpacked/13110.txt new file mode 100644 index 0000000..bffccea --- /dev/null +++ b/server508/data/mapdata/unpacked/13110.txt @@ -0,0 +1,4 @@ +-820103937 +1919157609 +-1946601339 +-894170194 diff --git a/server508/data/mapdata/unpacked/13111.txt b/server508/data/mapdata/unpacked/13111.txt new file mode 100644 index 0000000..ad90fe0 --- /dev/null +++ b/server508/data/mapdata/unpacked/13111.txt @@ -0,0 +1,4 @@ +-1782025261 +1774841807 +-1975669291 +2051813035 diff --git a/server508/data/mapdata/unpacked/13112.txt b/server508/data/mapdata/unpacked/13112.txt new file mode 100644 index 0000000..e7f5458 --- /dev/null +++ b/server508/data/mapdata/unpacked/13112.txt @@ -0,0 +1,4 @@ +-1779719436 +779690941 +517280009 +1427658886 diff --git a/server508/data/mapdata/unpacked/13113.txt b/server508/data/mapdata/unpacked/13113.txt new file mode 100644 index 0000000..e553d13 --- /dev/null +++ b/server508/data/mapdata/unpacked/13113.txt @@ -0,0 +1,4 @@ +-370422948 +777805008 +1261418388 +-189191344 diff --git a/server508/data/mapdata/unpacked/13114.txt b/server508/data/mapdata/unpacked/13114.txt new file mode 100644 index 0000000..7b4cf3f --- /dev/null +++ b/server508/data/mapdata/unpacked/13114.txt @@ -0,0 +1,4 @@ +2023163464 +-1359208851 +-627529837 +-492590480 diff --git a/server508/data/mapdata/unpacked/13115.txt b/server508/data/mapdata/unpacked/13115.txt new file mode 100644 index 0000000..ca31327 --- /dev/null +++ b/server508/data/mapdata/unpacked/13115.txt @@ -0,0 +1,4 @@ +503978263 +-1015439905 +705572372 +-1389206032 diff --git a/server508/data/mapdata/unpacked/13116.txt b/server508/data/mapdata/unpacked/13116.txt new file mode 100644 index 0000000..5bf3fab --- /dev/null +++ b/server508/data/mapdata/unpacked/13116.txt @@ -0,0 +1,4 @@ +343282082 +-57441829 +-10906049 +1340555326 diff --git a/server508/data/mapdata/unpacked/13117.txt b/server508/data/mapdata/unpacked/13117.txt new file mode 100644 index 0000000..29debb2 --- /dev/null +++ b/server508/data/mapdata/unpacked/13117.txt @@ -0,0 +1,4 @@ +1990755092 +1522144665 +-97167594 +215065448 diff --git a/server508/data/mapdata/unpacked/13118.txt b/server508/data/mapdata/unpacked/13118.txt new file mode 100644 index 0000000..70690c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/13118.txt @@ -0,0 +1,4 @@ +1803456807 +778621268 +1763810696 +-1674740332 diff --git a/server508/data/mapdata/unpacked/13132.txt b/server508/data/mapdata/unpacked/13132.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13132.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13133.txt b/server508/data/mapdata/unpacked/13133.txt new file mode 100644 index 0000000..6fc89bd --- /dev/null +++ b/server508/data/mapdata/unpacked/13133.txt @@ -0,0 +1,4 @@ +-1026003062 +917176839 +-84576515 +-1037395862 diff --git a/server508/data/mapdata/unpacked/13134.txt b/server508/data/mapdata/unpacked/13134.txt new file mode 100644 index 0000000..d52bacc --- /dev/null +++ b/server508/data/mapdata/unpacked/13134.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/13135.txt b/server508/data/mapdata/unpacked/13135.txt new file mode 100644 index 0000000..02086cc --- /dev/null +++ b/server508/data/mapdata/unpacked/13135.txt @@ -0,0 +1,6 @@ +425723212 +580084357 +1788364975 +1608414630 + + diff --git a/server508/data/mapdata/unpacked/13136.txt b/server508/data/mapdata/unpacked/13136.txt new file mode 100644 index 0000000..d52bacc --- /dev/null +++ b/server508/data/mapdata/unpacked/13136.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/13140.txt b/server508/data/mapdata/unpacked/13140.txt new file mode 100644 index 0000000..41c6b83 --- /dev/null +++ b/server508/data/mapdata/unpacked/13140.txt @@ -0,0 +1,4 @@ +-1757870261 +1824774693 +-1461099709 +1915501139 diff --git a/server508/data/mapdata/unpacked/13141.txt b/server508/data/mapdata/unpacked/13141.txt new file mode 100644 index 0000000..1276de6 --- /dev/null +++ b/server508/data/mapdata/unpacked/13141.txt @@ -0,0 +1,4 @@ +1705435594 +233219482 +279736542 +2096923137 diff --git a/server508/data/mapdata/unpacked/13142.txt b/server508/data/mapdata/unpacked/13142.txt new file mode 100644 index 0000000..702f535 --- /dev/null +++ b/server508/data/mapdata/unpacked/13142.txt @@ -0,0 +1,4 @@ +2062386940 +-24765133 +-1126233768 +475032842 diff --git a/server508/data/mapdata/unpacked/13143.txt b/server508/data/mapdata/unpacked/13143.txt new file mode 100644 index 0000000..ce875e7 --- /dev/null +++ b/server508/data/mapdata/unpacked/13143.txt @@ -0,0 +1,4 @@ +1411276783 +-169287799 +-1924979618 +-1103634209 diff --git a/server508/data/mapdata/unpacked/13200.txt b/server508/data/mapdata/unpacked/13200.txt new file mode 100644 index 0000000..f5d8d14 --- /dev/null +++ b/server508/data/mapdata/unpacked/13200.txt @@ -0,0 +1,4 @@ +-384958441 +757681189 +-1060421200 +1710552745 diff --git a/server508/data/mapdata/unpacked/13201.txt b/server508/data/mapdata/unpacked/13201.txt new file mode 100644 index 0000000..3df8c1b --- /dev/null +++ b/server508/data/mapdata/unpacked/13201.txt @@ -0,0 +1,4 @@ +-777242905 +1490139407 +-62422504 +1747570013 diff --git a/server508/data/mapdata/unpacked/13202.txt b/server508/data/mapdata/unpacked/13202.txt new file mode 100644 index 0000000..4846a9f --- /dev/null +++ b/server508/data/mapdata/unpacked/13202.txt @@ -0,0 +1,4 @@ +893987585 +238112418 +-1026484109 +-2078170656 diff --git a/server508/data/mapdata/unpacked/13204.txt b/server508/data/mapdata/unpacked/13204.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13204.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13205.txt b/server508/data/mapdata/unpacked/13205.txt new file mode 100644 index 0000000..a2e5f3b --- /dev/null +++ b/server508/data/mapdata/unpacked/13205.txt @@ -0,0 +1,4 @@ +1250202258 +-2009534633 +1981493488 +10068968 diff --git a/server508/data/mapdata/unpacked/13206.txt b/server508/data/mapdata/unpacked/13206.txt new file mode 100644 index 0000000..96d5bc0 --- /dev/null +++ b/server508/data/mapdata/unpacked/13206.txt @@ -0,0 +1,4 @@ +1456157358 +1036496685 +-1478577110 +-1039552689 diff --git a/server508/data/mapdata/unpacked/13207.txt b/server508/data/mapdata/unpacked/13207.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/13207.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/13208.txt b/server508/data/mapdata/unpacked/13208.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13208.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13209.txt b/server508/data/mapdata/unpacked/13209.txt new file mode 100644 index 0000000..a58080e --- /dev/null +++ b/server508/data/mapdata/unpacked/13209.txt @@ -0,0 +1,4 @@ +-441828435 +-1834839387 +-1652863357 +1161715526 diff --git a/server508/data/mapdata/unpacked/13210.txt b/server508/data/mapdata/unpacked/13210.txt new file mode 100644 index 0000000..d134095 --- /dev/null +++ b/server508/data/mapdata/unpacked/13210.txt @@ -0,0 +1,4 @@ +-1843718280 +1703682437 +-955823154 +-1545029718 diff --git a/server508/data/mapdata/unpacked/13211.txt b/server508/data/mapdata/unpacked/13211.txt new file mode 100644 index 0000000..495722b --- /dev/null +++ b/server508/data/mapdata/unpacked/13211.txt @@ -0,0 +1,4 @@ +1293288083 +1390574804 +1838161452 +887056395 diff --git a/server508/data/mapdata/unpacked/13354.txt b/server508/data/mapdata/unpacked/13354.txt new file mode 100644 index 0000000..3d31f4d --- /dev/null +++ b/server508/data/mapdata/unpacked/13354.txt @@ -0,0 +1,4 @@ +-697361682 +-1108068736 +-491371566 +-1750045046 diff --git a/server508/data/mapdata/unpacked/13355.txt b/server508/data/mapdata/unpacked/13355.txt new file mode 100644 index 0000000..55832a7 --- /dev/null +++ b/server508/data/mapdata/unpacked/13355.txt @@ -0,0 +1,4 @@ +1045096887 +204321120 +-803556278 +-865381665 diff --git a/server508/data/mapdata/unpacked/13356.txt b/server508/data/mapdata/unpacked/13356.txt new file mode 100644 index 0000000..2991604 --- /dev/null +++ b/server508/data/mapdata/unpacked/13356.txt @@ -0,0 +1,4 @@ +-1202647115 +-2077370353 +-776213042 +-208608901 diff --git a/server508/data/mapdata/unpacked/13357.txt b/server508/data/mapdata/unpacked/13357.txt new file mode 100644 index 0000000..614f2e3 --- /dev/null +++ b/server508/data/mapdata/unpacked/13357.txt @@ -0,0 +1,4 @@ +1828573590 +-917113205 +880280264 +133645860 diff --git a/server508/data/mapdata/unpacked/13358.txt b/server508/data/mapdata/unpacked/13358.txt new file mode 100644 index 0000000..9d6ba5e --- /dev/null +++ b/server508/data/mapdata/unpacked/13358.txt @@ -0,0 +1,4 @@ +-2120388863 +1806325434 +106972475 +1486185138 diff --git a/server508/data/mapdata/unpacked/13359.txt b/server508/data/mapdata/unpacked/13359.txt new file mode 100644 index 0000000..5dcd296 --- /dev/null +++ b/server508/data/mapdata/unpacked/13359.txt @@ -0,0 +1,5 @@ +231092921 +-248629409 +1012469199 +966196096 + diff --git a/server508/data/mapdata/unpacked/13360.txt b/server508/data/mapdata/unpacked/13360.txt new file mode 100644 index 0000000..12e722f --- /dev/null +++ b/server508/data/mapdata/unpacked/13360.txt @@ -0,0 +1,4 @@ +-1860635048 +-1994403194 +-261420877 +899213732 diff --git a/server508/data/mapdata/unpacked/13361.txt b/server508/data/mapdata/unpacked/13361.txt new file mode 100644 index 0000000..0e545ad --- /dev/null +++ b/server508/data/mapdata/unpacked/13361.txt @@ -0,0 +1,4 @@ +1581119671 +589912019 +-953848433 +669787750 diff --git a/server508/data/mapdata/unpacked/13362.txt b/server508/data/mapdata/unpacked/13362.txt new file mode 100644 index 0000000..7607515 --- /dev/null +++ b/server508/data/mapdata/unpacked/13362.txt @@ -0,0 +1,4 @@ +647685229 +1735122662 +202525670 +-1430696427 diff --git a/server508/data/mapdata/unpacked/13363.txt b/server508/data/mapdata/unpacked/13363.txt new file mode 100644 index 0000000..d171732 --- /dev/null +++ b/server508/data/mapdata/unpacked/13363.txt @@ -0,0 +1,4 @@ +-1437683143 +1313459135 +-572808465 +628532614 diff --git a/server508/data/mapdata/unpacked/13364.txt b/server508/data/mapdata/unpacked/13364.txt new file mode 100644 index 0000000..35d6435 --- /dev/null +++ b/server508/data/mapdata/unpacked/13364.txt @@ -0,0 +1,4 @@ +271092435 +-91354012 +450005855 +1673700762 diff --git a/server508/data/mapdata/unpacked/13365.txt b/server508/data/mapdata/unpacked/13365.txt new file mode 100644 index 0000000..9f1763f --- /dev/null +++ b/server508/data/mapdata/unpacked/13365.txt @@ -0,0 +1,4 @@ +550472972 +-90477551 +1424060678 +-500359242 diff --git a/server508/data/mapdata/unpacked/13366.txt b/server508/data/mapdata/unpacked/13366.txt new file mode 100644 index 0000000..f77cf7f --- /dev/null +++ b/server508/data/mapdata/unpacked/13366.txt @@ -0,0 +1,4 @@ +-837204001 +131191568 +-2992450 +-972145679 diff --git a/server508/data/mapdata/unpacked/13367.txt b/server508/data/mapdata/unpacked/13367.txt new file mode 100644 index 0000000..80015b5 --- /dev/null +++ b/server508/data/mapdata/unpacked/13367.txt @@ -0,0 +1,4 @@ +-1928486991 +-1735124301 +1800325924 +373794956 diff --git a/server508/data/mapdata/unpacked/13368.txt b/server508/data/mapdata/unpacked/13368.txt new file mode 100644 index 0000000..116c0a7 --- /dev/null +++ b/server508/data/mapdata/unpacked/13368.txt @@ -0,0 +1,4 @@ +-922499048 +1143654396 +1593518953 +1160947087 diff --git a/server508/data/mapdata/unpacked/13369.txt b/server508/data/mapdata/unpacked/13369.txt new file mode 100644 index 0000000..c9e831e --- /dev/null +++ b/server508/data/mapdata/unpacked/13369.txt @@ -0,0 +1,4 @@ +-854229759 +-1850773237 +-273243753 +151474217 diff --git a/server508/data/mapdata/unpacked/13370.txt b/server508/data/mapdata/unpacked/13370.txt new file mode 100644 index 0000000..5098a2e --- /dev/null +++ b/server508/data/mapdata/unpacked/13370.txt @@ -0,0 +1,4 @@ +-1866559281 +-1693659798 +-1335114197 +1185838193 diff --git a/server508/data/mapdata/unpacked/13371.txt b/server508/data/mapdata/unpacked/13371.txt new file mode 100644 index 0000000..3acb96f --- /dev/null +++ b/server508/data/mapdata/unpacked/13371.txt @@ -0,0 +1,4 @@ +-172414174 +1775715954 +1436041524 +-90862670 diff --git a/server508/data/mapdata/unpacked/13372.txt b/server508/data/mapdata/unpacked/13372.txt new file mode 100644 index 0000000..77f3024 --- /dev/null +++ b/server508/data/mapdata/unpacked/13372.txt @@ -0,0 +1,4 @@ +1523911372 +351024518 +1404660376 +-1833782282 diff --git a/server508/data/mapdata/unpacked/13373.txt b/server508/data/mapdata/unpacked/13373.txt new file mode 100644 index 0000000..703226a --- /dev/null +++ b/server508/data/mapdata/unpacked/13373.txt @@ -0,0 +1,4 @@ +-1762860860 +2070816046 +-1848056827 +538155683 diff --git a/server508/data/mapdata/unpacked/13374.txt b/server508/data/mapdata/unpacked/13374.txt new file mode 100644 index 0000000..8847274 --- /dev/null +++ b/server508/data/mapdata/unpacked/13374.txt @@ -0,0 +1,4 @@ +-2094243426 +-1792618509 +-1562985614 +633233826 diff --git a/server508/data/mapdata/unpacked/13388.txt b/server508/data/mapdata/unpacked/13388.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13388.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13389.txt b/server508/data/mapdata/unpacked/13389.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13389.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13456.txt b/server508/data/mapdata/unpacked/13456.txt new file mode 100644 index 0000000..0ce3c23 --- /dev/null +++ b/server508/data/mapdata/unpacked/13456.txt @@ -0,0 +1,5 @@ +-476100316 +-1682296770 +133855524 +112315923 + diff --git a/server508/data/mapdata/unpacked/13457.txt b/server508/data/mapdata/unpacked/13457.txt new file mode 100644 index 0000000..a86041a --- /dev/null +++ b/server508/data/mapdata/unpacked/13457.txt @@ -0,0 +1,5 @@ +377761737 +-478773092 +2106772372 +2013273184 + diff --git a/server508/data/mapdata/unpacked/13458.txt b/server508/data/mapdata/unpacked/13458.txt new file mode 100644 index 0000000..4377786 --- /dev/null +++ b/server508/data/mapdata/unpacked/13458.txt @@ -0,0 +1,5 @@ +-528778477 +1188068801 +-831895341 +-843066318 + diff --git a/server508/data/mapdata/unpacked/13461.txt b/server508/data/mapdata/unpacked/13461.txt new file mode 100644 index 0000000..41e715b --- /dev/null +++ b/server508/data/mapdata/unpacked/13461.txt @@ -0,0 +1,5 @@ +460291665 +970577463 +-987694183 +1332083960 + diff --git a/server508/data/mapdata/unpacked/13462.txt b/server508/data/mapdata/unpacked/13462.txt new file mode 100644 index 0000000..8ec24b1 --- /dev/null +++ b/server508/data/mapdata/unpacked/13462.txt @@ -0,0 +1,5 @@ +-1293267774 +-1055869460 +-1910211914 +-1862132200 + diff --git a/server508/data/mapdata/unpacked/13465.txt b/server508/data/mapdata/unpacked/13465.txt new file mode 100644 index 0000000..d867589 --- /dev/null +++ b/server508/data/mapdata/unpacked/13465.txt @@ -0,0 +1,4 @@ +-1620975981 +842688962 +1124919019 +1534496149 diff --git a/server508/data/mapdata/unpacked/13466.txt b/server508/data/mapdata/unpacked/13466.txt new file mode 100644 index 0000000..4d97135 --- /dev/null +++ b/server508/data/mapdata/unpacked/13466.txt @@ -0,0 +1,4 @@ +-460228398 +-76181685 +2062962515 +1167974062 diff --git a/server508/data/mapdata/unpacked/13467.txt b/server508/data/mapdata/unpacked/13467.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13467.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13610.txt b/server508/data/mapdata/unpacked/13610.txt new file mode 100644 index 0000000..f3d6767 --- /dev/null +++ b/server508/data/mapdata/unpacked/13610.txt @@ -0,0 +1,5 @@ +-1259340500 +2094890289 +-1255134464 +1578867778 + diff --git a/server508/data/mapdata/unpacked/13611.txt b/server508/data/mapdata/unpacked/13611.txt new file mode 100644 index 0000000..279ebaf --- /dev/null +++ b/server508/data/mapdata/unpacked/13611.txt @@ -0,0 +1,5 @@ +-2074654953 +2114352944 +-1715482214 +786241055 + diff --git a/server508/data/mapdata/unpacked/13612.txt b/server508/data/mapdata/unpacked/13612.txt new file mode 100644 index 0000000..149324d --- /dev/null +++ b/server508/data/mapdata/unpacked/13612.txt @@ -0,0 +1,4 @@ +1485341915 +-607675942 +-37541602 +-1009921417 diff --git a/server508/data/mapdata/unpacked/13613.txt b/server508/data/mapdata/unpacked/13613.txt new file mode 100644 index 0000000..df415fb --- /dev/null +++ b/server508/data/mapdata/unpacked/13613.txt @@ -0,0 +1,4 @@ +1215281736 +-1131653641 +-2080246040 +1849397312 diff --git a/server508/data/mapdata/unpacked/13614.txt b/server508/data/mapdata/unpacked/13614.txt new file mode 100644 index 0000000..4350549 --- /dev/null +++ b/server508/data/mapdata/unpacked/13614.txt @@ -0,0 +1,4 @@ +987461267 +1277137633 +-383892538 +1924229470 diff --git a/server508/data/mapdata/unpacked/13615.txt b/server508/data/mapdata/unpacked/13615.txt new file mode 100644 index 0000000..c6b918f --- /dev/null +++ b/server508/data/mapdata/unpacked/13615.txt @@ -0,0 +1,4 @@ +-1386012819 +-1667483384 +235442560 +2108663059 diff --git a/server508/data/mapdata/unpacked/13616.txt b/server508/data/mapdata/unpacked/13616.txt new file mode 100644 index 0000000..b0bc50d --- /dev/null +++ b/server508/data/mapdata/unpacked/13616.txt @@ -0,0 +1,4 @@ +-2043312890 +38355965 +-1115381550 +-1284493932 diff --git a/server508/data/mapdata/unpacked/13617.txt b/server508/data/mapdata/unpacked/13617.txt new file mode 100644 index 0000000..9327797 --- /dev/null +++ b/server508/data/mapdata/unpacked/13617.txt @@ -0,0 +1,4 @@ +778193894 +-1569947064 +1574720047 +1996357073 diff --git a/server508/data/mapdata/unpacked/13618.txt b/server508/data/mapdata/unpacked/13618.txt new file mode 100644 index 0000000..b050225 --- /dev/null +++ b/server508/data/mapdata/unpacked/13618.txt @@ -0,0 +1,4 @@ +-710010520 +-1679541351 +-1318048442 +1911381340 diff --git a/server508/data/mapdata/unpacked/13619.txt b/server508/data/mapdata/unpacked/13619.txt new file mode 100644 index 0000000..f5cb7eb --- /dev/null +++ b/server508/data/mapdata/unpacked/13619.txt @@ -0,0 +1,4 @@ +1157086744 +696587103 +659236939 +1057307787 diff --git a/server508/data/mapdata/unpacked/13620.txt b/server508/data/mapdata/unpacked/13620.txt new file mode 100644 index 0000000..8861af0 --- /dev/null +++ b/server508/data/mapdata/unpacked/13620.txt @@ -0,0 +1,4 @@ +-2036291738 +1473612575 +9834035 +-1983739737 diff --git a/server508/data/mapdata/unpacked/13621.txt b/server508/data/mapdata/unpacked/13621.txt new file mode 100644 index 0000000..ac788db --- /dev/null +++ b/server508/data/mapdata/unpacked/13621.txt @@ -0,0 +1,4 @@ +-1291167236 +-1205011126 +-1949699235 +1530879202 diff --git a/server508/data/mapdata/unpacked/13622.txt b/server508/data/mapdata/unpacked/13622.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/13622.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/13623.txt b/server508/data/mapdata/unpacked/13623.txt new file mode 100644 index 0000000..0138f6d --- /dev/null +++ b/server508/data/mapdata/unpacked/13623.txt @@ -0,0 +1,5 @@ +-1463440842 +-1812033761 +-1332936420 +340748024 + diff --git a/server508/data/mapdata/unpacked/13624.txt b/server508/data/mapdata/unpacked/13624.txt new file mode 100644 index 0000000..2600c64 --- /dev/null +++ b/server508/data/mapdata/unpacked/13624.txt @@ -0,0 +1,5 @@ +2111564081 +-1121458759 +1205557925 +-386058131 + diff --git a/server508/data/mapdata/unpacked/13625.txt b/server508/data/mapdata/unpacked/13625.txt new file mode 100644 index 0000000..cb2d41c --- /dev/null +++ b/server508/data/mapdata/unpacked/13625.txt @@ -0,0 +1,5 @@ +-1688194808 +-751145145 +-64310690 +-9400824 + diff --git a/server508/data/mapdata/unpacked/13626.txt b/server508/data/mapdata/unpacked/13626.txt new file mode 100644 index 0000000..51df0fe --- /dev/null +++ b/server508/data/mapdata/unpacked/13626.txt @@ -0,0 +1,5 @@ +2091552269 +-19993197 +919014338 +-2088295508 + diff --git a/server508/data/mapdata/unpacked/13627.txt b/server508/data/mapdata/unpacked/13627.txt new file mode 100644 index 0000000..990bd21 --- /dev/null +++ b/server508/data/mapdata/unpacked/13627.txt @@ -0,0 +1,5 @@ +341129543 +405594157 +-935930552 +1362472171 + diff --git a/server508/data/mapdata/unpacked/13628.txt b/server508/data/mapdata/unpacked/13628.txt new file mode 100644 index 0000000..37b54fa --- /dev/null +++ b/server508/data/mapdata/unpacked/13628.txt @@ -0,0 +1,5 @@ +83847925 +-1748584368 +-1828230097 +915424426 + diff --git a/server508/data/mapdata/unpacked/13629.txt b/server508/data/mapdata/unpacked/13629.txt new file mode 100644 index 0000000..93f81fd --- /dev/null +++ b/server508/data/mapdata/unpacked/13629.txt @@ -0,0 +1,5 @@ +-1526659316 +194744161 +-1617203167 +1822755797 + diff --git a/server508/data/mapdata/unpacked/13630.txt b/server508/data/mapdata/unpacked/13630.txt new file mode 100644 index 0000000..e0d1840 --- /dev/null +++ b/server508/data/mapdata/unpacked/13630.txt @@ -0,0 +1,4 @@ +-1632016999 +-2015192780 +-2137722473 +477794767 diff --git a/server508/data/mapdata/unpacked/13642.txt b/server508/data/mapdata/unpacked/13642.txt new file mode 100644 index 0000000..93047bb --- /dev/null +++ b/server508/data/mapdata/unpacked/13642.txt @@ -0,0 +1,4 @@ +1339676474 +261360204 +1438006333 +-388997930 diff --git a/server508/data/mapdata/unpacked/13643.txt b/server508/data/mapdata/unpacked/13643.txt new file mode 100644 index 0000000..b97bf7a --- /dev/null +++ b/server508/data/mapdata/unpacked/13643.txt @@ -0,0 +1,4 @@ +1113875885 +-236852397 +193142585 +-854043613 diff --git a/server508/data/mapdata/unpacked/13644.txt b/server508/data/mapdata/unpacked/13644.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13644.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13715.txt b/server508/data/mapdata/unpacked/13715.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13715.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13716.txt b/server508/data/mapdata/unpacked/13716.txt new file mode 100644 index 0000000..10f0419 --- /dev/null +++ b/server508/data/mapdata/unpacked/13716.txt @@ -0,0 +1,4 @@ +-913580283 +340446282 +893998558 +589419388 diff --git a/server508/data/mapdata/unpacked/13717.txt b/server508/data/mapdata/unpacked/13717.txt new file mode 100644 index 0000000..60888dd --- /dev/null +++ b/server508/data/mapdata/unpacked/13717.txt @@ -0,0 +1,4 @@ +1559468575 +-1513642990 +42449462 +-1614119576 diff --git a/server508/data/mapdata/unpacked/13721.txt b/server508/data/mapdata/unpacked/13721.txt new file mode 100644 index 0000000..5112cf7 --- /dev/null +++ b/server508/data/mapdata/unpacked/13721.txt @@ -0,0 +1,4 @@ +-1188425330 +1307846097 +888707126 +-1843934128 diff --git a/server508/data/mapdata/unpacked/13722.txt b/server508/data/mapdata/unpacked/13722.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13722.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13723.txt b/server508/data/mapdata/unpacked/13723.txt new file mode 100644 index 0000000..3f706d1 --- /dev/null +++ b/server508/data/mapdata/unpacked/13723.txt @@ -0,0 +1,4 @@ +-310574621 +110640497 +1685108265 +-1931806505 diff --git a/server508/data/mapdata/unpacked/13868.txt b/server508/data/mapdata/unpacked/13868.txt new file mode 100644 index 0000000..b6f0de7 --- /dev/null +++ b/server508/data/mapdata/unpacked/13868.txt @@ -0,0 +1,4 @@ +255205616 +-1585903009 +-1371243067 +-264891948 diff --git a/server508/data/mapdata/unpacked/13869.txt b/server508/data/mapdata/unpacked/13869.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13869.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13870.txt b/server508/data/mapdata/unpacked/13870.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13870.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13871.txt b/server508/data/mapdata/unpacked/13871.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13871.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13872.txt b/server508/data/mapdata/unpacked/13872.txt new file mode 100644 index 0000000..9b2a4f1 --- /dev/null +++ b/server508/data/mapdata/unpacked/13872.txt @@ -0,0 +1,4 @@ +-865041276 +1374390842 +-909885942 +30088570 diff --git a/server508/data/mapdata/unpacked/13873.txt b/server508/data/mapdata/unpacked/13873.txt new file mode 100644 index 0000000..ae40005 --- /dev/null +++ b/server508/data/mapdata/unpacked/13873.txt @@ -0,0 +1,4 @@ +-2072799260 +1290574946 +-1228463084 +1431541780 diff --git a/server508/data/mapdata/unpacked/13874.txt b/server508/data/mapdata/unpacked/13874.txt new file mode 100644 index 0000000..2e33e42 --- /dev/null +++ b/server508/data/mapdata/unpacked/13874.txt @@ -0,0 +1,4 @@ +176694529 +-1619161022 +-2105931784 +1450504485 diff --git a/server508/data/mapdata/unpacked/13875.txt b/server508/data/mapdata/unpacked/13875.txt new file mode 100644 index 0000000..d5ef34d --- /dev/null +++ b/server508/data/mapdata/unpacked/13875.txt @@ -0,0 +1,4 @@ +1139113955 +2083169380 +-283323786 +1268957176 diff --git a/server508/data/mapdata/unpacked/13876.txt b/server508/data/mapdata/unpacked/13876.txt new file mode 100644 index 0000000..a90fd24 --- /dev/null +++ b/server508/data/mapdata/unpacked/13876.txt @@ -0,0 +1,4 @@ +-1056000495 +1278886569 +-1666375011 +492887698 diff --git a/server508/data/mapdata/unpacked/13877.txt b/server508/data/mapdata/unpacked/13877.txt new file mode 100644 index 0000000..4379e35 --- /dev/null +++ b/server508/data/mapdata/unpacked/13877.txt @@ -0,0 +1,4 @@ +1498185652 +2064367906 +152992439 +585271079 diff --git a/server508/data/mapdata/unpacked/13878.txt b/server508/data/mapdata/unpacked/13878.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13878.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13879.txt b/server508/data/mapdata/unpacked/13879.txt new file mode 100644 index 0000000..d6b5f35 --- /dev/null +++ b/server508/data/mapdata/unpacked/13879.txt @@ -0,0 +1,4 @@ +-2101514338 +-1139447054 +51825149 +-512907347 diff --git a/server508/data/mapdata/unpacked/13880.txt b/server508/data/mapdata/unpacked/13880.txt new file mode 100644 index 0000000..a0fe2ed --- /dev/null +++ b/server508/data/mapdata/unpacked/13880.txt @@ -0,0 +1,4 @@ +-672032867 +-104766980 +-780173326 +-1476119873 diff --git a/server508/data/mapdata/unpacked/13898.txt b/server508/data/mapdata/unpacked/13898.txt new file mode 100644 index 0000000..9896e5d --- /dev/null +++ b/server508/data/mapdata/unpacked/13898.txt @@ -0,0 +1,4 @@ +-975892323 +-614503529 +1538650880 +-1348349880 diff --git a/server508/data/mapdata/unpacked/13899.txt b/server508/data/mapdata/unpacked/13899.txt new file mode 100644 index 0000000..872808c --- /dev/null +++ b/server508/data/mapdata/unpacked/13899.txt @@ -0,0 +1,4 @@ +-2117805741 +-268051413 +-733527930 +471010998 diff --git a/server508/data/mapdata/unpacked/13900.txt b/server508/data/mapdata/unpacked/13900.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13900.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13971.txt b/server508/data/mapdata/unpacked/13971.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13971.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13972.txt b/server508/data/mapdata/unpacked/13972.txt new file mode 100644 index 0000000..4abd48b --- /dev/null +++ b/server508/data/mapdata/unpacked/13972.txt @@ -0,0 +1,4 @@ +1266294685 +1139088638 +1514900183 +-1389022839 diff --git a/server508/data/mapdata/unpacked/13973.txt b/server508/data/mapdata/unpacked/13973.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/13973.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/13974.txt b/server508/data/mapdata/unpacked/13974.txt new file mode 100644 index 0000000..344711c --- /dev/null +++ b/server508/data/mapdata/unpacked/13974.txt @@ -0,0 +1,4 @@ +1384510929 +1857691725 +-293821029 +-1219099456 diff --git a/server508/data/mapdata/unpacked/13975.txt b/server508/data/mapdata/unpacked/13975.txt new file mode 100644 index 0000000..1fba4a2 --- /dev/null +++ b/server508/data/mapdata/unpacked/13975.txt @@ -0,0 +1,4 @@ +715007080 +565579966 +-981729179 +-1644711038 diff --git a/server508/data/mapdata/unpacked/13976.txt b/server508/data/mapdata/unpacked/13976.txt new file mode 100644 index 0000000..584498f --- /dev/null +++ b/server508/data/mapdata/unpacked/13976.txt @@ -0,0 +1,4 @@ +-2067573994 +1313918283 +-503877523 +-561145139 diff --git a/server508/data/mapdata/unpacked/13977.txt b/server508/data/mapdata/unpacked/13977.txt new file mode 100644 index 0000000..208905b --- /dev/null +++ b/server508/data/mapdata/unpacked/13977.txt @@ -0,0 +1,4 @@ +-2103542752 +-239401853 +-1270017944 +-346347052 diff --git a/server508/data/mapdata/unpacked/13978.txt b/server508/data/mapdata/unpacked/13978.txt new file mode 100644 index 0000000..2cad6e2 --- /dev/null +++ b/server508/data/mapdata/unpacked/13978.txt @@ -0,0 +1,4 @@ +605186559 +-2092944993 +404136076 +399569943 diff --git a/server508/data/mapdata/unpacked/13979.txt b/server508/data/mapdata/unpacked/13979.txt new file mode 100644 index 0000000..8bbe18a --- /dev/null +++ b/server508/data/mapdata/unpacked/13979.txt @@ -0,0 +1,4 @@ +-1418903263 +-1115529276 +-670759508 +770213401 diff --git a/server508/data/mapdata/unpacked/14127.txt b/server508/data/mapdata/unpacked/14127.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/14127.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/14128.txt b/server508/data/mapdata/unpacked/14128.txt new file mode 100644 index 0000000..8f04992 --- /dev/null +++ b/server508/data/mapdata/unpacked/14128.txt @@ -0,0 +1,5 @@ +1907787432 +-241593923 +1152767085 +-541422403 + diff --git a/server508/data/mapdata/unpacked/14129.txt b/server508/data/mapdata/unpacked/14129.txt new file mode 100644 index 0000000..8fcb861 --- /dev/null +++ b/server508/data/mapdata/unpacked/14129.txt @@ -0,0 +1,4 @@ +1656428349 +-1031219549 +1014397898 +274724415 diff --git a/server508/data/mapdata/unpacked/14130.txt b/server508/data/mapdata/unpacked/14130.txt new file mode 100644 index 0000000..2fb3b17 --- /dev/null +++ b/server508/data/mapdata/unpacked/14130.txt @@ -0,0 +1,4 @@ +733182931 +-764943132 +-427813903 +832481190 diff --git a/server508/data/mapdata/unpacked/14131.txt b/server508/data/mapdata/unpacked/14131.txt new file mode 100644 index 0000000..8b62939 --- /dev/null +++ b/server508/data/mapdata/unpacked/14131.txt @@ -0,0 +1,4 @@ +838971867 +1120556551 +1018070850 +10228933 diff --git a/server508/data/mapdata/unpacked/14132.txt b/server508/data/mapdata/unpacked/14132.txt new file mode 100644 index 0000000..a89bf84 --- /dev/null +++ b/server508/data/mapdata/unpacked/14132.txt @@ -0,0 +1,4 @@ +-602589023 +1702162086 +-1444941032 +1758850020 diff --git a/server508/data/mapdata/unpacked/14133.txt b/server508/data/mapdata/unpacked/14133.txt new file mode 100644 index 0000000..36d6539 --- /dev/null +++ b/server508/data/mapdata/unpacked/14133.txt @@ -0,0 +1,4 @@ +61264177 +326475438 +1849288713 +-191758257 diff --git a/server508/data/mapdata/unpacked/14134.txt b/server508/data/mapdata/unpacked/14134.txt new file mode 100644 index 0000000..cdacdfd --- /dev/null +++ b/server508/data/mapdata/unpacked/14134.txt @@ -0,0 +1,4 @@ +-1102558063 +817524163 +-892019492 +-1799662614 diff --git a/server508/data/mapdata/unpacked/14135.txt b/server508/data/mapdata/unpacked/14135.txt new file mode 100644 index 0000000..6270d99 --- /dev/null +++ b/server508/data/mapdata/unpacked/14135.txt @@ -0,0 +1,4 @@ +-1676933435 +2078032557 +110306649 +-960667243 diff --git a/server508/data/mapdata/unpacked/14136.txt b/server508/data/mapdata/unpacked/14136.txt new file mode 100644 index 0000000..e7825c3 --- /dev/null +++ b/server508/data/mapdata/unpacked/14136.txt @@ -0,0 +1,4 @@ +-1104533465 +1792124817 +-1564247177 +79706641 diff --git a/server508/data/mapdata/unpacked/14154.txt b/server508/data/mapdata/unpacked/14154.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14154.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14155.txt b/server508/data/mapdata/unpacked/14155.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14155.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14156.txt b/server508/data/mapdata/unpacked/14156.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14156.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14227.txt b/server508/data/mapdata/unpacked/14227.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14227.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14228.txt b/server508/data/mapdata/unpacked/14228.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14228.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14229.txt b/server508/data/mapdata/unpacked/14229.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14229.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14230.txt b/server508/data/mapdata/unpacked/14230.txt new file mode 100644 index 0000000..1f277f8 --- /dev/null +++ b/server508/data/mapdata/unpacked/14230.txt @@ -0,0 +1,4 @@ +-453901412 +-2074594443 +-809419406 +1774073603 diff --git a/server508/data/mapdata/unpacked/14231.txt b/server508/data/mapdata/unpacked/14231.txt new file mode 100644 index 0000000..d4a9581 --- /dev/null +++ b/server508/data/mapdata/unpacked/14231.txt @@ -0,0 +1,4 @@ +-1716965138 +-1451197740 +-1942368593 +-900089071 diff --git a/server508/data/mapdata/unpacked/14232.txt b/server508/data/mapdata/unpacked/14232.txt new file mode 100644 index 0000000..4cd91ae --- /dev/null +++ b/server508/data/mapdata/unpacked/14232.txt @@ -0,0 +1,4 @@ +-154845838 +1035699282 +361824423 +-776192310 diff --git a/server508/data/mapdata/unpacked/14381.txt b/server508/data/mapdata/unpacked/14381.txt new file mode 100644 index 0000000..d1c3bf1 --- /dev/null +++ b/server508/data/mapdata/unpacked/14381.txt @@ -0,0 +1,4 @@ +-534048527 +1614741928 +-469012711 +1064350100 diff --git a/server508/data/mapdata/unpacked/14382.txt b/server508/data/mapdata/unpacked/14382.txt new file mode 100644 index 0000000..f3b6acb --- /dev/null +++ b/server508/data/mapdata/unpacked/14382.txt @@ -0,0 +1,4 @@ +-1852773504 +1082744219 +-1346163454 +554948186 diff --git a/server508/data/mapdata/unpacked/14383.txt b/server508/data/mapdata/unpacked/14383.txt new file mode 100644 index 0000000..4a84e3c --- /dev/null +++ b/server508/data/mapdata/unpacked/14383.txt @@ -0,0 +1,4 @@ +2130321690 +-902060426 +334275700 +1881115024 diff --git a/server508/data/mapdata/unpacked/14384.txt b/server508/data/mapdata/unpacked/14384.txt new file mode 100644 index 0000000..60a0912 --- /dev/null +++ b/server508/data/mapdata/unpacked/14384.txt @@ -0,0 +1,4 @@ +1875853789 +1099975670 +-125982769 +-1614539446 diff --git a/server508/data/mapdata/unpacked/14385.txt b/server508/data/mapdata/unpacked/14385.txt new file mode 100644 index 0000000..7b40490 --- /dev/null +++ b/server508/data/mapdata/unpacked/14385.txt @@ -0,0 +1,4 @@ +1424549406 +1734560367 +1402577124 +882941348 diff --git a/server508/data/mapdata/unpacked/14386.txt b/server508/data/mapdata/unpacked/14386.txt new file mode 100644 index 0000000..648feb2 --- /dev/null +++ b/server508/data/mapdata/unpacked/14386.txt @@ -0,0 +1,4 @@ +1410221049 +1388578616 +869006844 +650078425 diff --git a/server508/data/mapdata/unpacked/14387.txt b/server508/data/mapdata/unpacked/14387.txt new file mode 100644 index 0000000..b09de18 --- /dev/null +++ b/server508/data/mapdata/unpacked/14387.txt @@ -0,0 +1,4 @@ +-1690136450 +1977446177 +-630376703 +-620199481 diff --git a/server508/data/mapdata/unpacked/14388.txt b/server508/data/mapdata/unpacked/14388.txt new file mode 100644 index 0000000..a297f57 --- /dev/null +++ b/server508/data/mapdata/unpacked/14388.txt @@ -0,0 +1,4 @@ +2048238173 +2003642395 +1658667134 +411519881 diff --git a/server508/data/mapdata/unpacked/14389.txt b/server508/data/mapdata/unpacked/14389.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14389.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14390.txt b/server508/data/mapdata/unpacked/14390.txt new file mode 100644 index 0000000..63abcf8 --- /dev/null +++ b/server508/data/mapdata/unpacked/14390.txt @@ -0,0 +1,4 @@ +-1631704360 +1281079278 +-1549067757 +-2034268623 diff --git a/server508/data/mapdata/unpacked/14391.txt b/server508/data/mapdata/unpacked/14391.txt new file mode 100644 index 0000000..0c00667 --- /dev/null +++ b/server508/data/mapdata/unpacked/14391.txt @@ -0,0 +1,4 @@ +-1092656394 +771935864 +-1698940035 +222468187 diff --git a/server508/data/mapdata/unpacked/14392.txt b/server508/data/mapdata/unpacked/14392.txt new file mode 100644 index 0000000..b27b26c --- /dev/null +++ b/server508/data/mapdata/unpacked/14392.txt @@ -0,0 +1,4 @@ +993603906 +-1477196579 +593064486 +166369140 diff --git a/server508/data/mapdata/unpacked/14486.txt b/server508/data/mapdata/unpacked/14486.txt new file mode 100644 index 0000000..db293b0 --- /dev/null +++ b/server508/data/mapdata/unpacked/14486.txt @@ -0,0 +1,4 @@ +-131982139 +-1189975142 +-1667401999 +-1794787704 diff --git a/server508/data/mapdata/unpacked/14487.txt b/server508/data/mapdata/unpacked/14487.txt new file mode 100644 index 0000000..d4cd4ee --- /dev/null +++ b/server508/data/mapdata/unpacked/14487.txt @@ -0,0 +1,4 @@ +-330478679 +11506767 +395036194 +-971774384 diff --git a/server508/data/mapdata/unpacked/14488.txt b/server508/data/mapdata/unpacked/14488.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14488.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14637.txt b/server508/data/mapdata/unpacked/14637.txt new file mode 100644 index 0000000..283eb20 --- /dev/null +++ b/server508/data/mapdata/unpacked/14637.txt @@ -0,0 +1,4 @@ +112774068 +-1867270219 +-442076728 +-1436438131 diff --git a/server508/data/mapdata/unpacked/14638.txt b/server508/data/mapdata/unpacked/14638.txt new file mode 100644 index 0000000..c8002d2 --- /dev/null +++ b/server508/data/mapdata/unpacked/14638.txt @@ -0,0 +1,4 @@ +139650389 +-1351993356 +-191474863 +1802091532 diff --git a/server508/data/mapdata/unpacked/14639.txt b/server508/data/mapdata/unpacked/14639.txt new file mode 100644 index 0000000..02ad80d --- /dev/null +++ b/server508/data/mapdata/unpacked/14639.txt @@ -0,0 +1,4 @@ +303035230 +-26013293 +2131971123 +-1774131228 diff --git a/server508/data/mapdata/unpacked/14640.txt b/server508/data/mapdata/unpacked/14640.txt new file mode 100644 index 0000000..04af4d1 --- /dev/null +++ b/server508/data/mapdata/unpacked/14640.txt @@ -0,0 +1,4 @@ +-95254230 +-1094148730 +-1768319507 +105210786 diff --git a/server508/data/mapdata/unpacked/14645.txt b/server508/data/mapdata/unpacked/14645.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14645.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14646.txt b/server508/data/mapdata/unpacked/14646.txt new file mode 100644 index 0000000..21785ad --- /dev/null +++ b/server508/data/mapdata/unpacked/14646.txt @@ -0,0 +1,4 @@ +688098299 +-710898427 +2100139183 +-1860635504 diff --git a/server508/data/mapdata/unpacked/14647.txt b/server508/data/mapdata/unpacked/14647.txt new file mode 100644 index 0000000..1a75d54 --- /dev/null +++ b/server508/data/mapdata/unpacked/14647.txt @@ -0,0 +1,4 @@ +727908174 +1305814331 +1158279049 +-671924266 diff --git a/server508/data/mapdata/unpacked/14648.txt b/server508/data/mapdata/unpacked/14648.txt new file mode 100644 index 0000000..da89534 --- /dev/null +++ b/server508/data/mapdata/unpacked/14648.txt @@ -0,0 +1,4 @@ +-1757352130 +-1996516705 +263017190 +1647356258 diff --git a/server508/data/mapdata/unpacked/14893.txt b/server508/data/mapdata/unpacked/14893.txt new file mode 100644 index 0000000..7cd0b47 --- /dev/null +++ b/server508/data/mapdata/unpacked/14893.txt @@ -0,0 +1,4 @@ +-102394113 +1484262111 +933695487 +-283213546 diff --git a/server508/data/mapdata/unpacked/14894.txt b/server508/data/mapdata/unpacked/14894.txt new file mode 100644 index 0000000..a0ebae0 --- /dev/null +++ b/server508/data/mapdata/unpacked/14894.txt @@ -0,0 +1,4 @@ +1977203476 +853289993 +-2077288740 +253834425 diff --git a/server508/data/mapdata/unpacked/14895.txt b/server508/data/mapdata/unpacked/14895.txt new file mode 100644 index 0000000..6753939 --- /dev/null +++ b/server508/data/mapdata/unpacked/14895.txt @@ -0,0 +1,4 @@ +1294223700 +778677766 +-2141486577 +1402077049 diff --git a/server508/data/mapdata/unpacked/14896.txt b/server508/data/mapdata/unpacked/14896.txt new file mode 100644 index 0000000..940685b --- /dev/null +++ b/server508/data/mapdata/unpacked/14896.txt @@ -0,0 +1,4 @@ +548765086 +801664009 +-1716752945 +-1492954302 diff --git a/server508/data/mapdata/unpacked/14901.txt b/server508/data/mapdata/unpacked/14901.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/14901.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/14902.txt b/server508/data/mapdata/unpacked/14902.txt new file mode 100644 index 0000000..b7e489e --- /dev/null +++ b/server508/data/mapdata/unpacked/14902.txt @@ -0,0 +1,4 @@ +1158948283 +-12013143 +1242958376 +-1265402384 diff --git a/server508/data/mapdata/unpacked/14903.txt b/server508/data/mapdata/unpacked/14903.txt new file mode 100644 index 0000000..648bdcf --- /dev/null +++ b/server508/data/mapdata/unpacked/14903.txt @@ -0,0 +1,4 @@ +-1111240831 +1790345264 +-366658712 +-331374702 diff --git a/server508/data/mapdata/unpacked/15149.txt b/server508/data/mapdata/unpacked/15149.txt new file mode 100644 index 0000000..d072c1d --- /dev/null +++ b/server508/data/mapdata/unpacked/15149.txt @@ -0,0 +1,4 @@ +-1200628316 +15132614 +-465260385 +-1525542932 diff --git a/server508/data/mapdata/unpacked/15150.txt b/server508/data/mapdata/unpacked/15150.txt new file mode 100644 index 0000000..e45c04a --- /dev/null +++ b/server508/data/mapdata/unpacked/15150.txt @@ -0,0 +1,4 @@ +902891554 +-1636848032 +-1477430033 +594794601 diff --git a/server508/data/mapdata/unpacked/15151.txt b/server508/data/mapdata/unpacked/15151.txt new file mode 100644 index 0000000..8967cc2 --- /dev/null +++ b/server508/data/mapdata/unpacked/15151.txt @@ -0,0 +1,4 @@ +867970623 +-1689124083 +1669326780 +1599898304 diff --git a/server508/data/mapdata/unpacked/15152.txt b/server508/data/mapdata/unpacked/15152.txt new file mode 100644 index 0000000..26aebc9 --- /dev/null +++ b/server508/data/mapdata/unpacked/15152.txt @@ -0,0 +1,4 @@ +608495786 +-1850745649 +1481459068 +44047411 diff --git a/server508/data/mapdata/unpacked/15406.txt b/server508/data/mapdata/unpacked/15406.txt new file mode 100644 index 0000000..56c01a8 --- /dev/null +++ b/server508/data/mapdata/unpacked/15406.txt @@ -0,0 +1,4 @@ +900232781 +1037303290 +2099698517 +-1839409134 diff --git a/server508/data/mapdata/unpacked/15407.txt b/server508/data/mapdata/unpacked/15407.txt new file mode 100644 index 0000000..c5307d6 --- /dev/null +++ b/server508/data/mapdata/unpacked/15407.txt @@ -0,0 +1,4 @@ +-1139819812 +165771634 +462281145 +-1626973480 diff --git a/server508/data/mapdata/unpacked/15408.txt b/server508/data/mapdata/unpacked/15408.txt new file mode 100644 index 0000000..ced7bb0 --- /dev/null +++ b/server508/data/mapdata/unpacked/15408.txt @@ -0,0 +1,4 @@ +1024233955 +-1429048064 +1595885074 +-1194249874 diff --git a/server508/data/mapdata/unpacked/6230.txt b/server508/data/mapdata/unpacked/6230.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6230.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6231.txt b/server508/data/mapdata/unpacked/6231.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6231.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6232.txt b/server508/data/mapdata/unpacked/6232.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6232.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6233.txt b/server508/data/mapdata/unpacked/6233.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6233.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6484.txt b/server508/data/mapdata/unpacked/6484.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6484.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6485.txt b/server508/data/mapdata/unpacked/6485.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6485.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6486.txt b/server508/data/mapdata/unpacked/6486.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6486.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6487.txt b/server508/data/mapdata/unpacked/6487.txt new file mode 100644 index 0000000..8e1babe --- /dev/null +++ b/server508/data/mapdata/unpacked/6487.txt @@ -0,0 +1,4 @@ +-844708758 +693908396 +-1724237422 +-2131620302 diff --git a/server508/data/mapdata/unpacked/6488.txt b/server508/data/mapdata/unpacked/6488.txt new file mode 100644 index 0000000..700ee5c --- /dev/null +++ b/server508/data/mapdata/unpacked/6488.txt @@ -0,0 +1,4 @@ +-285330291 +1051990177 +205476286 +1929287225 diff --git a/server508/data/mapdata/unpacked/6489.txt b/server508/data/mapdata/unpacked/6489.txt new file mode 100644 index 0000000..d141ad9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6489.txt @@ -0,0 +1,5 @@ +1563065045 +-1659976681 +-1630140039 +908238605 + diff --git a/server508/data/mapdata/unpacked/6490.txt b/server508/data/mapdata/unpacked/6490.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6490.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6732.txt b/server508/data/mapdata/unpacked/6732.txt new file mode 100644 index 0000000..9b5d4e3 --- /dev/null +++ b/server508/data/mapdata/unpacked/6732.txt @@ -0,0 +1,6 @@ +0 +0 +0 +0 + + diff --git a/server508/data/mapdata/unpacked/6733.txt b/server508/data/mapdata/unpacked/6733.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6733.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6734.txt b/server508/data/mapdata/unpacked/6734.txt new file mode 100644 index 0000000..9b5d4e3 --- /dev/null +++ b/server508/data/mapdata/unpacked/6734.txt @@ -0,0 +1,6 @@ +0 +0 +0 +0 + + diff --git a/server508/data/mapdata/unpacked/6735.txt b/server508/data/mapdata/unpacked/6735.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6735.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6736.txt b/server508/data/mapdata/unpacked/6736.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6736.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6737.txt b/server508/data/mapdata/unpacked/6737.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6737.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6738.txt b/server508/data/mapdata/unpacked/6738.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6738.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6739.txt b/server508/data/mapdata/unpacked/6739.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6739.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6740.txt b/server508/data/mapdata/unpacked/6740.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6740.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6741.txt b/server508/data/mapdata/unpacked/6741.txt new file mode 100644 index 0000000..0647e4f --- /dev/null +++ b/server508/data/mapdata/unpacked/6741.txt @@ -0,0 +1,4 @@ +462337855 +-838959763 +616789846 +1896438224 diff --git a/server508/data/mapdata/unpacked/6742.txt b/server508/data/mapdata/unpacked/6742.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6742.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6743.txt b/server508/data/mapdata/unpacked/6743.txt new file mode 100644 index 0000000..245cc61 --- /dev/null +++ b/server508/data/mapdata/unpacked/6743.txt @@ -0,0 +1,4 @@ +-1239303400 +-1604922847 +-1532369005 +982307785 diff --git a/server508/data/mapdata/unpacked/6744.txt b/server508/data/mapdata/unpacked/6744.txt new file mode 100644 index 0000000..eeb992c --- /dev/null +++ b/server508/data/mapdata/unpacked/6744.txt @@ -0,0 +1,4 @@ +-496944733 +-779028234 +-230846664 +150558918 diff --git a/server508/data/mapdata/unpacked/6745.txt b/server508/data/mapdata/unpacked/6745.txt new file mode 100644 index 0000000..4aeb7f0 --- /dev/null +++ b/server508/data/mapdata/unpacked/6745.txt @@ -0,0 +1,5 @@ +365190378 +-1767339898 +2011432030 +276148826 + diff --git a/server508/data/mapdata/unpacked/6746.txt b/server508/data/mapdata/unpacked/6746.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6746.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6979.txt b/server508/data/mapdata/unpacked/6979.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6979.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6980.txt b/server508/data/mapdata/unpacked/6980.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6980.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6981.txt b/server508/data/mapdata/unpacked/6981.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6981.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6988.txt b/server508/data/mapdata/unpacked/6988.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6988.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6989.txt b/server508/data/mapdata/unpacked/6989.txt new file mode 100644 index 0000000..53bf3de --- /dev/null +++ b/server508/data/mapdata/unpacked/6989.txt @@ -0,0 +1,5 @@ +-891749173 +-113432144 +-1228601828 +695082558 + diff --git a/server508/data/mapdata/unpacked/6990.txt b/server508/data/mapdata/unpacked/6990.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/6990.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/6991.txt b/server508/data/mapdata/unpacked/6991.txt new file mode 100644 index 0000000..191d411 --- /dev/null +++ b/server508/data/mapdata/unpacked/6991.txt @@ -0,0 +1,5 @@ +-1448188175 +626198836 +1985989165 +-1062391664 + diff --git a/server508/data/mapdata/unpacked/6992.txt b/server508/data/mapdata/unpacked/6992.txt new file mode 100644 index 0000000..9cd205f --- /dev/null +++ b/server508/data/mapdata/unpacked/6992.txt @@ -0,0 +1,5 @@ +793817707 +983201574 +1970817843 +1370732667 + diff --git a/server508/data/mapdata/unpacked/6993.txt b/server508/data/mapdata/unpacked/6993.txt new file mode 100644 index 0000000..8493d7a --- /dev/null +++ b/server508/data/mapdata/unpacked/6993.txt @@ -0,0 +1,5 @@ +-932618963 +243797238 +-1433505613 +-236523555 + diff --git a/server508/data/mapdata/unpacked/6994.txt b/server508/data/mapdata/unpacked/6994.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6994.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6995.txt b/server508/data/mapdata/unpacked/6995.txt new file mode 100644 index 0000000..5407988 --- /dev/null +++ b/server508/data/mapdata/unpacked/6995.txt @@ -0,0 +1,4 @@ +10039431 +-1873204745 +-1537814534 +-948560400 diff --git a/server508/data/mapdata/unpacked/6996.txt b/server508/data/mapdata/unpacked/6996.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6996.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6997.txt b/server508/data/mapdata/unpacked/6997.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6997.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6998.txt b/server508/data/mapdata/unpacked/6998.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6998.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/6999.txt b/server508/data/mapdata/unpacked/6999.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/6999.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7000.txt b/server508/data/mapdata/unpacked/7000.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7000.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7001.txt b/server508/data/mapdata/unpacked/7001.txt new file mode 100644 index 0000000..2821c48 --- /dev/null +++ b/server508/data/mapdata/unpacked/7001.txt @@ -0,0 +1,5 @@ +170738852 +2045755396 +-1580637869 +-1933392334 + diff --git a/server508/data/mapdata/unpacked/7002.txt b/server508/data/mapdata/unpacked/7002.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/7002.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/7235.txt b/server508/data/mapdata/unpacked/7235.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7235.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7236.txt b/server508/data/mapdata/unpacked/7236.txt new file mode 100644 index 0000000..9548442 --- /dev/null +++ b/server508/data/mapdata/unpacked/7236.txt @@ -0,0 +1,4 @@ +570290255 +-1513898184 +-1269691884 +782850050 diff --git a/server508/data/mapdata/unpacked/7237.txt b/server508/data/mapdata/unpacked/7237.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7237.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7244.txt b/server508/data/mapdata/unpacked/7244.txt new file mode 100644 index 0000000..3a8142d --- /dev/null +++ b/server508/data/mapdata/unpacked/7244.txt @@ -0,0 +1,5 @@ +96665731 +1335649913 +758227393 +585095755 + diff --git a/server508/data/mapdata/unpacked/7245.txt b/server508/data/mapdata/unpacked/7245.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/7245.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/7246.txt b/server508/data/mapdata/unpacked/7246.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/7246.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/7247.txt b/server508/data/mapdata/unpacked/7247.txt new file mode 100644 index 0000000..5b20a1f --- /dev/null +++ b/server508/data/mapdata/unpacked/7247.txt @@ -0,0 +1,5 @@ +-122734679 +-1029771956 +1633683499 +846700218 + diff --git a/server508/data/mapdata/unpacked/7248.txt b/server508/data/mapdata/unpacked/7248.txt new file mode 100644 index 0000000..4a27474 --- /dev/null +++ b/server508/data/mapdata/unpacked/7248.txt @@ -0,0 +1,5 @@ +-339349863 +-706006976 +1444664020 +-668854242 + diff --git a/server508/data/mapdata/unpacked/7249.txt b/server508/data/mapdata/unpacked/7249.txt new file mode 100644 index 0000000..5b1d022 --- /dev/null +++ b/server508/data/mapdata/unpacked/7249.txt @@ -0,0 +1,4 @@ +104968959 +1007983047 +-1342360496 +1832152849 diff --git a/server508/data/mapdata/unpacked/7250.txt b/server508/data/mapdata/unpacked/7250.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7250.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7251.txt b/server508/data/mapdata/unpacked/7251.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7251.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7252.txt b/server508/data/mapdata/unpacked/7252.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7252.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7253.txt b/server508/data/mapdata/unpacked/7253.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7253.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7254.txt b/server508/data/mapdata/unpacked/7254.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7254.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7491.txt b/server508/data/mapdata/unpacked/7491.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7491.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7492.txt b/server508/data/mapdata/unpacked/7492.txt new file mode 100644 index 0000000..b184673 --- /dev/null +++ b/server508/data/mapdata/unpacked/7492.txt @@ -0,0 +1,4 @@ +417150556 +1135530200 +2139696777 +-742314409 diff --git a/server508/data/mapdata/unpacked/7493.txt b/server508/data/mapdata/unpacked/7493.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7493.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7494.txt b/server508/data/mapdata/unpacked/7494.txt new file mode 100644 index 0000000..7ad4640 --- /dev/null +++ b/server508/data/mapdata/unpacked/7494.txt @@ -0,0 +1,4 @@ +-1653750072 +103282771 +384178856 +1122166637 diff --git a/server508/data/mapdata/unpacked/7497.txt b/server508/data/mapdata/unpacked/7497.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7497.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7498.txt b/server508/data/mapdata/unpacked/7498.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7498.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7499.txt b/server508/data/mapdata/unpacked/7499.txt new file mode 100644 index 0000000..7685fcc --- /dev/null +++ b/server508/data/mapdata/unpacked/7499.txt @@ -0,0 +1,4 @@ +1187151706 +718898064 +1304406549 +-1997198061 diff --git a/server508/data/mapdata/unpacked/7500.txt b/server508/data/mapdata/unpacked/7500.txt new file mode 100644 index 0000000..0a6f7d8 --- /dev/null +++ b/server508/data/mapdata/unpacked/7500.txt @@ -0,0 +1,4 @@ +-1797612105 +-469426862 +-1728147007 +-646639650 diff --git a/server508/data/mapdata/unpacked/7501.txt b/server508/data/mapdata/unpacked/7501.txt new file mode 100644 index 0000000..7298e44 --- /dev/null +++ b/server508/data/mapdata/unpacked/7501.txt @@ -0,0 +1,4 @@ +2127797097 +-994429649 +-35298241 +-1340339542 diff --git a/server508/data/mapdata/unpacked/7502.txt b/server508/data/mapdata/unpacked/7502.txt new file mode 100644 index 0000000..6c8ad11 --- /dev/null +++ b/server508/data/mapdata/unpacked/7502.txt @@ -0,0 +1,4 @@ +1592232730 +1693978666 +-878012906 +867925201 diff --git a/server508/data/mapdata/unpacked/7503.txt b/server508/data/mapdata/unpacked/7503.txt new file mode 100644 index 0000000..4d71f15 --- /dev/null +++ b/server508/data/mapdata/unpacked/7503.txt @@ -0,0 +1,4 @@ +121325240 +-1875293184 +-1222658577 +-624236037 diff --git a/server508/data/mapdata/unpacked/7504.txt b/server508/data/mapdata/unpacked/7504.txt new file mode 100644 index 0000000..a2e8c99 --- /dev/null +++ b/server508/data/mapdata/unpacked/7504.txt @@ -0,0 +1,4 @@ +-1824142464 +-1651867367 +-1541058541 +-1034512274 diff --git a/server508/data/mapdata/unpacked/7505.txt b/server508/data/mapdata/unpacked/7505.txt new file mode 100644 index 0000000..d175f32 --- /dev/null +++ b/server508/data/mapdata/unpacked/7505.txt @@ -0,0 +1,4 @@ +-1177354806 +-1864641630 +23736540 +750869235 diff --git a/server508/data/mapdata/unpacked/7506.txt b/server508/data/mapdata/unpacked/7506.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/7506.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/7507.txt b/server508/data/mapdata/unpacked/7507.txt new file mode 100644 index 0000000..f025097 --- /dev/null +++ b/server508/data/mapdata/unpacked/7507.txt @@ -0,0 +1,4 @@ +-1476331852 +1093075535 +-2003580146 +734573751 diff --git a/server508/data/mapdata/unpacked/7508.txt b/server508/data/mapdata/unpacked/7508.txt new file mode 100644 index 0000000..ff52b40 --- /dev/null +++ b/server508/data/mapdata/unpacked/7508.txt @@ -0,0 +1,4 @@ +1640963123 +1896768721 +879048302 +-1776414657 diff --git a/server508/data/mapdata/unpacked/7509.txt b/server508/data/mapdata/unpacked/7509.txt new file mode 100644 index 0000000..e413430 --- /dev/null +++ b/server508/data/mapdata/unpacked/7509.txt @@ -0,0 +1,4 @@ +-1575412129 +-1725410171 +-2003328048 +1050396588 diff --git a/server508/data/mapdata/unpacked/7510.txt b/server508/data/mapdata/unpacked/7510.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7510.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7747.txt b/server508/data/mapdata/unpacked/7747.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7747.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7748.txt b/server508/data/mapdata/unpacked/7748.txt new file mode 100644 index 0000000..6d4c0f8 --- /dev/null +++ b/server508/data/mapdata/unpacked/7748.txt @@ -0,0 +1,4 @@ +-850453392 +-249468744 +1635462867 +100471784 diff --git a/server508/data/mapdata/unpacked/7749.txt b/server508/data/mapdata/unpacked/7749.txt new file mode 100644 index 0000000..d678f3c --- /dev/null +++ b/server508/data/mapdata/unpacked/7749.txt @@ -0,0 +1,4 @@ +369356966 +-1038198212 +282112206 +802717032 diff --git a/server508/data/mapdata/unpacked/7750.txt b/server508/data/mapdata/unpacked/7750.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7750.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7753.txt b/server508/data/mapdata/unpacked/7753.txt new file mode 100644 index 0000000..72c3edb --- /dev/null +++ b/server508/data/mapdata/unpacked/7753.txt @@ -0,0 +1,4 @@ +2071150318 +-1033460657 +638407631 +1622436805 diff --git a/server508/data/mapdata/unpacked/7754.txt b/server508/data/mapdata/unpacked/7754.txt new file mode 100644 index 0000000..8f21616 --- /dev/null +++ b/server508/data/mapdata/unpacked/7754.txt @@ -0,0 +1,4 @@ +-1095536942 +-1766628646 +-829395519 +716805082 diff --git a/server508/data/mapdata/unpacked/7755.txt b/server508/data/mapdata/unpacked/7755.txt new file mode 100644 index 0000000..77ed83d --- /dev/null +++ b/server508/data/mapdata/unpacked/7755.txt @@ -0,0 +1,4 @@ +-1203065766 +1918668431 +-2138068565 +-778203814 diff --git a/server508/data/mapdata/unpacked/7756.txt b/server508/data/mapdata/unpacked/7756.txt new file mode 100644 index 0000000..0d3eb5f --- /dev/null +++ b/server508/data/mapdata/unpacked/7756.txt @@ -0,0 +1,4 @@ +906056473 +-2135922837 +-855754671 +-503357515 diff --git a/server508/data/mapdata/unpacked/7757.txt b/server508/data/mapdata/unpacked/7757.txt new file mode 100644 index 0000000..21d9e16 --- /dev/null +++ b/server508/data/mapdata/unpacked/7757.txt @@ -0,0 +1,4 @@ +-103936636 +-6150806 +-1262632665 +1507740731 diff --git a/server508/data/mapdata/unpacked/7758.txt b/server508/data/mapdata/unpacked/7758.txt new file mode 100644 index 0000000..01642fb --- /dev/null +++ b/server508/data/mapdata/unpacked/7758.txt @@ -0,0 +1,4 @@ +1989884300 +237012546 +22566346 +1351365126 diff --git a/server508/data/mapdata/unpacked/7759.txt b/server508/data/mapdata/unpacked/7759.txt new file mode 100644 index 0000000..af9b05f --- /dev/null +++ b/server508/data/mapdata/unpacked/7759.txt @@ -0,0 +1,4 @@ +-1255219039 +-277284099 +1886972034 +-723091074 diff --git a/server508/data/mapdata/unpacked/7760.txt b/server508/data/mapdata/unpacked/7760.txt new file mode 100644 index 0000000..6691584 --- /dev/null +++ b/server508/data/mapdata/unpacked/7760.txt @@ -0,0 +1,4 @@ +2042192998 +743878512 +-1804236758 +-1160501924 diff --git a/server508/data/mapdata/unpacked/7761.txt b/server508/data/mapdata/unpacked/7761.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7761.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7762.txt b/server508/data/mapdata/unpacked/7762.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7762.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7763.txt b/server508/data/mapdata/unpacked/7763.txt new file mode 100644 index 0000000..ac491f5 --- /dev/null +++ b/server508/data/mapdata/unpacked/7763.txt @@ -0,0 +1,4 @@ +-1001265201 +-470231326 +1393096818 +2026714448 diff --git a/server508/data/mapdata/unpacked/7764.txt b/server508/data/mapdata/unpacked/7764.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7764.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7765.txt b/server508/data/mapdata/unpacked/7765.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7765.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7766.txt b/server508/data/mapdata/unpacked/7766.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7766.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7995.txt b/server508/data/mapdata/unpacked/7995.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7995.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7996.txt b/server508/data/mapdata/unpacked/7996.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7996.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7997.txt b/server508/data/mapdata/unpacked/7997.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7997.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/7998.txt b/server508/data/mapdata/unpacked/7998.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/7998.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8009.txt b/server508/data/mapdata/unpacked/8009.txt new file mode 100644 index 0000000..1f67fea --- /dev/null +++ b/server508/data/mapdata/unpacked/8009.txt @@ -0,0 +1,4 @@ +-1466175704 +351054294 +-1150290302 +-1555608739 diff --git a/server508/data/mapdata/unpacked/8010.txt b/server508/data/mapdata/unpacked/8010.txt new file mode 100644 index 0000000..b872e37 --- /dev/null +++ b/server508/data/mapdata/unpacked/8010.txt @@ -0,0 +1,4 @@ +-120476958 +772788582 +297461207 +-245665438 diff --git a/server508/data/mapdata/unpacked/8011.txt b/server508/data/mapdata/unpacked/8011.txt new file mode 100644 index 0000000..35c4827 --- /dev/null +++ b/server508/data/mapdata/unpacked/8011.txt @@ -0,0 +1,4 @@ +-1059695237 +1810015170 +-921731187 +1723546093 diff --git a/server508/data/mapdata/unpacked/8012.txt b/server508/data/mapdata/unpacked/8012.txt new file mode 100644 index 0000000..9e2bcc7 --- /dev/null +++ b/server508/data/mapdata/unpacked/8012.txt @@ -0,0 +1,4 @@ +-207206478 +596983639 +-1721843709 +-1184583849 diff --git a/server508/data/mapdata/unpacked/8013.txt b/server508/data/mapdata/unpacked/8013.txt new file mode 100644 index 0000000..c490131 --- /dev/null +++ b/server508/data/mapdata/unpacked/8013.txt @@ -0,0 +1,4 @@ +1846865793 +1272334140 +-253842269 +-2073715507 diff --git a/server508/data/mapdata/unpacked/8014.txt b/server508/data/mapdata/unpacked/8014.txt new file mode 100644 index 0000000..0fa2a26 --- /dev/null +++ b/server508/data/mapdata/unpacked/8014.txt @@ -0,0 +1,4 @@ +-1279878558 +-211098870 +431176504 +-1619319528 diff --git a/server508/data/mapdata/unpacked/8016.txt b/server508/data/mapdata/unpacked/8016.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8016.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8017.txt b/server508/data/mapdata/unpacked/8017.txt new file mode 100644 index 0000000..4a2e51e --- /dev/null +++ b/server508/data/mapdata/unpacked/8017.txt @@ -0,0 +1,4 @@ +959968310 +-363819769 +-1402232275 +-1678358818 diff --git a/server508/data/mapdata/unpacked/8018.txt b/server508/data/mapdata/unpacked/8018.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8018.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8019.txt b/server508/data/mapdata/unpacked/8019.txt new file mode 100644 index 0000000..8492442 --- /dev/null +++ b/server508/data/mapdata/unpacked/8019.txt @@ -0,0 +1,4 @@ +-1512999074 +1064201012 +2143076355 +-1937376726 diff --git a/server508/data/mapdata/unpacked/8020.txt b/server508/data/mapdata/unpacked/8020.txt new file mode 100644 index 0000000..23aa34b --- /dev/null +++ b/server508/data/mapdata/unpacked/8020.txt @@ -0,0 +1,4 @@ +-955989323 +1284433026 +690014510 +2145912092 diff --git a/server508/data/mapdata/unpacked/8021.txt b/server508/data/mapdata/unpacked/8021.txt new file mode 100644 index 0000000..db6bb11 --- /dev/null +++ b/server508/data/mapdata/unpacked/8021.txt @@ -0,0 +1,4 @@ +-297039986 +-1011877372 +-1763869337 +-900998253 diff --git a/server508/data/mapdata/unpacked/8240.txt b/server508/data/mapdata/unpacked/8240.txt new file mode 100644 index 0000000..3f83de0 --- /dev/null +++ b/server508/data/mapdata/unpacked/8240.txt @@ -0,0 +1,4 @@ +2101719552 +-225162086 +293186389 +-162955969 diff --git a/server508/data/mapdata/unpacked/8241.txt b/server508/data/mapdata/unpacked/8241.txt new file mode 100644 index 0000000..4dbbcc6 --- /dev/null +++ b/server508/data/mapdata/unpacked/8241.txt @@ -0,0 +1,4 @@ +-320813650 +-1654452876 +-352291520 +-290946896 diff --git a/server508/data/mapdata/unpacked/8251.txt b/server508/data/mapdata/unpacked/8251.txt new file mode 100644 index 0000000..a18ba2c --- /dev/null +++ b/server508/data/mapdata/unpacked/8251.txt @@ -0,0 +1,4 @@ +1142567601 +1650263019 +49659607 +-899246535 diff --git a/server508/data/mapdata/unpacked/8252.txt b/server508/data/mapdata/unpacked/8252.txt new file mode 100644 index 0000000..d7c7802 --- /dev/null +++ b/server508/data/mapdata/unpacked/8252.txt @@ -0,0 +1,4 @@ +-428244729 +-903477551 +-931984389 +-583689232 diff --git a/server508/data/mapdata/unpacked/8253.txt b/server508/data/mapdata/unpacked/8253.txt new file mode 100644 index 0000000..6c29ba6 --- /dev/null +++ b/server508/data/mapdata/unpacked/8253.txt @@ -0,0 +1,4 @@ +1274757849 +1788985771 +-1066826733 +223495957 diff --git a/server508/data/mapdata/unpacked/8254.txt b/server508/data/mapdata/unpacked/8254.txt new file mode 100644 index 0000000..507bcf8 --- /dev/null +++ b/server508/data/mapdata/unpacked/8254.txt @@ -0,0 +1,4 @@ +-2072640345 +1256455304 +497449669 +1898688910 diff --git a/server508/data/mapdata/unpacked/8265.txt b/server508/data/mapdata/unpacked/8265.txt new file mode 100644 index 0000000..cf33341 --- /dev/null +++ b/server508/data/mapdata/unpacked/8265.txt @@ -0,0 +1,4 @@ +1850912058 +-559075374 +924054405 +-1595809620 diff --git a/server508/data/mapdata/unpacked/8266.txt b/server508/data/mapdata/unpacked/8266.txt new file mode 100644 index 0000000..57e6306 --- /dev/null +++ b/server508/data/mapdata/unpacked/8266.txt @@ -0,0 +1,4 @@ +-1571771132 +-1956678912 +-454057689 +65399733 diff --git a/server508/data/mapdata/unpacked/8267.txt b/server508/data/mapdata/unpacked/8267.txt new file mode 100644 index 0000000..5a35b1d --- /dev/null +++ b/server508/data/mapdata/unpacked/8267.txt @@ -0,0 +1,4 @@ +-474856962 +-1295973639 +789657650 +-1769058462 diff --git a/server508/data/mapdata/unpacked/8268.txt b/server508/data/mapdata/unpacked/8268.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8268.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8272.txt b/server508/data/mapdata/unpacked/8272.txt new file mode 100644 index 0000000..6b49be9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8272.txt @@ -0,0 +1,4 @@ +-279193034 +-753054903 +626747605 +-1887843183 diff --git a/server508/data/mapdata/unpacked/8273.txt b/server508/data/mapdata/unpacked/8273.txt new file mode 100644 index 0000000..bca7e70 --- /dev/null +++ b/server508/data/mapdata/unpacked/8273.txt @@ -0,0 +1,4 @@ +978831670 +664328414 +1943273766 +-1823800887 diff --git a/server508/data/mapdata/unpacked/8274.txt b/server508/data/mapdata/unpacked/8274.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8274.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8275.txt b/server508/data/mapdata/unpacked/8275.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8275.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8276.txt b/server508/data/mapdata/unpacked/8276.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8276.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8277.txt b/server508/data/mapdata/unpacked/8277.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8277.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8496.txt b/server508/data/mapdata/unpacked/8496.txt new file mode 100644 index 0000000..c7562ec --- /dev/null +++ b/server508/data/mapdata/unpacked/8496.txt @@ -0,0 +1,4 @@ +-1397271211 +-1829692174 +-1138445890 +-1384844481 diff --git a/server508/data/mapdata/unpacked/8497.txt b/server508/data/mapdata/unpacked/8497.txt new file mode 100644 index 0000000..679ce0c --- /dev/null +++ b/server508/data/mapdata/unpacked/8497.txt @@ -0,0 +1,4 @@ +2127424498 +1622469596 +-1889017351 +-1927651722 diff --git a/server508/data/mapdata/unpacked/8498.txt b/server508/data/mapdata/unpacked/8498.txt new file mode 100644 index 0000000..676dc11 --- /dev/null +++ b/server508/data/mapdata/unpacked/8498.txt @@ -0,0 +1,4 @@ +-1323684593 +-1102390619 +1456317314 +-2027993898 diff --git a/server508/data/mapdata/unpacked/8499.txt b/server508/data/mapdata/unpacked/8499.txt new file mode 100644 index 0000000..af56e06 --- /dev/null +++ b/server508/data/mapdata/unpacked/8499.txt @@ -0,0 +1,4 @@ +1158999293 +2131770333 +-861122128 +1149793504 diff --git a/server508/data/mapdata/unpacked/8506.txt b/server508/data/mapdata/unpacked/8506.txt new file mode 100644 index 0000000..b169b61 --- /dev/null +++ b/server508/data/mapdata/unpacked/8506.txt @@ -0,0 +1,4 @@ +-1227747958 +1491928866 +1293676120 +2065870654 diff --git a/server508/data/mapdata/unpacked/8507.txt b/server508/data/mapdata/unpacked/8507.txt new file mode 100644 index 0000000..9d8207e --- /dev/null +++ b/server508/data/mapdata/unpacked/8507.txt @@ -0,0 +1,4 @@ +1765022148 +-80255262 +-725852452 +-1286377093 diff --git a/server508/data/mapdata/unpacked/8508.txt b/server508/data/mapdata/unpacked/8508.txt new file mode 100644 index 0000000..d830826 --- /dev/null +++ b/server508/data/mapdata/unpacked/8508.txt @@ -0,0 +1,4 @@ +338805645 +-1373177096 +951451780 +1902416416 diff --git a/server508/data/mapdata/unpacked/8509.txt b/server508/data/mapdata/unpacked/8509.txt new file mode 100644 index 0000000..32ab88d --- /dev/null +++ b/server508/data/mapdata/unpacked/8509.txt @@ -0,0 +1,4 @@ +1177709231 +-1828086540 +-860279535 +2071959242 diff --git a/server508/data/mapdata/unpacked/8510.txt b/server508/data/mapdata/unpacked/8510.txt new file mode 100644 index 0000000..a685128 --- /dev/null +++ b/server508/data/mapdata/unpacked/8510.txt @@ -0,0 +1,4 @@ +-1808638230 +-1458952839 +-798099535 +1502725514 diff --git a/server508/data/mapdata/unpacked/8522.txt b/server508/data/mapdata/unpacked/8522.txt new file mode 100644 index 0000000..05c0cba --- /dev/null +++ b/server508/data/mapdata/unpacked/8522.txt @@ -0,0 +1,4 @@ +-1916075284 +1880898106 +-1618113268 +464036603 diff --git a/server508/data/mapdata/unpacked/8523.txt b/server508/data/mapdata/unpacked/8523.txt new file mode 100644 index 0000000..05fde27 --- /dev/null +++ b/server508/data/mapdata/unpacked/8523.txt @@ -0,0 +1,4 @@ +-1203368702 +359745318 +-2127031319 +-1802364988 diff --git a/server508/data/mapdata/unpacked/8524.txt b/server508/data/mapdata/unpacked/8524.txt new file mode 100644 index 0000000..b3d2cc8 --- /dev/null +++ b/server508/data/mapdata/unpacked/8524.txt @@ -0,0 +1,4 @@ +37036095 +-259799144 +-1679313180 +74723020 diff --git a/server508/data/mapdata/unpacked/8525.txt b/server508/data/mapdata/unpacked/8525.txt new file mode 100644 index 0000000..02e2b8d --- /dev/null +++ b/server508/data/mapdata/unpacked/8525.txt @@ -0,0 +1,4 @@ +1128073531 +987906789 +1511073840 +455662935 diff --git a/server508/data/mapdata/unpacked/8529.txt b/server508/data/mapdata/unpacked/8529.txt new file mode 100644 index 0000000..f74e5fb --- /dev/null +++ b/server508/data/mapdata/unpacked/8529.txt @@ -0,0 +1,4 @@ +2008179575 +1983086010 +22167022 +2114412614 diff --git a/server508/data/mapdata/unpacked/8530.txt b/server508/data/mapdata/unpacked/8530.txt new file mode 100644 index 0000000..30fdb32 --- /dev/null +++ b/server508/data/mapdata/unpacked/8530.txt @@ -0,0 +1,4 @@ +-1466808210 +962381183 +-1581244207 +-457271917 diff --git a/server508/data/mapdata/unpacked/8531.txt b/server508/data/mapdata/unpacked/8531.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8531.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8532.txt b/server508/data/mapdata/unpacked/8532.txt new file mode 100644 index 0000000..3c721ec --- /dev/null +++ b/server508/data/mapdata/unpacked/8532.txt @@ -0,0 +1,4 @@ +-137058185 +1747601450 +-625086059 +184813810 diff --git a/server508/data/mapdata/unpacked/8533.txt b/server508/data/mapdata/unpacked/8533.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8533.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8752.txt b/server508/data/mapdata/unpacked/8752.txt new file mode 100644 index 0000000..84f5e0c --- /dev/null +++ b/server508/data/mapdata/unpacked/8752.txt @@ -0,0 +1,4 @@ +238354066 +1687454525 +1494747147 +1911377137 diff --git a/server508/data/mapdata/unpacked/8753.txt b/server508/data/mapdata/unpacked/8753.txt new file mode 100644 index 0000000..f2a4427 --- /dev/null +++ b/server508/data/mapdata/unpacked/8753.txt @@ -0,0 +1,4 @@ +-2045400446 +-157254916 +-1938039698 +1143548881 diff --git a/server508/data/mapdata/unpacked/8754.txt b/server508/data/mapdata/unpacked/8754.txt new file mode 100644 index 0000000..a85865e --- /dev/null +++ b/server508/data/mapdata/unpacked/8754.txt @@ -0,0 +1,4 @@ +576590945 +726748596 +-159128087 +905509251 diff --git a/server508/data/mapdata/unpacked/8755.txt b/server508/data/mapdata/unpacked/8755.txt new file mode 100644 index 0000000..b580619 --- /dev/null +++ b/server508/data/mapdata/unpacked/8755.txt @@ -0,0 +1,4 @@ +-1165798584 +772244190 +-402783978 +541755309 diff --git a/server508/data/mapdata/unpacked/8756.txt b/server508/data/mapdata/unpacked/8756.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8756.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8757.txt b/server508/data/mapdata/unpacked/8757.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8757.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8759.txt b/server508/data/mapdata/unpacked/8759.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8759.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8760.txt b/server508/data/mapdata/unpacked/8760.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8760.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8761.txt b/server508/data/mapdata/unpacked/8761.txt new file mode 100644 index 0000000..73f056c --- /dev/null +++ b/server508/data/mapdata/unpacked/8761.txt @@ -0,0 +1,4 @@ +1760753095 +-1427813077 +266675077 +-255782653 diff --git a/server508/data/mapdata/unpacked/8762.txt b/server508/data/mapdata/unpacked/8762.txt new file mode 100644 index 0000000..886a5ea --- /dev/null +++ b/server508/data/mapdata/unpacked/8762.txt @@ -0,0 +1,4 @@ +-1868090282 +-1544166661 +-731821081 +1736861342 diff --git a/server508/data/mapdata/unpacked/8763.txt b/server508/data/mapdata/unpacked/8763.txt new file mode 100644 index 0000000..85f611c --- /dev/null +++ b/server508/data/mapdata/unpacked/8763.txt @@ -0,0 +1,4 @@ +1119677832 +690614046 +2050117701 +105876696 diff --git a/server508/data/mapdata/unpacked/8764.txt b/server508/data/mapdata/unpacked/8764.txt new file mode 100644 index 0000000..664c0ea --- /dev/null +++ b/server508/data/mapdata/unpacked/8764.txt @@ -0,0 +1,4 @@ +1880374454 +1213514336 +-2078057600 +-2021473694 diff --git a/server508/data/mapdata/unpacked/8765.txt b/server508/data/mapdata/unpacked/8765.txt new file mode 100644 index 0000000..3ca0ace --- /dev/null +++ b/server508/data/mapdata/unpacked/8765.txt @@ -0,0 +1,4 @@ +1948979312 +134066799 +-78879371 +-323055687 diff --git a/server508/data/mapdata/unpacked/8766.txt b/server508/data/mapdata/unpacked/8766.txt new file mode 100644 index 0000000..ea71ff4 --- /dev/null +++ b/server508/data/mapdata/unpacked/8766.txt @@ -0,0 +1,4 @@ +1244410566 +-1397143615 +-1848205088 +-1435723900 diff --git a/server508/data/mapdata/unpacked/8776.txt b/server508/data/mapdata/unpacked/8776.txt new file mode 100644 index 0000000..977b508 --- /dev/null +++ b/server508/data/mapdata/unpacked/8776.txt @@ -0,0 +1,4 @@ +-1754587844 +664188970 +-1128425220 +59583193 diff --git a/server508/data/mapdata/unpacked/8777.txt b/server508/data/mapdata/unpacked/8777.txt new file mode 100644 index 0000000..9e80762 --- /dev/null +++ b/server508/data/mapdata/unpacked/8777.txt @@ -0,0 +1,4 @@ +-137310003 +1329143043 +-669559936 +-1913927786 diff --git a/server508/data/mapdata/unpacked/8778.txt b/server508/data/mapdata/unpacked/8778.txt new file mode 100644 index 0000000..bdd40a4 --- /dev/null +++ b/server508/data/mapdata/unpacked/8778.txt @@ -0,0 +1,4 @@ +2142407721 +-1514375765 +1855937572 +220818342 diff --git a/server508/data/mapdata/unpacked/8779.txt b/server508/data/mapdata/unpacked/8779.txt new file mode 100644 index 0000000..21b0939 --- /dev/null +++ b/server508/data/mapdata/unpacked/8779.txt @@ -0,0 +1,4 @@ +-1680845199 +-1149954104 +-1177525481 +-576614197 diff --git a/server508/data/mapdata/unpacked/8780.txt b/server508/data/mapdata/unpacked/8780.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8780.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8781.txt b/server508/data/mapdata/unpacked/8781.txt new file mode 100644 index 0000000..98e7859 --- /dev/null +++ b/server508/data/mapdata/unpacked/8781.txt @@ -0,0 +1,4 @@ +-2133721491 +843228961 +1706232103 +-934369964 diff --git a/server508/data/mapdata/unpacked/8785.txt b/server508/data/mapdata/unpacked/8785.txt new file mode 100644 index 0000000..4e4c3b3 --- /dev/null +++ b/server508/data/mapdata/unpacked/8785.txt @@ -0,0 +1,4 @@ +1543774040 +-487517297 +-1630373503 +102220753 diff --git a/server508/data/mapdata/unpacked/8786.txt b/server508/data/mapdata/unpacked/8786.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8786.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8787.txt b/server508/data/mapdata/unpacked/8787.txt new file mode 100644 index 0000000..6c3e43d --- /dev/null +++ b/server508/data/mapdata/unpacked/8787.txt @@ -0,0 +1,4 @@ +1791798624 +-1711313280 +166719404 +-1487207913 diff --git a/server508/data/mapdata/unpacked/8788.txt b/server508/data/mapdata/unpacked/8788.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8788.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/8789.txt b/server508/data/mapdata/unpacked/8789.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/8789.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9006.txt b/server508/data/mapdata/unpacked/9006.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9006.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9007.txt b/server508/data/mapdata/unpacked/9007.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9007.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9008.txt b/server508/data/mapdata/unpacked/9008.txt new file mode 100644 index 0000000..06f7613 --- /dev/null +++ b/server508/data/mapdata/unpacked/9008.txt @@ -0,0 +1,4 @@ +2084752401 +-1394447522 +2084945842 +1474596929 diff --git a/server508/data/mapdata/unpacked/9009.txt b/server508/data/mapdata/unpacked/9009.txt new file mode 100644 index 0000000..791ad1a --- /dev/null +++ b/server508/data/mapdata/unpacked/9009.txt @@ -0,0 +1,4 @@ +898432013 +1464425485 +1479297637 +1732705669 diff --git a/server508/data/mapdata/unpacked/9010.txt b/server508/data/mapdata/unpacked/9010.txt new file mode 100644 index 0000000..ad78f2b --- /dev/null +++ b/server508/data/mapdata/unpacked/9010.txt @@ -0,0 +1,4 @@ +1362096653 +746663700 +338872870 +9791230 diff --git a/server508/data/mapdata/unpacked/9011.txt b/server508/data/mapdata/unpacked/9011.txt new file mode 100644 index 0000000..2df1f70 --- /dev/null +++ b/server508/data/mapdata/unpacked/9011.txt @@ -0,0 +1,4 @@ +-135370293 +700991137 +-1302596410 +-1183796338 diff --git a/server508/data/mapdata/unpacked/9012.txt b/server508/data/mapdata/unpacked/9012.txt new file mode 100644 index 0000000..882d3c5 --- /dev/null +++ b/server508/data/mapdata/unpacked/9012.txt @@ -0,0 +1,4 @@ +1204696185 +-486414605 +-1016110497 +134649113 diff --git a/server508/data/mapdata/unpacked/9013.txt b/server508/data/mapdata/unpacked/9013.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9013.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9014.txt b/server508/data/mapdata/unpacked/9014.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9014.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9015.txt b/server508/data/mapdata/unpacked/9015.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9015.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9016.txt b/server508/data/mapdata/unpacked/9016.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9016.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9017.txt b/server508/data/mapdata/unpacked/9017.txt new file mode 100644 index 0000000..a1f553b --- /dev/null +++ b/server508/data/mapdata/unpacked/9017.txt @@ -0,0 +1,4 @@ +-518439975 +-1388520826 +203536985 +1155539914 diff --git a/server508/data/mapdata/unpacked/9018.txt b/server508/data/mapdata/unpacked/9018.txt new file mode 100644 index 0000000..5ff5ae0 --- /dev/null +++ b/server508/data/mapdata/unpacked/9018.txt @@ -0,0 +1,4 @@ +-116231890 +2037305449 +-518154118 +43034164 diff --git a/server508/data/mapdata/unpacked/9019.txt b/server508/data/mapdata/unpacked/9019.txt new file mode 100644 index 0000000..bbbb60f --- /dev/null +++ b/server508/data/mapdata/unpacked/9019.txt @@ -0,0 +1,4 @@ +-1293726217 +-1696419000 +-859948399 +1059527576 diff --git a/server508/data/mapdata/unpacked/9020.txt b/server508/data/mapdata/unpacked/9020.txt new file mode 100644 index 0000000..b7a9b91 --- /dev/null +++ b/server508/data/mapdata/unpacked/9020.txt @@ -0,0 +1,4 @@ +-1906040194 +849367381 +2098246444 +1605043698 diff --git a/server508/data/mapdata/unpacked/9021.txt b/server508/data/mapdata/unpacked/9021.txt new file mode 100644 index 0000000..e607dd9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9021.txt @@ -0,0 +1,5 @@ +-665917952 +-432697139 +-602494723 +-2097936281 + diff --git a/server508/data/mapdata/unpacked/9032.txt b/server508/data/mapdata/unpacked/9032.txt new file mode 100644 index 0000000..ff6dd58 --- /dev/null +++ b/server508/data/mapdata/unpacked/9032.txt @@ -0,0 +1,4 @@ +-828656936 +1072022787 +-640768629 +-1761240236 diff --git a/server508/data/mapdata/unpacked/9033.txt b/server508/data/mapdata/unpacked/9033.txt new file mode 100644 index 0000000..b0314ed --- /dev/null +++ b/server508/data/mapdata/unpacked/9033.txt @@ -0,0 +1,4 @@ +-1516886192 +1081198982 +-1267611367 +-339961975 diff --git a/server508/data/mapdata/unpacked/9034.txt b/server508/data/mapdata/unpacked/9034.txt new file mode 100644 index 0000000..637482f --- /dev/null +++ b/server508/data/mapdata/unpacked/9034.txt @@ -0,0 +1,4 @@ +1874260326 +1014701729 +745849790 +-1354790160 diff --git a/server508/data/mapdata/unpacked/9035.txt b/server508/data/mapdata/unpacked/9035.txt new file mode 100644 index 0000000..f0611bb --- /dev/null +++ b/server508/data/mapdata/unpacked/9035.txt @@ -0,0 +1,4 @@ +1525685385 +1372975156 +-2010144170 +-1594192581 diff --git a/server508/data/mapdata/unpacked/9036.txt b/server508/data/mapdata/unpacked/9036.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9036.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9037.txt b/server508/data/mapdata/unpacked/9037.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9037.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9040.txt b/server508/data/mapdata/unpacked/9040.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9040.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9041.txt b/server508/data/mapdata/unpacked/9041.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9041.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9042.txt b/server508/data/mapdata/unpacked/9042.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9042.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9043.txt b/server508/data/mapdata/unpacked/9043.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9043.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9044.txt b/server508/data/mapdata/unpacked/9044.txt new file mode 100644 index 0000000..9161afd --- /dev/null +++ b/server508/data/mapdata/unpacked/9044.txt @@ -0,0 +1,4 @@ +1541894861 +-2145670115 +-138793212 +-921922364 diff --git a/server508/data/mapdata/unpacked/9045.txt b/server508/data/mapdata/unpacked/9045.txt new file mode 100644 index 0000000..7f9aede --- /dev/null +++ b/server508/data/mapdata/unpacked/9045.txt @@ -0,0 +1,4 @@ +1041036316 +-2144924275 +-1062048066 +755505347 diff --git a/server508/data/mapdata/unpacked/9048.txt b/server508/data/mapdata/unpacked/9048.txt new file mode 100644 index 0000000..9a5f08a --- /dev/null +++ b/server508/data/mapdata/unpacked/9048.txt @@ -0,0 +1,4 @@ +-2078486774 +831084557 +-1515890598 +-396794300 diff --git a/server508/data/mapdata/unpacked/9049.txt b/server508/data/mapdata/unpacked/9049.txt new file mode 100644 index 0000000..6471b9e --- /dev/null +++ b/server508/data/mapdata/unpacked/9049.txt @@ -0,0 +1,4 @@ +1865420136 +1880907821 +-543917600 +1097363521 diff --git a/server508/data/mapdata/unpacked/9050.txt b/server508/data/mapdata/unpacked/9050.txt new file mode 100644 index 0000000..2aa056f --- /dev/null +++ b/server508/data/mapdata/unpacked/9050.txt @@ -0,0 +1,4 @@ +-1725663967 +1678055280 +1100896300 +706957861 diff --git a/server508/data/mapdata/unpacked/9051.txt b/server508/data/mapdata/unpacked/9051.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9051.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9109.txt b/server508/data/mapdata/unpacked/9109.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9109.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9110.txt b/server508/data/mapdata/unpacked/9110.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9110.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9111.txt b/server508/data/mapdata/unpacked/9111.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9111.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9115.txt b/server508/data/mapdata/unpacked/9115.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9115.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9116.txt b/server508/data/mapdata/unpacked/9116.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9116.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9117.txt b/server508/data/mapdata/unpacked/9117.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9117.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9120.txt b/server508/data/mapdata/unpacked/9120.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9120.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9121.txt b/server508/data/mapdata/unpacked/9121.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9121.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9122.txt b/server508/data/mapdata/unpacked/9122.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9122.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9262.txt b/server508/data/mapdata/unpacked/9262.txt new file mode 100644 index 0000000..1be3965 --- /dev/null +++ b/server508/data/mapdata/unpacked/9262.txt @@ -0,0 +1,4 @@ +-1327237404 +-257519940 +-1398355053 +-970581711 diff --git a/server508/data/mapdata/unpacked/9263.txt b/server508/data/mapdata/unpacked/9263.txt new file mode 100644 index 0000000..f520546 --- /dev/null +++ b/server508/data/mapdata/unpacked/9263.txt @@ -0,0 +1,4 @@ +-1896898351 +81121501 +787229912 +-904856097 diff --git a/server508/data/mapdata/unpacked/9264.txt b/server508/data/mapdata/unpacked/9264.txt new file mode 100644 index 0000000..e94b6bb --- /dev/null +++ b/server508/data/mapdata/unpacked/9264.txt @@ -0,0 +1,4 @@ +1517876710 +1288106006 +-319745194 +1340771706 diff --git a/server508/data/mapdata/unpacked/9265.txt b/server508/data/mapdata/unpacked/9265.txt new file mode 100644 index 0000000..f2f2749 --- /dev/null +++ b/server508/data/mapdata/unpacked/9265.txt @@ -0,0 +1,4 @@ +1050111381 +-276500917 +1975172977 +329246991 diff --git a/server508/data/mapdata/unpacked/9266.txt b/server508/data/mapdata/unpacked/9266.txt new file mode 100644 index 0000000..8930956 --- /dev/null +++ b/server508/data/mapdata/unpacked/9266.txt @@ -0,0 +1,4 @@ +2007797925 +-1715573299 +642190072 +-662957526 diff --git a/server508/data/mapdata/unpacked/9267.txt b/server508/data/mapdata/unpacked/9267.txt new file mode 100644 index 0000000..b3c7ffc --- /dev/null +++ b/server508/data/mapdata/unpacked/9267.txt @@ -0,0 +1,4 @@ +1811361377 +-1208567174 +103788086 +-225339394 diff --git a/server508/data/mapdata/unpacked/9268.txt b/server508/data/mapdata/unpacked/9268.txt new file mode 100644 index 0000000..b5cd940 --- /dev/null +++ b/server508/data/mapdata/unpacked/9268.txt @@ -0,0 +1,4 @@ +1897267086 +556470475 +-1130589672 +-743996492 diff --git a/server508/data/mapdata/unpacked/9269.txt b/server508/data/mapdata/unpacked/9269.txt new file mode 100644 index 0000000..07feb84 --- /dev/null +++ b/server508/data/mapdata/unpacked/9269.txt @@ -0,0 +1,4 @@ +-1228579055 +-1634436411 +181074707 +1831294115 diff --git a/server508/data/mapdata/unpacked/9270.txt b/server508/data/mapdata/unpacked/9270.txt new file mode 100644 index 0000000..7bd60cd --- /dev/null +++ b/server508/data/mapdata/unpacked/9270.txt @@ -0,0 +1,4 @@ +-1224224741 +1755403824 +128170045 +498510702 diff --git a/server508/data/mapdata/unpacked/9271.txt b/server508/data/mapdata/unpacked/9271.txt new file mode 100644 index 0000000..952133c --- /dev/null +++ b/server508/data/mapdata/unpacked/9271.txt @@ -0,0 +1,4 @@ +-875378602 +-1077772187 +594715960 +-738079672 diff --git a/server508/data/mapdata/unpacked/9272.txt b/server508/data/mapdata/unpacked/9272.txt new file mode 100644 index 0000000..cc9e715 --- /dev/null +++ b/server508/data/mapdata/unpacked/9272.txt @@ -0,0 +1,4 @@ +-1755813275 +373737884 +1517748428 +738184348 diff --git a/server508/data/mapdata/unpacked/9273.txt b/server508/data/mapdata/unpacked/9273.txt new file mode 100644 index 0000000..4a7eec4 --- /dev/null +++ b/server508/data/mapdata/unpacked/9273.txt @@ -0,0 +1,4 @@ +-503076140 +-319114908 +-1349219228 +1465453758 diff --git a/server508/data/mapdata/unpacked/9274.txt b/server508/data/mapdata/unpacked/9274.txt new file mode 100644 index 0000000..ed58694 --- /dev/null +++ b/server508/data/mapdata/unpacked/9274.txt @@ -0,0 +1,4 @@ +1831263162 +2092992846 +-1206288816 +831074245 diff --git a/server508/data/mapdata/unpacked/9275.txt b/server508/data/mapdata/unpacked/9275.txt new file mode 100644 index 0000000..eb32b7a --- /dev/null +++ b/server508/data/mapdata/unpacked/9275.txt @@ -0,0 +1,4 @@ +-1650252132 +1303707598 +1976070277 +1485777921 diff --git a/server508/data/mapdata/unpacked/9276.txt b/server508/data/mapdata/unpacked/9276.txt new file mode 100644 index 0000000..2bd2191 --- /dev/null +++ b/server508/data/mapdata/unpacked/9276.txt @@ -0,0 +1,4 @@ +-1624253043 +1426176358 +210641208 +773759029 diff --git a/server508/data/mapdata/unpacked/9277.txt b/server508/data/mapdata/unpacked/9277.txt new file mode 100644 index 0000000..580188a --- /dev/null +++ b/server508/data/mapdata/unpacked/9277.txt @@ -0,0 +1,4 @@ +272801923 +1797149371 +-131972865 +1265002008 diff --git a/server508/data/mapdata/unpacked/9284.txt b/server508/data/mapdata/unpacked/9284.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9284.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9285.txt b/server508/data/mapdata/unpacked/9285.txt new file mode 100644 index 0000000..0a23251 --- /dev/null +++ b/server508/data/mapdata/unpacked/9285.txt @@ -0,0 +1,4 @@ +1742241898 +-1564206342 +-460725435 +1614032789 diff --git a/server508/data/mapdata/unpacked/9286.txt b/server508/data/mapdata/unpacked/9286.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9286.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9288.txt b/server508/data/mapdata/unpacked/9288.txt new file mode 100644 index 0000000..6841079 --- /dev/null +++ b/server508/data/mapdata/unpacked/9288.txt @@ -0,0 +1,4 @@ +1322101455 +-912043509 +-514354639 +-977254423 diff --git a/server508/data/mapdata/unpacked/9289.txt b/server508/data/mapdata/unpacked/9289.txt new file mode 100644 index 0000000..aa3c130 --- /dev/null +++ b/server508/data/mapdata/unpacked/9289.txt @@ -0,0 +1,4 @@ +-1520212935 +995884312 +481657690 +-9846292 diff --git a/server508/data/mapdata/unpacked/9290.txt b/server508/data/mapdata/unpacked/9290.txt new file mode 100644 index 0000000..6e575d0 --- /dev/null +++ b/server508/data/mapdata/unpacked/9290.txt @@ -0,0 +1,4 @@ +702687456 +43635181 +-1983533012 +-319469910 diff --git a/server508/data/mapdata/unpacked/9291.txt b/server508/data/mapdata/unpacked/9291.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9291.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9292.txt b/server508/data/mapdata/unpacked/9292.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9292.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9295.txt b/server508/data/mapdata/unpacked/9295.txt new file mode 100644 index 0000000..47bb2c4 --- /dev/null +++ b/server508/data/mapdata/unpacked/9295.txt @@ -0,0 +1,4 @@ +224580924 +-858933614 +-432602901 +-1433710083 diff --git a/server508/data/mapdata/unpacked/9296.txt b/server508/data/mapdata/unpacked/9296.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9296.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9297.txt b/server508/data/mapdata/unpacked/9297.txt new file mode 100644 index 0000000..c90d519 --- /dev/null +++ b/server508/data/mapdata/unpacked/9297.txt @@ -0,0 +1,4 @@ +-1667110403 +-655319123 +-2124588845 +-262291671 diff --git a/server508/data/mapdata/unpacked/9298.txt b/server508/data/mapdata/unpacked/9298.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9298.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9299.txt b/server508/data/mapdata/unpacked/9299.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9299.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9300.txt b/server508/data/mapdata/unpacked/9300.txt new file mode 100644 index 0000000..7d80687 --- /dev/null +++ b/server508/data/mapdata/unpacked/9300.txt @@ -0,0 +1,4 @@ +644587156 +-605721698 +681391959 +1688865408 diff --git a/server508/data/mapdata/unpacked/9301.txt b/server508/data/mapdata/unpacked/9301.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9301.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9304.txt b/server508/data/mapdata/unpacked/9304.txt new file mode 100644 index 0000000..f9d4768 --- /dev/null +++ b/server508/data/mapdata/unpacked/9304.txt @@ -0,0 +1,4 @@ +611752720 +1326485335 +251749748 +-1744485563 diff --git a/server508/data/mapdata/unpacked/9305.txt b/server508/data/mapdata/unpacked/9305.txt new file mode 100644 index 0000000..e4129d4 --- /dev/null +++ b/server508/data/mapdata/unpacked/9305.txt @@ -0,0 +1,4 @@ +-262682037 +564453965 +-698040657 +-946867983 diff --git a/server508/data/mapdata/unpacked/9306.txt b/server508/data/mapdata/unpacked/9306.txt new file mode 100644 index 0000000..ca159bb --- /dev/null +++ b/server508/data/mapdata/unpacked/9306.txt @@ -0,0 +1,4 @@ +1213624565 +1443323179 +2068217235 +-1098243446 diff --git a/server508/data/mapdata/unpacked/9307.txt b/server508/data/mapdata/unpacked/9307.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9307.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9363.txt b/server508/data/mapdata/unpacked/9363.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9363.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9364.txt b/server508/data/mapdata/unpacked/9364.txt new file mode 100644 index 0000000..0accc6e --- /dev/null +++ b/server508/data/mapdata/unpacked/9364.txt @@ -0,0 +1,4 @@ +1350964684 +-1141243546 +-158288919 +1853454502 diff --git a/server508/data/mapdata/unpacked/9365.txt b/server508/data/mapdata/unpacked/9365.txt new file mode 100644 index 0000000..7b55fe3 --- /dev/null +++ b/server508/data/mapdata/unpacked/9365.txt @@ -0,0 +1,4 @@ +591308830 +1667019329 +-1039629756 +738471651 diff --git a/server508/data/mapdata/unpacked/9366.txt b/server508/data/mapdata/unpacked/9366.txt new file mode 100644 index 0000000..2fe6260 --- /dev/null +++ b/server508/data/mapdata/unpacked/9366.txt @@ -0,0 +1,4 @@ +1178995904 +379855655 +487515192 +740635836 diff --git a/server508/data/mapdata/unpacked/9367.txt b/server508/data/mapdata/unpacked/9367.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9367.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9371.txt b/server508/data/mapdata/unpacked/9371.txt new file mode 100644 index 0000000..c8358e6 --- /dev/null +++ b/server508/data/mapdata/unpacked/9371.txt @@ -0,0 +1,5 @@ +-1625040094 +1138785379 +-41923493 +400034327 + diff --git a/server508/data/mapdata/unpacked/9372.txt b/server508/data/mapdata/unpacked/9372.txt new file mode 100644 index 0000000..277fe9b --- /dev/null +++ b/server508/data/mapdata/unpacked/9372.txt @@ -0,0 +1,5 @@ +1005996231 +-569567890 +-1578994771 +-1136932414 + diff --git a/server508/data/mapdata/unpacked/9373.txt b/server508/data/mapdata/unpacked/9373.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9373.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9374.txt b/server508/data/mapdata/unpacked/9374.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9374.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9375.txt b/server508/data/mapdata/unpacked/9375.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9375.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9376.txt b/server508/data/mapdata/unpacked/9376.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9376.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9377.txt b/server508/data/mapdata/unpacked/9377.txt new file mode 100644 index 0000000..b560e01 --- /dev/null +++ b/server508/data/mapdata/unpacked/9377.txt @@ -0,0 +1,4 @@ +-1671261866 +-750153286 +1731026368 +-1501269926 diff --git a/server508/data/mapdata/unpacked/9378.txt b/server508/data/mapdata/unpacked/9378.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9378.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9515.txt b/server508/data/mapdata/unpacked/9515.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9515.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9516.txt b/server508/data/mapdata/unpacked/9516.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9516.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9517.txt b/server508/data/mapdata/unpacked/9517.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9517.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9518.txt b/server508/data/mapdata/unpacked/9518.txt new file mode 100644 index 0000000..9046957 --- /dev/null +++ b/server508/data/mapdata/unpacked/9518.txt @@ -0,0 +1,4 @@ +-557639005 +398566091 +-133936467 +-850662847 diff --git a/server508/data/mapdata/unpacked/9519.txt b/server508/data/mapdata/unpacked/9519.txt new file mode 100644 index 0000000..b7de3d6 --- /dev/null +++ b/server508/data/mapdata/unpacked/9519.txt @@ -0,0 +1,4 @@ +2045915867 +843943848 +1479393319 +61248459 diff --git a/server508/data/mapdata/unpacked/9520.txt b/server508/data/mapdata/unpacked/9520.txt new file mode 100644 index 0000000..5576158 --- /dev/null +++ b/server508/data/mapdata/unpacked/9520.txt @@ -0,0 +1,4 @@ +-1534254084 +-142177068 +838351559 +798595528 diff --git a/server508/data/mapdata/unpacked/9521.txt b/server508/data/mapdata/unpacked/9521.txt new file mode 100644 index 0000000..b8cc3c3 --- /dev/null +++ b/server508/data/mapdata/unpacked/9521.txt @@ -0,0 +1,4 @@ +-1756008730 +1701620533 +-579278885 +1205797104 diff --git a/server508/data/mapdata/unpacked/9522.txt b/server508/data/mapdata/unpacked/9522.txt new file mode 100644 index 0000000..91c6762 --- /dev/null +++ b/server508/data/mapdata/unpacked/9522.txt @@ -0,0 +1,4 @@ +1252542168 +-1448059709 +1122042436 +-1636001244 diff --git a/server508/data/mapdata/unpacked/9523.txt b/server508/data/mapdata/unpacked/9523.txt new file mode 100644 index 0000000..ed530dd --- /dev/null +++ b/server508/data/mapdata/unpacked/9523.txt @@ -0,0 +1,4 @@ +-1310187207 +-834726064 +-1799766719 +1699616161 diff --git a/server508/data/mapdata/unpacked/9524.txt b/server508/data/mapdata/unpacked/9524.txt new file mode 100644 index 0000000..2d92b75 --- /dev/null +++ b/server508/data/mapdata/unpacked/9524.txt @@ -0,0 +1,4 @@ +-1209775078 +-1209251210 +-1747509150 +90457302 diff --git a/server508/data/mapdata/unpacked/9525.txt b/server508/data/mapdata/unpacked/9525.txt new file mode 100644 index 0000000..54445bc --- /dev/null +++ b/server508/data/mapdata/unpacked/9525.txt @@ -0,0 +1,4 @@ +-572542479 +-672313352 +1366633019 +-1840344292 diff --git a/server508/data/mapdata/unpacked/9526.txt b/server508/data/mapdata/unpacked/9526.txt new file mode 100644 index 0000000..28d15cf --- /dev/null +++ b/server508/data/mapdata/unpacked/9526.txt @@ -0,0 +1,4 @@ +-946191110 +746761324 +810538817 +107990300 diff --git a/server508/data/mapdata/unpacked/9527.txt b/server508/data/mapdata/unpacked/9527.txt new file mode 100644 index 0000000..86d819d --- /dev/null +++ b/server508/data/mapdata/unpacked/9527.txt @@ -0,0 +1,4 @@ +1148278078 +-266468530 +-243084816 +-1561247930 diff --git a/server508/data/mapdata/unpacked/9528.txt b/server508/data/mapdata/unpacked/9528.txt new file mode 100644 index 0000000..c480d64 --- /dev/null +++ b/server508/data/mapdata/unpacked/9528.txt @@ -0,0 +1,4 @@ +2102113094 +1056838948 +-1779359269 +700318930 diff --git a/server508/data/mapdata/unpacked/9529.txt b/server508/data/mapdata/unpacked/9529.txt new file mode 100644 index 0000000..7130954 --- /dev/null +++ b/server508/data/mapdata/unpacked/9529.txt @@ -0,0 +1,4 @@ +727060780 +-652255702 +-1555170272 +-2145386007 diff --git a/server508/data/mapdata/unpacked/9530.txt b/server508/data/mapdata/unpacked/9530.txt new file mode 100644 index 0000000..1343201 --- /dev/null +++ b/server508/data/mapdata/unpacked/9530.txt @@ -0,0 +1,4 @@ +-932232860 +436123389 +-658931046 +2094924060 diff --git a/server508/data/mapdata/unpacked/9531.txt b/server508/data/mapdata/unpacked/9531.txt new file mode 100644 index 0000000..d1fcb19 --- /dev/null +++ b/server508/data/mapdata/unpacked/9531.txt @@ -0,0 +1,4 @@ +874716290 +-759645908 +840881072 +-552322405 diff --git a/server508/data/mapdata/unpacked/9532.txt b/server508/data/mapdata/unpacked/9532.txt new file mode 100644 index 0000000..12d3ce0 --- /dev/null +++ b/server508/data/mapdata/unpacked/9532.txt @@ -0,0 +1,4 @@ +-1164282027 +-620126230 +1487448896 +565185597 diff --git a/server508/data/mapdata/unpacked/9533.txt b/server508/data/mapdata/unpacked/9533.txt new file mode 100644 index 0000000..c978a33 --- /dev/null +++ b/server508/data/mapdata/unpacked/9533.txt @@ -0,0 +1,4 @@ +1393307887 +646464303 +-1582337843 +2048412434 diff --git a/server508/data/mapdata/unpacked/9540.txt b/server508/data/mapdata/unpacked/9540.txt new file mode 100644 index 0000000..73eedff --- /dev/null +++ b/server508/data/mapdata/unpacked/9540.txt @@ -0,0 +1,4 @@ +-489788621 +2021133858 +244677479 +1058347252 diff --git a/server508/data/mapdata/unpacked/9541.txt b/server508/data/mapdata/unpacked/9541.txt new file mode 100644 index 0000000..6e3fa65 --- /dev/null +++ b/server508/data/mapdata/unpacked/9541.txt @@ -0,0 +1,4 @@ +1352006827 +1096305726 +805420370 +-1426885864 diff --git a/server508/data/mapdata/unpacked/9542.txt b/server508/data/mapdata/unpacked/9542.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9542.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9545.txt b/server508/data/mapdata/unpacked/9545.txt new file mode 100644 index 0000000..fc273ee --- /dev/null +++ b/server508/data/mapdata/unpacked/9545.txt @@ -0,0 +1,5 @@ +1322297584 +105544016 +-1148309508 +-574484176 + diff --git a/server508/data/mapdata/unpacked/9546.txt b/server508/data/mapdata/unpacked/9546.txt new file mode 100644 index 0000000..98e0cdf --- /dev/null +++ b/server508/data/mapdata/unpacked/9546.txt @@ -0,0 +1,4 @@ +-257183655 +-1481577287 +-431332303 +-242811730 diff --git a/server508/data/mapdata/unpacked/9547.txt b/server508/data/mapdata/unpacked/9547.txt new file mode 100644 index 0000000..ff2fa16 --- /dev/null +++ b/server508/data/mapdata/unpacked/9547.txt @@ -0,0 +1,4 @@ +-1998382641 +30700550 +1548517068 +-855708219 diff --git a/server508/data/mapdata/unpacked/9548.txt b/server508/data/mapdata/unpacked/9548.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9548.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9551.txt b/server508/data/mapdata/unpacked/9551.txt new file mode 100644 index 0000000..4a654d3 --- /dev/null +++ b/server508/data/mapdata/unpacked/9551.txt @@ -0,0 +1,4 @@ +-355590781 +-1549463073 +-46968616 +648246695 diff --git a/server508/data/mapdata/unpacked/9552.txt b/server508/data/mapdata/unpacked/9552.txt new file mode 100644 index 0000000..8f04ed1 --- /dev/null +++ b/server508/data/mapdata/unpacked/9552.txt @@ -0,0 +1,4 @@ +1925832709 +39840626 +683796237 +-766329117 diff --git a/server508/data/mapdata/unpacked/9553.txt b/server508/data/mapdata/unpacked/9553.txt new file mode 100644 index 0000000..cbe3865 --- /dev/null +++ b/server508/data/mapdata/unpacked/9553.txt @@ -0,0 +1,4 @@ +-1873675730 +-1930195432 +759400017 +-1395479956 diff --git a/server508/data/mapdata/unpacked/9554.txt b/server508/data/mapdata/unpacked/9554.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9554.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9555.txt b/server508/data/mapdata/unpacked/9555.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9555.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9556.txt b/server508/data/mapdata/unpacked/9556.txt new file mode 100644 index 0000000..ede7286 --- /dev/null +++ b/server508/data/mapdata/unpacked/9556.txt @@ -0,0 +1,4 @@ +-300312374 +-1152515846 +-863452271 +-1500855067 diff --git a/server508/data/mapdata/unpacked/9557.txt b/server508/data/mapdata/unpacked/9557.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9557.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9560.txt b/server508/data/mapdata/unpacked/9560.txt new file mode 100644 index 0000000..24f0f2a --- /dev/null +++ b/server508/data/mapdata/unpacked/9560.txt @@ -0,0 +1,4 @@ +-628764335 +1585475717 +2036165620 +-1921088167 diff --git a/server508/data/mapdata/unpacked/9561.txt b/server508/data/mapdata/unpacked/9561.txt new file mode 100644 index 0000000..9e73877 --- /dev/null +++ b/server508/data/mapdata/unpacked/9561.txt @@ -0,0 +1,4 @@ +1291655395 +-1426986127 +1894534662 +-1705749378 diff --git a/server508/data/mapdata/unpacked/9562.txt b/server508/data/mapdata/unpacked/9562.txt new file mode 100644 index 0000000..e3b9e98 --- /dev/null +++ b/server508/data/mapdata/unpacked/9562.txt @@ -0,0 +1,4 @@ +-1047298777 +1197811918 +663745433 +-2098029011 diff --git a/server508/data/mapdata/unpacked/9563.txt b/server508/data/mapdata/unpacked/9563.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9563.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9619.txt b/server508/data/mapdata/unpacked/9619.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9619.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9620.txt b/server508/data/mapdata/unpacked/9620.txt new file mode 100644 index 0000000..2a05e6f --- /dev/null +++ b/server508/data/mapdata/unpacked/9620.txt @@ -0,0 +1,4 @@ +1941157140 +-1630547377 +-1114648519 +87057467 diff --git a/server508/data/mapdata/unpacked/9621.txt b/server508/data/mapdata/unpacked/9621.txt new file mode 100644 index 0000000..d22c644 --- /dev/null +++ b/server508/data/mapdata/unpacked/9621.txt @@ -0,0 +1,4 @@ +-1420915988 +2069137101 +1981379143 +-252845225 diff --git a/server508/data/mapdata/unpacked/9622.txt b/server508/data/mapdata/unpacked/9622.txt new file mode 100644 index 0000000..18f0198 --- /dev/null +++ b/server508/data/mapdata/unpacked/9622.txt @@ -0,0 +1,4 @@ +124513614 +453662882 +-154905102 +-2103796118 diff --git a/server508/data/mapdata/unpacked/9623.txt b/server508/data/mapdata/unpacked/9623.txt new file mode 100644 index 0000000..5ea4284 --- /dev/null +++ b/server508/data/mapdata/unpacked/9623.txt @@ -0,0 +1,4 @@ +599261273 +-825650577 +812524259 +466922350 diff --git a/server508/data/mapdata/unpacked/9625.txt b/server508/data/mapdata/unpacked/9625.txt new file mode 100644 index 0000000..f8347ec --- /dev/null +++ b/server508/data/mapdata/unpacked/9625.txt @@ -0,0 +1,4 @@ +1653831917 +577275182 +-1997376026 +-459899031 diff --git a/server508/data/mapdata/unpacked/9626.txt b/server508/data/mapdata/unpacked/9626.txt new file mode 100644 index 0000000..fa5ad51 --- /dev/null +++ b/server508/data/mapdata/unpacked/9626.txt @@ -0,0 +1,4 @@ +-1411729186 +1049744836 +-1608961973 +-1681145313 diff --git a/server508/data/mapdata/unpacked/9627.txt b/server508/data/mapdata/unpacked/9627.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9627.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9628.txt b/server508/data/mapdata/unpacked/9628.txt new file mode 100644 index 0000000..6f28f08 --- /dev/null +++ b/server508/data/mapdata/unpacked/9628.txt @@ -0,0 +1,5 @@ +0 +0 +0 +0 + diff --git a/server508/data/mapdata/unpacked/9629.txt b/server508/data/mapdata/unpacked/9629.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9629.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9630.txt b/server508/data/mapdata/unpacked/9630.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9630.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9631.txt b/server508/data/mapdata/unpacked/9631.txt new file mode 100644 index 0000000..549b702 --- /dev/null +++ b/server508/data/mapdata/unpacked/9631.txt @@ -0,0 +1,4 @@ +1266963397 +269916041 +734658458 +725243574 diff --git a/server508/data/mapdata/unpacked/9632.txt b/server508/data/mapdata/unpacked/9632.txt new file mode 100644 index 0000000..ec98416 --- /dev/null +++ b/server508/data/mapdata/unpacked/9632.txt @@ -0,0 +1,4 @@ +1023657558 +-2001662423 +-46679010 +2064543607 diff --git a/server508/data/mapdata/unpacked/9633.txt b/server508/data/mapdata/unpacked/9633.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9633.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9634.txt b/server508/data/mapdata/unpacked/9634.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9634.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9771.txt b/server508/data/mapdata/unpacked/9771.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9771.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9772.txt b/server508/data/mapdata/unpacked/9772.txt new file mode 100644 index 0000000..328e5d7 --- /dev/null +++ b/server508/data/mapdata/unpacked/9772.txt @@ -0,0 +1,4 @@ +-1742165439 +-1273697376 +2055229018 +901215817 diff --git a/server508/data/mapdata/unpacked/9773.txt b/server508/data/mapdata/unpacked/9773.txt new file mode 100644 index 0000000..9b72fa8 --- /dev/null +++ b/server508/data/mapdata/unpacked/9773.txt @@ -0,0 +1,4 @@ +465644643 +-503279415 +-1368947935 +-1293998544 diff --git a/server508/data/mapdata/unpacked/9774.txt b/server508/data/mapdata/unpacked/9774.txt new file mode 100644 index 0000000..b398974 --- /dev/null +++ b/server508/data/mapdata/unpacked/9774.txt @@ -0,0 +1,4 @@ +-969323176 +1775448370 +1827500666 +-2138545804 diff --git a/server508/data/mapdata/unpacked/9775.txt b/server508/data/mapdata/unpacked/9775.txt new file mode 100644 index 0000000..d7baac4 --- /dev/null +++ b/server508/data/mapdata/unpacked/9775.txt @@ -0,0 +1,4 @@ +1009031775 +1977305970 +-699602333 +1802690745 diff --git a/server508/data/mapdata/unpacked/9776.txt b/server508/data/mapdata/unpacked/9776.txt new file mode 100644 index 0000000..956130b --- /dev/null +++ b/server508/data/mapdata/unpacked/9776.txt @@ -0,0 +1,4 @@ +2000999142 +205577043 +-1417782040 +-218453463 diff --git a/server508/data/mapdata/unpacked/9777.txt b/server508/data/mapdata/unpacked/9777.txt new file mode 100644 index 0000000..1513ebb --- /dev/null +++ b/server508/data/mapdata/unpacked/9777.txt @@ -0,0 +1,4 @@ +-1369633169 +1428951907 +-794443032 +-224032712 diff --git a/server508/data/mapdata/unpacked/9778.txt b/server508/data/mapdata/unpacked/9778.txt new file mode 100644 index 0000000..2fe224b --- /dev/null +++ b/server508/data/mapdata/unpacked/9778.txt @@ -0,0 +1,4 @@ +1282778033 +-76761401 +-1123703017 +-1416049115 diff --git a/server508/data/mapdata/unpacked/9779.txt b/server508/data/mapdata/unpacked/9779.txt new file mode 100644 index 0000000..93ca003 --- /dev/null +++ b/server508/data/mapdata/unpacked/9779.txt @@ -0,0 +1,4 @@ +-1158828855 +-293580830 +713180736 +762257070 diff --git a/server508/data/mapdata/unpacked/9780.txt b/server508/data/mapdata/unpacked/9780.txt new file mode 100644 index 0000000..9257e3a --- /dev/null +++ b/server508/data/mapdata/unpacked/9780.txt @@ -0,0 +1,4 @@ +128209748 +-997596268 +-53404968 +989303879 diff --git a/server508/data/mapdata/unpacked/9781.txt b/server508/data/mapdata/unpacked/9781.txt new file mode 100644 index 0000000..4d6c534 --- /dev/null +++ b/server508/data/mapdata/unpacked/9781.txt @@ -0,0 +1,4 @@ +-1450568947 +1873347016 +2040656421 +-627024492 diff --git a/server508/data/mapdata/unpacked/9782.txt b/server508/data/mapdata/unpacked/9782.txt new file mode 100644 index 0000000..e010b58 --- /dev/null +++ b/server508/data/mapdata/unpacked/9782.txt @@ -0,0 +1,4 @@ +963803363 +-1625577381 +-1515560012 +797000049 diff --git a/server508/data/mapdata/unpacked/9783.txt b/server508/data/mapdata/unpacked/9783.txt new file mode 100644 index 0000000..8647d68 --- /dev/null +++ b/server508/data/mapdata/unpacked/9783.txt @@ -0,0 +1,4 @@ +1785268065 +-1215473770 +1311222217 +-1445453250 diff --git a/server508/data/mapdata/unpacked/9784.txt b/server508/data/mapdata/unpacked/9784.txt new file mode 100644 index 0000000..a560695 --- /dev/null +++ b/server508/data/mapdata/unpacked/9784.txt @@ -0,0 +1,4 @@ +1874487660 +1635569708 +-1949316626 +-1920350613 diff --git a/server508/data/mapdata/unpacked/9785.txt b/server508/data/mapdata/unpacked/9785.txt new file mode 100644 index 0000000..c458877 --- /dev/null +++ b/server508/data/mapdata/unpacked/9785.txt @@ -0,0 +1,4 @@ +-65486938 +-1485596203 +-1327236566 +408455718 diff --git a/server508/data/mapdata/unpacked/9786.txt b/server508/data/mapdata/unpacked/9786.txt new file mode 100644 index 0000000..e7eb364 --- /dev/null +++ b/server508/data/mapdata/unpacked/9786.txt @@ -0,0 +1,4 @@ +-2073791326 +-155318773 +-116282245 +-1424900475 diff --git a/server508/data/mapdata/unpacked/9787.txt b/server508/data/mapdata/unpacked/9787.txt new file mode 100644 index 0000000..1691eef --- /dev/null +++ b/server508/data/mapdata/unpacked/9787.txt @@ -0,0 +1,4 @@ +218097749 +1242681128 +-2014981896 +1175992711 diff --git a/server508/data/mapdata/unpacked/9788.txt b/server508/data/mapdata/unpacked/9788.txt new file mode 100644 index 0000000..144e382 --- /dev/null +++ b/server508/data/mapdata/unpacked/9788.txt @@ -0,0 +1,4 @@ +432135203 +92254316 +-1619550296 +76065412 diff --git a/server508/data/mapdata/unpacked/9789.txt b/server508/data/mapdata/unpacked/9789.txt new file mode 100644 index 0000000..2a1f014 --- /dev/null +++ b/server508/data/mapdata/unpacked/9789.txt @@ -0,0 +1,4 @@ +-620749099 +528872615 +1976629038 +667155751 diff --git a/server508/data/mapdata/unpacked/9796.txt b/server508/data/mapdata/unpacked/9796.txt new file mode 100644 index 0000000..3684955 --- /dev/null +++ b/server508/data/mapdata/unpacked/9796.txt @@ -0,0 +1,4 @@ +517509106 +-2019799796 +1066150754 +-676371780 diff --git a/server508/data/mapdata/unpacked/9797.txt b/server508/data/mapdata/unpacked/9797.txt new file mode 100644 index 0000000..ab28463 --- /dev/null +++ b/server508/data/mapdata/unpacked/9797.txt @@ -0,0 +1,4 @@ +672333395 +-284721288 +262558790 +-344798491 diff --git a/server508/data/mapdata/unpacked/9798.txt b/server508/data/mapdata/unpacked/9798.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9798.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9800.txt b/server508/data/mapdata/unpacked/9800.txt new file mode 100644 index 0000000..0a7d305 --- /dev/null +++ b/server508/data/mapdata/unpacked/9800.txt @@ -0,0 +1,4 @@ +1230198769 +708911105 +-539692192 +1126153482 diff --git a/server508/data/mapdata/unpacked/9801.txt b/server508/data/mapdata/unpacked/9801.txt new file mode 100644 index 0000000..c0938aa --- /dev/null +++ b/server508/data/mapdata/unpacked/9801.txt @@ -0,0 +1,4 @@ +-1411921732 +1651102545 +-1826113310 +-859079982 diff --git a/server508/data/mapdata/unpacked/9802.txt b/server508/data/mapdata/unpacked/9802.txt new file mode 100644 index 0000000..b703cb4 --- /dev/null +++ b/server508/data/mapdata/unpacked/9802.txt @@ -0,0 +1,4 @@ +209485096 +602940753 +2048389198 +1202197220 diff --git a/server508/data/mapdata/unpacked/9803.txt b/server508/data/mapdata/unpacked/9803.txt new file mode 100644 index 0000000..e950387 --- /dev/null +++ b/server508/data/mapdata/unpacked/9803.txt @@ -0,0 +1,4 @@ +-1262437179 +-1086288107 +1393145472 +-1318086655 diff --git a/server508/data/mapdata/unpacked/9804.txt b/server508/data/mapdata/unpacked/9804.txt new file mode 100644 index 0000000..51cec2c --- /dev/null +++ b/server508/data/mapdata/unpacked/9804.txt @@ -0,0 +1,4 @@ +-439033034 +-361310510 +37875158 +-1700152748 diff --git a/server508/data/mapdata/unpacked/9805.txt b/server508/data/mapdata/unpacked/9805.txt new file mode 100644 index 0000000..d94d8e3 --- /dev/null +++ b/server508/data/mapdata/unpacked/9805.txt @@ -0,0 +1,4 @@ +-2114807953 +-1293116867 +-1013807366 +-1068548578 diff --git a/server508/data/mapdata/unpacked/9806.txt b/server508/data/mapdata/unpacked/9806.txt new file mode 100644 index 0000000..dd23f5a --- /dev/null +++ b/server508/data/mapdata/unpacked/9806.txt @@ -0,0 +1,4 @@ +368995667 +940146211 +957819918 +-761335591 diff --git a/server508/data/mapdata/unpacked/9807.txt b/server508/data/mapdata/unpacked/9807.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9807.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9808.txt b/server508/data/mapdata/unpacked/9808.txt new file mode 100644 index 0000000..4858dff --- /dev/null +++ b/server508/data/mapdata/unpacked/9808.txt @@ -0,0 +1,4 @@ +308766586 +-214665927 +-1255727041 +-1034716346 diff --git a/server508/data/mapdata/unpacked/9809.txt b/server508/data/mapdata/unpacked/9809.txt new file mode 100644 index 0000000..8831d22 --- /dev/null +++ b/server508/data/mapdata/unpacked/9809.txt @@ -0,0 +1,4 @@ +-128763363 +653932339 +-1040336001 +-372452691 diff --git a/server508/data/mapdata/unpacked/9810.txt b/server508/data/mapdata/unpacked/9810.txt new file mode 100644 index 0000000..998f652 --- /dev/null +++ b/server508/data/mapdata/unpacked/9810.txt @@ -0,0 +1,4 @@ +-752844904 +1782384595 +1054043870 +282233468 diff --git a/server508/data/mapdata/unpacked/9811.txt b/server508/data/mapdata/unpacked/9811.txt new file mode 100644 index 0000000..6d38efd --- /dev/null +++ b/server508/data/mapdata/unpacked/9811.txt @@ -0,0 +1,4 @@ +-929935426 +1005492936 +-2143736251 +386758357 diff --git a/server508/data/mapdata/unpacked/9812.txt b/server508/data/mapdata/unpacked/9812.txt new file mode 100644 index 0000000..218bfcf --- /dev/null +++ b/server508/data/mapdata/unpacked/9812.txt @@ -0,0 +1,4 @@ +50571970 +-1762921782 +-1667424270 +524742325 diff --git a/server508/data/mapdata/unpacked/9813.txt b/server508/data/mapdata/unpacked/9813.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9813.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9875.txt b/server508/data/mapdata/unpacked/9875.txt new file mode 100644 index 0000000..58eea91 --- /dev/null +++ b/server508/data/mapdata/unpacked/9875.txt @@ -0,0 +1,4 @@ +991829915 +-192761962 +1424546941 +2003334283 diff --git a/server508/data/mapdata/unpacked/9876.txt b/server508/data/mapdata/unpacked/9876.txt new file mode 100644 index 0000000..e03f695 --- /dev/null +++ b/server508/data/mapdata/unpacked/9876.txt @@ -0,0 +1,4 @@ +1133268311 +-1303891370 +1138954157 +-1069688346 diff --git a/server508/data/mapdata/unpacked/9877.txt b/server508/data/mapdata/unpacked/9877.txt new file mode 100644 index 0000000..9bb493f --- /dev/null +++ b/server508/data/mapdata/unpacked/9877.txt @@ -0,0 +1,4 @@ +727463922 +-941540275 +874446728 +-1678669133 diff --git a/server508/data/mapdata/unpacked/9879.txt b/server508/data/mapdata/unpacked/9879.txt new file mode 100644 index 0000000..bab9358 --- /dev/null +++ b/server508/data/mapdata/unpacked/9879.txt @@ -0,0 +1,4 @@ +921274725 +1426716778 +-1067082627 +-1824724 diff --git a/server508/data/mapdata/unpacked/9880.txt b/server508/data/mapdata/unpacked/9880.txt new file mode 100644 index 0000000..532e916 --- /dev/null +++ b/server508/data/mapdata/unpacked/9880.txt @@ -0,0 +1,4 @@ +38957255 +666017454 +671177307 +-803617279 diff --git a/server508/data/mapdata/unpacked/9881.txt b/server508/data/mapdata/unpacked/9881.txt new file mode 100644 index 0000000..4b9c963 --- /dev/null +++ b/server508/data/mapdata/unpacked/9881.txt @@ -0,0 +1,4 @@ +21755694 +-1408974145 +1341158791 +-1638315086 diff --git a/server508/data/mapdata/unpacked/9882.txt b/server508/data/mapdata/unpacked/9882.txt new file mode 100644 index 0000000..9b82c4e --- /dev/null +++ b/server508/data/mapdata/unpacked/9882.txt @@ -0,0 +1,4 @@ +-440130527 +495078969 +2058162871 +-510883365 diff --git a/server508/data/mapdata/unpacked/9883.txt b/server508/data/mapdata/unpacked/9883.txt new file mode 100644 index 0000000..18fc213 --- /dev/null +++ b/server508/data/mapdata/unpacked/9883.txt @@ -0,0 +1,4 @@ +472234846 +1198089044 +500187071 +239458328 diff --git a/server508/data/mapdata/unpacked/9884.txt b/server508/data/mapdata/unpacked/9884.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9884.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9885.txt b/server508/data/mapdata/unpacked/9885.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9885.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9886.txt b/server508/data/mapdata/unpacked/9886.txt new file mode 100644 index 0000000..db05b9f --- /dev/null +++ b/server508/data/mapdata/unpacked/9886.txt @@ -0,0 +1,4 @@ +1515209815 +-1457146379 +-146402808 +-1454274033 diff --git a/server508/data/mapdata/unpacked/9887.txt b/server508/data/mapdata/unpacked/9887.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9887.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9888.txt b/server508/data/mapdata/unpacked/9888.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9888.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/mapdata/unpacked/9889.txt b/server508/data/mapdata/unpacked/9889.txt new file mode 100644 index 0000000..786cea9 --- /dev/null +++ b/server508/data/mapdata/unpacked/9889.txt @@ -0,0 +1,4 @@ +0 +0 +0 +0 diff --git a/server508/data/scripts/authentication.py b/server508/data/scripts/authentication.py new file mode 100644 index 0000000..9984dd3 --- /dev/null +++ b/server508/data/scripts/authentication.py @@ -0,0 +1,31 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +# called when a player logs in +def login(player): + player.getActionSender().sendMessage("Welcome to RuneScape."); + return + +# called when a player logs out +def logout(player): + pass diff --git a/server508/data/scripts/bones.py b/server508/data/scripts/bones.py new file mode 100644 index 0000000..832394b --- /dev/null +++ b/server508/data/scripts/bones.py @@ -0,0 +1,134 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +from com.rs2hd.model import Skills +from com.rs2hd.event import Event +from com.rs2hd.model import World + +# event that runs after 2000ms then stops itself +# resets the busy flag +class BuryEvent(Event): + # start the event for the specified player and do the animation + def __init__(self, player): + Event.__init__(self, 2000) + self.player = player + player.setBusy(True) + player.animate(827) + # reset the busy flag so other actions can happen + def execute(self): + # send a message saying it is buried + self.player.getActionSender().sendMessage("You bury the bones.") + self.player.setBusy(False) + Event.stop(self) + +# makes the player bury the specified item (and get given the specified prayer +# xp) +def bury(player, id, slot, xp): + # check if the player is busy, if so do not complete the action + if player.isBusy(): + return + # if the inventory contains the bones + item = player.getInventory().getContainer().get(slot) + if item.getId() == id and item.getAmount() == 1: + # delete the bones + player.getInventory().getContainer().set(slot, None) + player.getInventory().refresh() + # give the XP + player.getSkills().addXp(Skills.PRAYER, xp) + # send a message saying it is burying + player.getActionSender().sendMessage("You start to dig a hole in the ground...") + # register the bury event + World.getInstance().registerEvent(BuryEvent(player)) + +# normal bones: +def item_select_526(player, slot): + bury(player, 526, slot, 4.5) + +# wolf bones: +def item_select_2859(player, slot): + bury(player, 2859, slot, 4.5) + +# burnt bones: +def item_select_528(player, slot): + bury(player, 528, slot, 4.5) + +# monkey bones: +def item_select_3179(player, slot): + bury(player, 3179, slot, 4.5) + +# bat bones: +def item_select_530(player, slot): + bury(player, 530, slot, 5.3) + +# big bones: +def item_select_532(player, slot): + bury(player, 532, slot, 15.0) + +# jogre bones: +def item_select_3125(player, slot): + bury(player, 3125, slot, 15.0) + +# curved bones: +def item_select_10977(player, slot): + bury(player, 10977, slot, 15.0) + +# long bones: +def item_select_10976(player, slot): + bury(player, 10976, slot, 15.0) + +# zogre bones: +def item_select_4812(player, slot): + bury(player, 4812, slot, 78.75) + +# shaikahan bones: +def item_select_3123(player, slot): + bury(player, 3123, slot, 25.0) + +# babydragon bones: +def item_select_534(player, slot): + bury(player, 534, slot, 30.0) + +# wyvern bones: +def item_select_6812(player, slot): + bury(player, 6812, slot, 50.0) + +# dragon bones: +def item_select_536(player, slot): + bury(player, 536, slot, 72.0) + +# fayrg bones: +def item_select_4830(player, slot): + bury(player, 4830, slot, 84.0) + +# raurg bones: +def item_select_4832(player, slot): + bury(player, 4832, slot, 96.0) + +# dagannoth bones: +def item_select_6729(player, slot): + bury(player, 6729, slot, 125.0) + +# ourg bones: +def item_select_4834(player, slot): + bury(player, 4834, slot, 140.0) + diff --git a/server508/data/scripts/commands_admin.py b/server508/data/scripts/commands_admin.py new file mode 100644 index 0000000..debfb83 --- /dev/null +++ b/server508/data/scripts/commands_admin.py @@ -0,0 +1,40 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +from com.rs2hd.script import ScriptManager +from com.rs2hd.model import World + +# shuts down the server gracefully +def command_shutdown(player, command): + if player.getRights() >= 2: + World.getInstance().engine().setIsRunning(False) + +# reloads the scripts +def command_reload_scripts(player, command): + if player.getRights() >= 2: + player.getActionSender().sendMessage("Reloading scripts...") + try: + ScriptManager.getInstance().reload() + player.getActionSender().sendMessage("OK.") + except: + player.getActionSender().sendMessage("FAIL!") diff --git a/server508/data/scripts/food.py b/server508/data/scripts/food.py new file mode 100644 index 0000000..68ff12d --- /dev/null +++ b/server508/data/scripts/food.py @@ -0,0 +1,130 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +from com.rs2hd.event import Event +from com.rs2hd.model import World + +# event that runs after 1500ms then stops itself +# adds hitpoints and cancels the busy flag +class EatEvent(Event): + # start the event for the specified player and heal by the specified amount + # start the standard eating animation + # sets the buys flag so other actions cannot happen + def __init__(self, player, amount): + Event.__init__(self, 1500) + self.player = player + self.amount = amount + player.setBusy(True) + player.animate(829) + # heal the player + # reset the busy flag so other actions can happen + def execute(self): + self.player.heal(self.amount) + self.player.setBusy(False) + Event.stop(self) + +# makes the player eat the specified item (and get healed by the specified +# amount) +def eat(player, id, slot, amount): + # check if the player is busy, if so do not complete the action + if player.isBusy(): + return + # if the inventory contains the food + item = player.getInventory().getContainer().get(slot) + if item.getId() == id and item.getAmount() == 1: + # delete the food + player.getInventory().getContainer().set(slot, None) + player.getInventory().refresh() + # send a message saying it is eating + player.getActionSender().sendMessage("You eat the " + item.getDefinition().getName() + ".") + # register the eating event + World.getInstance().registerEvent(EatEvent(player, amount)) + +# manta ray: +def item_select_391(player, slot): + eat(player, 391, slot, 22) + +# shark: +def item_select_385(player, slot): + eat(player, 385, slot, 20) + +# anchovies: +def item_select_319(player, slot): + eat(player, 319, slot, 1) + +# shrimp: +def item_select_315(player, slot): + eat(player, 315, slot, 3) + +# cooked chicken: +def item_select_2140(player, slot): + eat(player, 2140, slot, 3) + +# cooked meat: +def item_select_2142(player, slot): + eat(player, 2142, slot, 3) + +# bread: +def item_select_2309(player, slot): + eat(player, 2309, slot, 5) + +# herring: +def item_select_347(player, slot): + eat(player, 347, slot, 5) + +# mackerel: +def item_select_355(player, slot): + eat(player, 345, slot, 6) + +# trout: +def item_select_333(player, slot): + eat(player, 333, slot, 7) + +# salmon: +def item_select_329(player, slot): + eat(player, 329, slot, 9) + +# tuna: +def item_select_361(player, slot): + eat(player, 361, slot, 10) + +# lobster: +def item_select_379(player, slot): + eat(player, 379, slot, 12) + +# bass: +def item_select_365(player, slot): + eat(player, 365, slot, 12) + +# swordfish: +def item_select_373(player, slot): + eat(player, 373, slot, 14) + +# monkfish: +def item_select_7946(player, slot): + eat(player, 7946, slot, 16) + +# sea turtle: +def item_select_397(player, slot): + eat(player, 397, slot, 21) + diff --git a/server508/data/scripts/global.py b/server508/data/scripts/global.py new file mode 100644 index 0000000..eba02a7 --- /dev/null +++ b/server508/data/scripts/global.py @@ -0,0 +1,30 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +# called when the server is started +def startup(server): + pass + +# called when the server is shutdown (gracefully) +def shutdown(server): + pass diff --git a/server508/data/scripts/potions.py b/server508/data/scripts/potions.py new file mode 100644 index 0000000..89d6a41 --- /dev/null +++ b/server508/data/scripts/potions.py @@ -0,0 +1,22 @@ +# Copyright (c) 2009 Graham Edgecombe +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/server508/libs/cachedir/cachedir/packages/alt-rt.pkc b/server508/libs/cachedir/cachedir/packages/alt-rt.pkc new file mode 100644 index 0000000..f408752 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/alt-rt.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/charsets.pkc b/server508/libs/cachedir/cachedir/packages/charsets.pkc new file mode 100644 index 0000000..e5ebd81 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/charsets.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/deploy.pkc b/server508/libs/cachedir/cachedir/packages/deploy.pkc new file mode 100644 index 0000000..4458c04 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/deploy.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/dnsns.pkc b/server508/libs/cachedir/cachedir/packages/dnsns.pkc new file mode 100644 index 0000000..06b480f Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/dnsns.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/idea_rt.pkc b/server508/libs/cachedir/cachedir/packages/idea_rt.pkc new file mode 100644 index 0000000..c4afccf Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/idea_rt.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/javaws.pkc b/server508/libs/cachedir/cachedir/packages/javaws.pkc new file mode 100644 index 0000000..7a46218 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/javaws.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/jce.pkc b/server508/libs/cachedir/cachedir/packages/jce.pkc new file mode 100644 index 0000000..24e3815 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/jce.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/jsse.pkc b/server508/libs/cachedir/cachedir/packages/jsse.pkc new file mode 100644 index 0000000..18fa4ff Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/jsse.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/jython.pkc b/server508/libs/cachedir/cachedir/packages/jython.pkc new file mode 100644 index 0000000..9581bdf Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/jython.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/localedata.pkc b/server508/libs/cachedir/cachedir/packages/localedata.pkc new file mode 100644 index 0000000..8e76b6d Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/localedata.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/log4j-1.2.15.pkc b/server508/libs/cachedir/cachedir/packages/log4j-1.2.15.pkc new file mode 100644 index 0000000..3ebe35d Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/log4j-1.2.15.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/management-agent.pkc b/server508/libs/cachedir/cachedir/packages/management-agent.pkc new file mode 100644 index 0000000..8cd9a4b Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/management-agent.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/mina-core-1.1.7.pkc b/server508/libs/cachedir/cachedir/packages/mina-core-1.1.7.pkc new file mode 100644 index 0000000..3900dea Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/mina-core-1.1.7.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/packages.idx b/server508/libs/cachedir/cachedir/packages/packages.idx new file mode 100644 index 0000000..d31d235 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/packages.idx differ diff --git a/server508/libs/cachedir/cachedir/packages/plugin.pkc b/server508/libs/cachedir/cachedir/packages/plugin.pkc new file mode 100644 index 0000000..dabac2a Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/plugin.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/resources.pkc b/server508/libs/cachedir/cachedir/packages/resources.pkc new file mode 100644 index 0000000..e6842ff Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/resources.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/rt.pkc b/server508/libs/cachedir/cachedir/packages/rt.pkc new file mode 100644 index 0000000..248de80 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/rt.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/slf4j-api-1.5.3.pkc b/server508/libs/cachedir/cachedir/packages/slf4j-api-1.5.3.pkc new file mode 100644 index 0000000..9ec43c6 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/slf4j-api-1.5.3.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/slf4j-log4j12-1.5.3.pkc b/server508/libs/cachedir/cachedir/packages/slf4j-log4j12-1.5.3.pkc new file mode 100644 index 0000000..c2839f4 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/slf4j-log4j12-1.5.3.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/sunjce_provider.pkc b/server508/libs/cachedir/cachedir/packages/sunjce_provider.pkc new file mode 100644 index 0000000..4430b51 Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/sunjce_provider.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/sunpkcs11.pkc b/server508/libs/cachedir/cachedir/packages/sunpkcs11.pkc new file mode 100644 index 0000000..fc39deb Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/sunpkcs11.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/xpp3-1.1.4c.pkc b/server508/libs/cachedir/cachedir/packages/xpp3-1.1.4c.pkc new file mode 100644 index 0000000..925c10b Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/xpp3-1.1.4c.pkc differ diff --git a/server508/libs/cachedir/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc b/server508/libs/cachedir/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc new file mode 100644 index 0000000..6ddd96b Binary files /dev/null and b/server508/libs/cachedir/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc differ diff --git a/server508/libs/cachedir/packages/charsets$1.pkc b/server508/libs/cachedir/packages/charsets$1.pkc new file mode 100644 index 0000000..577437f Binary files /dev/null and b/server508/libs/cachedir/packages/charsets$1.pkc differ diff --git a/server508/libs/cachedir/packages/charsets.pkc b/server508/libs/cachedir/packages/charsets.pkc new file mode 100644 index 0000000..6e680f1 Binary files /dev/null and b/server508/libs/cachedir/packages/charsets.pkc differ diff --git a/server508/libs/cachedir/packages/dnsns$1.pkc b/server508/libs/cachedir/packages/dnsns$1.pkc new file mode 100644 index 0000000..ed4dae6 Binary files /dev/null and b/server508/libs/cachedir/packages/dnsns$1.pkc differ diff --git a/server508/libs/cachedir/packages/dnsns.pkc b/server508/libs/cachedir/packages/dnsns.pkc new file mode 100644 index 0000000..3e9c883 Binary files /dev/null and b/server508/libs/cachedir/packages/dnsns.pkc differ diff --git a/server508/libs/cachedir/packages/jce$1.pkc b/server508/libs/cachedir/packages/jce$1.pkc new file mode 100644 index 0000000..2de9ea5 Binary files /dev/null and b/server508/libs/cachedir/packages/jce$1.pkc differ diff --git a/server508/libs/cachedir/packages/jce.pkc b/server508/libs/cachedir/packages/jce.pkc new file mode 100644 index 0000000..e4523b7 Binary files /dev/null and b/server508/libs/cachedir/packages/jce.pkc differ diff --git a/server508/libs/cachedir/packages/jsse$1.pkc b/server508/libs/cachedir/packages/jsse$1.pkc new file mode 100644 index 0000000..2d8308f Binary files /dev/null and b/server508/libs/cachedir/packages/jsse$1.pkc differ diff --git a/server508/libs/cachedir/packages/jsse.pkc b/server508/libs/cachedir/packages/jsse.pkc new file mode 100644 index 0000000..e05694d Binary files /dev/null and b/server508/libs/cachedir/packages/jsse.pkc differ diff --git a/server508/libs/cachedir/packages/jython.pkc b/server508/libs/cachedir/packages/jython.pkc new file mode 100644 index 0000000..f658fb5 Binary files /dev/null and b/server508/libs/cachedir/packages/jython.pkc differ diff --git a/server508/libs/cachedir/packages/localedata$1.pkc b/server508/libs/cachedir/packages/localedata$1.pkc new file mode 100644 index 0000000..856dfba Binary files /dev/null and b/server508/libs/cachedir/packages/localedata$1.pkc differ diff --git a/server508/libs/cachedir/packages/localedata.pkc b/server508/libs/cachedir/packages/localedata.pkc new file mode 100644 index 0000000..83b1b1a Binary files /dev/null and b/server508/libs/cachedir/packages/localedata.pkc differ diff --git a/server508/libs/cachedir/packages/log4j-1.2.15.pkc b/server508/libs/cachedir/packages/log4j-1.2.15.pkc new file mode 100644 index 0000000..11e8200 Binary files /dev/null and b/server508/libs/cachedir/packages/log4j-1.2.15.pkc differ diff --git a/server508/libs/cachedir/packages/mina-core-1.1.7.pkc b/server508/libs/cachedir/packages/mina-core-1.1.7.pkc new file mode 100644 index 0000000..ecfcf54 Binary files /dev/null and b/server508/libs/cachedir/packages/mina-core-1.1.7.pkc differ diff --git a/server508/libs/cachedir/packages/packages.idx b/server508/libs/cachedir/packages/packages.idx new file mode 100644 index 0000000..e91d69a Binary files /dev/null and b/server508/libs/cachedir/packages/packages.idx differ diff --git a/server508/libs/cachedir/packages/resources$1.pkc b/server508/libs/cachedir/packages/resources$1.pkc new file mode 100644 index 0000000..6c45b12 Binary files /dev/null and b/server508/libs/cachedir/packages/resources$1.pkc differ diff --git a/server508/libs/cachedir/packages/resources.pkc b/server508/libs/cachedir/packages/resources.pkc new file mode 100644 index 0000000..747e696 Binary files /dev/null and b/server508/libs/cachedir/packages/resources.pkc differ diff --git a/server508/libs/cachedir/packages/rt$1.pkc b/server508/libs/cachedir/packages/rt$1.pkc new file mode 100644 index 0000000..1aecbce Binary files /dev/null and b/server508/libs/cachedir/packages/rt$1.pkc differ diff --git a/server508/libs/cachedir/packages/rt.pkc b/server508/libs/cachedir/packages/rt.pkc new file mode 100644 index 0000000..0801684 Binary files /dev/null and b/server508/libs/cachedir/packages/rt.pkc differ diff --git a/server508/libs/cachedir/packages/slf4j-api-1.5.3.pkc b/server508/libs/cachedir/packages/slf4j-api-1.5.3.pkc new file mode 100644 index 0000000..a61f216 Binary files /dev/null and b/server508/libs/cachedir/packages/slf4j-api-1.5.3.pkc differ diff --git a/server508/libs/cachedir/packages/slf4j-log4j12-1.5.3.pkc b/server508/libs/cachedir/packages/slf4j-log4j12-1.5.3.pkc new file mode 100644 index 0000000..c02b51a Binary files /dev/null and b/server508/libs/cachedir/packages/slf4j-log4j12-1.5.3.pkc differ diff --git a/server508/libs/cachedir/packages/sunjce_provider$1.pkc b/server508/libs/cachedir/packages/sunjce_provider$1.pkc new file mode 100644 index 0000000..77abb3d Binary files /dev/null and b/server508/libs/cachedir/packages/sunjce_provider$1.pkc differ diff --git a/server508/libs/cachedir/packages/sunjce_provider.pkc b/server508/libs/cachedir/packages/sunjce_provider.pkc new file mode 100644 index 0000000..c7ca6db Binary files /dev/null and b/server508/libs/cachedir/packages/sunjce_provider.pkc differ diff --git a/server508/libs/cachedir/packages/sunpkcs11$1.pkc b/server508/libs/cachedir/packages/sunpkcs11$1.pkc new file mode 100644 index 0000000..79cdf25 Binary files /dev/null and b/server508/libs/cachedir/packages/sunpkcs11$1.pkc differ diff --git a/server508/libs/cachedir/packages/sunpkcs11.pkc b/server508/libs/cachedir/packages/sunpkcs11.pkc new file mode 100644 index 0000000..1467ea9 Binary files /dev/null and b/server508/libs/cachedir/packages/sunpkcs11.pkc differ diff --git a/server508/libs/cachedir/packages/xpp3-1.1.4c.pkc b/server508/libs/cachedir/packages/xpp3-1.1.4c.pkc new file mode 100644 index 0000000..263f710 Binary files /dev/null and b/server508/libs/cachedir/packages/xpp3-1.1.4c.pkc differ diff --git a/server508/libs/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc b/server508/libs/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc new file mode 100644 index 0000000..1597be9 Binary files /dev/null and b/server508/libs/cachedir/packages/xstream-1.3.1-20081003.103259-2.pkc differ diff --git a/server508/libs/jython.jar b/server508/libs/jython.jar new file mode 100644 index 0000000..0495576 Binary files /dev/null and b/server508/libs/jython.jar differ diff --git a/server508/libs/log4j-1.2.15.jar b/server508/libs/log4j-1.2.15.jar new file mode 100644 index 0000000..c930a6a Binary files /dev/null and b/server508/libs/log4j-1.2.15.jar differ diff --git a/server508/libs/mina-core-1.1.7.jar b/server508/libs/mina-core-1.1.7.jar new file mode 100644 index 0000000..a5fc451 Binary files /dev/null and b/server508/libs/mina-core-1.1.7.jar differ diff --git a/server508/libs/slf4j-api-1.5.3.jar b/server508/libs/slf4j-api-1.5.3.jar new file mode 100644 index 0000000..01b3e7c Binary files /dev/null and b/server508/libs/slf4j-api-1.5.3.jar differ diff --git a/server508/libs/slf4j-log4j12-1.5.3.jar b/server508/libs/slf4j-log4j12-1.5.3.jar new file mode 100644 index 0000000..2346110 Binary files /dev/null and b/server508/libs/slf4j-log4j12-1.5.3.jar differ diff --git a/server508/libs/xpp3-1.1.4c.jar b/server508/libs/xpp3-1.1.4c.jar new file mode 100644 index 0000000..451ac82 Binary files /dev/null and b/server508/libs/xpp3-1.1.4c.jar differ diff --git a/server508/libs/xstream-1.3.1-20081003.103259-2.jar b/server508/libs/xstream-1.3.1-20081003.103259-2.jar new file mode 100644 index 0000000..6e36093 Binary files /dev/null and b/server508/libs/xstream-1.3.1-20081003.103259-2.jar differ diff --git a/server508/lists/coordinates.txt b/server508/lists/coordinates.txt new file mode 100644 index 0000000..da06998 --- /dev/null +++ b/server508/lists/coordinates.txt @@ -0,0 +1,701 @@ +POH AREA: 1884 5106 +TUTORIAL PLACE UNDER LUMMY:::2522 5000 + + + +1886 5472 - barbian assult room 1 +2592 5260 - barbian assult waiting room +2871 5318 - Godwars (height = 2) +3082 4229 - Safety First dungeon - Starting Point +3160 4246 - Safety First dungeon - 1st Floor +3140 4230 - Safety First dungeon - 2nd Floor +3171 4271 - Safety First dungeon - 3rd Floor +3231 5091 - Duel Arena tournament +1759 4958 - Varrock museum (downstairs) +1675 5599 - Fist of guthix (main room) +3242 3572 - Fist of guthix (entrance) +3273 3686 - Clan Wars (PORTAL ROOM) +3299 3722 - Clan Wars (SOUTH PORTAL) +3295 3776 - Clan Wars (CENTER) +3289 3829 - Clan Wars (NORTH PORTAL) +3179 3685 - BH OUTSIDE +3129 3713 - BH INSIDE +3222 3217 - Lumbridge +3211 3424 - VARROCK +2966 3379 - FALADOR +2758 3479 - CAMALOT +2659 3661 - RELLEKKA +2661 3310 - ARDOUGNE +3161 3486 - GE +2868 3546 - Warriors guild +3184 9832 - under varrock bank +3236 9767 - varrock sewers +3096 9880 - under edgeville +3104 9576 - under wizards tower +3080 9664 - draynor sewers +3208 9616 - under lumbridge +3224 9800 - under varrock blue moon pub +3240 9776 - black arms gang hideout +2008 4762 - Mime Random +2764 9103 - Ape atol - dungeon (one for monkey madness) +2207 5346 - pikkuspix house downstair (summoning one) +3482 4838 - water altar +2400 4844 - nature altar +2846 4836 - air altar +2269 4840 - chaos altar +2522 4842 - body altar +2784 4843 - mind altar +2466 4833 - law altar +2587 4836 - fire altar +2142 4836 - cosmic altar +2657 4830 - earth altar +2213 3794 - Lunar Boat +2110 3915 - Lunar Isle +2329 10353 - Lunar Mine +2509 3845 - Miscellania +2509 10245 - underground place on miscellania +2619 10265 - other side of underground +2405 3782 - Jastizo +2310 3782 - Netiznot +2931 4711 - Watchtower tele 3rd floor +2728 3349 - Legends Guild +3061 4984 - Rogues Den +2912 5474 - Squire Garden minigame +3363 3300 - Magic Arena (north of duel arena) +3047 9756 - Mining Guild +1694 5464 - Runecrafting Guild +2841 3538 - Warriors Guild +3483 9510 - Kalphite Queen Entrance +3508 9493 - Kalphite Queen zone +2520 5000 - under lumbridge +2328 5736 - quarantend lumby +3168 4940 - quarantend lumby mine +3193 9832 - under varrock bank +3232 9856 - varrock sewers +3096 9880 - under edgeville +3104 9576 - under wizards tower +3085 9672 - draynor sewers +3208 9616 - under lumbridge +3232 9801 - under varrock blue moon pub +3240 9770 - black arms gang hideout +1676 5599 - fist of guthix first part +1860 5245 - first floor +2040 5232 - second floor +2128 5288 - third floor +2304 5200 - fourth floor +3040 9776 - under fally mine +3105 9755 - under draynor manor +3075 9770 - under draynor manor - vampire bit +3008 9544 - cave with blurite +2480 5175 - tzhaar +2936 3144 - karamja +2649 9393 - Rantz cave +2619 9767 - gobllin cave south-east fishing guild - (missing mapdata =10391) +2716 9888 - Elemental workshop +2719 3780 - Hunting area north-east Rellekka +2716 3902 - Hunting area north-east Rellekka Upsteps (height = 1) +2773 10162 - Tunnel Before Keldagrim (start of Giant dwaft) +2795 3720 - Snowy area Thro a door in the tunnel before keldagrim +2838 10124 - Start of The big dwaft Quest +2827 10216 - Keldagrim +1940 4958 - Blast furnace + +3363 3275 - Duel Arena + + +2867 9955 - Ice Queen Lair +3429 3538 - Slayer Tower +2710 9466 - Brimhaven Dungeon +2856 3812 - Ice Path +2480 3437 - Gnome Agility Training +3281 2765 - Pyramid Plunder room +3345 3251 - Duel Arena +2717 9808 - King Black Dragon Cave +3044 4973 - Rouges Den +2979 3611 - Green Dragons +Big water fall ::tele 2534,3511 +Very back of wild ::tele 3100,3957 +Varrock east bank ::tele 3250,3423 +ganeration.no-ip.org +Varrock ::tele 3210,3424 +Falador ::tele 2964,3378 +Lumbridge ::tele 3222,3218 +Camelot ::tele 2757,3477 +East Ardougne ::tele 2662,3305 +West Ardougne ::tele 2529,3307 +King Lathas Training Grounds ::tele 2516,3369 +Tree Gnome Stronghold ::tele 2461,3443 +Al Kharid ::tele 3293,3174 +Shantays Pass ::tele 3304,3116 +Kalphite Lair ::tele 3226,3107 +Pyramid ::tele 3233,2902 +Pollnivneach ::tele 3359,2910 +Menaphos/Sophanem ::tele 3274,2784 +Yanille ::tele 2606,3093 +Gul'Tanoth ::tele 2516,3044 +Tutorial Island ::tele 3094,3107 +Barbarian Village ::tele 3082,3420 +Entrana ::tele 2834,3335 +Heroes Guild ::tele 2902,3510 +Rangers Guild ::tele 2658,3439 +Coal Trucks ::tele 2582,3481 +Goblin Village ::tele 2956,3506 +Druids Circle ::tele 2926,3482 +Burthorpe ::tele 2926,3559 +White wolf mountain ::tele 2848,3498 +Catherby ::tele 2813,3447 +Seers village ::tele 2708,3492 +Fishing guild ::tele 2603,3414 +Barbarian Agility Course ::tele 2541,3546 +Prifddinas ::tele 2242,3278 +Elf camp (Tirannwn) ::tele 2197,3252 +Isafdar (Tirannwn) ::tele 2241,3238 +Duel arena ::tele 3360,3213 +Desert mining camp ::tele 3286,3023 +Bedabin camp ::tele 3171,3026 +Bandit camp ::tele 3176,2987 +Sophanem ::tele 3305,2755 +Ruins of Uzer ::tele 3490,3090 +Mort'ton ::tele 3489,3288 +Canifis ::tele 3506,3496 +Port Phasmatys ::tele 3687,3502 +Fenkenstrain's castle ::tele 3550,3548 +Dig site ::tele 3354,3402 +Exam centre ::tele 3354,3344 +Edgeville ::tele 3093,3493 +Crafting guild ::tele 2933,3285 +Port Sarim ::tele 3023,3208 +Rimmington ::tele 2957,3214 +Draynor village ::tele 3093,3244 +Fight arena ::tele 2585,3150 +Tree gnome village ::tele 2525,3167 +Port Khazard ::tele 2665,3161 +Monastery ::tele 3051,3490 +Karamja ::tele 2948,3147 +Crandor ::tele 2851,3238 +King Black Dragon Lair ::tele 2717,9816 +KQ Lair ::tele 3487,9493 +Underground pass level 2 ::tele 2337,9798 +Weird water place ::tele 2676,3008 +Members Karajama ::tele 2815,3182 +Grave island ::tele 3504,3575 +HAM camp ::tele 3165,9629 +Pyramid under Sophanem ::tele 3277,9171 +Juna the snake ::tele 3251,9517 +Smoky tunnels/dark room (This place needs more tests) 3206,9379 +Underground pass level 1 ::tele 2495,9715 +Mage Arena ::tele 3107,3937 +Ape Atoll ::tele 2755,2784 +Jungle demon area bottom level ::tele 2714,9183 +Jungle demon area top level (use Burst of Strength) ::tele 2703,9178 +Wilderness Agility Course ::tele 3003,3934 +Keldagram ::tele 2937,9999 +Agility arena on Karamja ::tele 2761,9557 +Metal dragon dungeon (back) ::tele 2713,9459 +Metal dragon dungeon (front) ::tele 2713,9564 +Inside the desert treasure pyramid ::tele 3233,9315 +Tree gnome hanger ::tele 2390,9886 +Fishing platform ::tele 2782,3273 +Boat crash island place ::tele 2795,3321 +Legends quest jungle dungeon ::tele 2772,9341 +TzHaar ::tele 2480,5175 +Essence mine ::tele 2911,4832 +Morings end part 1 mine ::tele 2044,4649 +Dwarf cut scene meeting area ::tele 2035,4529 +New KBD lair ::tele 2273,4695 +Elven forest cut scene area ::tele 2309,4597 +Gold mine rock ::tele 2358,4959 +White knight tasks area ::tele 2443,4956 +Rouge maze (Press Burst of Strength) ::tele 3050,5071 +The shadow guys dungeon ::tele 2738,5081 +Barrows top ::tele 3564,3288 +Barrows tunnel ::tele 3568,9695 +Barrows chest ::tele 3551,9694 +CW bank= 2441,3090 +CW center= 2400,3103 +Blue dragons= 2910,9801 +Black demons= 2860 9775 +Hell Hounds= 2867,9844 +Black dragons= 2829,9826 +Chaos rune crafting alter ::tele 2269,4843 +Legends dungeon prt2 ::tele 2375,4705 +Mage arena dungeon ::tele 2519,4719 +Evil Bobs island "scaperune" ::tele 2525,4776 +Distant kingdom (alive) 2576,4655 +Distant kingdom (dead) 2803,4723 +Forester random event ::tele 2602,4775 +Alt area ::tele 2527,4547 +Fremmy maze ::tele 2652,9999 +Death rune altar ::tele 2207,4836 +Cosmic alter ::tele 2162,4833 +Middle of under ground pass ::tele 2168 4726 +Quiz random event ::tele 1952,4768 +Trawler boat ::tele 2013,4820 +Sunk trawler mini game boat ::tele 1951,4825 +Trawler boat empty of water ::tele 1886,4830 +Mime stage ::tele 2008,4762 +"Draynor" ::tele 2130,4913 +Game room ::tele 2196,4961 +Mind alter ::tele 2796,4818 +Air Alter ::tele 2845,4832 +Water Alter ::tele 2713,4836 +Earth Alter ::tele 2660,4839 +Fire Alter ::tele 2584,4836 +Body Alter ::tele 2527,4833 +Law Alter ::tele 2464,4834 +Nature Alter ::tele 2398,4841 +Gas hole ::tele 2464,4782 +Edge of maze ::tele 2885,4550 +Center of maze ::tele 2912,4576 +Falador mine ::tele 3038,9800 +::tele 3157 4822 = drill deamon camp + +::tele 2477 4768 = frog cave + +::tele 2596 4780 = freaky forester + +::tele 2095 4428 = prison pete + +::tele 1952 4764 = quiz show + +::tele 2338 4747 = Lost and found + +::tele 1960 4824 = Twarler Mini-Game + +::tele 2015 4826 = twarler mini-game inside + +::tele 1971 5001 = WIERD CHRUCH! NOT ON RUNESCAPE! + +::tele 1928 5002 = Grave digger + +::tele 2584 4838 = fire alter + +::tele 2966 9633 = somekind of rat-hole never seen this + +::tele 2929 9649 = dragon slayer mace + +::tele 2907 9705 = quest place (dont remember (or newer seen) what quest) + +::tele 2981 9914 = recipes goblin cook place + +::tele 2916 9912 = heroes guild cave + +::tele 2932 9848 = chaos druids + +::tele 2898 9766 = baby bluedragons + +::tele 3048 9582 = ice-warriors & giants + +::tele 2977 9515 = recipes crabs + +::tele 2973 9505 = recipe water "mini-quest" + +::tele 2783 9574 = agility arena + +::tele 2835 9562 = karamja lessers + +::tele 1891 4947 = quest place (dont remember (or newer seen) what quest) + +::tele 2007 4431 = x-mas workshop event wooot! + +::tele 2400 4850 = nature altar! + +::tele 3421 9622 = quest place (dont remember (or newer seen) what quest) + +::tele 1865 5330 = recipe the lum kitchen when started recipe near the secret sky must check if it is possible to see in rs. + +::tele 1860 5345 = same as above but no barrier & no chairs expet one why? + +::tele 2393 4713 = i don't know prob: quest place (dont remember (or newer seen) what quest) + +::tele 2385 4685 = have a relation to the place above what is that? + +::tele 2525 4776 = evil bob's island + +::tele 2633 4700 = quest place (dont remember (or newer seen) what quest) + +::tele 2650 4565 = monkey sadness fight the jungle demon? + +::tele 2650 4508 = monkey sadness the gnome glider puzzle! + +::tele 3300 9825 = A Soul's Bane quest + +::tele 3345 9715 = mage training arena (telegrab) ftw + +::tele 3350 9680 = mage training arena (telegrab) ftw another one + +::tele 3345 9712 = mage training arena (telegrab) ftw another one NOTE: if you see the same arenas try changin height level! + +::tele 2152 5095 = Secret island + +::tele 2721 4828 = water alter + +::tele 2784 4840 = mind alter + +::tele 2842 4835 = air alter + +::tele 2898 4819 = rune essent mining + +::tele 3029 4834 = abyss + +::tele 2528 4833 = wierd alter + +::tele 2471 4838 = law alter + +::tele 1823 4835 = two ships + +::tele 3105 3930 = mage arena + +::tele 1894 5333 = secret sky + +::tele 1865 5341 = recipie for desaster feast + +::tele 3424 9891 = under passage way to canfis + +::tele 3681 9889 = ecto plasm floor + +::tele 2470 9899 = under gnomes grand tree + +::tele 2319 9804 = i'bans trap drop + +::tele 2856 3809 = slippery ice path + +::tele 3551 9693 = barrows chest + +::tele 3177 9753 = under draynore mannor + +::tele 3040 9741 = faladore mining guild + +::tele 3079 9505 = toturial mining + +::tele 3110 9512 = toturial combat train + +::tele 3232 2896 = top of piramid for desert tresure + +::tele 3291 2764 = desert city + +::tele 3298 9179 = under desert city + +::tele 2861 3165 = volcano + +::tele 2863 9570 = under volcano + +::tele 2835 3268 = candor + +::tele 2766 3277 = fishing docks + +::tele 2446 10147 = daganoth cave ( go to "::tele 2446 9999" then keep walking the right direction then ul get there ) + +::tele 2438 5172 = volcano lava + +::tele 2395 5154 = fight pits + +::tele 3234 9896 = wierd place + +::tele 3132 9909 = under edgevill + +::tele 3233 9313 = under piramid at acent alter + +::tele 3363 9639 = mage train up ( shapes ) + +::tele 3363 9637 = mage train up ( bones ) + +::tele 3365 9637 = mage train up ( alching ) + +::tele 3363 2984 = a desert city + +::tele 2396 5093 = fight caves + +::tele 3559 9895 = football traning corse + +::tele 3541 9891 = jumping corse + +::tele 3528 9871 = zip line + +::tele 3539 9872 = jumping steps + +::tele 3555 9947 = cave + +::tele 2972 9507 = Under water + +::tele 2545 4715 = mage arena room + +::tele 2505 4707 = mage arena statues + +::tele 3551 9712 = barrows coffins + +::tele 2716 9816 = black king dragon + +::tele 3487 9493 = kaphite queen place + +::tele 2744 3444 = camalot flax + +::tele 2273 4695 = king black drags + +::tele 2516 4646 = daganoth quest place mother + +::tele 2121 4918 = Draynor private from map + +::tele 2142 4834 = cosmic alter + +::tele 2134 4717 = slave cages ( look up to see them,,cannot be walked on ) + +::tele 2091 3210 = wierd grass land?? + + +/*Guilds*/ +rangeguild = 2657 3439 +rangingguild = 2657 3439 + +fishguild = 2611 3393 +fishingguild = 2611 3393 + +mineguild = 3016 3339 +miningguild = 3016 3339 + +craftguild = 2933 3289 +craftingguild = 2933 3289 + +heroguild = 2902 3510 +herosguild = 2902 3510 +heroesguild = 2902 3510 + +/*End Guilds*/ + +crystalchest = 2914 3450 + +/*Altars*/ +deathaltar = 2207 4836 +cosmicaltar = 2162 4833 +chaosaltar = 2269 4843 +mindaltar = 2796 4818 +airaltar = 2845 4832 +wateraltar = 2713 4836 +earthaltar = 2660 4839 +firealtar = 2584 4836 +bodyaltar = 2527 4833 +lawaltar = 2464 4834 +naturealtar = 2398 4841 + +/*End Altars*/ + +falador = 2965 3380 +goblinvillage = 2956 3506 +druidscircle = 2926 3482 +burthrope = 2926 3561 + +whitewolf = 2848 3498 +catherby = 2815 3447 +camelotcastle = 2758 3495 +seersvillage = 2708 3492 + + +barbagil = 2541 3546 +grandtree1 = 2480 3488 +grandtree2 = 2466 3490 +treegnome = 2441 3429 +westardy = 2535 3305 +eastardy = 2659 3308 +prifddinas = 2242 3278 +elfcamp = 2197 3252 +isafdar = 2241 3238 +duelarena = 3360 3213 +alkharid = 3288 3189 +desertmine = 3286 3023 +bedabincamp = 3171 3026 +banditcamp = 3176 2987 +pollnivneach = 3365 2970 +pyramid = 3233 2901 +sophanem = 3305 2755 +uzer = 3490 3090 +mortton = 3489 3288 +canifis = 3506 3496 +phasmatys = 3687 3502 +fenkencastle = 3550 3548 +digsite = 3354 3402 +examcentre = 3354 3344 +varrock = 3214 3424 +barbvillage = 3081 3424 +edgeville = 3093 3493 + +sarim = 3023 3208 +rimmington = 2957 3214 +draynor = 3093 3244 +lumbridge = 3223 3218 +fightarena = 2585 3150 +gnomevillage1 = 2521 3177 +gnomevillage2 = 2525 3167 +khazard = 2665 3161 +yanille = 2569 3098 +monestary = 3051 3490 +karamja = 2814 3182 +crandor = 2851 3238 +tutisland = 3123 3100 +tzhaar = 2480 5175 +mineess = 2911 4832 +bobsiland = 2526 4777 + +membersdungeon = 2884 9798 +dramentree = 2861 9736 +karamjadungeon = 2843 9636 +steeldragons = 2719 9433 +bluedragons = 2591 9439 +theogre = 2584 9737 +shadowwarrior = 2705 9758 +subwhitewolf = 2822 9882 +gloryfountain = 2918 9895 +spampdungeon = 3168 9572 +barrowscenter = 3551 9693 +canifis = 3477 9845 +werewolfagil = 3549 9865 +eledungeon = 2715 9889 +blurite = 3007 9550 +miniagil = 2759 9557 +runerocks = 3061 3886 +kalphites = 3485 9509 +smokedungeon = 3207 9377 +pyramid4 = 3233 9313 +crashisland = 2893 2724 +apeatoll = 2801 2704 +marimpray = 2807 9201 +marimcreate = 2764 9164 +apeatolldungeon = 2805 9142 +kharazi = 2822 2911 +jungledemon = 2657 4568 +hangar = 2584 4516 +gnomedungeon = 2596 4435 +purplecrystal = 2792 4427 +submage = 2538 4717 +godpray = 2507 4718 +lighttower = 2519 4642 +bigdwarfs = 2776 10162 +bigdwarfs2 = 2838 10126 +bigdwarfs3 = 2923 10191 +waterfall = 2534 3511 +endwild = 3100 3957 +eastbank = 3250 3423 +varrock = 3210 3424 +falador2 = 2964 3378 +lumbridge = 3222 3218 +camelot = 2757 3477 +eardy2 = 2662 3305 +wardy2 = 2529 3307 +lathas = 2516 3369 +gnomestrong = 2461 3443 +kharid = 3293 3174 +shantay = 3304 3116 +kalphlair = 3226 3107 +pyramid2 = 3233 2902 +pollnivneach = 3359 2910 +menaphos = 3274 2784 +yanille = 2606 3093 +gultanoth = 2516 3044 +tutisland2 = 3094 3107 +barbarins = 3082 3420 +entrana = 2834 3335 + +coaltrucks = 2582 3481 +gvillage = 2956 3506 +stonehenge2 = 2926 3482 +burth = 2926 3559 +wwolf = 2848 3498 +catherb = 2813 3447 +seers = 2708 3492 +barbyagil = 2541 3546 +prifdinas = 2242 3278 +elfcamp2 = 2197 3252 +isafdar2 = 2241 3238 +darena = 3360 3213 +dminecamp = 3286 3023 +bedcamp = 3171 3026 +bandcamp = 3176 2987 +soph = 3305 2755 +uzerruins = 3490 3090 +morton = 3489 3288 +canif = 3506 3496 +portp = 3687 3502 +fenken = 3550 3548 +dsite = 3354 3402 +ecentre = 3354 3344 +edgeville = 3093 3493 + +psarim = 3023 3208 +rimm = 2957 3214 +farena = 2585 3150 +tgvill = 2525 3167 +pkhazard = 2665 3161 +monkies = 3051 3490 +karamj = 2948 3147 +crandor2 = 2851 3238 +thekbd = 2717 9816 +thebigkq = 3487 9493 +thepass2 = 2337 9798 +wiredwater = 2676 3008 +karamja4memb = 2815 3182 +meetjuna = 3251 9517 +darkroom = 3206 9379 +thepass1 = 2495 9715 +magicarena = 3107 3937 +aatoll = 2755 2784 +jungledemonb = 2714 9183 +jungledemont = 2703 9178 +wagility = 3003 3934 +keldagrim = 2937 9999 +karamjaagil = 2761 9557 +metaldragback = 2713 9459 +metaldragfront = 2713 9564 +desertpyramid = 3233 9315 +thehangar = 2390 9886 +fishplatform = 2782 3273 +boatcrash = 2795 3321 +legendsjungle = 2772 9341 +tzhaar2 = 2480 5175 +mineess2 = 2911 4832 +morningsend = 2044 4649 +dwarfs = 2035 4529 +kbdlair = 2273 4695 +elvenforest = 2309 4597 +goldmine = 2358 4959 +initiate = 2443 4956 +shadowguys = 2738 5081 +barrowstop = 3564 3288 +barrowstunnel = 3568 9695 +barrowschest = 3551 9694 +cwbank = 2441 3090 +castlewars = 2400 3103 +bluedrags = 2910 9801 +blackdemons = 2860 9775 +hellhounds = 2867 9844 +blackdrags = 2829 9826 + +legends2 = 2377 4705 +magearena = 2519 4719 +scaperune = 2525 4776 +forester = 2602 4775 +theisland = 2527 4547 +fremmymaze = 2652 9999 + +quizgame = 1952 4768 +trawler = 2013 4820 +sunktrawler = 1951 4825 +emptytrawler = 1886 4830 +mimestage = 2008 4762 +draynor = 2130 4913 +gameroom = 2196 4961 +gashole = 2464 4782 +shilo = 2827 2995 +karamja1 = 2973 2890 +karamja2 = 2973 2910 +greater = 3288 3886 +wildpalace = 3288 3886 +slayertower = 3428 3535 +misc = 2512 3860 +shilo = 2852 2955 + +party = 2739 3472 +rellaka = 2659 3661 +trollheim = 2910 3612 +tears of guthix = 3257 9517 + +Pest Control Game: X 2667 Y 2594 +Pest Control Bank: X 2658 Y 2649 \ No newline at end of file diff --git a/server508/lists/interfaces.txt b/server508/lists/interfaces.txt new file mode 100644 index 0000000..09122cf --- /dev/null +++ b/server508/lists/interfaces.txt @@ -0,0 +1,744 @@ +----------Interfaces---------- +1 - A sack of some sort in the lower right hand corner +2 - Some sort of mysterious man question? +3 - a jug in the lower right hand corner with question marks coming out of it +4 - Tears of guthix...tears collected, time left, etc. +5 - Brimhaven agility course. Whether next ticket stand is active or not +6 - Brimhaven agility ticket exchange. +7 - Black screen with a single line of text +8 - Dragontooth Island map. (dunno wtf its used for?) +9 - RuneDraw game screen +10 - Windspeed gauge +11 - Deposit box +12 - Bank +13 - Enter bank pin +14 - Bank pin settings +15 - Deposit screen (goes over inventory) +All the way to 23 is blank screens +24 - Barrows kill count +25 - Next shape in the above sequence +26 to 27 - Book thing.. +28 - Blast Furnace bar stock +29 - Blast Furnace plan map +30 - Blast Furnace temp. gauge +31 - Challenge opponent (games room) +32 - Draughts game +33 - Draughts options +34 - Draughts board in upper right corner +35 - Druaghts game (again) +36 - Runelink game +37 - Runelink options +38 - Runelink board in upper right corner +39 - Runelink game (again) +40 - Runesqaures game +41 - Runesquares options +42 - Runesquares board in upper right corner +43 - Runesquares game (again) +44 - Runeversi game +45 - Runeversi options +46 - Runeversi board in upper right corner +47 - Runeversi game (again) +48 - Bob the cat compass +49 - Book again +50 - Goblin brooch +51 - Map of paths from Temple to Mort'ton +52 - What canoe would you like to make? +53 - Canoe destination +54 - Catapult controls +55 - CW "Total Wins" thing. (Goes in chatbox) +56 - Blank screen +57 - CW "Waiting for players to join the other team" message +58 - CW ingame options +59 - CW ingame options +60 - CW Ticket exchange interface +61 - "Name your cat" screen +62 - Something from the Dorgeshun quest +63 - Champion scroll completion +64 - Single line of text +65 - 2 lines of text +66 - 3 lines of text +67 - 4 lines of text +68 - Single line of text...no continue +69 - 2 lines of text...no continue +70 - 3 lines of text...no continue +71 - 4 lines of text...no continue +72 - "What would you like to make in the churn?" - Cheese +73 - Same as 72 - Butter / Cheese +74 - Same as 72 - Cream / Butter / Cheese +75 - Battleaxe attack options +76 - Warhammer attack options +77 - Bow attack options +78 - Claw attack options +79 - Crossbow attack options +80 - some weird as fhk attack option +81 - sword attack options +82 - more sword attack options +83 - pickaxe attack options +84 - Halberd attack options +85 - staff attack options (no auto cast) +86 - Scythe attack options (Thanks Pharmacy) +87 - Spear attack options +88 - Mace attack options +89 - More sword attack options +90 - Staff options (with auto cast) +91 - Thrown darts attack option +92 - unarmed attack option +93 - whip attack option +94 - Destory this object? +95 - Sail-to map +96 - almost completely dark screen +97 - slightly darkened +98 - darker than 97 +99 - Gambling screen from climber boots quest +100 - green tint screen +101 - blank completion screen...has blood splatters +102 - Items kept on death +103 - Which comes next? (all tomatoes. You will have to change them through a frame :S) +104 - Star chart viewer +105 - Grand Exchange buy offer +106 - Grand exchange tutorial. (German for some reason) +107 - Blank screen +108 - More GE tut. (German again) +109 - GE Collection box. (Quick view. From a banker or somewhere else) +110 - More GE Tutorial (German) +111 - Another book interface +112 - Some guys head.... (WTF IS THIS????) +113 - Some complicated set of instructions +114 - Monkey Madness puzzle pieces thing...Rotate etc. (i think) +115 - Slowly fade black +116 - Blank scroll....with a title +117 - Thunder across screen? +118 - Smoke rolling across screen +119 - Green to slowly fade black screen +120 - fade black +121 - slowly fade into green +122 - fade into a bright white +123 - Certificate of advanced magical healing +124 - List of the fairy queen's symptoms +125 - Farming equipment (remove from gnome guy) +126 - Store farming equipment +127 - Some key puzzle thing +128 - Gnome cart railroad switches (don't know what I'm talking about..then gtfo) +129 - more railroad switches +130 - even more switches (super complicated) +131 - single line of text +132 - List of items needed for King Roald's garden +133 - [A] [b] [C] on left side of screen??? +134 - Skill lamp "Which skill to advance" +135 - Some weird compass thing +136 - 2 heads saying "Argh!" +137 - Chat interface...8 lines of text + scrollbar +138 - Gnome glider map +139 - Gnomeball score +140 - 4 options +141 - Grave of somesort? +142 - Daggonoth door. The runes/arrows/sword thing +143 - Part of zombie random +144 - Gnome cart map +145 - Recipe for disaster miniquest list (NPC faces are tomatoes. Must fix with a frame) +146 - Spinning thing around screen +147 - Part of Desert Treasure puzzle I think +148 - 4 or 5 options..can't tell +149 - blank screen I think +150 - Map of some giant dwarf and a boat +151 - Blank screen again +152 - Blank +153 - "Oh dear you're dead" Tells you where to get your starter stuff back if you die when you're a nub +154 - Normal leather crafting +155 - looking through a window of some sort +156 - 39 Line interface + a title +157 - Blank...shop interface maybe? +158 - Fade from black to a light fog +159 - Some puzzle thing +160 - Stupid cats chasing each others tails +161 - Slayer assignment +162 - fade from light fog to black +163 - "Learn" to do certain slayer things with points +164 - "Buy" slayer stuff with points +165 - light fog +166 - Flying at supersonic speeds? +167 - greenish tint +168 - Some accordian looking thing +169 - Imps +170 - fast fade from black to normal +171 - fast fade from normal to white +172 - Insert coins like a slot machine thing +173 - 1 line of text +174 - 16 line scroll on screen +175 - Heat waves on screen (rofl irl) +176 - Screen dies (wtfux don't do this rofl) +177 - Flash of white then it fades away +178 - Move taper and light candles +179 - greenish blue tint +180 - quick flash of blue-green +181 - Rotate mirror (belongs in side panels) +182 - Logout interface (wewt...i know where this goes for the logout tab too ;) ) +183 - History of goblin race book +184 - Is this a... random event +185 - Another random event puzzle +186 - Some weird thing that goes in sidebars +187 - Music list (goes in side bar) +188 - Mime random events (you choose what emote the guy does) +189 - Escape from jail thing +190 - Mysterious box screen. (Box doesn't spin????) +191 - Pick the odd one out random event +192 - Normal magics (belongs in side tab) +193 - Ancient magiks (belonds in side tab) +194 - Alchemy room in the magic place with the talking hat...(place behind duel arena) +195 - Enchantment room in the magic place +196 - Graveyard room in the magic place +197 - Magic area training shop +198 - Telekenetic room in magic place +199 - Beard changing thing... +200 - Shoe store...(with no items??) +201 - Legs makeover Thessalia (female) +202 - Torso makeover Thessalia(female) +203 - Hair changing thing (female) +204 - Hair changing thing (male) +205 - Change gender +206 - More legs makeover (male) +207 - Torso makeover (male) +208 - Blank screen +209 - Maze interface. (all 4 lines are in one interface now ;( No more stupid server names up top now ) +210 - 1 line of text +211 - 2 lines of text +212 - 3 lines of text +213 - 4 lines of text +214 - 5 lines of text (o.O) +215 - 1 line of text (no continue option) +216 - 2 lines no continue +217 - 3 lines no continue +218 - 4 lines no continue +219 - 5 lines no continue +220 - Blank scroll +221 - Another blank scroll...with a camo texture ??? +222 - Blank scroll again +223 - PENGUIN EMOTES!!!!!! (for that one quest. Belong in a tab) +224 - map of fremmy area +225 - Another camo scroll +226 - Mud splatters on screen. (at least I hope it is mud) +227 - Scroll with 50 lines of text +228 - 2 options +229 - 2 options again +230 - 3 options +240 - Catch the evil twin controls. (go on a tab) +241 - Single line of text +242 - 2 lines of text +243 - 3 lines of text +244 - 4 lines of text +245 - 1 line of text no continue +246 - 2 lines of text no continue +247 - 3 lines of text no continue +248 - 4 lines of text no continue +249 - A note scribbled in ancient writing +250 - A letter to from a partner +251 - Instructions for a beacon ring +252 - Puzzle thing to escape jail? +253 - Skull and cross bones puzzle +254 - Map to somewhere... +255 - Blank scroll +256 - Barbarian assalt team interface i think +257 - Bright flash on screen +258 - Train speeding by really fast... (needs a black background) +259 - achievement diary +260 - Some weird banking screen. (I've never seen it before) +261 - Options interface. (belongs in a tab) +262 - Weird pipes... +263 - Pinball random screen. +264 - Fire that huge frog cannon +265 - Clan wars "players remaining: "screen +266 - Blank scroll thing +267 - Void knight cash in your points screen +268 - Blank screen? +269 - Beginners map... with (show tutor option) +270 - Same thing? +271 - Prayer interface (belongs in a side tab) +272 - Grave monument to saradomin +273 - Pop the balloon animal (random event) +274 - Quest interface (belongs in a side tab) +275 - 300 line quest interface +276 - Completion of a quest +277 - 8 line quest completion (with an item picture) +278 - Range guild ticket exchange (need to add items with a frame ;( +279 - Cat fight stake screen +280 - Confirm a bet screen +281 - Cat fights...with name and hp (i think) +282 - Play a flute? +283 - Another play a flute +284 - rat fight in lower left corner...? +285 - Combination lock to the door. Part of fremmy trials. +286 - Blast furnace?? (I've never seen it before) +287 - No clue...a blank checkerboard +288 - WTF? more games room maybe +289 - more games room I think +290 - Spinning gears. (looks like a puzzle) +291 - 6 yellow blank boxes....?? +292 - More to a puzzle +293 - Puzzle again +294 - retarded cat headbutting a ball of yarn +295 - Rum deal banner +296 - Yellow smoke across screen +297 - Sandwhich lady tray +298 - combo lock again... +299 - "You journey on the ship map" The red arrow is a frame Im guessing +300 - Smithing interface (Items are a frame...) +301 - Assist menu (XP you've earned so far) +302 - Blank scroll +303 - "What would you like to make?" (Fletching normal logs I assume. Items must be added with a frame) +304 to 307 - More fletching options I assume +308 - Blank scroll thing +309 - More "What would you like to make?" +310 - Auto cast wave spells, crumble undead and magic dart (belongs in a side tab) +311 - What would you like to smelt? (goes in chatbox...bar images must be changed with a frame) +312 - Saftey first menu +313 - white fog +314 - Select an option...unknown amount +315 - Rage bar +316 - blank screen? +317 - black screen. no fade +318 - ghost attacks screen +319 - Autocast all modern spells (goes in a tab) +320 - Stat menu (goes in a tab) +321 - Map of somewhere... +322 - Same map as 321 +323 - Tai Bao Wanno parcel service +324 - What hides would you like to tan? items need to be added through a frame +325 - Target View...Missed, etc. +326 - Teleport other +327 - Warning..area so cold your stats will be constantly drained +328 - Temple repair interface +329 - Routes between canfis swamp area +330 - Safe combo puzzle +331 - Some text, and combo for a lock +332 - What would you like to enchant? +333 - Black screen +334 - Second trade screen... +335 - First trade screen +336 - blank screen +337 - A clue scroll map +338 - Another clue scroll map +339 - another map +340 to 344 are clue scroll maps +345 to 362 are random clue scroll clues +363 - Clue scroll thing (never seen before) +364 - Clue scroll reward screen +365 - Sextant / compass / watch interface +366 - Fishing Trawler mi****me... +367 - Trawler catch screen +368 - Trawler how-to play screen +369 - Combo lock door (orange letters) +370 - SNOWW!!! :) +371 - Tutorial island flashing arrow +372 - 4 lines of text +373 - Current Champion screen from fight pits +374 - View orbs from fight pits +375 - Unmorph from easter egg (goes in tab area) +376 - Possible a planet with its rings and moons? +377 - Tai Bwo favor +378 - Welcome to runescape screen!!! +379 - Some weird skull thing +380 - Old wilderness skull with level +381 - New wilderness level with ghost head +382 - Wilderness warning (Thanks Pharmacy) +383 - "Pick a colour" +384 - 16 line scroll +385 - Cracked screen +386 - Spying through a telescope + +387 - Equipment interface (belongs in a tab) +388 - Autocast Ancients (belongs in a tab) +389 - Search Grand Exchange item database +390 - some riddle +391 - Interface to that one mi****me where you rule the kingdom +392 - "Resources Collected" +393 - Hangman guessing game (I think) +394 - Furniture creation interface +395 - bright green flash... +396 - More furniture +397 - In house furniture building +398 - House options (goes in a tab) +399 - "No place like home" +400 - Make tabs interface +401 - minigame inside houses +402 - Room creation menu +403 - Convert logs to planks +404 - Purpley thing goes across screen +405 - Blank screen? +406 - Guthix staff autocast +407 - Pest control waiting boat +408 - Pest control ingame +409 - Fix some bbroken thing with parts +410 - Warriors guild catapult defence thing guide +411 - Warriors guild catapult defence options (in the mi****me itself) +412 - Warriors guild attack dummy guide +413 - Spying through an eyeglass +414 - Team winning something...(clan wars I assume) +415 - Ingame of some mi****me. Looks like cooking +416 - At a workbench of some sort +417 - Take certain things from a table. (part of a quest I think) +418 - Players waiting for same mi****me as 415 +419 - Rewards to pirate mi****me +420 - Some build beehive thing +421 - 12 lines of text with a scrollbar. (goes in chatbox) +422 - dark screen with a red flash +423 - Advanced healing certificate again +424 - Ancient writing +425 - more ancient writing +426 - snow piling up on the screen +427 - some contract with a fairy +428 - Theiving minigame timer or something +429 - "Choose a character" +430 - Lunar magic interface (goes in a tab) +431 - Boat circling pirate island (???Wtfux) +432 - Enchant crossbow bolt interface +433 - "Crossbow bolt pouch" (never seen it before) +434 - Gnome battas (items have to be added with a frame) +435 - Gnome bowls +436 - Gnome Cocktails +437 - Gnome Crunchies +438 - Make silver items (crafting) +439 - Some map with moving flags +440 - Certificate of earth science +441 - Same as above, but lvl 2 +442 - Some math thing +443 - Another math puzzle +444 - Level 3 earth science +445 - Some interface to view jagex's website... +446 - "What would you like to make?" - Crafting +447 - Blank screen? +448 - Green fog +449 - blank screen +450 - light fog +451 - 3 options +452 - Viewing a statue holding a key +453 - Black screen +454 - A weird map +455 - Another weird map +456 - same as above but mirrored +457 - weird map +458 - 3 options +459 - What would you like to spin? - Crafting +460 - Dark Green font +461 - map of somewhere I've never seen +462 - controls to something (goes in a tab) +463 - Blank scroll +464 - Emote tab (goes in a tab) +465 - Some newspaper that fades into an animation (DO NOT DO YET) +466 - guide to pull a lever +467 - Grand exchange recent history (I think) +468 - Diango's item return +469 - Basic teleporting map +470 - some 2d version of clouds and grass... +471 - Hot air balloon controls (goes in a tab) +472 - hot air balloon guide +473 - Chinchompa attack options!!! +474 - Lizard attack options!! +475 - Chinchompa again? +476 - Lizard again... +477 - Custom fur clothing +478 - Imp release negotiation form +479 - Map of somewhere +480 - weird as fhk map.. +481 - blizzard! +482 - less strong blizzard +483 - light fog +484 - Barb assault horn of glory +485 - Barb assault ingame menu - collecter +486 - Barb assault ingame menu - attacker +487 - Barb assault ingame menu - Healer +488 - Barb assault ingame menu - Defender (healer maybe..idk haven't played in a while) +489 - Barb assault waiting room +490 - somet barb assault examine team menu +491 - barb assault reward shop +492 - barb assault add to team menu +493 - barb assault view team interface +494 - barb assault "Time until next wave" +495 - Some queen barb assault guide +496 - barb assault tutorial progress +497 - Complete wave +498 - some quest scroll +499 - Blank skill guide... +500 - Some dollar sign...probably G.E +501 - Some take from chest interface +502 - more take from chest +503 - Clockwork toys guide +504 - looking through a hole in a fence +505 - another map +506 - Jester controls +507 - Hangman guess +508 - some weirdo interface +509 - a weird interface puzzle +510 - another puzzle +511 - another puzzle... +512 - blank +513 - blank +514 - cat playing with ball of yarn +515 - green fog +516 - black screen +517 - blank +518 - Follower inventory space left (summoning if you didn't know) +519 - click her to continue +520 - Courage bar... +521 - Guidance system...(summoning i think) +522 - Monster examine interface (lunar spell) +523 - Player examine (lunar spell) +524 - some text? +525 - half of an interface... +526 - full interface of 525 and 529 +527 - blank screen +528 - Black screen with some text +529 - right of 525 +530 - 2 paged book, each page has a scrollbar +531 - some logo... +532 - "Museum Kudos: " +533 - black screen again +534 - text +535 - a piano +536 - "Shrink me quick" recipe +537 - Another piano thing... +538 - A "To-do" list +539 - Blank screen +540 - "Elnok's Exchange" exchange imps for something? +541 - white screen +542 - "What would you like to make?" - Crafting. Blown Glass +543 - Thunder and lighting moving across screen +544 - Map with a boat going somewhere... +545 - Green dragon racing across screen really fast +546 - Dragon flying around in clouds +547 - Blank map from 544 +548 - Main game screen...DO NOT DO THIS AS AN INTERFACE... +549 - black screen +550 - Friends list (belongs in a tab) +551 - Ignore List (belongs in a tab) +552 - Star gazing through a telescope +553 - Report abuse +554 - Select an option...unknown amount +555 - Another select an option...unknown amount +556 - Same as 555 +557 - 2 options +558 - What would you like to make? unknown items +559 - Quiz random. Items are tomatoes, need to be set with a frame +560 - Warning about goblins and spiders for low level players +561 - Warning before going to kalphite queen +562 - warning about entering a dark area +563 - Warning before entering building mode +564 - Warning before going to top of ranger guild tower +565 - Warning before entering desert +566 - Warning before leaving an area when you've dropped items +567 - Warning about going in without a light source +568 - Warning about extinguising lightsource in dark area +569 - Warning about going in without a light source +570 - Warning about dark cave and no light source +571 - Warning about dark tunnel and no light source +572 - Warning about going in without a tinderbox +573 - Warning about a dangerous area that follows +574 - Warning about a dangerous area +575 - Warning before going to KBD +576 - Warning about going down into a wilderness +577 - Warning about dark tunnel +578 - Warning about fairy ring leads to a dark area +579 - Warning: "Are you sure you want to climb down?" +580 - Warning about mort myre +581 - Danger about death plateau +582 - How many would you like to make? unkown amount +583 - Reset warning messages +584 - Statue of a king being unstoned +585 - Wizard climbing into a window +586 - Change of address form for seers' village +587 - Half of a meet at "somewhere" note +588 - Breaking into a lock interface +589 - Clan chat interface +590 - Clan chat setup +591 - Thessalia's makeover +592 - Hairdresser's salon +593 - Reinald's smithing emporium. (Arm cuffs, etc.) +594 - Thessalia's makeover again +595 - same as 593 +596 - same as 592 +597 - Godwars killcount (on left hand side of screen) +598 - Darker screen with GW killcount +599 - little brighter than 598 +600 - Wilderness warning +601 - Godwars killcount (on right hand side of screen) +602 - blank screen +603 - Acorn breathing in palm of hand +604 - Map with flags +605 - Fade in through a window? +606 - Acorn starts to hatch +607 - Painting a poster on a fence +608 - Grand tree spinning around +609 - Tearing posters off the fence +610 - Black fade to the right +611 - Posters on screen +612 - same as 611 +613 - Hand at a coin machine? +614 - Posters on fence again +615 - Slowly zooming in on gnome king head +616 - Map with flags again +617 - Bolrie's diary +618 - One poster on fence +619 - "Pay Bank charge with..." +620 - Archery emporium...Main stock +621 - Blank screen +622 - Blank screen +623 - Blank screen +624 - Fairy ring power relay +625 - "Select your goblin" +626 - Third duel screen... "Check over options etc." (stake) +627 - Warning before entering dueling arena +628 - Blank Screen +629 - Dueling tornament info +630 - Another coin machine +631 - Stake duel screen... +632 - Duel scoreboard...(last 50 duels) +633 - You are victorious screen (friendly) +634 - You are victorious screen (stake) +635 - Dueling axe in upper right corner with tourny rank below +636 - Upcoming tournament rules +637 - Dueling screen...no stake +638 - Dueling axe in upper right corner with no tourny rank +639 - Third duel screen..."Check over options etc." (friendly) +640 - First duel screen..."Friendly or stake" +641 - Some dueling options? never seen them before +642 - Grand exchange common item costs (woodcutting) +643 - Grand exchange recent history +644 - Blank screen +645 - Grand exchange item sets +646 - Another part of G.E tutorial...about waiting +647 - party room drop interface +648 - blank screen +649 - fight pit orbs +650 - Defeated at clan wars +651 - Victory at clan wars +652 - Gravestone selection +653 - Bounty hunter "Target: " screen +654 - Bounty hunter hiscores board (not rogues?? forgot what they're called) +655 - Bounty hunter hiscores board (rogues) +656 - Bounty hunter waiting room +657 - Warning to enter bounty hunter +658 - "Select a snowman hat" +659 - snowglobe +660 - Character design! +661 - a riddle +662 - summoning interface +663 - another summoning interface +664 - summoning combat interface +665 - blank screen +666 - Summoning scroll creation +667 - Equip character screen +668 - "Pick a puppy" +669 - Summoning pouch creation +670 - blank screen +671 - Familiar inventory +672 - Summoning pouch creation +673 - Summoning scroll creation +674 - Blanks creen +675 - What would you like to make? crafting with moulds... +676 - Another warning screen +677 - warning screen +678 - warning screen +679 - blank screen +680 - Wierd as fhk interface... +681 - Looks like a build a catapult interface +682 - Fire catapult interface (belongs in a tab) +683 - Some control interface that goes in a tab +684 - Watch out for bunnies (wtf??) +685 - Wine sweeper instructions +686 - Trade seeds for XP (farming) +687 - Some more 'minesweeper' instructions. (goes with the bunny) +688 - more instructions +689 - some box in the upper right corner with points +690 - More instructions +691 - animation of goblins coming out of the ground +692 - animation of a big *** goblin +693 - "Congratulations! you have slain bork!" -- wtfux is this? +694 - Player safety test +695 - some info to the safety room +696 - more to the player test +697 - more to the player safety test +698 - more info to safety room +699 - more safety test +700 - report abuse +701 - more info to safety +702 - more info to safety +703 - more info to safety +704 - more safety test +705 - more safety test +706 - more info to safety +707 - more safety test +708 - more safety test +708 - END OF SAFETY EXAM! (thank god...hand went to sleep) +709 - end of exam..with moving timer +710 - more safety test (wtf there's more???) +711 - more info to safety +712 - Letter to meet some guy infront of legend's guild +713 - spotlight type thing on your character +714 - blank screen +715 - blank screen +716 - Chocatrice summoning menu +717 - incubator controls +718 - 2 options +719 - Instructions to operate the incubator +720 - some text... +721 - some gears spinning +722 - blank screen +723 - null interface? (looks like it belongs in a tab) +724 - Runesquares board +725 - runelink board +726 - runeversi board +727 - draughts board +728 - Pilot's interface? +729 - some weird screen interface +730 - Fist of Gutxix: Pick up a stone +731 - Fist of Guthix: Attacker interface +732 - Fist of Guthix: reward shop +733 - Ivandis Flail message +734 - some combination teleport message +735 - Travel log (belongs in a tab) +736 - Gnome stealing a green dragon from an egg +737 - Pick a kitten +738 - Some Tzharr interface +739 - Tzharr symbol decoding +740 - Tutorial island message... "Open flashing stats icon..." +741 - Blank skill advancement...will need to add items and suck with a frame +742 - Graphics options! +743 - Audio options! +744 - Login homepage +745 - username password input +746 - Full screen interface... Must be used as a main interface +747 - Blank screen? (Should be summoning orb....) +748 - HP Orb +749 - Prayer orb +750 - Energy orb +751 - Row of buttons below chatbox +752 - Chatbox spites...do not put in main frame...can't do much if you do +753 - Blank screen? +754 - Blank screen +755 - Load world map +756 - Draughts options +757 - "Click here to continue" +758 - canoe map +759 - Confirm Game Resolution Change +760 - Click here to continue in blue +761 - Sir Vant's requests +762 - Bank interface +763 - Equipment interface +764 - Runescape minimap key +765 - Select task +766 - Oh dear you are dead, but don't worry +767 - Bank of Runescape help +768 - Nothing +769 - Nothing +770 - Black Screen +771 - Character design screen +772 - Returned Items +773 - Runecrafters quest, runes going across screen +774 - Where do you want to rub the key? +775 - fades from white then white squiggles on screen +776 - Cont. from 775 fades to white +777 - Fades from black to mist +778 - Mist +779 - Runecrafting Guild Rewards +780 - Use a talisman to display an altar location +781 - Waiting for players to join +782+ - Crashes client \ No newline at end of file diff --git a/server508/lists/interfaces/0.txt b/server508/lists/interfaces/0.txt new file mode 100644 index 0000000..21787e3 --- /dev/null +++ b/server508/lists/interfaces/0.txt @@ -0,0 +1,21 @@ +Child: 0, type: 6, width: 37, height: 230 +Child: 1, type: 0, width: 164, height: 326 +Child: 2, type: 0, width: 195, height: 334 +Child: 3, type: 0, width: 164, height: 326 +Child: 4, type: 0, width: 170, height: 338 +Child: 5, type: 0, width: 164, height: 326 +Child: 6, type: 0, width: 168, height: 330 +Child: 7, type: 0, width: 164, height: 326 +Child: 8, type: 0, width: 178, height: 329 +Child: 9, type: 0, width: 164, height: 326 +Child: 10, type: 0, width: 173, height: 331 +Child: 11, type: 6, width: 47, height: 61 +Child: 12, type: 6, width: 37, height: 230 +Child: 13, type: 6, width: 47, height: 61 +Child: 14, type: 6, width: 37, height: 230 +Child: 15, type: 6, width: 59, height: 76 +Child: 16, type: 6, width: 37, height: 230 +Child: 17, type: 6, width: 59, height: 76 +Child: 18, type: 6, width: 42, height: 265 +Child: 19, type: 6, width: 69, height: 87 +Child: 20, type: 0, width: 207, height: 165 diff --git a/server508/lists/interfaces/1.txt b/server508/lists/interfaces/1.txt new file mode 100644 index 0000000..1ef0e01 --- /dev/null +++ b/server508/lists/interfaces/1.txt @@ -0,0 +1,15 @@ +Child: 0, type: 6, width: 42, height: 265 +Child: 1, type: 0, width: 164, height: 326 +Child: 2, type: 0, width: 195, height: 334 +Child: 3, type: 0, width: 170, height: 338 +Child: 4, type: 0, width: 168, height: 330 +Child: 5, type: 0, width: 178, height: 329 +Child: 6, type: 0, width: 173, height: 331 +Child: 7, type: 0, width: 177, height: 333 +Child: 8, type: 6, width: 82, height: 68 +Child: 9, type: 6, width: 101, height: 78 +Child: 10, type: 6, width: 130, height: 102 +Child: 11, type: 6, width: 99, height: 73 +Child: 12, type: 6, width: 127, height: 100 +Child: 13, type: 6, width: 97, height: 79 +Child: 14, type: 0, width: 151, height: 323 diff --git a/server508/lists/interfaces/10.txt b/server508/lists/interfaces/10.txt new file mode 100644 index 0000000..7f3c7d9 --- /dev/null +++ b/server508/lists/interfaces/10.txt @@ -0,0 +1,4 @@ +Child: 0, type: 3, width: 141, height: 28 +Child: 1, message: Windspeed: +Child: 2, message: high +Child: 3, type: 0, width: 145, height: 46 diff --git a/server508/lists/interfaces/100.txt b/server508/lists/interfaces/100.txt new file mode 100644 index 0000000..6dc81e6 --- /dev/null +++ b/server508/lists/interfaces/100.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 19628 diff --git a/server508/lists/interfaces/101.txt b/server508/lists/interfaces/101.txt new file mode 100644 index 0000000..80d77da --- /dev/null +++ b/server508/lists/interfaces/101.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 28 +Child: 1, message: +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/102.txt b/server508/lists/interfaces/102.txt new file mode 100644 index 0000000..4340939 --- /dev/null +++ b/server508/lists/interfaces/102.txt @@ -0,0 +1,31 @@ +Child: 0, type: 3, width: 495, height: 314 +Child: 1, type: 5, width: 490, height: 315 +Child: 2, type: 5, width: 23, height: 289 +Child: 3, type: 5, width: 28, height: 287 +Child: 4, type: 5, width: 478, height: 27 +Child: 5, type: 5, width: 475, height: 28 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 480, height: 26 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, type: 3, width: 316, height: 270 +Child: 15, message: Items Kept on Death +Child: 16, type: 9, width: 308, height: 0 +Child: 17, message: Items you will keep on death if not skulled: +Child: 18, type: 0, width: 316, height: 275 +Child: 19, type: 9, width: 308, height: 0 +Child: 20, message: Items you will lose on death if not skulled: +Child: 21, type: 0, width: 316, height: 209 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 30, height: 271 +Child: 25, message: Information: +Child: 26, type: 9, width: 100, height: 0 +Child: 27, message: This is where the information goes, This is where the information goes, This is where the information goes, This is where the information goes, This is where the information goes, This is where the information goes +Child: 28, message: put information in here,put information in here,put information in +Child: 29, type: 0, width: 300, height: 200 +Child: 30, message: Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, Informatio ngoes in here, informatio ngoes in here, diff --git a/server508/lists/interfaces/103.txt b/server508/lists/interfaces/103.txt new file mode 100644 index 0000000..7039aa1 --- /dev/null +++ b/server508/lists/interfaces/103.txt @@ -0,0 +1,15 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 3, width: 486, height: 4 +Child: 2, type: 3, width: 4, height: 15 +Child: 3, type: 3, width: 4, height: 305 +Child: 4, type: 6, width: 492, height: 322 +Child: 5, type: 6, width: 32, height: 29 +Child: 6, type: 6, width: 41, height: 34 +Child: 7, type: 6, width: 41, height: 34 +Child: 8, type: 6, width: 41, height: 34 +Child: 9, message: What comes next? +Child: 10, type: 6, width: 41, height: 34 +Child: 11, type: 6, width: 41, height: 34 +Child: 12, type: 6, width: 41, height: 34 +Child: 13, type: 6, width: 41, height: 34 +Child: 14, type: 0, width: 506, height: 335 diff --git a/server508/lists/interfaces/104.txt b/server508/lists/interfaces/104.txt new file mode 100644 index 0000000..24c83c4 --- /dev/null +++ b/server508/lists/interfaces/104.txt @@ -0,0 +1,59 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 479, height: 304 +Child: 2, type: 5, width: 467, height: 290 +Child: 3, type: 5, width: 28, height: 229 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 320, height: 23 +Child: 8, type: 5, width: 129, height: 28 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 419, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 25, height: 248 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 301, height: 23 +Child: 16, type: 5, width: 106, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 3, width: 314, height: 246 +Child: 19, message: Aquarius +Child: 20, message: Aries +Child: 21, message: Cancer +Child: 22, message: Capricorn +Child: 23, message: Gemini +Child: 24, message: Leo +Child: 25, message: Libra +Child: 26, message: Pisces +Child: 27, message: Sagittarius +Child: 28, message: Scorpio +Child: 29, message: Taurus +Child: 30, message: Virgo +Child: 31, message: Star Chart Viewer +Child: 32, type: 3, width: 317, height: 49 +Child: 33, type: 3, width: 317, height: 59 +Child: 34, type: 3, width: 317, height: 64 +Child: 35, type: 3, width: 317, height: 78 +Child: 36, type: 3, width: 4, height: 231 +Child: 37, type: 3, width: 300, height: 4 +Child: 38, type: 5, width: 16, height: 16 +Child: 39, type: 9, width: 0, height: 228 +Child: 40, type: 9, width: 0, height: 228 +Child: 41, type: 9, width: 0, height: 228 +Child: 42, type: 9, width: 0, height: 228 +Child: 43, type: 9, width: 0, height: 228 +Child: 44, type: 9, width: 0, height: 228 +Child: 45, type: 9, width: 0, height: 228 +Child: 46, type: 9, width: 0, height: 228 +Child: 47, type: 9, width: 286, height: 0 +Child: 48, type: 9, width: 286, height: 0 +Child: 49, type: 9, width: 286, height: 0 +Child: 50, type: 9, width: 286, height: 0 +Child: 51, type: 9, width: 286, height: 0 +Child: 52, type: 9, width: 286, height: 0 +Child: 53, type: 9, width: 286, height: 0 +Child: 54, type: 9, width: 286, height: 0 +Child: 55, type: 6, width: 239, height: 175 +Child: 56, type: 3, width: 175, height: 24 +Child: 57, message: Aquarius +Child: 58, type: 5, width: 32, height: 228 diff --git a/server508/lists/interfaces/105.txt b/server508/lists/interfaces/105.txt new file mode 100644 index 0000000..45d8e45 --- /dev/null +++ b/server508/lists/interfaces/105.txt @@ -0,0 +1,214 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 7, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 7 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Grand Exchange +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, message: Shown below is a summary of all your current offers. +Child: 18, type: 0, width: 140, height: 110 +Child: 19, type: 0, width: 140, height: 110 +Child: 20, type: 5, width: 32, height: 45 +Child: 21, type: 5, width: 47, height: 32 +Child: 22, type: 5, width: 32, height: 45 +Child: 23, type: 5, width: 47, height: 32 +Child: 24, type: 5, width: 32, height: 45 +Child: 25, type: 5, width: 47, height: 32 +Child: 26, type: 5, width: 32, height: 45 +Child: 27, type: 5, width: 47, height: 32 +Child: 28, type: 5, width: 35, height: 35 +Child: 29, type: 5, width: 35, height: 35 +Child: 30, type: 0, width: 51, height: 46 +Child: 31, type: 0, width: 51, height: 46 +Child: 32, type: 0, width: 140, height: 110 +Child: 33, type: 0, width: 10, height: 10 +Child: 34, type: 0, width: 140, height: 110 +Child: 35, type: 0, width: 140, height: 110 +Child: 36, type: 5, width: 32, height: 45 +Child: 37, type: 5, width: 47, height: 32 +Child: 38, type: 5, width: 32, height: 45 +Child: 39, type: 5, width: 47, height: 32 +Child: 40, type: 5, width: 32, height: 45 +Child: 41, type: 5, width: 47, height: 32 +Child: 42, type: 5, width: 32, height: 45 +Child: 43, type: 5, width: 47, height: 32 +Child: 44, type: 5, width: 35, height: 35 +Child: 45, type: 5, width: 35, height: 35 +Child: 46, type: 0, width: 51, height: 46 +Child: 47, type: 0, width: 51, height: 46 +Child: 48, type: 0, width: 140, height: 110 +Child: 49, type: 0, width: 10, height: 10 +Child: 50, type: 0, width: 140, height: 110 +Child: 51, type: 0, width: 140, height: 110 +Child: 52, type: 5, width: 32, height: 45 +Child: 53, type: 5, width: 47, height: 32 +Child: 54, type: 5, width: 32, height: 45 +Child: 55, type: 5, width: 47, height: 32 +Child: 56, type: 5, width: 32, height: 45 +Child: 57, type: 5, width: 47, height: 32 +Child: 58, type: 5, width: 32, height: 45 +Child: 59, type: 5, width: 47, height: 32 +Child: 60, type: 5, width: 35, height: 35 +Child: 61, type: 5, width: 35, height: 35 +Child: 62, type: 0, width: 51, height: 46 +Child: 63, type: 0, width: 51, height: 46 +Child: 64, type: 0, width: 140, height: 110 +Child: 65, type: 0, width: 10, height: 10 +Child: 66, type: 0, width: 140, height: 110 +Child: 67, type: 3, width: 140, height: 110 +Child: 68, type: 5, width: 140, height: 110 +Child: 69, type: 0, width: 140, height: 110 +Child: 70, type: 0, width: 140, height: 110 +Child: 71, type: 5, width: 32, height: 45 +Child: 72, type: 5, width: 47, height: 32 +Child: 73, type: 5, width: 32, height: 45 +Child: 74, type: 5, width: 47, height: 32 +Child: 75, type: 5, width: 32, height: 45 +Child: 76, type: 5, width: 47, height: 32 +Child: 77, type: 5, width: 32, height: 45 +Child: 78, type: 5, width: 47, height: 32 +Child: 79, type: 5, width: 35, height: 35 +Child: 80, type: 5, width: 35, height: 35 +Child: 81, type: 0, width: 51, height: 46 +Child: 82, type: 0, width: 51, height: 46 +Child: 83, type: 0, width: 140, height: 110 +Child: 84, type: 0, width: 10, height: 10 +Child: 85, type: 0, width: 140, height: 110 +Child: 86, type: 3, width: 140, height: 110 +Child: 87, type: 5, width: 140, height: 110 +Child: 88, type: 0, width: 140, height: 110 +Child: 89, type: 0, width: 140, height: 110 +Child: 90, type: 5, width: 32, height: 45 +Child: 91, type: 5, width: 47, height: 32 +Child: 92, type: 5, width: 32, height: 45 +Child: 93, type: 5, width: 47, height: 32 +Child: 94, type: 5, width: 32, height: 45 +Child: 95, type: 5, width: 47, height: 32 +Child: 96, type: 5, width: 32, height: 45 +Child: 97, type: 5, width: 47, height: 32 +Child: 98, type: 5, width: 35, height: 35 +Child: 99, type: 5, width: 35, height: 35 +Child: 100, type: 0, width: 51, height: 46 +Child: 101, type: 0, width: 51, height: 46 +Child: 102, type: 0, width: 140, height: 110 +Child: 103, type: 0, width: 10, height: 10 +Child: 104, type: 0, width: 140, height: 110 +Child: 105, type: 3, width: 140, height: 110 +Child: 106, type: 5, width: 140, height: 110 +Child: 107, type: 0, width: 140, height: 110 +Child: 108, type: 0, width: 140, height: 110 +Child: 109, type: 5, width: 32, height: 45 +Child: 110, type: 5, width: 47, height: 32 +Child: 111, type: 5, width: 32, height: 45 +Child: 112, type: 5, width: 47, height: 32 +Child: 113, type: 5, width: 32, height: 45 +Child: 114, type: 5, width: 47, height: 32 +Child: 115, type: 5, width: 32, height: 45 +Child: 116, type: 5, width: 47, height: 32 +Child: 117, type: 5, width: 35, height: 35 +Child: 118, type: 5, width: 35, height: 35 +Child: 119, type: 0, width: 51, height: 46 +Child: 120, type: 0, width: 51, height: 46 +Child: 121, type: 0, width: 140, height: 110 +Child: 122, type: 0, width: 10, height: 10 +Child: 123, type: 0, width: 140, height: 110 +Child: 124, type: 3, width: 140, height: 110 +Child: 125, type: 5, width: 140, height: 110 +Child: 126, type: 0, width: 512, height: 334 +Child: 127, type: 5, width: 35, height: 35 +Child: 128, type: 5, width: 474, height: 32 +Child: 129, type: 0, width: 426, height: 90 +Child: 130, type: 5, width: 32, height: 87 +Child: 131, type: 0, width: 426, height: 84 +Child: 132, type: 5, width: 32, height: 81 +Child: 133, message: Buy Offer +Child: 134, type: 5, width: 16, height: 14 +Child: 135, type: 5, width: 157, height: 32 +Child: 136, type: 5, width: 40, height: 36 +Child: 137, type: 5, width: 40, height: 36 +Child: 138, type: 5, width: 36, height: 32 +Child: 139, type: 5, width: 16, height: 14 +Child: 140, message: +Child: 141, message: Choose an item to exchange +Child: 142, message: +Child: 143, type: 5, width: 16, height: 14 +Child: 144, type: 5, width: 16, height: 14 +Child: 145, message: +Child: 146, message: Quantity: +Child: 147, type: 5, width: 20, height: 20 +Child: 148, type: 5, width: 113, height: 20 +Child: 149, type: 5, width: 20, height: 20 +Child: 150, message: 1 +Child: 151, message: Price per item: +Child: 152, type: 5, width: 20, height: 20 +Child: 153, type: 5, width: 108, height: 20 +Child: 154, type: 5, width: 20, height: 20 +Child: 155, message: 1 gp +Child: 156, type: 0, width: 512, height: 334 +Child: 157, type: 0, width: 13, height: 13 +Child: 158, type: 5, width: 16, height: 14 +Child: 159, type: 0, width: 13, height: 13 +Child: 160, type: 5, width: 16, height: 14 +Child: 161, type: 5, width: 35, height: 35 +Child: 162, message: 1 +Child: 163, type: 5, width: 35, height: 35 +Child: 164, message: 10 +Child: 165, type: 5, width: 35, height: 35 +Child: 166, message: 100 +Child: 167, type: 5, width: 35, height: 35 +Child: 168, message: 1000 +Child: 169, type: 5, width: 35, height: 35 +Child: 170, message: ... +Child: 171, type: 0, width: 13, height: 13 +Child: 172, type: 5, width: 16, height: 14 +Child: 173, type: 0, width: 13, height: 13 +Child: 174, type: 5, width: 16, height: 14 +Child: 175, type: 5, width: 35, height: 35 +Child: 176, type: 5, width: 16, height: 14 +Child: 177, message: +Child: 178, type: 5, width: 35, height: 35 +Child: 179, type: 5, width: 16, height: 14 +Child: 180, message: +Child: 181, type: 5, width: 35, height: 35 +Child: 182, type: 5, width: 16, height: 14 +Child: 183, message: +Child: 184, type: 5, width: 35, height: 35 +Child: 185, message: ... +Child: 186, type: 5, width: 20, height: 20 +Child: 187, type: 5, width: 108, height: 20 +Child: 188, type: 5, width: 20, height: 20 +Child: 189, message: +Child: 190, type: 0, width: 120, height: 43 +Child: 191, message: Confirm Offer +Child: 192, type: 0, width: 512, height: 334 +Child: 193, type: 0, width: 40, height: 36 +Child: 194, type: 0, width: 40, height: 36 +Child: 195, type: 5, width: 16, height: 14 +Child: 196, message: Click the icon to the left to search for items. +Child: 197, type: 0, width: 512, height: 334 +Child: 198, type: 0, width: 40, height: 36 +Child: 199, message: Select an item in your inventory to sell. +Child: 200, type: 0, width: 512, height: 334 +Child: 201, message: +Child: 202, type: 0, width: 300, height: 15 +Child: 203, type: 5, width: 20, height: 20 +Child: 204, type: 5, width: 32, height: 32 +Child: 205, type: 5, width: 82, height: 32 +Child: 206, type: 5, width: 32, height: 32 +Child: 207, type: 5, width: 107, height: 51 +Child: 208, type: 5, width: 40, height: 36 +Child: 209, type: 5, width: 36, height: 32 +Child: 210, type: 5, width: 40, height: 36 +Child: 211, type: 5, width: 36, height: 32 +Child: 212, type: 0, width: 512, height: 334 +Child: 213, type: 0, width: 10, height: 10 diff --git a/server508/lists/interfaces/106.txt b/server508/lists/interfaces/106.txt new file mode 100644 index 0000000..a59fc8b --- /dev/null +++ b/server508/lists/interfaces/106.txt @@ -0,0 +1,146 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 7, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 7 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Grand Exchange +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, message: Shown below is a summary of all your current offers. +Child: 18, type: 0, width: 140, height: 110 +Child: 19, type: 0, width: 140, height: 110 +Child: 20, type: 5, width: 32, height: 45 +Child: 21, type: 5, width: 47, height: 32 +Child: 22, type: 5, width: 32, height: 45 +Child: 23, type: 5, width: 47, height: 32 +Child: 24, type: 5, width: 32, height: 45 +Child: 25, type: 5, width: 47, height: 32 +Child: 26, type: 5, width: 32, height: 45 +Child: 27, type: 5, width: 47, height: 32 +Child: 28, type: 5, width: 35, height: 35 +Child: 29, type: 5, width: 35, height: 35 +Child: 30, type: 0, width: 51, height: 46 +Child: 31, type: 0, width: 51, height: 46 +Child: 32, type: 0, width: 140, height: 110 +Child: 33, type: 0, width: 140, height: 110 +Child: 34, type: 5, width: 32, height: 45 +Child: 35, type: 5, width: 47, height: 32 +Child: 36, type: 5, width: 32, height: 45 +Child: 37, type: 5, width: 47, height: 32 +Child: 38, type: 5, width: 32, height: 45 +Child: 39, type: 5, width: 47, height: 32 +Child: 40, type: 5, width: 32, height: 45 +Child: 41, type: 5, width: 47, height: 32 +Child: 42, type: 5, width: 35, height: 35 +Child: 43, type: 5, width: 35, height: 35 +Child: 44, type: 0, width: 51, height: 46 +Child: 45, type: 0, width: 51, height: 46 +Child: 46, type: 0, width: 140, height: 110 +Child: 47, type: 0, width: 140, height: 110 +Child: 48, type: 5, width: 32, height: 45 +Child: 49, type: 5, width: 47, height: 32 +Child: 50, type: 5, width: 32, height: 45 +Child: 51, type: 5, width: 47, height: 32 +Child: 52, type: 5, width: 32, height: 45 +Child: 53, type: 5, width: 47, height: 32 +Child: 54, type: 5, width: 32, height: 45 +Child: 55, type: 5, width: 47, height: 32 +Child: 56, type: 5, width: 35, height: 35 +Child: 57, type: 5, width: 35, height: 35 +Child: 58, type: 0, width: 51, height: 46 +Child: 59, type: 0, width: 51, height: 46 +Child: 60, type: 0, width: 140, height: 110 +Child: 61, type: 3, width: 140, height: 110 +Child: 62, type: 5, width: 140, height: 110 +Child: 63, type: 0, width: 140, height: 110 +Child: 64, type: 0, width: 140, height: 110 +Child: 65, type: 5, width: 32, height: 45 +Child: 66, type: 5, width: 47, height: 32 +Child: 67, type: 5, width: 32, height: 45 +Child: 68, type: 5, width: 47, height: 32 +Child: 69, type: 5, width: 32, height: 45 +Child: 70, type: 5, width: 47, height: 32 +Child: 71, type: 5, width: 32, height: 45 +Child: 72, type: 5, width: 47, height: 32 +Child: 73, type: 5, width: 35, height: 35 +Child: 74, type: 5, width: 35, height: 35 +Child: 75, type: 0, width: 51, height: 46 +Child: 76, type: 0, width: 51, height: 46 +Child: 77, type: 0, width: 140, height: 110 +Child: 78, type: 3, width: 140, height: 110 +Child: 79, type: 5, width: 140, height: 110 +Child: 80, type: 0, width: 140, height: 110 +Child: 81, type: 0, width: 140, height: 110 +Child: 82, type: 5, width: 32, height: 45 +Child: 83, type: 5, width: 47, height: 32 +Child: 84, type: 5, width: 32, height: 45 +Child: 85, type: 5, width: 47, height: 32 +Child: 86, type: 5, width: 32, height: 45 +Child: 87, type: 5, width: 47, height: 32 +Child: 88, type: 5, width: 32, height: 45 +Child: 89, type: 5, width: 47, height: 32 +Child: 90, type: 5, width: 35, height: 35 +Child: 91, type: 5, width: 35, height: 35 +Child: 92, type: 0, width: 51, height: 46 +Child: 93, type: 0, width: 51, height: 46 +Child: 94, type: 0, width: 140, height: 110 +Child: 95, type: 3, width: 140, height: 110 +Child: 96, type: 5, width: 140, height: 110 +Child: 97, type: 0, width: 140, height: 110 +Child: 98, type: 0, width: 140, height: 110 +Child: 99, type: 5, width: 32, height: 45 +Child: 100, type: 5, width: 47, height: 32 +Child: 101, type: 5, width: 32, height: 45 +Child: 102, type: 5, width: 47, height: 32 +Child: 103, type: 5, width: 32, height: 45 +Child: 104, type: 5, width: 47, height: 32 +Child: 105, type: 5, width: 32, height: 45 +Child: 106, type: 5, width: 47, height: 32 +Child: 107, type: 5, width: 35, height: 35 +Child: 108, type: 5, width: 35, height: 35 +Child: 109, type: 0, width: 51, height: 46 +Child: 110, type: 0, width: 51, height: 46 +Child: 111, type: 0, width: 140, height: 110 +Child: 112, type: 3, width: 140, height: 110 +Child: 113, type: 5, width: 140, height: 110 +Child: 114, type: 3, width: 317, height: 83 +Child: 115, type: 3, width: 305, height: 71 +Child: 116, type: 5, width: 32, height: 32 +Child: 117, type: 5, width: 252, height: 32 +Child: 118, type: 5, width: 32, height: 32 +Child: 119, type: 5, width: 32, height: 32 +Child: 120, type: 5, width: 32, height: 32 +Child: 121, type: 5, width: 252, height: 32 +Child: 122, type: 5, width: 32, height: 32 +Child: 123, type: 5, width: 32, height: 32 +Child: 124, message: Jetzt ist Ihr Angebot eingegangen! Sie können jederzeit darauf klicken, um sich die Einzelheiten anzuschauen. Unten wird der Fortschritt mit einem Balken angezeigt. +Child: 125, type: 5, width: 16, height: 16 +Child: 126, type: 0, width: 512, height: 334 +Child: 127, type: 3, width: 148, height: 5 +Child: 128, type: 3, width: 148, height: 5 +Child: 129, type: 3, width: 5, height: 115 +Child: 130, type: 3, width: 5, height: 115 +Child: 131, type: 0, width: 512, height: 334 +Child: 132, type: 3, width: 59, height: 5 +Child: 133, type: 3, width: 59, height: 5 +Child: 134, type: 3, width: 5, height: 56 +Child: 135, type: 3, width: 5, height: 56 +Child: 136, type: 3, width: 59, height: 5 +Child: 137, type: 3, width: 59, height: 5 +Child: 138, type: 3, width: 5, height: 56 +Child: 139, type: 3, width: 5, height: 56 +Child: 140, type: 0, width: 512, height: 334 +Child: 141, type: 3, width: 148, height: 5 +Child: 142, type: 3, width: 148, height: 5 +Child: 143, type: 3, width: 5, height: 115 +Child: 144, type: 3, width: 5, height: 115 +Child: 145, message: Click to continue diff --git a/server508/lists/interfaces/107.txt b/server508/lists/interfaces/107.txt new file mode 100644 index 0000000..cf413fb --- /dev/null +++ b/server508/lists/interfaces/107.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 192, height: 262 +Child: 1, type: 3, width: 186, height: 3 +Child: 2, type: 3, width: 186, height: 3 +Child: 3, type: 3, width: 3, height: 250 +Child: 4, type: 3, width: 3, height: 250 +Child: 5, type: 3, width: 186, height: 256 +Child: 6, type: 3, width: 184, height: 254 +Child: 7, type: 3, width: 182, height: 252 +Child: 8, type: 3, width: 180, height: 250 +Child: 9, type: 3, width: 178, height: 248 +Child: 10, type: 3, width: 176, height: 246 +Child: 11, type: 3, width: 174, height: 244 +Child: 12, type: 3, width: 172, height: 242 +Child: 13, type: 3, width: 170, height: 240 +Child: 14, type: 3, width: 168, height: 238 +Child: 15, type: 3, width: 166, height: 236 +Child: 16, type: 3, width: 164, height: 234 +Child: 17, type: 3, width: 162, height: 232 +Child: 18, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/108.txt b/server508/lists/interfaces/108.txt new file mode 100644 index 0000000..b4fc0d7 --- /dev/null +++ b/server508/lists/interfaces/108.txt @@ -0,0 +1,98 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 7, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 7 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Grand Exchange +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 5, width: 35, height: 35 +Child: 17, type: 5, width: 474, height: 32 +Child: 18, type: 0, width: 426, height: 90 +Child: 19, type: 5, width: 32, height: 87 +Child: 20, type: 0, width: 426, height: 84 +Child: 21, type: 5, width: 32, height: 81 +Child: 22, message: Buy Offer +Child: 23, type: 5, width: 16, height: 14 +Child: 24, type: 5, width: 157, height: 32 +Child: 25, type: 5, width: 40, height: 36 +Child: 26, type: 5, width: 36, height: 32 +Child: 27, type: 5, width: 16, height: 14 +Child: 28, message: 1,281 gp +Child: 29, message: Choose an item to exchange +Child: 30, message: Quantity: +Child: 31, type: 5, width: 20, height: 20 +Child: 32, type: 5, width: 113, height: 20 +Child: 33, type: 5, width: 20, height: 20 +Child: 34, message: 2 +Child: 35, message: Price per item: +Child: 36, type: 5, width: 20, height: 20 +Child: 37, type: 5, width: 108, height: 20 +Child: 38, type: 5, width: 20, height: 20 +Child: 39, message: 1,281 gp +Child: 40, type: 5, width: 16, height: 14 +Child: 41, type: 5, width: 16, height: 14 +Child: 42, type: 5, width: 35, height: 35 +Child: 43, message: 1 +Child: 44, type: 5, width: 35, height: 35 +Child: 45, message: 10 +Child: 46, type: 5, width: 35, height: 35 +Child: 47, message: 100 +Child: 48, type: 5, width: 35, height: 35 +Child: 49, message: 500 +Child: 50, type: 5, width: 35, height: 35 +Child: 51, message: ... +Child: 52, type: 5, width: 16, height: 14 +Child: 53, type: 5, width: 16, height: 14 +Child: 54, type: 5, width: 35, height: 35 +Child: 55, type: 5, width: 16, height: 14 +Child: 56, message: +Child: 57, type: 5, width: 35, height: 35 +Child: 58, type: 5, width: 16, height: 14 +Child: 59, message: +Child: 60, type: 5, width: 35, height: 35 +Child: 61, type: 5, width: 16, height: 14 +Child: 62, message: +Child: 63, type: 5, width: 35, height: 35 +Child: 64, message: ... +Child: 65, type: 5, width: 20, height: 20 +Child: 66, type: 5, width: 108, height: 20 +Child: 67, type: 5, width: 20, height: 20 +Child: 68, message: 2,562 gp +Child: 69, message: +Child: 70, type: 0, width: 120, height: 43 +Child: 71, message: Confirm Offer +Child: 72, type: 6, width: 23, height: 29 +Child: 73, type: 6, width: 0, height: 0 +Child: 74, type: 3, width: 130, height: 5 +Child: 75, type: 3, width: 130, height: 5 +Child: 76, type: 3, width: 5, height: 53 +Child: 77, type: 3, width: 5, height: 53 +Child: 78, type: 0, width: 512, height: 334 +Child: 79, type: 3, width: 130, height: 5 +Child: 80, type: 3, width: 130, height: 5 +Child: 81, type: 3, width: 5, height: 53 +Child: 82, type: 3, width: 5, height: 53 +Child: 83, type: 6, width: 0, height: 0 +Child: 84, type: 3, width: 317, height: 83 +Child: 85, type: 3, width: 305, height: 71 +Child: 86, type: 5, width: 32, height: 32 +Child: 87, type: 5, width: 252, height: 32 +Child: 88, type: 5, width: 32, height: 32 +Child: 89, type: 5, width: 32, height: 32 +Child: 90, type: 5, width: 32, height: 32 +Child: 91, type: 5, width: 252, height: 32 +Child: 92, type: 5, width: 32, height: 32 +Child: 93, type: 5, width: 32, height: 32 +Child: 94, message: Jetzt ist Ihr Angebot eingegangen! Sie können jederzeit darauf klicken, um sich die Einzelheiten anzuschauen. Unten wird der Fortschritt mit einem Balken angezeigt. +Child: 95, type: 5, width: 16, height: 16 +Child: 96, type: 6, width: 0, height: 0 +Child: 97, message: Click to continue diff --git a/server508/lists/interfaces/109.txt b/server508/lists/interfaces/109.txt new file mode 100644 index 0000000..aae8b9c --- /dev/null +++ b/server508/lists/interfaces/109.txt @@ -0,0 +1,58 @@ +Child: 0, type: 3, width: 366, height: 215 +Child: 1, type: 5, width: 362, height: 220 +Child: 2, type: 5, width: 7, height: 161 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 161 +Child: 5, type: 5, width: 302, height: 7 +Child: 6, type: 5, width: 302, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 344, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, type: 5, width: 25, height: 25 +Child: 15, message: Grand Exchange - Collection Box +Child: 16, type: 3, width: 106, height: 80 +Child: 17, type: 0, width: 106, height: 80 +Child: 18, type: 0, width: 106, height: 80 +Child: 19, type: 0, width: 106, height: 80 +Child: 20, type: 0, width: 10, height: 10 +Child: 21, type: 3, width: 106, height: 80 +Child: 22, type: 0, width: 106, height: 80 +Child: 23, type: 0, width: 106, height: 80 +Child: 24, type: 0, width: 106, height: 80 +Child: 25, type: 0, width: 10, height: 10 +Child: 26, type: 3, width: 106, height: 80 +Child: 27, type: 0, width: 106, height: 80 +Child: 28, type: 0, width: 106, height: 80 +Child: 29, type: 0, width: 106, height: 80 +Child: 30, type: 0, width: 10, height: 10 +Child: 31, type: 0, width: 106, height: 80 +Child: 32, type: 3, width: 120, height: 80 +Child: 33, type: 5, width: 120, height: 80 +Child: 34, type: 3, width: 106, height: 80 +Child: 35, type: 0, width: 106, height: 80 +Child: 36, type: 0, width: 106, height: 80 +Child: 37, type: 0, width: 106, height: 80 +Child: 38, type: 0, width: 10, height: 10 +Child: 39, type: 0, width: 106, height: 80 +Child: 40, type: 3, width: 140, height: 110 +Child: 41, type: 5, width: 140, height: 110 +Child: 42, type: 3, width: 106, height: 80 +Child: 43, type: 0, width: 106, height: 80 +Child: 44, type: 0, width: 106, height: 80 +Child: 45, type: 0, width: 106, height: 80 +Child: 46, type: 0, width: 10, height: 10 +Child: 47, type: 0, width: 106, height: 80 +Child: 48, type: 3, width: 140, height: 110 +Child: 49, type: 5, width: 140, height: 110 +Child: 50, type: 3, width: 106, height: 80 +Child: 51, type: 0, width: 106, height: 80 +Child: 52, type: 0, width: 106, height: 80 +Child: 53, type: 0, width: 106, height: 80 +Child: 54, type: 0, width: 10, height: 10 +Child: 55, type: 0, width: 106, height: 80 +Child: 56, type: 3, width: 140, height: 110 +Child: 57, type: 5, width: 140, height: 110 diff --git a/server508/lists/interfaces/11.txt b/server508/lists/interfaces/11.txt new file mode 100644 index 0000000..aecaf9d --- /dev/null +++ b/server508/lists/interfaces/11.txt @@ -0,0 +1,66 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 25, height: 30 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 36, height: 36 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 25, height: 30 +Child: 49, type: 5, width: 25, height: 30 +Child: 50, type: 5, width: 25, height: 30 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, message: The Bank of RuneScape - Deposit Box +inventory type: 28 slots, width: 7, height: 4, 61 +Child: 62, type: 5, width: 26, height: 23 +Child: 63, type: 5, width: 26, height: 23 +Child: 64, type: 0, width: 32, height: 32 +Child: 65, type: 5, width: 21, height: 21 diff --git a/server508/lists/interfaces/110.txt b/server508/lists/interfaces/110.txt new file mode 100644 index 0000000..46c98f8 --- /dev/null +++ b/server508/lists/interfaces/110.txt @@ -0,0 +1,93 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 7, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 7 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Grand Exchange +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 5, width: 35, height: 35 +Child: 17, type: 5, width: 474, height: 32 +Child: 18, type: 0, width: 426, height: 90 +Child: 19, type: 5, width: 32, height: 87 +Child: 20, type: 0, width: 426, height: 84 +Child: 21, type: 5, width: 32, height: 81 +Child: 22, message: Buy Offer +Child: 23, type: 5, width: 16, height: 14 +Child: 24, type: 5, width: 157, height: 32 +Child: 25, type: 5, width: 40, height: 36 +Child: 26, type: 5, width: 16, height: 14 +Child: 27, message: N/A +Child: 28, message: Choose an item to exchange +Child: 29, message: Quantity: +Child: 30, type: 5, width: 20, height: 20 +Child: 31, type: 5, width: 113, height: 20 +Child: 32, type: 5, width: 20, height: 20 +Child: 33, message: 1 +Child: 34, message: Price per item: +Child: 35, type: 5, width: 20, height: 20 +Child: 36, type: 5, width: 108, height: 20 +Child: 37, type: 5, width: 20, height: 20 +Child: 38, message: 1 gp +Child: 39, type: 5, width: 16, height: 14 +Child: 40, type: 5, width: 16, height: 14 +Child: 41, type: 5, width: 35, height: 35 +Child: 42, message: 1 +Child: 43, type: 5, width: 35, height: 35 +Child: 44, message: 10 +Child: 45, type: 5, width: 35, height: 35 +Child: 46, message: 100 +Child: 47, type: 5, width: 35, height: 35 +Child: 48, message: 500 +Child: 49, type: 5, width: 35, height: 35 +Child: 50, message: ... +Child: 51, type: 5, width: 16, height: 14 +Child: 52, type: 5, width: 16, height: 14 +Child: 53, type: 5, width: 35, height: 35 +Child: 54, type: 5, width: 16, height: 14 +Child: 55, message: +Child: 56, type: 5, width: 35, height: 35 +Child: 57, type: 5, width: 16, height: 14 +Child: 58, message: +Child: 59, type: 5, width: 35, height: 35 +Child: 60, type: 5, width: 16, height: 14 +Child: 61, message: +Child: 62, type: 5, width: 35, height: 35 +Child: 63, message: ... +Child: 64, type: 5, width: 20, height: 20 +Child: 65, type: 5, width: 108, height: 20 +Child: 66, type: 5, width: 20, height: 20 +Child: 67, message: +Child: 68, type: 0, width: 120, height: 43 +Child: 69, message: Confirm Offer +Child: 70, message: 1 gp +Child: 71, type: 5, width: 16, height: 14 +Child: 72, type: 6, width: 0, height: 0 +Child: 73, type: 0, width: 512, height: 334 +Child: 74, type: 3, width: 158, height: 5 +Child: 75, type: 3, width: 5, height: 94 +Child: 76, type: 3, width: 5, height: 94 +Child: 77, type: 3, width: 158, height: 5 +Child: 78, type: 6, width: 0, height: 0 +Child: 79, type: 3, width: 317, height: 83 +Child: 80, type: 3, width: 305, height: 71 +Child: 81, type: 5, width: 32, height: 32 +Child: 82, type: 5, width: 252, height: 32 +Child: 83, type: 5, width: 32, height: 32 +Child: 84, type: 5, width: 32, height: 32 +Child: 85, type: 5, width: 32, height: 32 +Child: 86, type: 5, width: 252, height: 32 +Child: 87, type: 5, width: 32, height: 32 +Child: 88, type: 5, width: 32, height: 32 +Child: 89, message: Jetzt ist Ihr Angebot eingegangen! Sie können jederzeit darauf klicken, um sich die Einzelheiten anzuschauen. Unten wird der Fortschritt mit einem Balken angezeigt. +Child: 90, type: 5, width: 16, height: 16 +Child: 91, type: 6, width: 0, height: 0 +Child: 92, message: Click to continue diff --git a/server508/lists/interfaces/111.txt b/server508/lists/interfaces/111.txt new file mode 100644 index 0000000..96474b1 --- /dev/null +++ b/server508/lists/interfaces/111.txt @@ -0,0 +1,80 @@ +Child: 0, type: 6, width: 503, height: 306 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 488, height: 36 +Child: 3, type: 5, width: 301, height: 35 +Child: 4, type: 5, width: 39, height: 35 +Child: 5, type: 5, width: 39, height: 35 +Child: 6, message: %1 +Child: 7, type: 0, width: 175, height: 210 +Child: 8, type: 0, width: 175, height: 210 +Child: 9, type: 0, width: 175, height: 210 +Child: 10, type: 0, width: 175, height: 210 +Child: 11, type: 0, width: 175, height: 210 +Child: 12, type: 0, width: 175, height: 210 +Child: 13, type: 0, width: 175, height: 210 +Child: 14, type: 0, width: 175, height: 210 +Child: 15, type: 0, width: 175, height: 210 +Child: 16, type: 0, width: 175, height: 210 +Child: 17, type: 0, width: 175, height: 210 +Child: 18, type: 0, width: 175, height: 210 +Child: 19, type: 0, width: 175, height: 210 +Child: 20, type: 0, width: 175, height: 210 +Child: 21, type: 0, width: 175, height: 210 +Child: 22, type: 0, width: 175, height: 210 +Child: 23, type: 0, width: 175, height: 210 +Child: 24, type: 0, width: 175, height: 210 +Child: 25, type: 0, width: 175, height: 210 +Child: 26, type: 0, width: 175, height: 210 +Child: 27, type: 0, width: 175, height: 210 +Child: 28, type: 0, width: 175, height: 210 +Child: 29, type: 0, width: 45, height: 36 +Child: 30, type: 0, width: 45, height: 36 +Child: 31, message: line1 +Child: 32, message: line2 +Child: 33, message: line3 +Child: 34, message: line4 +Child: 35, message: line5 +Child: 36, message: line6 +Child: 37, message: line7 +Child: 38, message: line8 +Child: 39, message: line9 +Child: 40, message: line10 +Child: 41, message: line11 +Child: 42, message: line12 +Child: 43, message: line13 +Child: 44, message: line14 +Child: 45, message: line15 +Child: 46, message: line16 +Child: 47, message: line17 +Child: 48, message: line18 +Child: 49, message: line19 +Child: 50, message: line20 +Child: 51, message: line21 +Child: 52, message: line22 +Child: 53, type: 5, width: 21, height: 21 +Child: 54, type: 0, width: 512, height: 334 +Child: 55, type: 6, width: 133, height: 194 +Child: 56, type: 6, width: 68, height: 40 +Child: 57, type: 6, width: 68, height: 40 +Child: 58, type: 6, width: 68, height: 40 +Child: 59, type: 6, width: 68, height: 40 +Child: 60, type: 6, width: 68, height: 40 +Child: 61, type: 6, width: 68, height: 40 +Child: 62, type: 6, width: 68, height: 40 +Child: 63, type: 6, width: 68, height: 40 +Child: 64, type: 6, width: 68, height: 40 +Child: 65, type: 6, width: 68, height: 40 +Child: 66, type: 6, width: 68, height: 40 +Child: 67, type: 6, width: 68, height: 40 +Child: 68, type: 6, width: 68, height: 40 +Child: 69, type: 6, width: 68, height: 40 +Child: 70, type: 6, width: 68, height: 40 +Child: 71, type: 6, width: 68, height: 40 +Child: 72, type: 6, width: 68, height: 40 +Child: 73, type: 6, width: 68, height: 40 +Child: 74, type: 6, width: 68, height: 40 +Child: 75, type: 6, width: 68, height: 40 +Child: 76, type: 6, width: 68, height: 40 +Child: 77, type: 6, width: 68, height: 40 +Child: 78, type: 5, width: 39, height: 35 +Child: 79, type: 5, width: 39, height: 35 diff --git a/server508/lists/interfaces/112.txt b/server508/lists/interfaces/112.txt new file mode 100644 index 0000000..1cfee86 --- /dev/null +++ b/server508/lists/interfaces/112.txt @@ -0,0 +1,34 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 512, height: 334 +Child: 2, type: 6, width: 473, height: 307 +Child: 3, type: 6, width: 145, height: 199 +Child: 4, type: 6, width: 522, height: 403 +Child: 5, type: 0, width: 512, height: 94 +Child: 6, type: 0, width: 379, height: 66 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, message: Name +Child: 9, message: Line1 +Child: 10, type: 6, width: 80, height: 110 +Child: 11, message: Line1 +Child: 12, type: 6, width: 595, height: 582 +Child: 13, message: Click to continue +Child: 14, message: Click to continue +Child: 15, type: 0, width: 16391, height: 16391 +Child: 16, type: 0, width: 16391, height: 16391 +Child: 17, type: 5, width: 32, height: 334 +Child: 18, type: 5, width: 462, height: 32 +Child: 19, type: 5, width: 512, height: 32 +Child: 20, type: 5, width: 32, height: 334 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 0, width: 8192, height: 16391 +Child: 26, type: 0, width: 8188, height: 16391 +Child: 27, type: 0, width: 16391, height: 8192 +Child: 28, type: 0, width: 16391, height: 8182 +Child: 29, type: 0, width: 512, height: 334 +Child: 30, type: 5, width: 256, height: 16384 +Child: 31, type: 5, width: 256, height: 16391 +Child: 32, type: 5, width: 16391, height: 167 +Child: 33, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/113.txt b/server508/lists/interfaces/113.txt new file mode 100644 index 0000000..adab398 --- /dev/null +++ b/server508/lists/interfaces/113.txt @@ -0,0 +1,39 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, type: 0, width: 66, height: 28 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 0, width: 512, height: 334 +Child: 9, type: 0, width: 512, height: 27 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 6, width: 224, height: 309 +Child: 12, type: 6, width: 361, height: 300 +Child: 13, type: 6, width: 363, height: 304 +Child: 14, type: 6, width: 339, height: 291 +Child: 15, type: 6, width: 393, height: 324 +Child: 16, type: 6, width: 394, height: 335 +Child: 17, type: 6, width: 377, height: 316 +Child: 18, message: That's it, it all makes sense now! If you were a dwarf, that is... +Child: 19, type: 0, width: 512, height: 334 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 0, width: 16391, height: 16391 +Child: 22, type: 5, width: 32, height: 334 +Child: 23, type: 5, width: 462, height: 32 +Child: 24, type: 5, width: 512, height: 32 +Child: 25, type: 5, width: 32, height: 334 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 0, width: 8192, height: 16391 +Child: 31, type: 0, width: 8188, height: 16391 +Child: 32, type: 0, width: 16391, height: 8192 +Child: 33, type: 0, width: 16391, height: 8182 +Child: 34, type: 0, width: 512, height: 334 +Child: 35, type: 5, width: 256, height: 16384 +Child: 36, type: 5, width: 256, height: 16391 +Child: 37, type: 5, width: 16391, height: 167 +Child: 38, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/114.txt b/server508/lists/interfaces/114.txt new file mode 100644 index 0000000..d2a3432 --- /dev/null +++ b/server508/lists/interfaces/114.txt @@ -0,0 +1,35 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 39, height: 31 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, message: Schematic 1 +Child: 21, message: Schematic 2 +Child: 22, message: Schematic 3 +Child: 23, message: Show/Select +Child: 24, type: 5, width: 17, height: 17 +Child: 25, type: 5, width: 17, height: 16 +Child: 26, type: 5, width: 17, height: 18 +Child: 27, type: 5, width: 18, height: 16 +Child: 28, type: 5, width: 19, height: 16 +Child: 29, type: 5, width: 19, height: 17 +Child: 30, type: 6, width: 41, height: 41 +Child: 31, type: 6, width: 41, height: 41 +Child: 32, type: 6, width: 43, height: 42 +Child: 33, type: 6, width: 41, height: 42 +Child: 34, type: 6, width: 41, height: 42 diff --git a/server508/lists/interfaces/115.txt b/server508/lists/interfaces/115.txt new file mode 100644 index 0000000..d8e8d36 --- /dev/null +++ b/server508/lists/interfaces/115.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 16679, height: 18941 diff --git a/server508/lists/interfaces/116.txt b/server508/lists/interfaces/116.txt new file mode 100644 index 0000000..6f89ec1 --- /dev/null +++ b/server508/lists/interfaces/116.txt @@ -0,0 +1,7 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 463, height: 335 +Child: 2, message: Title +Child: 3, type: 0, width: 348, height: 250 +Child: 4, type: 0, width: 16, height: 250 +Child: 5, message: +Child: 6, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/117.txt b/server508/lists/interfaces/117.txt new file mode 100644 index 0000000..9111190 --- /dev/null +++ b/server508/lists/interfaces/117.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 23879, height: 17126 diff --git a/server508/lists/interfaces/118.txt b/server508/lists/interfaces/118.txt new file mode 100644 index 0000000..2d811ff --- /dev/null +++ b/server508/lists/interfaces/118.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 31975, height: 34835 diff --git a/server508/lists/interfaces/119.txt b/server508/lists/interfaces/119.txt new file mode 100644 index 0000000..4c295db --- /dev/null +++ b/server508/lists/interfaces/119.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 16391, height: 19628 +Child: 1, type: 6, width: 16807, height: 19088 +Child: 2, message: diff --git a/server508/lists/interfaces/12.txt b/server508/lists/interfaces/12.txt new file mode 100644 index 0000000..5d0dab6 --- /dev/null +++ b/server508/lists/interfaces/12.txt @@ -0,0 +1,106 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 0, width: 440, height: 299 +inventory type: 496 slots, width: 8, height: 62, 89 +Child: 90, message: The Bank of RuneScape +Child: 91, type: 0, width: 427, height: 229 +Child: 92, type: 5, width: 85, height: 22 +Child: 93, type: 5, width: 85, height: 22 +Child: 94, message: Withdraw as: +Child: 95, message: Item +Child: 96, message: Rearrange mode: +Child: 97, message: Note +Child: 98, type: 5, width: 85, height: 22 +Child: 99, type: 5, width: 85, height: 22 +Child: 100, message: Insert +Child: 101, message: Swap +Child: 102, type: 5, width: 26, height: 23 +Child: 103, type: 0, width: 32, height: 32 +Child: 104, type: 5, width: 23, height: 23 +Child: 105, type: 5, width: 21, height: 21 diff --git a/server508/lists/interfaces/120.txt b/server508/lists/interfaces/120.txt new file mode 100644 index 0000000..662bc53 --- /dev/null +++ b/server508/lists/interfaces/120.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16807, height: 19088 +Child: 1, message: diff --git a/server508/lists/interfaces/121.txt b/server508/lists/interfaces/121.txt new file mode 100644 index 0000000..4c295db --- /dev/null +++ b/server508/lists/interfaces/121.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 16391, height: 19628 +Child: 1, type: 6, width: 16807, height: 19088 +Child: 2, message: diff --git a/server508/lists/interfaces/122.txt b/server508/lists/interfaces/122.txt new file mode 100644 index 0000000..fb8f914 --- /dev/null +++ b/server508/lists/interfaces/122.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16551, height: 18990 +Child: 1, message: diff --git a/server508/lists/interfaces/123.txt b/server508/lists/interfaces/123.txt new file mode 100644 index 0000000..5ee9845 --- /dev/null +++ b/server508/lists/interfaces/123.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 23, height: 23 +Child: 2, message: Certificate of Advanced Healing +Child: 3, message: From PoxStead College. +Child: 4, message: Signed Dr Foster-MMD, PRD
Head Of
Magical Healing. +Child: 5, type: 5, width: 23, height: 23 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/124.txt b/server508/lists/interfaces/124.txt new file mode 100644 index 0000000..1ad58d0 --- /dev/null +++ b/server508/lists/interfaces/124.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 28 +Child: 1, message: List of Fairy Queen's Symptoms. +Child: 2, type: 5, width: 23, height: 23 +Child: 3, message: Extremely weak
Slow discorporation of ethereal body
Drifting in and out of coma
Shallow breath
Fading magical energy
High fever +Child: 4, type: 5, width: 23, height: 23 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/125.txt b/server508/lists/interfaces/125.txt new file mode 100644 index 0000000..381edc8 --- /dev/null +++ b/server508/lists/interfaces/125.txt @@ -0,0 +1,42 @@ +Child: 0, type: 3, width: 332, height: 253 +Child: 1, type: 5, width: 327, height: 248 +Child: 2, type: 5, width: 39, height: 202 +Child: 3, type: 5, width: 27, height: 207 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 286, height: 22 +Child: 6, type: 5, width: 285, height: 37 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 316, height: 22 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, message: Amazing Farming Equipment Store +Child: 14, message: Farming rake +Child: 15, message: +Child: 16, message: Seed dibber +Child: 17, message: +Child: 18, message: All-purpose spade +Child: 19, message: +Child: 20, message: Secateurs +Child: 21, message: +Child: 22, message: Watering Can +Child: 23, message: +Child: 24, message: Gardening trowel +Child: 25, message: +Child: 26, message: Empty buckets +Child: 27, message: +Child: 28, message: Normal Compost +Child: 29, message: +Child: 30, message: Supercompost +Child: 31, message: +Child: 32, type: 5, width: 26, height: 23 +Child: 33, type: 5, width: 34, height: 32 +Child: 34, type: 5, width: 34, height: 32 +Child: 35, type: 5, width: 34, height: 32 +Child: 36, type: 5, width: 34, height: 32 +Child: 37, type: 5, width: 34, height: 32 +Child: 38, type: 5, width: 34, height: 32 +Child: 39, type: 5, width: 34, height: 32 +Child: 40, type: 5, width: 34, height: 32 +Child: 41, type: 5, width: 34, height: 32 diff --git a/server508/lists/interfaces/126.txt b/server508/lists/interfaces/126.txt new file mode 100644 index 0000000..b3f1989 --- /dev/null +++ b/server508/lists/interfaces/126.txt @@ -0,0 +1,27 @@ +Child: 0, message: Rake +Child: 1, message: +Child: 2, message: Seed dibber +Child: 3, message: +Child: 4, message: Spade +Child: 5, message: +Child: 6, message: Secateurs +Child: 7, message: +Child: 8, message: Watering Can +Child: 9, message: +Child: 10, message: Trowel +Child: 11, message: +Child: 12, message: Buckets +Child: 13, message: +Child: 14, message: Compost +Child: 15, message: +Child: 16, message: Supercompost +Child: 17, message: +Child: 18, type: 5, width: 36, height: 32 +Child: 19, type: 5, width: 36, height: 32 +Child: 20, type: 5, width: 36, height: 32 +Child: 21, type: 5, width: 36, height: 32 +Child: 22, type: 5, width: 36, height: 32 +Child: 23, type: 5, width: 36, height: 32 +Child: 24, type: 5, width: 36, height: 32 +Child: 25, type: 5, width: 36, height: 32 +Child: 26, type: 5, width: 36, height: 32 diff --git a/server508/lists/interfaces/127.txt b/server508/lists/interfaces/127.txt new file mode 100644 index 0000000..0d52026 --- /dev/null +++ b/server508/lists/interfaces/127.txt @@ -0,0 +1,24 @@ +Child: 0, type: 3, width: 16391, height: 0 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 6, width: 82, height: 77 +Child: 3, type: 6, width: 267, height: 163 +Child: 4, type: 6, width: 82, height: 77 +Child: 5, type: 6, width: 64, height: 58 +Child: 6, type: 6, width: 44, height: 41 +Child: 7, type: 6, width: 32, height: 30 +Child: 8, type: 6, width: 28, height: 26 +Child: 9, type: 6, width: 28, height: 26 +Child: 10, type: 6, width: 30, height: 46 +Child: 11, type: 6, width: 43, height: 62 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, message: *************** +Child: 17, message: ********** +Child: 18, message: ************************ +Child: 19, message: Remove this key +Child: 20, message: +Child: 21, type: 6, width: 54, height: 72 +Child: 22, type: 6, width: 43, height: 47 +Child: 23, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/128.txt b/server508/lists/interfaces/128.txt new file mode 100644 index 0000000..d18ed14 --- /dev/null +++ b/server508/lists/interfaces/128.txt @@ -0,0 +1,40 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 46, height: 50 +Child: 2, type: 6, width: 50, height: 35 +Child: 3, type: 6, width: 73, height: 60 +Child: 4, type: 6, width: 59, height: 44 +Child: 5, type: 6, width: 62, height: 76 +Child: 6, type: 6, width: 68, height: 47 +Child: 7, type: 6, width: 39, height: 40 +Child: 8, type: 6, width: 62, height: 41 +Child: 9, type: 6, width: 43, height: 31 +Child: 10, type: 6, width: 60, height: 39 +Child: 11, type: 6, width: 48, height: 62 +Child: 12, type: 6, width: 65, height: 48 +Child: 13, type: 6, width: 41, height: 31 +Child: 14, type: 6, width: 51, height: 39 +Child: 15, type: 6, width: 51, height: 63 +Child: 16, type: 6, width: 74, height: 52 +Child: 17, type: 6, width: 238, height: 236 +Child: 18, type: 6, width: 378, height: 304 +Child: 19, type: 6, width: 19, height: 19 +Child: 20, type: 6, width: 19, height: 19 +Child: 21, type: 6, width: 19, height: 19 +Child: 22, type: 6, width: 19, height: 19 +Child: 23, type: 6, width: 19, height: 19 +Child: 24, type: 6, width: 19, height: 19 +Child: 25, type: 6, width: 19, height: 19 +Child: 26, type: 6, width: 19, height: 19 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 19, height: 19 +Child: 36, type: 6, width: 19, height: 19 +Child: 37, message: x%1 +Child: 38, message: x%1 +Child: 39, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/129.txt b/server508/lists/interfaces/129.txt new file mode 100644 index 0000000..b2359bc --- /dev/null +++ b/server508/lists/interfaces/129.txt @@ -0,0 +1,56 @@ +Child: 0, type: 6, width: 47, height: 50 +Child: 1, type: 6, width: 62, height: 42 +Child: 2, type: 6, width: 46, height: 50 +Child: 3, type: 6, width: 52, height: 38 +Child: 4, type: 6, width: 55, height: 59 +Child: 5, type: 6, width: 65, height: 46 +Child: 6, type: 6, width: 46, height: 51 +Child: 7, type: 6, width: 81, height: 52 +Child: 8, type: 6, width: 49, height: 27 +Child: 9, type: 6, width: 56, height: 38 +Child: 10, type: 6, width: 77, height: 63 +Child: 11, type: 6, width: 74, height: 53 +Child: 12, type: 6, width: 38, height: 25 +Child: 13, type: 6, width: 41, height: 31 +Child: 14, type: 6, width: 42, height: 53 +Child: 15, type: 6, width: 38, height: 33 +Child: 16, type: 6, width: 41, height: 45 +Child: 17, type: 6, width: 33, height: 33 +Child: 18, type: 6, width: 36, height: 31 +Child: 19, type: 6, width: 54, height: 35 +Child: 20, type: 6, width: 50, height: 67 +Child: 21, type: 6, width: 72, height: 52 +Child: 22, type: 6, width: 46, height: 54 +Child: 23, type: 6, width: 72, height: 42 +Child: 24, type: 6, width: 265, height: 236 +Child: 25, type: 6, width: 378, height: 304 +Child: 26, type: 6, width: 20, height: 19 +Child: 27, type: 6, width: 17, height: 20 +Child: 28, type: 6, width: 19, height: 20 +Child: 29, type: 6, width: 15, height: 20 +Child: 30, type: 6, width: 16, height: 20 +Child: 31, type: 6, width: 19, height: 21 +Child: 32, type: 6, width: 13, height: 19 +Child: 33, type: 6, width: 17, height: 21 +Child: 34, type: 6, width: 15, height: 20 +Child: 35, type: 6, width: 16, height: 20 +Child: 36, type: 6, width: 18, height: 21 +Child: 37, type: 6, width: 17, height: 20 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 6, width: 19, height: 19 +Child: 51, type: 6, width: 19, height: 19 +Child: 52, message: x%1 +Child: 53, message: x%1 +Child: 54, type: 5, width: 23, height: 23 +Child: 55, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/13.txt b/server508/lists/interfaces/13.txt new file mode 100644 index 0000000..01e7949 --- /dev/null +++ b/server508/lists/interfaces/13.txt @@ -0,0 +1,52 @@ +Child: 0, type: 5, width: 488, height: 304 +Child: 1, type: 5, width: 64, height: 64 +Child: 2, type: 5, width: 64, height: 64 +Child: 3, type: 5, width: 64, height: 64 +Child: 4, type: 5, width: 64, height: 64 +Child: 5, type: 5, width: 64, height: 64 +Child: 6, type: 5, width: 64, height: 64 +Child: 7, type: 5, width: 64, height: 64 +Child: 8, type: 5, width: 64, height: 64 +Child: 9, type: 5, width: 64, height: 64 +Child: 10, type: 5, width: 64, height: 64 +Child: 11, message: 0 +Child: 12, message: 0 +Child: 13, message: 0 +Child: 14, message: 0 +Child: 15, message: 0 +Child: 16, message: 0 +Child: 17, message: 0 +Child: 18, message: 0 +Child: 19, message: 0 +Child: 20, message: 0 +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, message: +Child: 25, type: 0, width: 146, height: 48 +Child: 26, type: 5, width: 104, height: 104 +Child: 27, type: 5, width: 104, height: 104 +Child: 28, message: Please enter your FOUR DIGIT PIN using the buttons below. +Child: 29, message: +Child: 30, message: Exit +Child: 31, message: YOUR PIN WILL BE DELETED IN X DAYS +Child: 32, message: +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 246 +Child: 38, type: 5, width: 32, height: 244 +Child: 39, type: 5, width: 428, height: 32 +Child: 40, type: 5, width: 478, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 5, width: 428, height: 32 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, type: 5, width: 96, height: 32 +Child: 48, type: 5, width: 96, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 6, width: 102, height: 99 +Child: 51, type: 6, width: 75, height: 74 diff --git a/server508/lists/interfaces/130.txt b/server508/lists/interfaces/130.txt new file mode 100644 index 0000000..8c18534 --- /dev/null +++ b/server508/lists/interfaces/130.txt @@ -0,0 +1,84 @@ +Child: 0, type: 6, width: 45, height: 45 +Child: 1, type: 6, width: 59, height: 42 +Child: 2, type: 6, width: 48, height: 55 +Child: 3, type: 6, width: 29, height: 21 +Child: 4, type: 6, width: 52, height: 55 +Child: 5, type: 6, width: 32, height: 24 +Child: 6, type: 6, width: 42, height: 45 +Child: 7, type: 6, width: 28, height: 18 +Child: 8, type: 6, width: 43, height: 43 +Child: 9, type: 6, width: 46, height: 37 +Child: 10, type: 6, width: 37, height: 37 +Child: 11, type: 6, width: 48, height: 36 +Child: 12, type: 6, width: 48, height: 60 +Child: 13, type: 6, width: 34, height: 25 +Child: 14, type: 6, width: 26, height: 18 +Child: 15, type: 6, width: 51, height: 34 +Child: 16, type: 6, width: 45, height: 49 +Child: 17, type: 6, width: 28, height: 23 +Child: 18, type: 6, width: 33, height: 22 +Child: 19, type: 6, width: 61, height: 47 +Child: 20, type: 6, width: 35, height: 35 +Child: 21, type: 6, width: 61, height: 40 +Child: 22, type: 6, width: 42, height: 26 +Child: 23, type: 6, width: 108, height: 57 +Child: 24, type: 6, width: 38, height: 30 +Child: 25, type: 6, width: 47, height: 39 +Child: 26, type: 6, width: 30, height: 19 +Child: 27, type: 6, width: 52, height: 33 +Child: 28, type: 6, width: 33, height: 23 +Child: 29, type: 6, width: 52, height: 34 +Child: 30, type: 6, width: 49, height: 67 +Child: 31, type: 6, width: 36, height: 31 +Child: 32, type: 6, width: 37, height: 39 +Child: 33, type: 6, width: 67, height: 43 +Child: 34, type: 6, width: 45, height: 53 +Child: 35, type: 6, width: 39, height: 30 +Child: 36, type: 6, width: 33, height: 35 +Child: 37, type: 6, width: 61, height: 47 +Child: 38, type: 6, width: 371, height: 236 +Child: 39, type: 6, width: 426, height: 304 +Child: 40, type: 6, width: 21, height: 19 +Child: 41, type: 6, width: 19, height: 20 +Child: 42, type: 6, width: 21, height: 20 +Child: 43, type: 6, width: 16, height: 20 +Child: 44, type: 6, width: 19, height: 20 +Child: 45, type: 6, width: 16, height: 20 +Child: 46, type: 6, width: 18, height: 21 +Child: 47, type: 6, width: 13, height: 19 +Child: 48, type: 6, width: 15, height: 20 +Child: 49, type: 6, width: 15, height: 21 +Child: 50, type: 6, width: 16, height: 20 +Child: 51, type: 6, width: 16, height: 19 +Child: 52, type: 6, width: 18, height: 21 +Child: 53, type: 6, width: 16, height: 19 +Child: 54, type: 6, width: 18, height: 20 +Child: 55, type: 6, width: 21, height: 21 +Child: 56, type: 6, width: 18, height: 20 +Child: 57, type: 6, width: 21, height: 20 +Child: 58, type: 6, width: 22, height: 21 +Child: 59, type: 6, width: 32, height: 32 +Child: 60, type: 6, width: 32, height: 32 +Child: 61, type: 6, width: 32, height: 32 +Child: 62, type: 6, width: 32, height: 32 +Child: 63, type: 6, width: 32, height: 32 +Child: 64, type: 6, width: 32, height: 32 +Child: 65, type: 6, width: 32, height: 32 +Child: 66, type: 6, width: 27, height: 24 +Child: 67, type: 6, width: 32, height: 32 +Child: 68, type: 6, width: 32, height: 32 +Child: 69, type: 6, width: 28, height: 28 +Child: 70, type: 6, width: 32, height: 32 +Child: 71, type: 6, width: 32, height: 32 +Child: 72, type: 6, width: 26, height: 26 +Child: 73, type: 6, width: 26, height: 26 +Child: 74, type: 6, width: 28, height: 28 +Child: 75, type: 6, width: 27, height: 27 +Child: 76, type: 6, width: 29, height: 29 +Child: 77, type: 6, width: 32, height: 32 +Child: 78, type: 6, width: 19, height: 19 +Child: 79, type: 6, width: 19, height: 19 +Child: 80, message: x%1 +Child: 81, message: x%1 +Child: 82, type: 5, width: 23, height: 23 +Child: 83, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/131.txt b/server508/lists/interfaces/131.txt new file mode 100644 index 0000000..c054506 --- /dev/null +++ b/server508/lists/interfaces/131.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 50, height: 50 +Child: 1, message: Line1 +Child: 2, type: 6, width: 50, height: 50 +Child: 3, message: Click here to continue diff --git a/server508/lists/interfaces/132.txt b/server508/lists/interfaces/132.txt new file mode 100644 index 0000000..d92f359 --- /dev/null +++ b/server508/lists/interfaces/132.txt @@ -0,0 +1,49 @@ +Child: 0, type: 6, width: 55, height: 81 +Child: 1, message: lj1 +Child: 2, message: lj2 +Child: 3, message: lj3 +Child: 4, message: lj4 +Child: 5, message: lj5 +Child: 6, message: lj6 +Child: 7, message: lj7 +Child: 8, message: lj8 +Child: 9, message: lj9 +Child: 10, message: lj10 +Child: 11, message: lj11 +Child: 12, type: 0, width: 340, height: 23 +Child: 13, message: >>> +Child: 14, message: <<< +Child: 15, type: 0, width: 340, height: 23 +Child: 16, message: >>> +Child: 17, message: <<< +Child: 18, type: 0, width: 340, height: 23 +Child: 19, message: >>> +Child: 20, message: <<< +Child: 21, type: 0, width: 340, height: 23 +Child: 22, message: >>> +Child: 23, message: <<< +Child: 24, type: 0, width: 340, height: 23 +Child: 25, message: >>> +Child: 26, message: <<< +Child: 27, type: 0, width: 340, height: 23 +Child: 28, message: >>> +Child: 29, message: <<< +Child: 30, type: 0, width: 340, height: 23 +Child: 31, message: >>> +Child: 32, message: <<< +Child: 33, type: 0, width: 340, height: 23 +Child: 34, message: >>> +Child: 35, message: <<< +Child: 36, type: 0, width: 340, height: 23 +Child: 37, message: >>> +Child: 38, message: <<< +Child: 39, type: 0, width: 340, height: 23 +Child: 40, message: >>> +Child: 41, message: <<< +Child: 42, type: 0, width: 340, height: 23 +Child: 43, message: >>> +Child: 44, message: <<< +Child: 45, message: Items I need to get for King Roald's garden: +Child: 46, type: 5, width: 23, height: 23 +Child: 47, type: 5, width: 23, height: 23 +Child: 48, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/133.txt b/server508/lists/interfaces/133.txt new file mode 100644 index 0000000..1c76b37 --- /dev/null +++ b/server508/lists/interfaces/133.txt @@ -0,0 +1,8 @@ +Child: 0, message: +Child: 1, message: +Child: 2, message: +Child: 3, message: [A] +Child: 4, message: [B] +Child: 5, message: [C] +Child: 6, message: +Child: 7, message: diff --git a/server508/lists/interfaces/134.txt b/server508/lists/interfaces/134.txt new file mode 100644 index 0000000..4bc73f8 --- /dev/null +++ b/server508/lists/interfaces/134.txt @@ -0,0 +1,74 @@ +Child: 0, type: 3, width: 520, height: 480 +Child: 1, type: 6, width: 509, height: 311 +Child: 2, message: Choose the stat you wish to be advanced! +Child: 3, type: 5, width: 25, height: 25 +Child: 4, type: 5, width: 25, height: 25 +Child: 5, type: 5, width: 25, height: 25 +Child: 6, type: 5, width: 25, height: 25 +Child: 7, type: 5, width: 25, height: 25 +Child: 8, type: 5, width: 25, height: 25 +Child: 9, type: 5, width: 25, height: 25 +Child: 10, type: 5, width: 25, height: 25 +Child: 11, type: 5, width: 25, height: 25 +Child: 12, type: 5, width: 25, height: 25 +Child: 13, type: 5, width: 25, height: 25 +Child: 14, type: 5, width: 25, height: 25 +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 5, width: 25, height: 25 +Child: 17, type: 5, width: 25, height: 25 +Child: 18, type: 5, width: 25, height: 25 +Child: 19, type: 5, width: 25, height: 25 +Child: 20, type: 5, width: 25, height: 25 +Child: 21, type: 5, width: 25, height: 25 +Child: 22, type: 5, width: 25, height: 25 +Child: 23, type: 5, width: 25, height: 25 +Child: 24, type: 5, width: 25, height: 25 +Child: 25, type: 5, width: 25, height: 25 +Child: 26, type: 5, width: 25, height: 25 +Child: 27, message: Confirm +Child: 28, type: 5, width: 25, height: 25 +Child: 29, type: 5, width: 25, height: 25 +Child: 30, type: 5, width: 25, height: 25 +Child: 31, type: 5, width: 25, height: 25 +Child: 32, type: 5, width: 25, height: 25 +Child: 33, type: 5, width: 25, height: 25 +Child: 34, type: 5, width: 25, height: 25 +Child: 35, type: 5, width: 25, height: 25 +Child: 36, type: 5, width: 25, height: 25 +Child: 37, type: 5, width: 25, height: 25 +Child: 38, type: 5, width: 25, height: 25 +Child: 39, type: 5, width: 25, height: 25 +Child: 40, type: 5, width: 25, height: 25 +Child: 41, type: 5, width: 25, height: 25 +Child: 42, type: 5, width: 25, height: 25 +Child: 43, type: 5, width: 25, height: 25 +Child: 44, type: 5, width: 25, height: 25 +Child: 45, type: 5, width: 25, height: 25 +Child: 46, type: 5, width: 25, height: 25 +Child: 47, type: 5, width: 25, height: 25 +Child: 48, type: 5, width: 25, height: 25 +Child: 49, type: 5, width: 25, height: 25 +Child: 50, type: 5, width: 25, height: 25 +Child: 51, type: 5, width: 25, height: 25 +Child: 52, type: 5, width: 26, height: 23 +Child: 53, type: 0, width: 512, height: 334 +Child: 54, type: 0, width: 512, height: 334 +Child: 55, type: 0, width: 16391, height: 16391 +Child: 56, type: 0, width: 16391, height: 16391 +Child: 57, type: 5, width: 32, height: 334 +Child: 58, type: 5, width: 462, height: 32 +Child: 59, type: 5, width: 512, height: 32 +Child: 60, type: 5, width: 32, height: 334 +Child: 61, type: 5, width: 32, height: 32 +Child: 62, type: 5, width: 32, height: 32 +Child: 63, type: 5, width: 32, height: 32 +Child: 64, type: 5, width: 32, height: 32 +Child: 65, type: 0, width: 8192, height: 16391 +Child: 66, type: 0, width: 8188, height: 16391 +Child: 67, type: 0, width: 16391, height: 8192 +Child: 68, type: 0, width: 16391, height: 8182 +Child: 69, type: 0, width: 512, height: 334 +Child: 70, type: 5, width: 256, height: 16384 +Child: 71, type: 5, width: 256, height: 16391 +Child: 72, type: 5, width: 16391, height: 167 +Child: 73, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/135.txt b/server508/lists/interfaces/135.txt new file mode 100644 index 0000000..d099178 --- /dev/null +++ b/server508/lists/interfaces/135.txt @@ -0,0 +1,18 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 6, width: 208, height: 111 +Child: 2, message: To the NORTH +Child: 3, message: To the NORTH +Child: 4, type: 6, width: 147, height: 192 +Child: 5, type: 6, width: 208, height: 111 +Child: 6, message: To the EAST +Child: 7, message: To the SOUTH +Child: 8, message: To the EAST +Child: 9, message: To the SOUTH +Child: 10, type: 6, width: 147, height: 190 +Child: 11, message: To the WEST +Child: 12, message: To the WEST +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 6, width: 145, height: 148 +Child: 15, type: 0, width: 32, height: 32 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/136.txt b/server508/lists/interfaces/136.txt new file mode 100644 index 0000000..be229c8 --- /dev/null +++ b/server508/lists/interfaces/136.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: Both +Child: 2, message: Argh! +Child: 3, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/137.txt b/server508/lists/interfaces/137.txt new file mode 100644 index 0000000..3d86e90 --- /dev/null +++ b/server508/lists/interfaces/137.txt @@ -0,0 +1,158 @@ +Child: 0, type: 0, width: 506, height: 130 +Child: 1, type: 0, width: 466, height: 14 +Child: 2, type: 0, width: 466, height: 14 +Child: 3, message: +Child: 4, type: 5, width: 16, height: 16 +Child: 5, type: 5, width: 16, height: 16 +Child: 6, type: 3, width: 506, height: 2 +Child: 7, type: 0, width: 502, height: 112 +Child: 8, message: 0 +Child: 9, type: 0, width: 502, height: 112 +Child: 10, message: Please select an option from the list below: +Child: 11, type: 0, width: 16, height: 98 +Child: 12, type: 0, width: 486, height: 98 +Child: 13, type: 0, width: 502, height: 112 +Child: 14, message: Please enter a search term and select an object from the list: +Child: 15, type: 0, width: 16, height: 98 +Child: 16, type: 0, width: 486, height: 98 +Child: 17, type: 0, width: 502, height: 112 +Child: 18, type: 0, width: 502, height: 112 +Child: 19, type: 0, width: 502, height: 112 +Child: 20, type: 0, width: 502, height: 112 +Child: 21, type: 0, width: 502, height: 112 +Child: 22, type: 3, width: 2, height: 112 +Child: 23, type: 0, width: 502, height: 112 +Child: 24, type: 0, width: 502, height: 112 +Child: 25, type: 3, width: 2, height: 112 +Child: 26, type: 0, width: 502, height: 112 +Child: 27, type: 0, width: 502, height: 112 +Child: 28, type: 3, width: 2, height: 112 +Child: 29, type: 0, width: 502, height: 112 +Child: 30, type: 0, width: 502, height: 112 +Child: 31, type: 3, width: 2, height: 112 +Child: 32, type: 0, width: 502, height: 112 +Child: 33, type: 0, width: 502, height: 112 +Child: 34, type: 3, width: 2, height: 112 +Child: 35, type: 0, width: 502, height: 112 +Child: 36, type: 0, width: 502, height: 112 +Child: 37, type: 3, width: 2, height: 112 +Child: 38, type: 0, width: 502, height: 112 +Child: 39, type: 0, width: 502, height: 112 +Child: 40, type: 3, width: 2, height: 112 +Child: 41, type: 0, width: 502, height: 112 +Child: 42, type: 0, width: 502, height: 112 +Child: 43, type: 3, width: 2, height: 112 +Child: 44, type: 0, width: 502, height: 112 +Child: 45, type: 0, width: 502, height: 112 +Child: 46, type: 3, width: 2, height: 112 +Child: 47, type: 0, width: 502, height: 112 +Child: 48, type: 0, width: 502, height: 112 +Child: 49, type: 3, width: 2, height: 112 +Child: 50, type: 0, width: 506, height: 130 +Child: 51, message: +Child: 52, type: 0, width: 501, height: 17 +Child: 53, type: 9, width: 504, height: 0 +Child: 54, type: 5, width: 504, height: 1 +Child: 55, type: 5, width: 504, height: 1 +Child: 56, type: 0, width: 488, height: 111 +Child: 57, type: 0, width: 16, height: 113 +Child: 58, message: +Child: 59, message: +Child: 60, message: +Child: 61, message: +Child: 62, message: +Child: 63, message: +Child: 64, message: +Child: 65, message: +Child: 66, message: +Child: 67, message: +Child: 68, message: +Child: 69, message: +Child: 70, message: +Child: 71, message: +Child: 72, message: +Child: 73, message: +Child: 74, message: +Child: 75, message: +Child: 76, message: +Child: 77, message: +Child: 78, message: +Child: 79, message: +Child: 80, message: +Child: 81, message: +Child: 82, message: +Child: 83, message: +Child: 84, message: +Child: 85, message: +Child: 86, message: +Child: 87, message: +Child: 88, message: +Child: 89, message: +Child: 90, message: +Child: 91, message: +Child: 92, message: +Child: 93, message: +Child: 94, message: +Child: 95, message: +Child: 96, message: +Child: 97, message: +Child: 98, message: +Child: 99, message: +Child: 100, message: +Child: 101, message: +Child: 102, message: +Child: 103, message: +Child: 104, message: +Child: 105, message: +Child: 106, message: +Child: 107, message: +Child: 108, message: +Child: 109, message: +Child: 110, message: +Child: 111, message: +Child: 112, message: +Child: 113, message: +Child: 114, message: +Child: 115, message: +Child: 116, message: +Child: 117, message: +Child: 118, message: +Child: 119, message: +Child: 120, message: +Child: 121, message: +Child: 122, message: +Child: 123, message: +Child: 124, message: +Child: 125, message: +Child: 126, message: +Child: 127, message: +Child: 128, message: +Child: 129, message: +Child: 130, message: +Child: 131, message: +Child: 132, message: +Child: 133, message: +Child: 134, message: +Child: 135, message: +Child: 136, message: +Child: 137, message: +Child: 138, message: +Child: 139, message: +Child: 140, message: +Child: 141, message: +Child: 142, message: +Child: 143, message: +Child: 144, message: +Child: 145, message: +Child: 146, message: +Child: 147, message: +Child: 148, message: +Child: 149, message: +Child: 150, message: +Child: 151, message: +Child: 152, message: +Child: 153, message: +Child: 154, message: +Child: 155, message: +Child: 156, message: +Child: 157, message: diff --git a/server508/lists/interfaces/138.txt b/server508/lists/interfaces/138.txt new file mode 100644 index 0000000..bbab3e9 --- /dev/null +++ b/server508/lists/interfaces/138.txt @@ -0,0 +1,46 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 32, height: 32 +Child: 2, type: 6, width: 73, height: 216 +Child: 3, type: 6, width: 164, height: 315 +Child: 4, type: 6, width: 319, height: 63 +Child: 5, type: 6, width: 207, height: 73 +Child: 6, type: 6, width: 206, height: 57 +Child: 7, type: 6, width: 302, height: 117 +Child: 8, type: 6, width: 178, height: 210 +Child: 9, type: 6, width: 166, height: 206 +Child: 10, type: 6, width: 507, height: 319 +Child: 11, type: 6, width: 143, height: 110 +Child: 12, type: 6, width: 94, height: 80 +Child: 13, type: 6, width: 64, height: 49 +Child: 14, type: 6, width: 113, height: 137 +Child: 15, type: 6, width: 74, height: 96 +Child: 16, type: 6, width: 101, height: 91 +Child: 17, message: Ta Quir Priw +Child: 18, message: Lemanto Andra +Child: 19, message: Sindarpos +Child: 20, message: Gandius +Child: 21, message: Kar-Hewo +Child: 22, message: Lemantolly +Child: 23, message: Undri +Child: 24, type: 6, width: 59, height: 81 +Child: 25, type: 6, width: 101, height: 106 +Child: 26, type: 6, width: 139, height: 56 +Child: 27, type: 6, width: 102, height: 65 +Child: 28, type: 6, width: 127, height: 61 +Child: 29, type: 6, width: 90, height: 100 +Child: 30, type: 6, width: 315, height: 117 +Child: 31, type: 6, width: 169, height: 292 +Child: 32, type: 6, width: 89, height: 255 +Child: 33, type: 5, width: 26, height: 23 +Child: 34, type: 0, width: 32, height: 32 +Child: 35, type: 0, width: 512, height: 334 +Child: 36, type: 0, width: 512, height: 334 +Child: 37, type: 0, width: 512, height: 334 +Child: 38, type: 0, width: 512, height: 334 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 0, width: 512, height: 334 +Child: 41, type: 0, width: 512, height: 334 +Child: 42, type: 0, width: 512, height: 334 +Child: 43, type: 0, width: 512, height: 334 +Child: 44, type: 0, width: 512, height: 334 +Child: 45, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/139.txt b/server508/lists/interfaces/139.txt new file mode 100644 index 0000000..4a19d40 --- /dev/null +++ b/server508/lists/interfaces/139.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 111, height: 60 +Child: 2, message: Gnomeball +Child: 3, message: Score +Child: 4, message: diff --git a/server508/lists/interfaces/14.txt b/server508/lists/interfaces/14.txt new file mode 100644 index 0000000..dcce1fd --- /dev/null +++ b/server508/lists/interfaces/14.txt @@ -0,0 +1,92 @@ +Child: 0, type: 3, width: 481, height: 314 +Child: 1, type: 5, width: 464, height: 24 +Child: 2, type: 5, width: 464, height: 26 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 264 +Child: 9, type: 5, width: 32, height: 264 +Child: 10, type: 5, width: 428, height: 32 +Child: 11, type: 5, width: 430, height: 32 +Child: 12, type: 5, width: 478, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 114, height: 32 +Child: 20, type: 5, width: 114, height: 32 +Child: 21, type: 5, width: 32, height: 212 +Child: 22, type: 5, width: 32, height: 211 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 66 +Child: 28, type: 5, width: 32, height: 62 +Child: 29, type: 5, width: 123, height: 32 +Child: 30, type: 5, width: 123, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 204, height: 32 +Child: 37, type: 5, width: 204, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 3, width: 164, height: 264 +Child: 40, message: Bank PIN Settings +Child: 41, message: Messages +Child: 42, message: +Child: 43, message: +Child: 44, message: +Child: 45, message: +Child: 46, message: +Child: 47, message: +Child: 48, message: +Child: 49, message: +Child: 50, message: +Child: 51, message: +Child: 52, message: +Child: 53, message: +Child: 54, message: +Child: 55, message: +Child: 56, message: +Child: 57, message: +Child: 58, type: 0, width: 252, height: 63 +Child: 59, type: 5, width: 255, height: 104 +Child: 60, message: Set a PIN +Child: 61, message: Change your recovery delay +Child: 62, message: Change your PIN +Child: 63, message: Delete your PIN +Child: 64, message: Change your recovery delay +Child: 65, message: Cancel the PIN that's pending +Child: 66, type: 5, width: 176, height: 128 +Child: 67, type: 0, width: 173, height: 113 +Child: 68, message: Your Bank PIN status: +Child: 69, message: Unknown +Child: 70, message: Recovery delay: +Child: 71, message: X days +Child: 72, type: 3, width: 476, height: 312 +Child: 73, message: Do you really wish to do that? +Child: 74, type: 5, width: 32, height: 32 +Child: 75, type: 5, width: 32, height: 32 +Child: 76, type: 5, width: 32, height: 32 +Child: 77, type: 5, width: 32, height: 32 +Child: 78, type: 5, width: 411, height: 32 +Child: 79, type: 5, width: 412, height: 32 +Child: 80, type: 5, width: 32, height: 32 +Child: 81, type: 5, width: 32, height: 32 +Child: 82, type: 5, width: 32, height: 32 +Child: 83, type: 5, width: 32, height: 32 +Child: 84, type: 5, width: 411, height: 32 +Child: 85, type: 5, width: 411, height: 32 +Child: 86, message: Use the buttons below to change your PIN settings +Child: 87, type: 0, width: 512, height: 334 +Child: 88, type: 0, width: 477, height: 26 +Child: 89, message: Yes, I really want to do that. +Child: 90, type: 0, width: 477, height: 26 +Child: 91, message: No, forget I asked. diff --git a/server508/lists/interfaces/140.txt b/server508/lists/interfaces/140.txt new file mode 100644 index 0000000..788f54c --- /dev/null +++ b/server508/lists/interfaces/140.txt @@ -0,0 +1,7 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, message: +Child: 3, message: +Child: 4, message: Select an Option +Child: 5, type: 6, width: 60, height: 55 +Child: 6, type: 6, width: 60, height: 55 diff --git a/server508/lists/interfaces/141.txt b/server508/lists/interfaces/141.txt new file mode 100644 index 0000000..4705172 --- /dev/null +++ b/server508/lists/interfaces/141.txt @@ -0,0 +1,33 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 920, height: 1038 +Child: 2, type: 3, width: 252, height: 247 +Child: 3, type: 6, width: 70, height: 69 +Child: 4, type: 6, width: 70, height: 69 +Child: 5, type: 6, width: 70, height: 69 +Child: 6, type: 6, width: 70, height: 69 +Child: 7, type: 6, width: 70, height: 69 +Child: 8, type: 6, width: 70, height: 69 +Child: 9, type: 6, width: 70, height: 69 +Child: 10, type: 6, width: 70, height: 69 +Child: 11, type: 6, width: 70, height: 69 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 0, width: 512, height: 334 +Child: 14, type: 0, width: 16391, height: 16391 +Child: 15, type: 0, width: 16391, height: 16391 +Child: 16, type: 5, width: 32, height: 334 +Child: 17, type: 5, width: 462, height: 32 +Child: 18, type: 5, width: 512, height: 32 +Child: 19, type: 5, width: 32, height: 334 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 0, width: 8192, height: 16391 +Child: 25, type: 0, width: 8188, height: 16391 +Child: 26, type: 0, width: 16391, height: 8192 +Child: 27, type: 0, width: 16391, height: 8182 +Child: 28, type: 0, width: 512, height: 334 +Child: 29, type: 5, width: 256, height: 16384 +Child: 30, type: 5, width: 256, height: 16391 +Child: 31, type: 5, width: 16391, height: 167 +Child: 32, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/142.txt b/server508/lists/interfaces/142.txt new file mode 100644 index 0000000..d944b45 --- /dev/null +++ b/server508/lists/interfaces/142.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 419, height: 408 +Child: 2, type: 6, width: 79, height: 95 +Child: 3, type: 6, width: 59, height: 52 +Child: 4, type: 6, width: 96, height: 80 +Child: 5, type: 6, width: 51, height: 72 +Child: 6, type: 6, width: 68, height: 72 +Child: 7, type: 6, width: 33, height: 65 +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/143.txt b/server508/lists/interfaces/143.txt new file mode 100644 index 0000000..e68a817 --- /dev/null +++ b/server508/lists/interfaces/143.txt @@ -0,0 +1,25 @@ +Child: 0, type: 3, width: 511, height: 349 +Child: 1, type: 6, width: 466, height: 456 +Child: 2, type: 6, width: 338, height: 62 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 512, height: 334 +Child: 6, type: 0, width: 16391, height: 16391 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 5, width: 32, height: 334 +Child: 9, type: 5, width: 462, height: 32 +Child: 10, type: 5, width: 512, height: 32 +Child: 11, type: 5, width: 32, height: 334 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 0, width: 8192, height: 16391 +Child: 17, type: 0, width: 8188, height: 16391 +Child: 18, type: 0, width: 16391, height: 8192 +Child: 19, type: 0, width: 16391, height: 8182 +Child: 20, type: 0, width: 512, height: 334 +Child: 21, type: 5, width: 256, height: 16384 +Child: 22, type: 5, width: 256, height: 16391 +Child: 23, type: 5, width: 16391, height: 167 +Child: 24, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/144.txt b/server508/lists/interfaces/144.txt new file mode 100644 index 0000000..38b9d86 --- /dev/null +++ b/server508/lists/interfaces/144.txt @@ -0,0 +1,305 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 495, height: 309 +Child: 2, type: 5, width: 483, height: 295 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 236 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 76, height: 233 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 433, height: 33 +Child: 9, type: 5, width: 433, height: 35 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 476, height: 29 +Child: 14, message: Points Settings +Child: 15, type: 6, width: 19, height: 19 +Child: 16, type: 6, width: 19, height: 19 +Child: 17, type: 6, width: 19, height: 19 +Child: 18, type: 6, width: 19, height: 19 +Child: 19, type: 6, width: 19, height: 19 +Child: 20, type: 6, width: 19, height: 19 +Child: 21, type: 6, width: 19, height: 19 +Child: 22, type: 6, width: 19, height: 19 +Child: 23, type: 6, width: 19, height: 19 +Child: 24, type: 6, width: 19, height: 19 +Child: 25, type: 6, width: 19, height: 19 +Child: 26, type: 6, width: 19, height: 19 +Child: 27, type: 6, width: 19, height: 19 +Child: 28, type: 6, width: 19, height: 19 +Child: 29, type: 6, width: 19, height: 19 +Child: 30, type: 6, width: 19, height: 19 +Child: 31, type: 6, width: 19, height: 19 +Child: 32, type: 6, width: 19, height: 19 +Child: 33, type: 6, width: 19, height: 19 +Child: 34, type: 6, width: 19, height: 19 +Child: 35, type: 6, width: 19, height: 19 +Child: 36, type: 6, width: 19, height: 19 +Child: 37, type: 6, width: 19, height: 19 +Child: 38, type: 6, width: 19, height: 19 +Child: 39, type: 6, width: 19, height: 19 +Child: 40, type: 6, width: 19, height: 19 +Child: 41, type: 6, width: 19, height: 19 +Child: 42, type: 6, width: 19, height: 19 +Child: 43, type: 6, width: 19, height: 19 +Child: 44, type: 6, width: 19, height: 19 +Child: 45, type: 6, width: 19, height: 19 +Child: 46, type: 6, width: 19, height: 19 +Child: 47, type: 6, width: 19, height: 19 +Child: 48, type: 6, width: 19, height: 19 +Child: 49, type: 6, width: 19, height: 19 +Child: 50, type: 6, width: 19, height: 19 +Child: 51, type: 6, width: 19, height: 19 +Child: 52, type: 6, width: 19, height: 19 +Child: 53, type: 6, width: 19, height: 19 +Child: 54, type: 6, width: 19, height: 19 +Child: 55, type: 6, width: 19, height: 19 +Child: 56, type: 6, width: 19, height: 19 +Child: 57, type: 6, width: 19, height: 19 +Child: 58, type: 6, width: 19, height: 19 +Child: 59, type: 6, width: 19, height: 19 +Child: 60, type: 6, width: 19, height: 19 +Child: 61, type: 6, width: 19, height: 19 +Child: 62, type: 6, width: 19, height: 19 +Child: 63, type: 6, width: 19, height: 19 +Child: 64, type: 6, width: 19, height: 19 +Child: 65, type: 6, width: 19, height: 19 +Child: 66, type: 6, width: 19, height: 19 +Child: 67, type: 6, width: 19, height: 19 +Child: 68, type: 6, width: 19, height: 19 +Child: 69, type: 6, width: 19, height: 19 +Child: 70, type: 6, width: 19, height: 19 +Child: 71, type: 6, width: 19, height: 19 +Child: 72, type: 6, width: 19, height: 19 +Child: 73, type: 6, width: 19, height: 19 +Child: 74, type: 6, width: 19, height: 19 +Child: 75, type: 6, width: 19, height: 19 +Child: 76, type: 6, width: 19, height: 19 +Child: 77, type: 6, width: 19, height: 19 +Child: 78, type: 6, width: 19, height: 19 +Child: 79, type: 6, width: 19, height: 19 +Child: 80, type: 6, width: 19, height: 19 +Child: 81, type: 6, width: 19, height: 19 +Child: 82, type: 6, width: 19, height: 19 +Child: 83, type: 6, width: 19, height: 19 +Child: 84, type: 6, width: 19, height: 19 +Child: 85, type: 6, width: 19, height: 19 +Child: 86, type: 6, width: 19, height: 19 +Child: 87, type: 6, width: 19, height: 19 +Child: 88, type: 6, width: 19, height: 19 +Child: 89, type: 6, width: 19, height: 19 +Child: 90, type: 6, width: 19, height: 19 +Child: 91, type: 6, width: 19, height: 19 +Child: 92, type: 6, width: 19, height: 19 +Child: 93, type: 6, width: 19, height: 19 +Child: 94, type: 6, width: 19, height: 19 +Child: 95, type: 6, width: 19, height: 19 +Child: 96, type: 6, width: 19, height: 19 +Child: 97, type: 6, width: 19, height: 19 +Child: 98, type: 6, width: 19, height: 19 +Child: 99, type: 6, width: 19, height: 19 +Child: 100, type: 6, width: 19, height: 19 +Child: 101, type: 6, width: 19, height: 19 +Child: 102, type: 6, width: 19, height: 19 +Child: 103, type: 6, width: 19, height: 19 +Child: 104, type: 6, width: 19, height: 19 +Child: 105, type: 6, width: 19, height: 19 +Child: 106, type: 6, width: 19, height: 19 +Child: 107, type: 6, width: 19, height: 19 +Child: 108, type: 6, width: 19, height: 19 +Child: 109, type: 6, width: 19, height: 19 +Child: 110, type: 6, width: 19, height: 19 +Child: 111, type: 6, width: 19, height: 19 +Child: 112, type: 6, width: 19, height: 19 +Child: 113, type: 6, width: 19, height: 19 +Child: 114, type: 6, width: 19, height: 19 +Child: 115, type: 6, width: 19, height: 19 +Child: 116, type: 6, width: 19, height: 19 +Child: 117, type: 6, width: 19, height: 19 +Child: 118, type: 6, width: 19, height: 19 +Child: 119, type: 6, width: 19, height: 19 +Child: 120, type: 6, width: 19, height: 19 +Child: 121, type: 6, width: 19, height: 19 +Child: 122, type: 6, width: 19, height: 19 +Child: 123, type: 6, width: 19, height: 19 +Child: 124, type: 6, width: 19, height: 19 +Child: 125, type: 6, width: 19, height: 19 +Child: 126, type: 6, width: 19, height: 19 +Child: 127, type: 6, width: 19, height: 19 +Child: 128, type: 6, width: 19, height: 19 +Child: 129, type: 6, width: 19, height: 19 +Child: 130, type: 6, width: 19, height: 19 +Child: 131, message: < To Lift +Child: 132, type: 6, width: 72, height: 56 +Child: 133, message: Controls +Child: 134, type: 6, width: 32, height: 32 +Child: 135, type: 6, width: 32, height: 32 +Child: 136, type: 6, width: 32, height: 32 +Child: 137, type: 6, width: 32, height: 32 +Child: 138, type: 6, width: 32, height: 32 +Child: 139, type: 6, width: 32, height: 32 +Child: 140, type: 6, width: 32, height: 32 +Child: 141, type: 6, width: 32, height: 32 +Child: 142, type: 6, width: 32, height: 32 +Child: 143, type: 6, width: 32, height: 32 +Child: 144, type: 6, width: 32, height: 32 +Child: 145, type: 6, width: 31, height: 37 +Child: 146, type: 5, width: 72, height: 36 +Child: 147, message: START +Child: 148, type: 6, width: 66, height: 60 +Child: 149, message: Controls +Child: 150, message: You are
here +Child: 151, type: 6, width: 54, height: 86 +Child: 152, type: 6, width: 24, height: 36 +Child: 153, type: 6, width: 22, height: 40 +Child: 154, type: 6, width: 19, height: 33 +Child: 155, type: 6, width: 109, height: 37 +Child: 156, type: 6, width: 81, height: 19 +Child: 157, type: 6, width: 51, height: 43 +Child: 158, type: 6, width: 35, height: 56 +Child: 159, message: A +Child: 160, message: B +Child: 161, message: C +Child: 162, message: D +Child: 163, message: E +Child: 164, message: F +Child: 165, message: G +Child: 166, message: H +Child: 167, message: I +Child: 168, message: J +Child: 169, message: K +Child: 170, type: 6, width: 61, height: 19 +Child: 171, type: 0, width: 483, height: 316 +Child: 172, type: 6, width: 32, height: 32 +Child: 173, type: 0, width: 483, height: 316 +Child: 174, type: 6, width: 32, height: 32 +Child: 175, type: 0, width: 483, height: 316 +Child: 176, type: 6, width: 32, height: 32 +Child: 177, type: 0, width: 483, height: 316 +Child: 178, type: 6, width: 32, height: 32 +Child: 179, type: 0, width: 483, height: 316 +Child: 180, type: 6, width: 32, height: 32 +Child: 181, type: 0, width: 483, height: 316 +Child: 182, type: 0, width: 483, height: 316 +Child: 183, type: 6, width: 32, height: 32 +Child: 184, type: 0, width: 483, height: 316 +Child: 185, type: 6, width: 32, height: 32 +Child: 186, type: 6, width: 29, height: 25 +Child: 187, type: 6, width: 32, height: 32 +Child: 188, type: 5, width: 16, height: 16 +Child: 189, type: 9, width: 9, height: 7 +Child: 190, type: 9, width: 6, height: 8 +Child: 191, type: 9, width: 1, height: 3 +Child: 192, type: 9, width: 7, height: 9 +Child: 193, type: 9, width: 9, height: 9 +Child: 194, type: 3, width: 71, height: 2 +Child: 195, type: 3, width: 40, height: 2 +Child: 196, type: 3, width: 2, height: 187 +Child: 197, type: 3, width: 100, height: 2 +Child: 198, type: 3, width: 2, height: 18 +Child: 199, type: 3, width: 2, height: 8 +Child: 200, type: 3, width: 7, height: 2 +Child: 201, type: 3, width: 24, height: 2 +Child: 202, type: 9, width: 1, height: 3 +Child: 203, type: 9, width: 6, height: 8 +Child: 204, type: 9, width: 9, height: 7 +Child: 205, type: 9, width: 11, height: 8 +Child: 206, type: 9, width: 8, height: 5 +Child: 207, type: 9, width: 8, height: 9 +Child: 208, type: 9, width: 8, height: 6 +Child: 209, type: 3, width: 71, height: 2 +Child: 210, type: 3, width: 84, height: 2 +Child: 211, type: 3, width: 2, height: 88 +Child: 212, type: 3, width: 2, height: 37 +Child: 213, type: 3, width: 2, height: 18 +Child: 214, type: 3, width: 2, height: 8 +Child: 215, type: 3, width: 7, height: 2 +Child: 216, type: 3, width: 24, height: 2 +Child: 217, type: 3, width: 102, height: 2 +Child: 218, type: 3, width: 24, height: 2 +Child: 219, type: 3, width: 20, height: 2 +Child: 220, type: 3, width: 2, height: 51 +Child: 221, type: 3, width: 2, height: 57 +Child: 222, type: 9, width: 1, height: 3 +Child: 223, type: 9, width: 6, height: 8 +Child: 224, type: 9, width: 9, height: 7 +Child: 225, type: 9, width: 8, height: 9 +Child: 226, type: 9, width: 8, height: 5 +Child: 227, type: 9, width: 11, height: 8 +Child: 228, type: 3, width: 69, height: 2 +Child: 229, type: 3, width: 71, height: 2 +Child: 230, type: 3, width: 84, height: 2 +Child: 231, type: 3, width: 2, height: 88 +Child: 232, type: 3, width: 2, height: 37 +Child: 233, type: 3, width: 2, height: 18 +Child: 234, type: 3, width: 2, height: 8 +Child: 235, type: 3, width: 7, height: 2 +Child: 236, type: 3, width: 24, height: 2 +Child: 237, type: 3, width: 102, height: 2 +Child: 238, type: 3, width: 2, height: 37 +Child: 239, type: 9, width: 9, height: 7 +Child: 240, type: 9, width: 6, height: 8 +Child: 241, type: 9, width: 1, height: 3 +Child: 242, type: 3, width: 71, height: 2 +Child: 243, type: 3, width: 20, height: 2 +Child: 244, type: 3, width: 2, height: 36 +Child: 245, type: 3, width: 7, height: 2 +Child: 246, type: 3, width: 24, height: 2 +Child: 247, type: 3, width: 76, height: 2 +Child: 248, type: 3, width: 2, height: 51 +Child: 249, type: 9, width: 9, height: 7 +Child: 250, type: 9, width: 6, height: 8 +Child: 251, type: 9, width: 1, height: 3 +Child: 252, type: 9, width: 7, height: 5 +Child: 253, type: 3, width: 71, height: 2 +Child: 254, type: 3, width: 2, height: 22 +Child: 255, type: 3, width: 7, height: 2 +Child: 256, type: 3, width: 24, height: 2 +Child: 257, type: 3, width: 76, height: 2 +Child: 258, type: 3, width: 2, height: 51 +Child: 259, type: 3, width: 108, height: 2 +Child: 260, type: 9, width: 9, height: 7 +Child: 261, type: 9, width: 6, height: 8 +Child: 262, type: 9, width: 1, height: 3 +Child: 263, type: 9, width: 8, height: 9 +Child: 264, type: 9, width: 8, height: 5 +Child: 265, type: 9, width: 11, height: 8 +Child: 266, type: 3, width: 71, height: 2 +Child: 267, type: 3, width: 84, height: 2 +Child: 268, type: 3, width: 2, height: 88 +Child: 269, type: 3, width: 2, height: 37 +Child: 270, type: 3, width: 2, height: 18 +Child: 271, type: 3, width: 2, height: 8 +Child: 272, type: 3, width: 7, height: 2 +Child: 273, type: 3, width: 24, height: 2 +Child: 274, type: 3, width: 102, height: 2 +Child: 275, type: 3, width: 24, height: 2 +Child: 276, type: 3, width: 20, height: 2 +Child: 277, type: 3, width: 2, height: 51 +Child: 278, type: 3, width: 2, height: 86 +Child: 279, type: 3, width: 4, height: 2 +Child: 280, type: 9, width: 1, height: 3 +Child: 281, type: 9, width: 6, height: 8 +Child: 282, type: 9, width: 9, height: 7 +Child: 283, type: 9, width: 8, height: 5 +Child: 284, type: 9, width: 8, height: 9 +Child: 285, type: 3, width: 95, height: 2 +Child: 286, type: 3, width: 84, height: 2 +Child: 287, type: 3, width: 2, height: 88 +Child: 288, type: 3, width: 44, height: 2 +Child: 289, type: 3, width: 2, height: 18 +Child: 290, type: 3, width: 7, height: 2 +Child: 291, type: 3, width: 24, height: 2 +Child: 292, type: 3, width: 2, height: 86 +Child: 293, type: 9, width: 8, height: 9 +Child: 294, type: 9, width: 8, height: 5 +Child: 295, type: 9, width: 9, height: 7 +Child: 296, type: 9, width: 6, height: 8 +Child: 297, type: 9, width: 1, height: 3 +Child: 298, type: 3, width: 71, height: 2 +Child: 299, type: 3, width: 84, height: 2 +Child: 300, type: 3, width: 2, height: 88 +Child: 301, type: 3, width: 2, height: 18 +Child: 302, type: 3, width: 2, height: 8 +Child: 303, type: 3, width: 7, height: 2 +Child: 304, type: 3, width: 24, height: 2 diff --git a/server508/lists/interfaces/145.txt b/server508/lists/interfaces/145.txt new file mode 100644 index 0000000..5d2a019 --- /dev/null +++ b/server508/lists/interfaces/145.txt @@ -0,0 +1,22 @@ +Child: 0, type: 6, width: 434, height: 334 +Child: 1, type: 0, width: 322, height: 197 +Child: 2, message: Dwarf +Child: 3, message: Wartface & Bentnoze +Child: 4, message: Pirate Pete +Child: 5, message: Lumbridge Guide +Child: 6, message: Evil Dave +Child: 7, message: Sir Amik Varze +Child: 8, message: Skrach 'Bone Cruncher' Uglogwee +Child: 9, message: Monkey Ambassador +Child: 10, type: 6, width: 37, height: 30 +Child: 11, type: 6, width: 37, height: 30 +Child: 12, type: 6, width: 37, height: 30 +Child: 13, type: 6, width: 37, height: 30 +Child: 14, type: 6, width: 37, height: 30 +Child: 15, type: 6, width: 37, height: 30 +Child: 16, type: 6, width: 37, height: 30 +Child: 17, type: 6, width: 37, height: 30 +Child: 18, type: 0, width: 16, height: 197 +Child: 19, type: 5, width: 26, height: 23 +Child: 20, message: Recipe for Disaster +Child: 21, message: This quest is comprised of the 8 mini quests highlighted below diff --git a/server508/lists/interfaces/146.txt b/server508/lists/interfaces/146.txt new file mode 100644 index 0000000..36c12db --- /dev/null +++ b/server508/lists/interfaces/146.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 54919, height: 18647 diff --git a/server508/lists/interfaces/147.txt b/server508/lists/interfaces/147.txt new file mode 100644 index 0000000..836a324 --- /dev/null +++ b/server508/lists/interfaces/147.txt @@ -0,0 +1,52 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 512, height: 334 +Child: 2, type: 3, width: 497, height: 320 +Child: 3, type: 3, width: 168, height: 282 +Child: 4, type: 6, width: 231, height: 277 +Child: 5, type: 6, width: 25, height: 25 +Child: 6, type: 6, width: 25, height: 25 +Child: 7, type: 6, width: 25, height: 25 +Child: 8, type: 6, width: 25, height: 25 +Child: 9, type: 6, width: 25, height: 25 +Child: 10, type: 6, width: 25, height: 25 +Child: 11, type: 6, width: 25, height: 25 +Child: 12, type: 6, width: 25, height: 25 +Child: 13, type: 6, width: 25, height: 25 +Child: 14, type: 6, width: 25, height: 25 +Child: 15, type: 6, width: 25, height: 25 +Child: 16, type: 6, width: 25, height: 25 +Child: 17, type: 6, width: 25, height: 25 +Child: 18, type: 6, width: 25, height: 25 +Child: 19, type: 6, width: 25, height: 25 +Child: 20, type: 6, width: 25, height: 25 +Child: 21, type: 6, width: 25, height: 25 +Child: 22, type: 6, width: 25, height: 25 +Child: 23, type: 6, width: 25, height: 25 +Child: 24, type: 6, width: 25, height: 25 +Child: 25, type: 6, width: 25, height: 25 +Child: 26, type: 6, width: 25, height: 25 +Child: 27, type: 6, width: 25, height: 25 +Child: 28, type: 6, width: 25, height: 25 +Child: 29, type: 6, width: 25, height: 25 +Child: 30, type: 6, width: 149, height: 162 +Child: 31, type: 6, width: 147, height: 87 +Child: 32, type: 5, width: 26, height: 23 +Child: 33, type: 0, width: 16391, height: 16391 +Child: 34, type: 0, width: 16391, height: 16391 +Child: 35, type: 5, width: 32, height: 334 +Child: 36, type: 5, width: 462, height: 32 +Child: 37, type: 5, width: 512, height: 32 +Child: 38, type: 5, width: 32, height: 334 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 0, width: 8192, height: 16391 +Child: 44, type: 0, width: 8188, height: 16391 +Child: 45, type: 0, width: 16391, height: 8192 +Child: 46, type: 0, width: 16391, height: 8182 +Child: 47, type: 0, width: 512, height: 334 +Child: 48, type: 5, width: 256, height: 16384 +Child: 49, type: 5, width: 256, height: 16391 +Child: 50, type: 5, width: 16391, height: 167 +Child: 51, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/148.txt b/server508/lists/interfaces/148.txt new file mode 100644 index 0000000..6f7502c --- /dev/null +++ b/server508/lists/interfaces/148.txt @@ -0,0 +1,11 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 6, width: 64, height: 64 +Child: 2, type: 6, width: 64, height: 64 +Child: 3, type: 6, width: 64, height: 64 +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: Select an Option +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/149.txt b/server508/lists/interfaces/149.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/149.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/15.txt b/server508/lists/interfaces/15.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/15.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/150.txt b/server508/lists/interfaces/150.txt new file mode 100644 index 0000000..4313f15 --- /dev/null +++ b/server508/lists/interfaces/150.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 3, width: 19207, height: 19628 +Child: 2, type: 6, width: 495, height: 326 +Child: 3, type: 6, width: 412, height: 258 +Child: 4, type: 6, width: 281, height: 264 diff --git a/server508/lists/interfaces/151.txt b/server508/lists/interfaces/151.txt new file mode 100644 index 0000000..86b1861 --- /dev/null +++ b/server508/lists/interfaces/151.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 450, height: 15 +Child: 2, type: 0, width: 451, height: 18 +Child: 3, type: 0, width: 450, height: 18 +Child: 4, type: 0, width: 450, height: 18 +Child: 5, type: 0, width: 449, height: 14 +Child: 6, type: 0, width: 452, height: 15 +Child: 7, type: 0, width: 453, height: 16 +Child: 8, type: 0, width: 453, height: 18 +Child: 9, type: 0, width: 452, height: 16 +Child: 10, message: Five hundred years have passed since the rule of King Alvis, +Child: 11, message: saviour of Keldagrim, victim of his own inventions. +Child: 12, message: Founder of the Consortium, the gathering of mining companies +Child: 13, message: that were to serve the monarchy, eventually the monarchy came +Child: 14, message: to serve the Consortium. +Child: 15, message: By the time of his death, the monarchy was all but abolished. +Child: 16, message: By now, the Kings of Keldagrim are but a distant memory... +Child: 17, message: with only the statue of King Alvis to remind the people of the +Child: 18, message: old days. diff --git a/server508/lists/interfaces/152.txt b/server508/lists/interfaces/152.txt new file mode 100644 index 0000000..59e337a --- /dev/null +++ b/server508/lists/interfaces/152.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 0, width: 512, height: 400 +Child: 4, type: 0, width: 512, height: 400 +Child: 5, type: 0, width: 512, height: 334 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, message: The Giant
Dwarf +Child: 8, message: Keldagrim +Child: 9, message: Grand Capital
of the Dwarven realm +Child: 10, message: Rise of the
Red Axe +Child: 11, message: Part 1 +Child: 12, message: Keldagrim
Palace +Child: 13, message: Consortium
Meeting +Child: 14, message: A little while later +Child: 15, message: Rise of the
Red Axe +Child: 16, message: Part II +Child: 17, message: Forgettable Tale
of a
Drunken Dwarf +Child: 18, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/153.txt b/server508/lists/interfaces/153.txt new file mode 100644 index 0000000..5f87a23 --- /dev/null +++ b/server508/lists/interfaces/153.txt @@ -0,0 +1,110 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Oh dear, you're dead, but don't despair! +Child: 89, message: Never show me this again +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, message: You can buy a new tinderbox from the general store. +Child: 99, message: You can buy a new axe from Bob's Axe shop in south Lumbridge. +Child: 100, message: You can pick up a pickaxe above the gates of Lumbridge Castle or buy one from Bob's Axe shop in south Lumbridge. +Child: 101, message: You can get a new net from the Fishing Tutor in Lumbridge Swamps. +Child: 102, message: You can get new combat equipment from the combat tutors north of Lumbridge Castle. +Child: 103, message: You can buy a new hammer from the general store. +Child: 104, message: If you need more gold, kill goblins for a short while or try a quest. +Child: 105, message: Tutors can help you with skills and give you basic equipment. Look for this icon on your mini map. +Child: 106, message: More information is available in the manual on our website. +Child: 107, type: 5, width: 26, height: 23 +Child: 108, type: 5, width: 26, height: 23 +Child: 109, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/154.txt b/server508/lists/interfaces/154.txt new file mode 100644 index 0000000..cd1c3e9 --- /dev/null +++ b/server508/lists/interfaces/154.txt @@ -0,0 +1,35 @@ +Child: 0, type: 5, width: 482, height: 299 +Child: 1, type: 5, width: 33, height: 294 +Child: 2, type: 5, width: 31, height: 293 +Child: 3, type: 5, width: 479, height: 44 +Child: 4, type: 5, width: 481, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 480, height: 31 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: What would you like to make? +Child: 14, type: 6, width: 64, height: 96 +Child: 15, message: Armour +Child: 16, type: 6, width: 64, height: 96 +Child: 17, message: Gloves +Child: 18, type: 6, width: 64, height: 96 +Child: 19, message: Boots +Child: 20, type: 6, width: 64, height: 96 +Child: 21, message: Vambraces +Child: 22, type: 6, width: 64, height: 96 +Child: 23, message: Chaps +Child: 24, type: 6, width: 64, height: 96 +Child: 25, message: Coif +Child: 26, type: 6, width: 64, height: 96 +Child: 27, message: Cowl +Child: 28, type: 0, width: 90, height: 100 +Child: 29, type: 0, width: 90, height: 100 +Child: 30, type: 0, width: 90, height: 100 +Child: 31, type: 0, width: 90, height: 100 +Child: 32, type: 0, width: 90, height: 100 +Child: 33, type: 0, width: 90, height: 100 +Child: 34, type: 0, width: 90, height: 100 diff --git a/server508/lists/interfaces/155.txt b/server508/lists/interfaces/155.txt new file mode 100644 index 0000000..60bae2b --- /dev/null +++ b/server508/lists/interfaces/155.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 44935, height: 22669 diff --git a/server508/lists/interfaces/156.txt b/server508/lists/interfaces/156.txt new file mode 100644 index 0000000..985efc0 --- /dev/null +++ b/server508/lists/interfaces/156.txt @@ -0,0 +1,107 @@ +Child: 0, type: 0, width: 387, height: 287 +Child: 1, type: 0, width: 16, height: 225 +Child: 2, type: 0, width: 358, height: 225 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, message: lj_title +Child: 6, type: 6, width: 506, height: 317 +Child: 7, message: lj1 +Child: 8, message: lj2 +Child: 9, message: lj3 +Child: 10, message: lj4 +Child: 11, message: lj5 +Child: 12, message: lj6 +Child: 13, message: lj7 +Child: 14, message: lj8 +Child: 15, message: lj9 +Child: 16, message: lj10 +Child: 17, message: lj11 +Child: 18, message: lj12 +Child: 19, message: lj13 +Child: 20, message: lj14 +Child: 21, message: lj15 +Child: 22, message: lj16 +Child: 23, message: lj17 +Child: 24, message: lj18 +Child: 25, message: lj19 +Child: 26, message: lj20 +Child: 27, message: lj21 +Child: 28, message: lj22 +Child: 29, message: lj23 +Child: 30, message: lj24 +Child: 31, message: lj25 +Child: 32, message: lj26 +Child: 33, message: lj27 +Child: 34, message: lj28 +Child: 35, message: lj29 +Child: 36, message: lj30 +Child: 37, message: lj31 +Child: 38, message: lj32 +Child: 39, message: lj33 +Child: 40, message: lj34 +Child: 41, message: lj35 +Child: 42, message: lj36 +Child: 43, message: lj37 +Child: 44, message: lj38 +Child: 45, message: lj39 +Child: 46, message: lj40 +Child: 47, message: lj41 +Child: 48, message: lj42 +Child: 49, message: lj43 +Child: 50, message: lj44 +Child: 51, message: lj45 +Child: 52, message: lj46 +Child: 53, message: lj47 +Child: 54, message: lj48 +Child: 55, message: lj49 +Child: 56, message: lj50 +Child: 57, message: lj51 +Child: 58, message: lj52 +Child: 59, message: lj53 +Child: 60, message: lj54 +Child: 61, message: lj55 +Child: 62, message: lj56 +Child: 63, message: lj57 +Child: 64, message: lj58 +Child: 65, message: lj59 +Child: 66, message: lj60 +Child: 67, message: lj61 +Child: 68, message: lj62 +Child: 69, message: lj63 +Child: 70, message: lj64 +Child: 71, message: lj65 +Child: 72, message: lj66 +Child: 73, message: lj67 +Child: 74, message: lj68 +Child: 75, message: lj69 +Child: 76, message: lj70 +Child: 77, message: lj71 +Child: 78, message: lj72 +Child: 79, message: lj73 +Child: 80, message: lj74 +Child: 81, message: lj75 +Child: 82, message: lj76 +Child: 83, message: lj77 +Child: 84, message: lj78 +Child: 85, message: lj79 +Child: 86, message: lj80 +Child: 87, message: lj81 +Child: 88, message: lj82 +Child: 89, message: lj83 +Child: 90, message: lj84 +Child: 91, message: lj85 +Child: 92, message: lj86 +Child: 93, message: lj87 +Child: 94, message: lj88 +Child: 95, message: lj89 +Child: 96, message: lj90 +Child: 97, message: lj91 +Child: 98, message: lj92 +Child: 99, message: lj93 +Child: 100, message: lj94 +Child: 101, message: lj95 +Child: 102, message: lj96 +Child: 103, message: lj97 +Child: 104, message: lj98 +Child: 105, message: lj99 +Child: 106, message: lj100 diff --git a/server508/lists/interfaces/157.txt b/server508/lists/interfaces/157.txt new file mode 100644 index 0000000..9115ba8 --- /dev/null +++ b/server508/lists/interfaces/157.txt @@ -0,0 +1,36 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 7, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 7 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 6 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: +Child: 15, type: 5, width: 474, height: 32 +Child: 16, type: 5, width: 20, height: 20 +Child: 17, type: 0, width: 166, height: 33 +Child: 18, type: 5, width: 93, height: 20 +Child: 19, type: 5, width: 20, height: 20 +Child: 20, message: Page 1 of 7 +Child: 21, type: 5, width: 16, height: 16 +Child: 22, type: 5, width: 16, height: 16 +Child: 23, type: 0, width: 512, height: 334 +Child: 24, type: 0, width: 16, height: 235 +Child: 25, type: 0, width: 474, height: 235 +Child: 26, type: 5, width: 9, height: 24 +Child: 27, type: 5, width: 122, height: 9 +Child: 28, type: 5, width: 122, height: 9 +Child: 29, type: 5, width: 9, height: 24 +Child: 30, message: Shortcut keys +Child: 31, type: 5, width: 9, height: 9 +Child: 32, type: 5, width: 9, height: 9 +Child: 33, type: 5, width: 9, height: 9 +Child: 34, type: 5, width: 9, height: 9 +Child: 35, type: 0, width: 149, height: 33 diff --git a/server508/lists/interfaces/158.txt b/server508/lists/interfaces/158.txt new file mode 100644 index 0000000..1dc5785 --- /dev/null +++ b/server508/lists/interfaces/158.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32615, height: 49992 +Child: 1, type: 6, width: 25575, height: 38710 +Child: 2, type: 6, width: 18535, height: 18696 +Child: 3, type: 6, width: 16487, height: 17323 diff --git a/server508/lists/interfaces/159.txt b/server508/lists/interfaces/159.txt new file mode 100644 index 0000000..d6bcccb --- /dev/null +++ b/server508/lists/interfaces/159.txt @@ -0,0 +1,63 @@ +Child: 0, type: 5, width: 520, height: 335 +Child: 1, type: 5, width: 27, height: 97 +Child: 2, type: 5, width: 30, height: 217 +Child: 3, type: 5, width: 26, height: 321 +Child: 4, type: 5, width: 257, height: 34 +Child: 5, type: 5, width: 257, height: 34 +Child: 6, type: 5, width: 227, height: 34 +Child: 7, type: 5, width: 27, height: 97 +Child: 8, type: 5, width: 25, height: 217 +Child: 9, type: 5, width: 29, height: 321 +Child: 10, type: 5, width: 257, height: 37 +Child: 11, type: 5, width: 257, height: 37 +Child: 12, type: 5, width: 227, height: 35 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 3, width: 227, height: 321 +Child: 15, type: 3, width: 257, height: 213 +Child: 16, type: 3, width: 258, height: 97 +Child: 17, type: 6, width: 176, height: 282 +Child: 18, type: 0, width: 176, height: 283 +Child: 19, type: 6, width: 127, height: 116 +Child: 20, type: 6, width: 121, height: 119 +Child: 21, type: 6, width: 58, height: 47 +Child: 22, type: 6, width: 99, height: 28 +Child: 23, type: 6, width: 82, height: 43 +Child: 24, type: 5, width: 25, height: 25 +Child: 25, type: 5, width: 25, height: 25 +Child: 26, type: 5, width: 25, height: 25 +Child: 27, type: 6, width: 21, height: 28 +Child: 28, type: 6, width: 28, height: 21 +Child: 29, type: 6, width: 28, height: 21 +Child: 30, type: 6, width: 21, height: 28 +Child: 31, type: 0, width: 130, height: 114 +Child: 32, type: 0, width: 125, height: 114 +Child: 33, type: 0, width: 64, height: 53 +Child: 34, type: 0, width: 108, height: 33 +Child: 35, type: 0, width: 80, height: 42 +Child: 36, type: 6, width: 176, height: 282 +Child: 37, type: 6, width: 127, height: 116 +Child: 38, type: 6, width: 121, height: 119 +Child: 39, type: 6, width: 58, height: 47 +Child: 40, type: 6, width: 99, height: 28 +Child: 41, type: 6, width: 82, height: 43 +Child: 42, type: 0, width: 512, height: 334 +Child: 43, type: 0, width: 512, height: 334 +Child: 44, type: 0, width: 16391, height: 16391 +Child: 45, type: 0, width: 16391, height: 16391 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 462, height: 32 +Child: 48, type: 5, width: 512, height: 32 +Child: 49, type: 5, width: 32, height: 334 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 5, width: 32, height: 32 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 5, width: 32, height: 32 +Child: 54, type: 0, width: 8192, height: 16391 +Child: 55, type: 0, width: 8188, height: 16391 +Child: 56, type: 0, width: 16391, height: 8192 +Child: 57, type: 0, width: 16391, height: 8182 +Child: 58, type: 0, width: 512, height: 334 +Child: 59, type: 5, width: 256, height: 16384 +Child: 60, type: 5, width: 256, height: 16391 +Child: 61, type: 5, width: 16391, height: 167 +Child: 62, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/16.txt b/server508/lists/interfaces/16.txt new file mode 100644 index 0000000..077ff23 --- /dev/null +++ b/server508/lists/interfaces/16.txt @@ -0,0 +1,8 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, message: +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, message: Message of the week diff --git a/server508/lists/interfaces/160.txt b/server508/lists/interfaces/160.txt new file mode 100644 index 0000000..de43adc --- /dev/null +++ b/server508/lists/interfaces/160.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 535, height: 345 +Child: 1, type: 6, width: 348, height: 205 diff --git a/server508/lists/interfaces/161.txt b/server508/lists/interfaces/161.txt new file mode 100644 index 0000000..d4f5986 --- /dev/null +++ b/server508/lists/interfaces/161.txt @@ -0,0 +1,48 @@ +Child: 0, type: 3, width: 489, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 102, height: 20 +Child: 15, type: 5, width: 94, height: 20 +Child: 16, type: 5, width: 98, height: 20 +Child: 17, type: 9, width: 398, height: 0 +Child: 18, type: 3, width: 200, height: 31 +Child: 19, message: XXXX +Child: 20, message: Buy +Child: 21, message: Learn +Child: 22, message: Assignment +Child: 23, message: Reassign current mission +Child: 24, message: Permanently remove current
(additional Quest Point requirement) +Child: 25, message: Current points = +Child: 26, message: (30 points) +Child: 27, message: (100 points) +Child: 28, message: (Does not +Child: 29, message: refund points) +Child: 30, message: B +Child: 31, message: C +Child: 32, message: D +Child: 33, message: Cancel removal +Child: 34, message: Currently removed +Child: 35, message: A +Child: 36, type: 5, width: 16, height: 16 +Child: 37, type: 5, width: 16, height: 16 +Child: 38, type: 5, width: 16, height: 16 +Child: 39, type: 5, width: 16, height: 16 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 147, height: 32 +Child: 45, type: 5, width: 148, height: 32 +Child: 46, type: 0, width: 512, height: 334 +Child: 47, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/162.txt b/server508/lists/interfaces/162.txt new file mode 100644 index 0000000..0d01660 --- /dev/null +++ b/server508/lists/interfaces/162.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 25575, height: 38710 +Child: 1, type: 6, width: 32615, height: 49992 +Child: 2, type: 6, width: 18535, height: 18696 +Child: 3, type: 6, width: 16487, height: 17323 diff --git a/server508/lists/interfaces/163.txt b/server508/lists/interfaces/163.txt new file mode 100644 index 0000000..5aa4373 --- /dev/null +++ b/server508/lists/interfaces/163.txt @@ -0,0 +1,44 @@ +Child: 0, type: 3, width: 489, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 97, height: 20 +Child: 15, type: 5, width: 94, height: 20 +Child: 16, type: 5, width: 99, height: 20 +Child: 17, type: 3, width: 200, height: 31 +Child: 18, message: XXXX +Child: 19, message: Buy +Child: 20, message: Learn +Child: 21, message: Assignment +Child: 22, message: Learn how to fletch broad arrows/bolts +Child: 23, message: Learn how to craft rings of slaying +Child: 24, message: Learn how to craft Slayer helmets +Child: 25, message: (Already learned) +Child: 26, message: (Already learned) +Child: 27, message: (Already learned) +Child: 28, message: Current points = +Child: 29, message: 300 points +Child: 30, message: 300 points +Child: 31, message: 400 points +Child: 32, type: 6, width: 29, height: 53 +Child: 33, type: 6, width: 34, height: 30 +Child: 34, type: 6, width: 41, height: 33 +Child: 35, type: 6, width: 38, height: 35 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 155, height: 32 +Child: 41, type: 5, width: 152, height: 32 +Child: 42, type: 0, width: 512, height: 334 +Child: 43, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/164.txt b/server508/lists/interfaces/164.txt new file mode 100644 index 0000000..f71f636 --- /dev/null +++ b/server508/lists/interfaces/164.txt @@ -0,0 +1,49 @@ +Child: 0, type: 3, width: 489, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 97, height: 20 +Child: 15, type: 5, width: 102, height: 20 +Child: 16, type: 0, width: 82, height: 20 +Child: 17, type: 0, width: 82, height: 20 +Child: 18, type: 5, width: 93, height: 20 +Child: 19, type: 3, width: 200, height: 31 +Child: 20, message: XXXX +Child: 21, message: Buy +Child: 22, message: Learn +Child: 23, message: Assignment +Child: 24, message: Buy Slayer XP +Child: 25, type: 5, width: 25, height: 25 +Child: 26, message: Buy ring of slaying +Child: 27, type: 6, width: 29, height: 27 +Child: 28, message: Buy runes for Slayer Dart +Child: 29, type: 6, width: 23, height: 21 +Child: 30, type: 6, width: 23, height: 25 +Child: 31, message: Current points = +Child: 32, message: 400 points +Child: 33, message: 75 points +Child: 34, message: 35 points +Child: 35, message: 35 points +Child: 36, message: 35 points +Child: 37, message: Buy broad bolts +Child: 38, type: 6, width: 29, height: 27 +Child: 39, message: Buy broad arrows +Child: 40, type: 6, width: 34, height: 27 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 156, height: 32 +Child: 46, type: 5, width: 156, height: 32 +Child: 47, type: 0, width: 512, height: 334 +Child: 48, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/165.txt b/server508/lists/interfaces/165.txt new file mode 100644 index 0000000..5747b2d --- /dev/null +++ b/server508/lists/interfaces/165.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 25575, height: 38710 +Child: 1, type: 6, width: 32615, height: 49992 +Child: 2, type: 6, width: 16487, height: 17323 diff --git a/server508/lists/interfaces/166.txt b/server508/lists/interfaces/166.txt new file mode 100644 index 0000000..62f7eaf --- /dev/null +++ b/server508/lists/interfaces/166.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 581, height: 338 +Child: 1, type: 6, width: 881, height: 468 diff --git a/server508/lists/interfaces/167.txt b/server508/lists/interfaces/167.txt new file mode 100644 index 0000000..89b841f --- /dev/null +++ b/server508/lists/interfaces/167.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 125, height: 335 +Child: 2, type: 6, width: 125, height: 335 +Child: 3, type: 6, width: 125, height: 335 +Child: 4, type: 6, width: 125, height: 335 diff --git a/server508/lists/interfaces/168.txt b/server508/lists/interfaces/168.txt new file mode 100644 index 0000000..2fe8d16 --- /dev/null +++ b/server508/lists/interfaces/168.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 486, height: 332 diff --git a/server508/lists/interfaces/169.txt b/server508/lists/interfaces/169.txt new file mode 100644 index 0000000..b3b8bdb --- /dev/null +++ b/server508/lists/interfaces/169.txt @@ -0,0 +1,25 @@ +Child: 0, type: 0, width: 103, height: 314 +Child: 1, type: 3, width: 103, height: 314 +Child: 2, type: 5, width: 50, height: 50 +Child: 3, type: 5, width: 50, height: 50 +Child: 4, type: 5, width: 50, height: 50 +Child: 5, type: 5, width: 50, height: 50 +Child: 6, type: 5, width: 50, height: 50 +Child: 7, type: 5, width: 50, height: 50 +Child: 8, type: 5, width: 50, height: 50 +Child: 9, type: 5, width: 50, height: 50 +Child: 10, type: 5, width: 50, height: 50 +Child: 11, type: 5, width: 50, height: 50 +Child: 12, type: 5, width: 50, height: 50 +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/17.txt b/server508/lists/interfaces/17.txt new file mode 100644 index 0000000..7a9636b --- /dev/null +++ b/server508/lists/interfaces/17.txt @@ -0,0 +1,9 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/170.txt b/server508/lists/interfaces/170.txt new file mode 100644 index 0000000..662bc53 --- /dev/null +++ b/server508/lists/interfaces/170.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16807, height: 19088 +Child: 1, message: diff --git a/server508/lists/interfaces/171.txt b/server508/lists/interfaces/171.txt new file mode 100644 index 0000000..fb8f914 --- /dev/null +++ b/server508/lists/interfaces/171.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16551, height: 18990 +Child: 1, message: diff --git a/server508/lists/interfaces/172.txt b/server508/lists/interfaces/172.txt new file mode 100644 index 0000000..d8c8a07 --- /dev/null +++ b/server508/lists/interfaces/172.txt @@ -0,0 +1,60 @@ +Child: 0, type: 3, width: 515, height: 335 +Child: 1, type: 6, width: 303, height: 446 +Child: 2, type: 6, width: 49, height: 75 +Child: 3, type: 6, width: 49, height: 75 +Child: 4, type: 6, width: 49, height: 75 +Child: 5, type: 6, width: 49, height: 75 +Child: 6, type: 6, width: 49, height: 75 +Child: 7, type: 6, width: 49, height: 75 +Child: 8, type: 6, width: 12, height: 11 +Child: 9, type: 6, width: 12, height: 12 +Child: 10, type: 6, width: 12, height: 10 +Child: 11, type: 6, width: 12, height: 11 +Child: 12, type: 6, width: 12, height: 12 +Child: 13, type: 6, width: 12, height: 10 +Child: 14, type: 6, width: 12, height: 11 +Child: 15, type: 6, width: 12, height: 12 +Child: 16, type: 6, width: 12, height: 10 +Child: 17, type: 6, width: 306, height: 296 +Child: 18, type: 6, width: 18, height: 37 +Child: 19, type: 6, width: 18, height: 37 +Child: 20, type: 6, width: 18, height: 37 +Child: 21, type: 3, width: 25, height: 36 +Child: 22, type: 3, width: 25, height: 34 +Child: 23, type: 3, width: 20, height: 34 +Child: 24, type: 3, width: 32, height: 32 +Child: 25, type: 3, width: 32, height: 32 +Child: 26, type: 3, width: 32, height: 32 +Child: 27, type: 6, width: 197, height: 89 +Child: 28, type: 6, width: 48, height: 255 +Child: 29, type: 5, width: 36, height: 32 +Child: 30, type: 5, width: 36, height: 32 +Child: 31, type: 5, width: 36, height: 32 +Child: 32, type: 5, width: 36, height: 32 +Child: 33, type: 5, width: 36, height: 32 +Child: 34, type: 5, width: 36, height: 32 +Child: 35, type: 6, width: 65, height: 59 +Child: 36, type: 6, width: 61, height: 50 +Child: 37, type: 6, width: 31, height: 25 +Child: 38, type: 6, width: 54, height: 56 +Child: 39, type: 5, width: 26, height: 23 +Child: 40, type: 0, width: 512, height: 334 +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/173.txt b/server508/lists/interfaces/173.txt new file mode 100644 index 0000000..7f2e42d --- /dev/null +++ b/server508/lists/interfaces/173.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Click here to continue diff --git a/server508/lists/interfaces/174.txt b/server508/lists/interfaces/174.txt new file mode 100644 index 0000000..07059cc --- /dev/null +++ b/server508/lists/interfaces/174.txt @@ -0,0 +1,19 @@ +Child: 0, type: 6, width: 454, height: 333 +Child: 1, message: wom1 +Child: 2, message: wom2 +Child: 3, message: wom3 +Child: 4, message: wom4 +Child: 5, message: wom5 +Child: 6, message: wom6 +Child: 7, message: wom7 +Child: 8, message: wom8 +Child: 9, message: wom9 +Child: 10, message: wom10 +Child: 11, message: wom11 +Child: 12, message: wom12 +Child: 13, message: wom13 +Child: 14, message: wom14 +Child: 15, message: wom15 +Child: 16, message: wom16 +Child: 17, type: 5, width: 26, height: 23 +Child: 18, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/175.txt b/server508/lists/interfaces/175.txt new file mode 100644 index 0000000..e00f9fd --- /dev/null +++ b/server508/lists/interfaces/175.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 16391, height: 25122 +Child: 1, type: 6, width: 39, height: 27280 diff --git a/server508/lists/interfaces/176.txt b/server508/lists/interfaces/176.txt new file mode 100644 index 0000000..e321b30 --- /dev/null +++ b/server508/lists/interfaces/176.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 351, height: 204 +Child: 1, type: 5, width: 505, height: 113 diff --git a/server508/lists/interfaces/177.txt b/server508/lists/interfaces/177.txt new file mode 100644 index 0000000..fb8f914 --- /dev/null +++ b/server508/lists/interfaces/177.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16551, height: 18990 +Child: 1, message: diff --git a/server508/lists/interfaces/178.txt b/server508/lists/interfaces/178.txt new file mode 100644 index 0000000..047b30d --- /dev/null +++ b/server508/lists/interfaces/178.txt @@ -0,0 +1,11 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, message: Click arrow buttons to move taper. +Child: 7, message: Press the Light button to light the candles. +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/179.txt b/server508/lists/interfaces/179.txt new file mode 100644 index 0000000..6dc81e6 --- /dev/null +++ b/server508/lists/interfaces/179.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 19628 diff --git a/server508/lists/interfaces/18.txt b/server508/lists/interfaces/18.txt new file mode 100644 index 0000000..efa4f51 --- /dev/null +++ b/server508/lists/interfaces/18.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/180.txt b/server508/lists/interfaces/180.txt new file mode 100644 index 0000000..e6b0fde --- /dev/null +++ b/server508/lists/interfaces/180.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 18727, height: 31254 diff --git a/server508/lists/interfaces/181.txt b/server508/lists/interfaces/181.txt new file mode 100644 index 0000000..ded8631 --- /dev/null +++ b/server508/lists/interfaces/181.txt @@ -0,0 +1,18 @@ +Child: 0, type: 6, width: 97, height: 90 +Child: 1, type: 6, width: 97, height: 90 +Child: 2, type: 6, width: 97, height: 90 +Child: 3, type: 6, width: 98, height: 84 +Child: 4, type: 6, width: 96, height: 84 +Child: 5, type: 6, width: 96, height: 85 +Child: 6, type: 6, width: 98, height: 83 +Child: 7, type: 0, width: 82, height: 83 +Child: 8, type: 0, width: 82, height: 83 +Child: 9, type: 0, width: 82, height: 83 +Child: 10, type: 0, width: 82, height: 83 +Child: 11, type: 0, width: 82, height: 83 +Child: 12, type: 0, width: 82, height: 83 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 3, width: 119, height: 45 +Child: 15, type: 5, width: 26, height: 23 +Child: 16, message: Rotate mirror. +Child: 17, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/182.txt b/server508/lists/interfaces/182.txt new file mode 100644 index 0000000..231918e --- /dev/null +++ b/server508/lists/interfaces/182.txt @@ -0,0 +1,7 @@ +Child: 0, message: When you have finished playing
RuneScape, always use the
button below to logout safely. +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, type: 5, width: 36, height: 36 +Child: 6, message: Click here to logout diff --git a/server508/lists/interfaces/183.txt b/server508/lists/interfaces/183.txt new file mode 100644 index 0000000..98eb32a --- /dev/null +++ b/server508/lists/interfaces/183.txt @@ -0,0 +1,52 @@ +Child: 0, type: 3, width: 512, height: 388 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 34, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 0, width: 512, height: 334 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, type: 5, width: 45, height: 36 +Child: 18, type: 5, width: 45, height: 36 +Child: 19, type: 0, width: 63, height: 52 +Child: 20, type: 0, width: 63, height: 52 +Child: 21, message: -Drogokishuun-
Goblins of the
Fierce Blades +Child: 22, message: -Huzamogaarb-
Live-Flesh Eaters
of the Chaos God +Child: 23, message: -Saragorgak-
Footsoldiers of
Holy Wrath +Child: 24, message: -Dorgeshuun-
Goblins of the
Strong Spears +Child: 25, message: -Horogothgar-
Eaters of
Manflesh +Child: 26, message: -Yurkolgokh-
The Flatulent +Child: 27, message: -Thorobshuun-
Goblins of the
Hills +Child: 28, message: -Garagorshuun-
Goblins of the
Sea +Child: 29, message: -Rekeshuun-
Goblins of the
North +Child: 30, message: -Ekeleshuun-
Goblins of the
East +Child: 31, message: -Idithuun-
Goblins of the
South +Child: 32, message: -Narogoshuun-
Goblins of the
West +Child: 33, message: A History of the Goblin Race +Child: 34, type: 0, width: 512, height: 388 +Child: 35, message: Goblin tradition holds that
their race was created by
a war-god in order to
fight a war against other
gods. +Child: 36, message: (They never name their
god, so whether it is the
same as any of the gods
worshipped by the other
races is unknown.) +Child: 37, message: The legends also speak
of goblins fighting
against goblins during
the wars, so it is likely
that gods other than
their creators used
them as footsoldiers. +Child: 38, message: Although goblins are still
warlike, it is probable
that in earlier ages
they were more
organised than they
are now, +Child: 39, type: 0, width: 512, height: 388 +Child: 40, message: especially if they were
under the direct
command of one or
more gods. +Child: 41, message: This is corroborated
by finds unearthed
at various
archaeological sites,
including the large
excavation east of
Varrock. +Child: 42, message: Armour and weapons
have been found,
obviously made to fit
goblins but far more
well-made than their
current equipment. +Child: 43, type: 0, width: 512, height: 388 +Child: 44, message: Almost every piece of
ancient goblin equipment
has one of a number
of symbols on it,
and by correlating these
symbols with the
sketchy records that
survive from the
Third Age it has been
possible to identify
twelve distinct goblin tribes
or regiments. +Child: 45, message: The separate identities of
the tribes have long
since dissolved and
no goblins remember the
symbols, although their
generals may still
recognize the ancient
tribal names. +Child: 46, message: In the following pages
I present a list of
the tribes and their
symbols. +Child: 47, type: 0, width: 512, height: 334 +Child: 48, type: 5, width: 26, height: 23 +Child: 49, type: 5, width: 26, height: 23 +Child: 50, type: 0, width: 32, height: 32 +Child: 51, message: diff --git a/server508/lists/interfaces/184.txt b/server508/lists/interfaces/184.txt new file mode 100644 index 0000000..0f36588 --- /dev/null +++ b/server508/lists/interfaces/184.txt @@ -0,0 +1,13 @@ +Child: 0, type: 6, width: 426, height: 331 +Child: 1, message: A....a lemming +Child: 2, message: B....a fryingpan +Child: 3, message: C....the disenfrachaised youth of 1940's Columbia +Child: 4, message: Is this: +Child: 5, type: 3, width: 236, height: 153 +Child: 6, type: 3, width: 226, height: 144 +Child: 7, type: 6, width: 106, height: 77 +Child: 8, type: 6, width: 35, height: 31 +Child: 9, type: 6, width: 37, height: 33 +Child: 10, type: 6, width: 39, height: 32 +Child: 11, type: 5, width: 26, height: 23 +Child: 12, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/185.txt b/server508/lists/interfaces/185.txt new file mode 100644 index 0000000..128af77 --- /dev/null +++ b/server508/lists/interfaces/185.txt @@ -0,0 +1,26 @@ +Child: 0, type: 6, width: 556, height: 411 +Child: 1, type: 6, width: 261, height: 81 +Child: 2, type: 6, width: 261, height: 243 +Child: 3, type: 6, width: 63, height: 319 +Child: 4, type: 6, width: 63, height: 319 +Child: 5, type: 6, width: 63, height: 319 +Child: 6, type: 6, width: 39, height: 26 +Child: 7, type: 6, width: 25, height: 21 +Child: 8, type: 6, width: 39, height: 26 +Child: 9, type: 6, width: 39, height: 11 +Child: 10, type: 6, width: 39, height: 11 +Child: 11, type: 6, width: 35, height: 20 +Child: 12, type: 6, width: 54, height: 24 +Child: 13, type: 6, width: 39, height: 25 +Child: 14, type: 6, width: 39, height: 25 +Child: 15, message: DIAMOND +Child: 16, message: COINS +Child: 17, message: RING +Child: 18, message: U N L O C K +Child: 19, type: 6, width: 54, height: 33 +Child: 20, type: 6, width: 54, height: 33 +Child: 21, type: 6, width: 54, height: 33 +Child: 22, type: 6, width: 54, height: 33 +Child: 23, type: 6, width: 54, height: 33 +Child: 24, type: 6, width: 54, height: 33 +Child: 25, message: For each column, make the MIDDLE picture match the word at the bottom.

Then click UNLOCK. diff --git a/server508/lists/interfaces/186.txt b/server508/lists/interfaces/186.txt new file mode 100644 index 0000000..5431b6d --- /dev/null +++ b/server508/lists/interfaces/186.txt @@ -0,0 +1,4 @@ +Child: 0, message: Watch the statue! Fish here! +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 0, width: 32, height: 32 +Child: 3, type: 0, width: 209, height: 61 diff --git a/server508/lists/interfaces/187.txt b/server508/lists/interfaces/187.txt new file mode 100644 index 0000000..e9fe82a --- /dev/null +++ b/server508/lists/interfaces/187.txt @@ -0,0 +1,17 @@ +Child: 0, type: 3, width: 176, height: 209 +Child: 1, type: 0, width: 166, height: 186 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 124, height: 32 +Child: 7, type: 5, width: 176, height: 32 +Child: 8, type: 5, width: 32, height: 157 +Child: 9, type: 5, width: 32, height: 157 +Child: 10, type: 5, width: 125, height: 32 +Child: 11, type: 5, width: 25, height: 25 +Child: 12, type: 0, width: 16, height: 184 +Child: 13, type: 0, width: 190, height: 261 +Child: 14, message: Playing............................. +Child: 15, type: 0, width: 190, height: 261 +Child: 16, message: Unlocked:
??? diff --git a/server508/lists/interfaces/188.txt b/server508/lists/interfaces/188.txt new file mode 100644 index 0000000..f6919b0 --- /dev/null +++ b/server508/lists/interfaces/188.txt @@ -0,0 +1,11 @@ +Child: 0, type: 6, width: 90, height: 102 +Child: 1, type: 6, width: 91, height: 101 +Child: 2, message: Think +Child: 3, message: Cry +Child: 4, message: Laugh +Child: 5, message: Dance +Child: 6, message: Climb Rope +Child: 7, message: Lean on air +Child: 8, message: Glass Box +Child: 9, message: Glass Wall +Child: 10, type: 0, width: 509, height: 102 diff --git a/server508/lists/interfaces/189.txt b/server508/lists/interfaces/189.txt new file mode 100644 index 0000000..dc9f09d --- /dev/null +++ b/server508/lists/interfaces/189.txt @@ -0,0 +1,44 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 16384, height: 16384 +Child: 2, type: 3, width: 700, height: 486 +Child: 3, type: 6, width: 583, height: 316 +Child: 4, type: 6, width: 90, height: 161 +Child: 5, type: 6, width: 27, height: 133 +Child: 6, type: 6, width: 28, height: 127 +Child: 7, type: 6, width: 27, height: 117 +Child: 8, type: 5, width: 46, height: 95 +Child: 9, type: 5, width: 51, height: 90 +Child: 10, type: 5, width: 46, height: 96 +Child: 11, type: 6, width: 28, height: 48 +Child: 12, type: 6, width: 28, height: 48 +Child: 13, type: 6, width: 28, height: 48 +Child: 14, type: 6, width: 28, height: 48 +Child: 15, type: 6, width: 28, height: 48 +Child: 16, type: 6, width: 28, height: 48 +Child: 17, type: 6, width: 39, height: 75 +Child: 18, type: 6, width: 39, height: 75 +Child: 19, type: 6, width: 39, height: 75 +Child: 20, type: 6, width: 39, height: 75 +Child: 21, type: 6, width: 39, height: 75 +Child: 22, type: 6, width: 39, height: 75 +Child: 23, type: 5, width: 26, height: 23 +Child: 24, type: 0, width: 512, height: 334 +Child: 25, type: 0, width: 16391, height: 16391 +Child: 26, type: 0, width: 16391, height: 16391 +Child: 27, type: 5, width: 32, height: 334 +Child: 28, type: 5, width: 462, height: 32 +Child: 29, type: 5, width: 512, height: 32 +Child: 30, type: 5, width: 32, height: 334 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 0, width: 8192, height: 16391 +Child: 36, type: 0, width: 8188, height: 16391 +Child: 37, type: 0, width: 16391, height: 8192 +Child: 38, type: 0, width: 16391, height: 8182 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 5, width: 256, height: 16384 +Child: 41, type: 5, width: 256, height: 16391 +Child: 42, type: 5, width: 16391, height: 167 +Child: 43, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/19.txt b/server508/lists/interfaces/19.txt new file mode 100644 index 0000000..6c10971 --- /dev/null +++ b/server508/lists/interfaces/19.txt @@ -0,0 +1,15 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/190.txt b/server508/lists/interfaces/190.txt new file mode 100644 index 0000000..515b84c --- /dev/null +++ b/server508/lists/interfaces/190.txt @@ -0,0 +1,16 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 31 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, message: Which shape is blue? +Child: 7, type: 5, width: 72, height: 36 +Child: 8, type: 5, width: 72, height: 36 +Child: 9, type: 5, width: 72, height: 36 +Child: 10, message: Shape1 +Child: 11, message: Shape2 +Child: 12, message: Shape3 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 5, width: 26, height: 23 +Child: 15, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/191.txt b/server508/lists/interfaces/191.txt new file mode 100644 index 0000000..3638e35 --- /dev/null +++ b/server508/lists/interfaces/191.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 904, height: 585 +Child: 2, type: 6, width: 509, height: 98 +Child: 3, type: 6, width: 105, height: 35 +Child: 4, type: 6, width: 105, height: 35 +Child: 5, type: 6, width: 105, height: 35 +Child: 6, type: 6, width: 25, height: 4 +Child: 7, type: 6, width: 31, height: 14 +Child: 8, type: 6, width: 25, height: 4 +Child: 9, message: Pick the odd one out. diff --git a/server508/lists/interfaces/192.txt b/server508/lists/interfaces/192.txt new file mode 100644 index 0000000..18fb3d8 --- /dev/null +++ b/server508/lists/interfaces/192.txt @@ -0,0 +1,64 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, type: 5, width: 24, height: 24 +Child: 7, type: 5, width: 24, height: 24 +Child: 8, type: 5, width: 24, height: 24 +Child: 9, type: 5, width: 24, height: 24 +Child: 10, type: 5, width: 24, height: 24 +Child: 11, type: 5, width: 24, height: 24 +Child: 12, type: 5, width: 24, height: 24 +Child: 13, type: 5, width: 24, height: 24 +Child: 14, type: 5, width: 24, height: 24 +Child: 15, type: 5, width: 24, height: 24 +Child: 16, type: 5, width: 24, height: 24 +Child: 17, type: 5, width: 24, height: 24 +Child: 18, type: 5, width: 24, height: 24 +Child: 19, type: 5, width: 24, height: 24 +Child: 20, type: 5, width: 24, height: 24 +Child: 21, type: 5, width: 24, height: 24 +Child: 22, type: 5, width: 24, height: 24 +Child: 23, type: 5, width: 24, height: 24 +Child: 24, type: 5, width: 24, height: 24 +Child: 25, type: 5, width: 24, height: 24 +Child: 26, type: 5, width: 24, height: 24 +Child: 27, type: 5, width: 24, height: 24 +Child: 28, type: 5, width: 24, height: 24 +Child: 29, type: 5, width: 24, height: 24 +Child: 30, type: 5, width: 24, height: 24 +Child: 31, type: 5, width: 24, height: 24 +Child: 32, type: 5, width: 24, height: 24 +Child: 33, type: 5, width: 24, height: 24 +Child: 34, type: 5, width: 24, height: 24 +Child: 35, type: 5, width: 24, height: 24 +Child: 36, type: 5, width: 24, height: 24 +Child: 37, type: 5, width: 24, height: 24 +Child: 38, type: 5, width: 24, height: 24 +Child: 39, type: 5, width: 24, height: 24 +Child: 40, type: 5, width: 24, height: 24 +Child: 41, type: 5, width: 24, height: 24 +Child: 42, type: 5, width: 24, height: 24 +Child: 43, type: 5, width: 24, height: 24 +Child: 44, type: 5, width: 24, height: 24 +Child: 45, type: 5, width: 24, height: 24 +Child: 46, type: 5, width: 24, height: 24 +Child: 47, type: 5, width: 24, height: 24 +Child: 48, type: 5, width: 24, height: 24 +Child: 49, type: 5, width: 24, height: 24 +Child: 50, type: 5, width: 24, height: 24 +Child: 51, type: 5, width: 24, height: 24 +Child: 52, type: 5, width: 24, height: 24 +Child: 53, type: 5, width: 24, height: 24 +Child: 54, type: 5, width: 24, height: 24 +Child: 55, type: 5, width: 24, height: 24 +Child: 56, type: 5, width: 24, height: 24 +Child: 57, type: 5, width: 24, height: 24 +Child: 58, type: 5, width: 24, height: 24 +Child: 59, type: 5, width: 24, height: 24 +Child: 60, type: 5, width: 24, height: 24 +Child: 61, type: 5, width: 24, height: 24 +Child: 62, type: 5, width: 24, height: 24 +Child: 63, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/193.txt b/server508/lists/interfaces/193.txt new file mode 100644 index 0000000..3f30758 --- /dev/null +++ b/server508/lists/interfaces/193.txt @@ -0,0 +1,26 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, type: 5, width: 24, height: 24 +Child: 7, type: 5, width: 24, height: 24 +Child: 8, type: 5, width: 24, height: 24 +Child: 9, type: 5, width: 24, height: 24 +Child: 10, type: 5, width: 24, height: 24 +Child: 11, type: 5, width: 24, height: 24 +Child: 12, type: 5, width: 24, height: 24 +Child: 13, type: 5, width: 24, height: 24 +Child: 14, type: 5, width: 24, height: 24 +Child: 15, type: 5, width: 24, height: 24 +Child: 16, type: 5, width: 24, height: 24 +Child: 17, type: 5, width: 24, height: 24 +Child: 18, type: 5, width: 24, height: 24 +Child: 19, type: 5, width: 24, height: 24 +Child: 20, type: 5, width: 24, height: 24 +Child: 21, type: 5, width: 24, height: 24 +Child: 22, type: 5, width: 24, height: 24 +Child: 23, type: 5, width: 24, height: 24 +Child: 24, type: 5, width: 24, height: 24 +Child: 25, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/194.txt b/server508/lists/interfaces/194.txt new file mode 100644 index 0000000..e2be89f --- /dev/null +++ b/server508/lists/interfaces/194.txt @@ -0,0 +1,24 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: Alchemy +Child: 2, message: Pizazz Points: +Child: 3, message: 9999 +Child: 4, message: Leather Boots: +Child: 5, message: Adamant Kiteshield: +Child: 6, message: Adamant Helm: +Child: 7, message: Emerald: +Child: 8, message: Rune Longsword: +Child: 9, message: 999 +Child: 10, message: 999 +Child: 11, message: 999 +Child: 12, message: 999 +Child: 13, message: 999 +Child: 14, type: 0, width: 32, height: 32 +Child: 15, type: 0, width: 32, height: 32 +Child: 16, type: 0, width: 32, height: 32 +Child: 17, type: 0, width: 32, height: 32 +Child: 18, type: 0, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/195.txt b/server508/lists/interfaces/195.txt new file mode 100644 index 0000000..944e341 --- /dev/null +++ b/server508/lists/interfaces/195.txt @@ -0,0 +1,15 @@ +Child: 0, type: 0, width: 174, height: 74 +Child: 1, type: 0, width: 77, height: 73 +Child: 2, type: 0, width: 79, height: 73 +Child: 3, type: 0, width: 79, height: 73 +Child: 4, type: 0, width: 82, height: 71 +Child: 5, message: Bonus: +Child: 6, type: 6, width: 159, height: 64 +Child: 7, message: Enchantment +Child: 8, message: Pizazz Points: +Child: 9, message: 9999 +Child: 10, type: 0, width: 119, height: 145 +Child: 11, type: 6, width: 60, height: 49 +Child: 12, type: 6, width: 48, height: 54 +Child: 13, type: 6, width: 55, height: 53 +Child: 14, type: 6, width: 52, height: 49 diff --git a/server508/lists/interfaces/196.txt b/server508/lists/interfaces/196.txt new file mode 100644 index 0000000..fbd233a --- /dev/null +++ b/server508/lists/interfaces/196.txt @@ -0,0 +1,14 @@ +Child: 0, type: 0, width: 170, height: 76 +Child: 1, type: 6, width: 38, height: 26 +Child: 2, type: 6, width: 28, height: 33 +Child: 3, type: 6, width: 36, height: 23 +Child: 4, type: 6, width: 39, height: 26 +Child: 5, message: 4 +Child: 6, message: 3 +Child: 7, message: 2 +Child: 8, message: 1 +Child: 9, type: 6, width: 159, height: 65 +Child: 10, message: Graveyard +Child: 11, message: Pizazz Points: +Child: 12, message: 9999 +Child: 13, type: 0, width: 69, height: 156 diff --git a/server508/lists/interfaces/197.txt b/server508/lists/interfaces/197.txt new file mode 100644 index 0000000..676bcc8 --- /dev/null +++ b/server508/lists/interfaces/197.txt @@ -0,0 +1,17 @@ +Child: 0, type: 3, width: 512, height: 400 +Child: 1, type: 3, width: 520, height: 34 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Magic Training Arena Shop +Child: 4, message: Telekinetic Pizazz Points +Child: 5, message: Enchantment Pizazz Points +Child: 6, message: Graveyard Pizazz Points +Child: 7, message: Alchemist Pizazz Points +Child: 8, message: 99999 +Child: 9, message: 99999 +Child: 10, message: 99999 +Child: 11, message: 99999 +Child: 12, message: (Upgrade) +Child: 13, message: (Upgrade) +Child: 14, message: (Upgrade) +Child: 15, type: 5, width: 26, height: 23 +Child: 16, type: 0, width: 498, height: 214 diff --git a/server508/lists/interfaces/198.txt b/server508/lists/interfaces/198.txt new file mode 100644 index 0000000..1414232 --- /dev/null +++ b/server508/lists/interfaces/198.txt @@ -0,0 +1,9 @@ +Child: 0, type: 0, width: 174, height: 189 +Child: 1, type: 6, width: 159, height: 64 +Child: 2, message: Telekinetic +Child: 3, message: Pizazz Points: +Child: 4, message: 999999 +Child: 5, type: 0, width: 58, height: 119 +Child: 6, type: 6, width: 35, height: 57 +Child: 7, message: 999 +Child: 8, message: Solved : diff --git a/server508/lists/interfaces/199.txt b/server508/lists/interfaces/199.txt new file mode 100644 index 0000000..8b0c3bf --- /dev/null +++ b/server508/lists/interfaces/199.txt @@ -0,0 +1,150 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: Hairdresser's Salon +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 6, width: 32, height: 32 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, type: 6, width: 32, height: 32 +Child: 100, type: 6, width: 32, height: 32 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, message: CONFIRM +Child: 105, type: 3, width: 243, height: 23 +Child: 106, type: 3, width: 20, height: 20 +Child: 107, type: 3, width: 20, height: 20 +Child: 108, type: 3, width: 20, height: 20 +Child: 109, type: 3, width: 20, height: 20 +Child: 110, type: 3, width: 20, height: 20 +Child: 111, type: 3, width: 20, height: 20 +Child: 112, type: 3, width: 20, height: 20 +Child: 113, type: 3, width: 20, height: 20 +Child: 114, type: 3, width: 20, height: 20 +Child: 115, type: 3, width: 20, height: 20 +Child: 116, type: 3, width: 20, height: 20 +Child: 117, type: 3, width: 20, height: 20 +Child: 118, message: Please select colour +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, type: 5, width: 25, height: 25 +Child: 124, type: 5, width: 25, height: 25 +Child: 125, type: 5, width: 25, height: 25 +Child: 126, type: 5, width: 25, height: 25 +Child: 127, type: 5, width: 20, height: 20 +Child: 128, type: 5, width: 20, height: 20 +Child: 129, type: 5, width: 20, height: 20 +Child: 130, type: 5, width: 20, height: 20 +Child: 131, type: 5, width: 20, height: 20 +Child: 132, type: 5, width: 20, height: 20 +Child: 133, type: 5, width: 20, height: 20 +Child: 134, type: 5, width: 20, height: 20 +Child: 135, type: 5, width: 20, height: 20 +Child: 136, type: 5, width: 20, height: 20 +Child: 137, type: 5, width: 20, height: 20 +Child: 138, type: 5, width: 20, height: 20 +Child: 139, type: 5, width: 50, height: 50 +Child: 140, type: 5, width: 50, height: 50 +Child: 141, type: 5, width: 50, height: 50 +Child: 142, type: 5, width: 50, height: 50 +Child: 143, type: 5, width: 50, height: 50 +Child: 144, type: 5, width: 50, height: 50 +Child: 145, type: 5, width: 50, height: 50 +Child: 146, type: 5, width: 50, height: 50 +Child: 147, type: 5, width: 26, height: 23 +Child: 148, type: 5, width: 26, height: 23 +Child: 149, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/2.txt b/server508/lists/interfaces/2.txt new file mode 100644 index 0000000..bcb88f4 --- /dev/null +++ b/server508/lists/interfaces/2.txt @@ -0,0 +1,51 @@ +Child: 0, type: 5, width: 512, height: 334 +Child: 1, type: 6, width: 21, height: 592 +Child: 2, type: 6, width: 21, height: 592 +Child: 3, type: 6, width: 21, height: 592 +Child: 4, type: 6, width: 21, height: 592 +Child: 5, type: 6, width: 21, height: 594 +Child: 6, type: 6, width: 21, height: 594 +Child: 7, type: 6, width: 21, height: 594 +Child: 8, type: 6, width: 21, height: 594 +Child: 9, type: 3, width: 61, height: 338 +Child: 10, type: 3, width: 61, height: 338 +Child: 11, type: 3, width: 61, height: 338 +Child: 12, type: 3, width: 61, height: 338 +Child: 13, type: 3, width: 61, height: 338 +Child: 14, type: 3, width: 61, height: 338 +Child: 15, type: 3, width: 61, height: 338 +Child: 16, type: 3, width: 61, height: 338 +Child: 17, type: 3, width: 61, height: 338 +Child: 18, type: 3, width: 61, height: 338 +Child: 19, type: 3, width: 267, height: 137 +Child: 20, type: 5, width: 255, height: 126 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 205, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 76 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 34, height: 76 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 205, height: 32 +Child: 29, type: 5, width: 26, height: 23 +Child: 30, type: 0, width: 225, height: 98 +Child: 31, type: 0, width: 512, height: 334 +Child: 32, type: 0, width: 16391, height: 16391 +Child: 33, type: 0, width: 16391, height: 16391 +Child: 34, type: 5, width: 32, height: 334 +Child: 35, type: 5, width: 462, height: 32 +Child: 36, type: 5, width: 512, height: 32 +Child: 37, type: 5, width: 32, height: 334 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 0, width: 8192, height: 16391 +Child: 43, type: 0, width: 8188, height: 16391 +Child: 44, type: 0, width: 16391, height: 8192 +Child: 45, type: 0, width: 16391, height: 8182 +Child: 46, type: 0, width: 512, height: 334 +Child: 47, type: 5, width: 256, height: 16384 +Child: 48, type: 5, width: 256, height: 16391 +Child: 49, type: 5, width: 16391, height: 167 +Child: 50, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/20.txt b/server508/lists/interfaces/20.txt new file mode 100644 index 0000000..f996f9b --- /dev/null +++ b/server508/lists/interfaces/20.txt @@ -0,0 +1,8 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/200.txt b/server508/lists/interfaces/200.txt new file mode 100644 index 0000000..6b887f8 --- /dev/null +++ b/server508/lists/interfaces/200.txt @@ -0,0 +1,29 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, message: Yrsa's Shoe Store +Child: 14, message: CONFIRM (500 GOLD) +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 5, width: 23, height: 23 +Child: 22, type: 5, width: 23, height: 23 +Child: 23, type: 5, width: 23, height: 23 +Child: 24, type: 5, width: 23, height: 23 +Child: 25, type: 5, width: 23, height: 23 +Child: 26, type: 5, width: 23, height: 23 +Child: 27, type: 5, width: 26, height: 24 +Child: 28, type: 3, width: 488, height: 305 diff --git a/server508/lists/interfaces/201.txt b/server508/lists/interfaces/201.txt new file mode 100644 index 0000000..021e7ba --- /dev/null +++ b/server508/lists/interfaces/201.txt @@ -0,0 +1,149 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Thessalia's Makeovers (Legs) +Child: 89, type: 3, width: 403, height: 28 +Child: 90, type: 3, width: 25, height: 25 +Child: 91, type: 3, width: 25, height: 25 +Child: 92, type: 3, width: 25, height: 25 +Child: 93, type: 3, width: 25, height: 25 +Child: 94, type: 3, width: 25, height: 25 +Child: 95, type: 3, width: 25, height: 25 +Child: 96, type: 3, width: 25, height: 25 +Child: 97, type: 3, width: 25, height: 25 +Child: 98, type: 3, width: 25, height: 25 +Child: 99, type: 3, width: 25, height: 25 +Child: 100, type: 3, width: 25, height: 25 +Child: 101, type: 3, width: 25, height: 25 +Child: 102, type: 3, width: 25, height: 25 +Child: 103, type: 3, width: 25, height: 25 +Child: 104, type: 3, width: 25, height: 25 +Child: 105, type: 3, width: 25, height: 25 +Child: 106, message: CONFIRM (500 gold) +Child: 107, type: 5, width: 25, height: 25 +Child: 108, type: 5, width: 25, height: 25 +Child: 109, type: 5, width: 25, height: 25 +Child: 110, type: 5, width: 25, height: 25 +Child: 111, type: 5, width: 25, height: 25 +Child: 112, type: 5, width: 25, height: 25 +Child: 113, type: 5, width: 25, height: 25 +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, message: Select colour +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 6, width: 32, height: 32 +Child: 129, type: 6, width: 32, height: 32 +Child: 130, type: 6, width: 32, height: 32 +Child: 131, type: 5, width: 30, height: 100 +Child: 132, type: 5, width: 30, height: 100 +Child: 133, type: 5, width: 30, height: 100 +Child: 134, type: 5, width: 30, height: 100 +Child: 135, type: 5, width: 30, height: 100 +Child: 136, type: 5, width: 30, height: 100 +Child: 137, type: 5, width: 30, height: 100 +Child: 138, type: 5, width: 25, height: 25 +Child: 139, type: 5, width: 25, height: 25 +Child: 140, type: 5, width: 25, height: 25 +Child: 141, type: 5, width: 25, height: 25 +Child: 142, type: 5, width: 25, height: 25 +Child: 143, type: 5, width: 25, height: 25 +Child: 144, type: 5, width: 25, height: 25 +Child: 145, message: Select leg style +Child: 146, type: 5, width: 26, height: 23 +Child: 147, type: 5, width: 26, height: 23 +Child: 148, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/202.txt b/server508/lists/interfaces/202.txt new file mode 100644 index 0000000..4f11b7a --- /dev/null +++ b/server508/lists/interfaces/202.txt @@ -0,0 +1,159 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Thessalia's Makeovers (Torso) +Child: 89, type: 3, width: 403, height: 28 +Child: 90, type: 3, width: 25, height: 25 +Child: 91, type: 3, width: 25, height: 25 +Child: 92, type: 3, width: 25, height: 25 +Child: 93, type: 3, width: 25, height: 25 +Child: 94, type: 3, width: 25, height: 25 +Child: 95, type: 3, width: 25, height: 25 +Child: 96, type: 3, width: 25, height: 25 +Child: 97, type: 3, width: 25, height: 25 +Child: 98, type: 3, width: 25, height: 25 +Child: 99, type: 3, width: 25, height: 25 +Child: 100, type: 3, width: 25, height: 25 +Child: 101, type: 3, width: 25, height: 25 +Child: 102, type: 3, width: 25, height: 25 +Child: 103, type: 3, width: 25, height: 25 +Child: 104, type: 3, width: 25, height: 25 +Child: 105, type: 3, width: 25, height: 25 +Child: 106, message: CONFIRM (500 gold) +Child: 107, type: 5, width: 25, height: 25 +Child: 108, type: 5, width: 25, height: 25 +Child: 109, type: 5, width: 25, height: 25 +Child: 110, type: 5, width: 25, height: 25 +Child: 111, type: 5, width: 25, height: 25 +Child: 112, type: 5, width: 25, height: 25 +Child: 113, type: 5, width: 25, height: 25 +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, message: Select body style +Child: 124, message: Select arms style +Child: 125, message: Select colour +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 6, width: 32, height: 32 +Child: 129, type: 6, width: 32, height: 32 +Child: 130, type: 6, width: 32, height: 32 +Child: 131, type: 6, width: 32, height: 32 +Child: 132, type: 6, width: 32, height: 32 +Child: 133, type: 6, width: 32, height: 32 +Child: 134, type: 6, width: 32, height: 32 +Child: 135, type: 6, width: 32, height: 32 +Child: 136, type: 6, width: 32, height: 32 +Child: 137, type: 6, width: 32, height: 32 +Child: 138, type: 6, width: 32, height: 32 +Child: 139, type: 6, width: 32, height: 32 +Child: 140, type: 6, width: 32, height: 32 +Child: 141, type: 6, width: 32, height: 32 +Child: 142, type: 6, width: 32, height: 32 +Child: 143, type: 6, width: 32, height: 32 +Child: 144, type: 6, width: 32, height: 32 +Child: 145, type: 6, width: 32, height: 32 +Child: 146, type: 5, width: 25, height: 25 +Child: 147, type: 5, width: 25, height: 25 +Child: 148, type: 5, width: 25, height: 25 +Child: 149, type: 5, width: 25, height: 25 +Child: 150, type: 5, width: 25, height: 25 +Child: 151, type: 5, width: 25, height: 25 +Child: 152, type: 5, width: 25, height: 25 +Child: 153, type: 5, width: 25, height: 25 +Child: 154, type: 5, width: 25, height: 25 +Child: 155, type: 5, width: 25, height: 25 +Child: 156, type: 5, width: 26, height: 23 +Child: 157, type: 5, width: 26, height: 23 +Child: 158, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/203.txt b/server508/lists/interfaces/203.txt new file mode 100644 index 0000000..79a3f09 --- /dev/null +++ b/server508/lists/interfaces/203.txt @@ -0,0 +1,149 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 6, width: 32, height: 32 +Child: 76, message: Hairdresser's Salon +Child: 77, type: 6, width: 32, height: 32 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, message: CONFIRM +Child: 100, type: 3, width: 243, height: 23 +Child: 101, type: 3, width: 20, height: 20 +Child: 102, type: 3, width: 20, height: 20 +Child: 103, type: 3, width: 20, height: 20 +Child: 104, type: 3, width: 20, height: 20 +Child: 105, type: 3, width: 20, height: 20 +Child: 106, type: 3, width: 20, height: 20 +Child: 107, type: 3, width: 20, height: 20 +Child: 108, type: 3, width: 20, height: 20 +Child: 109, type: 3, width: 20, height: 20 +Child: 110, type: 3, width: 20, height: 20 +Child: 111, type: 3, width: 20, height: 20 +Child: 112, type: 3, width: 20, height: 20 +Child: 113, message: Please select colour +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, type: 5, width: 25, height: 25 +Child: 124, type: 5, width: 20, height: 20 +Child: 125, type: 5, width: 20, height: 20 +Child: 126, type: 5, width: 20, height: 20 +Child: 127, type: 5, width: 20, height: 20 +Child: 128, type: 5, width: 20, height: 20 +Child: 129, type: 5, width: 20, height: 20 +Child: 130, type: 5, width: 20, height: 20 +Child: 131, type: 5, width: 20, height: 20 +Child: 132, type: 5, width: 20, height: 20 +Child: 133, type: 5, width: 20, height: 20 +Child: 134, type: 5, width: 20, height: 20 +Child: 135, type: 5, width: 20, height: 20 +Child: 136, type: 5, width: 50, height: 50 +Child: 137, type: 5, width: 50, height: 50 +Child: 138, type: 5, width: 50, height: 50 +Child: 139, type: 5, width: 50, height: 50 +Child: 140, type: 5, width: 50, height: 50 +Child: 141, type: 5, width: 50, height: 50 +Child: 142, type: 5, width: 50, height: 50 +Child: 143, type: 5, width: 50, height: 50 +Child: 144, type: 5, width: 50, height: 50 +Child: 145, type: 5, width: 50, height: 50 +Child: 146, type: 5, width: 26, height: 23 +Child: 147, type: 5, width: 26, height: 23 +Child: 148, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/204.txt b/server508/lists/interfaces/204.txt new file mode 100644 index 0000000..d4f851c --- /dev/null +++ b/server508/lists/interfaces/204.txt @@ -0,0 +1,146 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: Hairdresser's Salon +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 6, width: 32, height: 32 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, message: CONFIRM +Child: 99, type: 3, width: 243, height: 23 +Child: 100, type: 3, width: 20, height: 20 +Child: 101, type: 3, width: 20, height: 20 +Child: 102, type: 3, width: 20, height: 20 +Child: 103, type: 3, width: 20, height: 20 +Child: 104, type: 3, width: 20, height: 20 +Child: 105, type: 3, width: 20, height: 20 +Child: 106, type: 3, width: 20, height: 20 +Child: 107, type: 3, width: 20, height: 20 +Child: 108, type: 3, width: 20, height: 20 +Child: 109, type: 3, width: 20, height: 20 +Child: 110, type: 3, width: 20, height: 20 +Child: 111, type: 3, width: 20, height: 20 +Child: 112, message: Please select colour +Child: 113, type: 5, width: 25, height: 25 +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 20, height: 20 +Child: 123, type: 5, width: 20, height: 20 +Child: 124, type: 5, width: 20, height: 20 +Child: 125, type: 5, width: 20, height: 20 +Child: 126, type: 5, width: 20, height: 20 +Child: 127, type: 5, width: 20, height: 20 +Child: 128, type: 5, width: 20, height: 20 +Child: 129, type: 5, width: 20, height: 20 +Child: 130, type: 5, width: 20, height: 20 +Child: 131, type: 5, width: 20, height: 20 +Child: 132, type: 5, width: 20, height: 20 +Child: 133, type: 5, width: 20, height: 20 +Child: 134, type: 5, width: 50, height: 50 +Child: 135, type: 5, width: 50, height: 50 +Child: 136, type: 5, width: 50, height: 50 +Child: 137, type: 5, width: 50, height: 50 +Child: 138, type: 5, width: 50, height: 50 +Child: 139, type: 5, width: 50, height: 50 +Child: 140, type: 5, width: 50, height: 50 +Child: 141, type: 5, width: 50, height: 50 +Child: 142, type: 5, width: 50, height: 50 +Child: 143, type: 5, width: 26, height: 23 +Child: 144, type: 5, width: 26, height: 23 +Child: 145, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/205.txt b/server508/lists/interfaces/205.txt new file mode 100644 index 0000000..eb31928 --- /dev/null +++ b/server508/lists/interfaces/205.txt @@ -0,0 +1,117 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: CONFIRM (3000 Gold) +Child: 89, type: 3, width: 35, height: 202 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 3, width: 32, height: 25 +Child: 94, type: 3, width: 32, height: 25 +Child: 95, type: 3, width: 32, height: 25 +Child: 96, type: 3, width: 32, height: 25 +Child: 97, type: 3, width: 32, height: 25 +Child: 98, type: 3, width: 32, height: 25 +Child: 99, type: 3, width: 32, height: 25 +Child: 100, type: 3, width: 32, height: 25 +Child: 101, message: MALE +Child: 102, message: Select skin colour and gender +Child: 103, message: FEMALE +Child: 104, type: 5, width: 25, height: 25 +Child: 105, type: 5, width: 25, height: 25 +Child: 106, type: 5, width: 25, height: 25 +Child: 107, type: 5, width: 25, height: 25 +Child: 108, type: 5, width: 25, height: 25 +Child: 109, type: 5, width: 25, height: 25 +Child: 110, type: 5, width: 25, height: 25 +Child: 111, type: 5, width: 25, height: 25 +Child: 112, type: 5, width: 100, height: 150 +Child: 113, type: 5, width: 100, height: 150 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 5, width: 26, height: 23 +Child: 116, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/206.txt b/server508/lists/interfaces/206.txt new file mode 100644 index 0000000..dbb6891 --- /dev/null +++ b/server508/lists/interfaces/206.txt @@ -0,0 +1,140 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Thessalia's Makeovers (Legs) +Child: 89, type: 3, width: 403, height: 28 +Child: 90, type: 3, width: 25, height: 25 +Child: 91, type: 3, width: 25, height: 25 +Child: 92, type: 3, width: 25, height: 25 +Child: 93, type: 3, width: 25, height: 25 +Child: 94, type: 3, width: 25, height: 25 +Child: 95, type: 3, width: 25, height: 25 +Child: 96, type: 3, width: 25, height: 25 +Child: 97, type: 3, width: 25, height: 25 +Child: 98, type: 3, width: 25, height: 25 +Child: 99, type: 3, width: 25, height: 25 +Child: 100, type: 3, width: 25, height: 25 +Child: 101, type: 3, width: 25, height: 25 +Child: 102, type: 3, width: 25, height: 25 +Child: 103, type: 3, width: 25, height: 25 +Child: 104, type: 3, width: 25, height: 25 +Child: 105, type: 3, width: 25, height: 25 +Child: 106, message: CONFIRM (500 gold) +Child: 107, type: 5, width: 25, height: 25 +Child: 108, type: 5, width: 25, height: 25 +Child: 109, type: 5, width: 25, height: 25 +Child: 110, type: 5, width: 25, height: 25 +Child: 111, type: 5, width: 25, height: 25 +Child: 112, type: 5, width: 25, height: 25 +Child: 113, type: 5, width: 25, height: 25 +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, message: Select colour +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 5, width: 40, height: 120 +Child: 129, type: 5, width: 40, height: 120 +Child: 130, type: 5, width: 40, height: 120 +Child: 131, type: 5, width: 40, height: 120 +Child: 132, type: 5, width: 25, height: 25 +Child: 133, type: 5, width: 25, height: 25 +Child: 134, type: 5, width: 25, height: 25 +Child: 135, type: 5, width: 25, height: 25 +Child: 136, message: Select leg style +Child: 137, type: 5, width: 26, height: 23 +Child: 138, type: 5, width: 26, height: 23 +Child: 139, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/207.txt b/server508/lists/interfaces/207.txt new file mode 100644 index 0000000..a17565e --- /dev/null +++ b/server508/lists/interfaces/207.txt @@ -0,0 +1,173 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Thessalia's Makeovers (Torso) +Child: 89, type: 3, width: 403, height: 28 +Child: 90, type: 3, width: 25, height: 25 +Child: 91, type: 3, width: 25, height: 25 +Child: 92, type: 3, width: 25, height: 25 +Child: 93, type: 3, width: 25, height: 25 +Child: 94, type: 3, width: 25, height: 25 +Child: 95, type: 3, width: 25, height: 25 +Child: 96, type: 3, width: 25, height: 25 +Child: 97, type: 3, width: 25, height: 25 +Child: 98, type: 3, width: 25, height: 25 +Child: 99, type: 3, width: 25, height: 25 +Child: 100, type: 3, width: 25, height: 25 +Child: 101, type: 3, width: 25, height: 25 +Child: 102, type: 3, width: 25, height: 25 +Child: 103, type: 3, width: 25, height: 25 +Child: 104, type: 3, width: 25, height: 25 +Child: 105, type: 3, width: 25, height: 25 +Child: 106, message: CONFIRM (500 gold) +Child: 107, type: 5, width: 25, height: 25 +Child: 108, type: 5, width: 25, height: 25 +Child: 109, type: 5, width: 25, height: 25 +Child: 110, type: 5, width: 25, height: 25 +Child: 111, type: 5, width: 25, height: 25 +Child: 112, type: 5, width: 25, height: 25 +Child: 113, type: 5, width: 25, height: 25 +Child: 114, type: 5, width: 25, height: 25 +Child: 115, type: 5, width: 25, height: 25 +Child: 116, type: 5, width: 25, height: 25 +Child: 117, type: 5, width: 25, height: 25 +Child: 118, type: 5, width: 25, height: 25 +Child: 119, type: 5, width: 25, height: 25 +Child: 120, type: 5, width: 25, height: 25 +Child: 121, type: 5, width: 25, height: 25 +Child: 122, type: 5, width: 25, height: 25 +Child: 123, message: Select body style +Child: 124, message: Select arms style +Child: 125, message: Select colour +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 6, width: 32, height: 32 +Child: 129, type: 6, width: 32, height: 32 +Child: 130, type: 6, width: 32, height: 32 +Child: 131, type: 6, width: 32, height: 32 +Child: 132, type: 6, width: 32, height: 32 +Child: 133, type: 6, width: 32, height: 32 +Child: 134, type: 6, width: 32, height: 32 +Child: 135, type: 6, width: 32, height: 32 +Child: 136, type: 6, width: 32, height: 32 +Child: 137, type: 6, width: 32, height: 32 +Child: 138, type: 6, width: 32, height: 32 +Child: 139, type: 6, width: 32, height: 32 +Child: 140, type: 6, width: 32, height: 32 +Child: 141, type: 6, width: 32, height: 32 +Child: 142, type: 6, width: 32, height: 32 +Child: 143, type: 6, width: 32, height: 32 +Child: 144, type: 6, width: 32, height: 32 +Child: 145, type: 6, width: 32, height: 32 +Child: 146, type: 6, width: 32, height: 32 +Child: 147, type: 6, width: 32, height: 32 +Child: 148, type: 6, width: 32, height: 32 +Child: 149, type: 6, width: 32, height: 32 +Child: 150, type: 6, width: 32, height: 32 +Child: 151, type: 6, width: 32, height: 32 +Child: 152, type: 6, width: 32, height: 32 +Child: 153, type: 6, width: 32, height: 32 +Child: 154, type: 6, width: 32, height: 32 +Child: 155, type: 6, width: 32, height: 32 +Child: 156, type: 6, width: 32, height: 32 +Child: 157, type: 5, width: 25, height: 25 +Child: 158, type: 5, width: 25, height: 25 +Child: 159, type: 5, width: 25, height: 25 +Child: 160, type: 5, width: 25, height: 25 +Child: 161, type: 5, width: 25, height: 25 +Child: 162, type: 5, width: 25, height: 25 +Child: 163, type: 5, width: 25, height: 25 +Child: 164, type: 5, width: 25, height: 25 +Child: 165, type: 5, width: 25, height: 25 +Child: 166, type: 5, width: 25, height: 25 +Child: 167, type: 5, width: 25, height: 25 +Child: 168, type: 5, width: 25, height: 25 +Child: 169, type: 5, width: 25, height: 25 +Child: 170, type: 5, width: 26, height: 23 +Child: 171, type: 5, width: 26, height: 23 +Child: 172, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/208.txt b/server508/lists/interfaces/208.txt new file mode 100644 index 0000000..0d6d732 --- /dev/null +++ b/server508/lists/interfaces/208.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 450, height: 24 +Child: 1, message: Text diff --git a/server508/lists/interfaces/209.txt b/server508/lists/interfaces/209.txt new file mode 100644 index 0000000..43389f5 --- /dev/null +++ b/server508/lists/interfaces/209.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 382, height: 32 +Child: 1, type: 0, width: 341, height: 77 +Child: 2, message: Complete the Maze as fast as possible! +Child: 3, message: There is... +Child: 4, message: %1% +Child: 5, message: ... of the Reward left! +Child: 6, type: 0, width: 354, height: 89 diff --git a/server508/lists/interfaces/21.txt b/server508/lists/interfaces/21.txt new file mode 100644 index 0000000..7a9636b --- /dev/null +++ b/server508/lists/interfaces/21.txt @@ -0,0 +1,9 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/210.txt b/server508/lists/interfaces/210.txt new file mode 100644 index 0000000..98064f7 --- /dev/null +++ b/server508/lists/interfaces/210.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Click here to continue diff --git a/server508/lists/interfaces/211.txt b/server508/lists/interfaces/211.txt new file mode 100644 index 0000000..2d252e6 --- /dev/null +++ b/server508/lists/interfaces/211.txt @@ -0,0 +1,4 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Click here to continue diff --git a/server508/lists/interfaces/212.txt b/server508/lists/interfaces/212.txt new file mode 100644 index 0000000..4000bb1 --- /dev/null +++ b/server508/lists/interfaces/212.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Click here to continue diff --git a/server508/lists/interfaces/213.txt b/server508/lists/interfaces/213.txt new file mode 100644 index 0000000..a7cc4cc --- /dev/null +++ b/server508/lists/interfaces/213.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 +Child: 5, message: Click here to continue diff --git a/server508/lists/interfaces/214.txt b/server508/lists/interfaces/214.txt new file mode 100644 index 0000000..4990026 --- /dev/null +++ b/server508/lists/interfaces/214.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 +Child: 5, message: Line5 +Child: 6, message: Click here to continue diff --git a/server508/lists/interfaces/215.txt b/server508/lists/interfaces/215.txt new file mode 100644 index 0000000..fa37f56 --- /dev/null +++ b/server508/lists/interfaces/215.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 diff --git a/server508/lists/interfaces/216.txt b/server508/lists/interfaces/216.txt new file mode 100644 index 0000000..2910c45 --- /dev/null +++ b/server508/lists/interfaces/216.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 diff --git a/server508/lists/interfaces/217.txt b/server508/lists/interfaces/217.txt new file mode 100644 index 0000000..1cad17d --- /dev/null +++ b/server508/lists/interfaces/217.txt @@ -0,0 +1,4 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 diff --git a/server508/lists/interfaces/218.txt b/server508/lists/interfaces/218.txt new file mode 100644 index 0000000..534c42c --- /dev/null +++ b/server508/lists/interfaces/218.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 diff --git a/server508/lists/interfaces/219.txt b/server508/lists/interfaces/219.txt new file mode 100644 index 0000000..b5f1c86 --- /dev/null +++ b/server508/lists/interfaces/219.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 +Child: 5, message: Line5 diff --git a/server508/lists/interfaces/22.txt b/server508/lists/interfaces/22.txt new file mode 100644 index 0000000..efa4f51 --- /dev/null +++ b/server508/lists/interfaces/22.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/220.txt b/server508/lists/interfaces/220.txt new file mode 100644 index 0000000..e2965b8 --- /dev/null +++ b/server508/lists/interfaces/220.txt @@ -0,0 +1,18 @@ +Child: 0, type: 6, width: 494, height: 336 +Child: 1, message: +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, type: 5, width: 26, height: 23 +Child: 17, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/221.txt b/server508/lists/interfaces/221.txt new file mode 100644 index 0000000..6ab7c72 --- /dev/null +++ b/server508/lists/interfaces/221.txt @@ -0,0 +1,15 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 463, height: 299 +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/222.txt b/server508/lists/interfaces/222.txt new file mode 100644 index 0000000..d1e67d4 --- /dev/null +++ b/server508/lists/interfaces/222.txt @@ -0,0 +1,15 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/223.txt b/server508/lists/interfaces/223.txt new file mode 100644 index 0000000..a537572 --- /dev/null +++ b/server508/lists/interfaces/223.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 189, height: 261 +Child: 1, type: 5, width: 48, height: 48 +Child: 2, type: 5, width: 48, height: 48 +Child: 3, type: 5, width: 48, height: 48 +Child: 4, type: 5, width: 48, height: 48 +Child: 5, type: 5, width: 48, height: 48 +Child: 6, type: 5, width: 48, height: 48 +Child: 7, type: 5, width: 48, height: 48 +Child: 8, type: 5, width: 48, height: 48 +Child: 9, type: 0, width: 141, height: 48 diff --git a/server508/lists/interfaces/224.txt b/server508/lists/interfaces/224.txt new file mode 100644 index 0000000..4de7797 --- /dev/null +++ b/server508/lists/interfaces/224.txt @@ -0,0 +1,9 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 484, height: 315 +Child: 2, message: Waterbirth Island +Child: 3, message: Miscellania +Child: 4, message: Etceteria +Child: 5, message: Rellekka +Child: 6, message: Neitiznot & Jatizso +Child: 7, type: 6, width: 358, height: 195 +Child: 8, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/225.txt b/server508/lists/interfaces/225.txt new file mode 100644 index 0000000..30f3bfa --- /dev/null +++ b/server508/lists/interfaces/225.txt @@ -0,0 +1,16 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 463, height: 299 +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, type: 5, width: 26, height: 23 +Child: 15, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/226.txt b/server508/lists/interfaces/226.txt new file mode 100644 index 0000000..5be496c --- /dev/null +++ b/server508/lists/interfaces/226.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 14631, height: 38857 diff --git a/server508/lists/interfaces/227.txt b/server508/lists/interfaces/227.txt new file mode 100644 index 0000000..f0dffce --- /dev/null +++ b/server508/lists/interfaces/227.txt @@ -0,0 +1,57 @@ +Child: 0, type: 0, width: 387, height: 287 +Child: 1, type: 0, width: 342, height: 215 +Child: 2, message: List of needed items: +Child: 3, message: mourning_deathalter_item1 +Child: 4, type: 6, width: 387, height: 297 +Child: 5, message: mourning_deathalter_item2 +Child: 6, message: mourning_deathalter_item3 +Child: 7, message: mourning_deathalter_item4 +Child: 8, message: mourning_deathalter_item5 +Child: 9, message: mourning_deathalter_item6 +Child: 10, message: mourning_deathalter_item7 +Child: 11, message: mourning_deathalter_item8 +Child: 12, message: mourning_deathalter_item9 +Child: 13, message: mourning_deathalter_item10 +Child: 14, message: mourning_deathalter_item11 +Child: 15, message: mourning_deathalter_item12 +Child: 16, message: mourning_deathalter_item13 +Child: 17, message: mourning_deathalter_item14 +Child: 18, message: mourning_deathalter_item15 +Child: 19, message: mourning_deathalter_item16 +Child: 20, message: mourning_deathalter_item17 +Child: 21, message: mourning_deathalter_item18 +Child: 22, message: mourning_deathalter_item19 +Child: 23, message: mourning_deathalter_item20 +Child: 24, message: mourning_deathalter_item21 +Child: 25, message: mourning_deathalter_item22 +Child: 26, message: mourning_deathalter_item23 +Child: 27, message: mourning_deathalter_item24 +Child: 28, message: mourning_deathalter_item25 +Child: 29, message: mourning_deathalter_item26 +Child: 30, message: mourning_deathalter_item27 +Child: 31, message: mourning_deathalter_item28 +Child: 32, message: mourning_deathalter_item29 +Child: 33, message: mourning_deathalter_item30 +Child: 34, message: mourning_deathalter_item31 +Child: 35, message: mourning_deathalter_item32 +Child: 36, message: mourning_deathalter_item33 +Child: 37, message: mourning_deathalter_item34 +Child: 38, message: mourning_deathalter_item35 +Child: 39, message: mourning_deathalter_item36 +Child: 40, message: mourning_deathalter_item37 +Child: 41, message: mourning_deathalter_item38 +Child: 42, message: mourning_deathalter_item39 +Child: 43, message: mourning_deathalter_item40 +Child: 44, message: mourning_deathalter_item41 +Child: 45, message: mourning_deathalter_item42 +Child: 46, message: mourning_deathalter_item43 +Child: 47, message: mourning_deathalter_item44 +Child: 48, message: mourning_deathalter_item45 +Child: 49, message: mourning_deathalter_item46 +Child: 50, message: mourning_deathalter_item47 +Child: 51, message: mourning_deathalter_item48 +Child: 52, message: mourning_deathalter_item49 +Child: 53, message: mourning_deathalter_item50 +Child: 54, type: 5, width: 26, height: 23 +Child: 55, type: 0, width: 32, height: 32 +Child: 56, type: 0, width: 16, height: 213 diff --git a/server508/lists/interfaces/228.txt b/server508/lists/interfaces/228.txt new file mode 100644 index 0000000..9845a99 --- /dev/null +++ b/server508/lists/interfaces/228.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 0, width: 337, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/229.txt b/server508/lists/interfaces/229.txt new file mode 100644 index 0000000..9845a99 --- /dev/null +++ b/server508/lists/interfaces/229.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 0, width: 337, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/23.txt b/server508/lists/interfaces/23.txt new file mode 100644 index 0000000..a6b57bb --- /dev/null +++ b/server508/lists/interfaces/23.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/230.txt b/server508/lists/interfaces/230.txt new file mode 100644 index 0000000..e13649d --- /dev/null +++ b/server508/lists/interfaces/230.txt @@ -0,0 +1,11 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 0, width: 337, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 5, width: 57, height: 13 +Child: 10, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/231.txt b/server508/lists/interfaces/231.txt new file mode 100644 index 0000000..e13649d --- /dev/null +++ b/server508/lists/interfaces/231.txt @@ -0,0 +1,11 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 0, width: 337, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 5, width: 57, height: 13 +Child: 10, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/232.txt b/server508/lists/interfaces/232.txt new file mode 100644 index 0000000..02af6fa --- /dev/null +++ b/server508/lists/interfaces/232.txt @@ -0,0 +1,12 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, message: option4 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 0, width: 337, height: 13 +Child: 9, type: 0, width: 476, height: 13 +Child: 10, type: 5, width: 57, height: 13 +Child: 11, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/233.txt b/server508/lists/interfaces/233.txt new file mode 100644 index 0000000..02af6fa --- /dev/null +++ b/server508/lists/interfaces/233.txt @@ -0,0 +1,12 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, message: option4 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 0, width: 337, height: 13 +Child: 9, type: 0, width: 476, height: 13 +Child: 10, type: 5, width: 57, height: 13 +Child: 11, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/234.txt b/server508/lists/interfaces/234.txt new file mode 100644 index 0000000..7088c4b --- /dev/null +++ b/server508/lists/interfaces/234.txt @@ -0,0 +1,13 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, message: option4 +Child: 6, message: option5 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 337, height: 13 +Child: 10, type: 0, width: 476, height: 13 +Child: 11, type: 5, width: 57, height: 13 +Child: 12, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/235.txt b/server508/lists/interfaces/235.txt new file mode 100644 index 0000000..7088c4b --- /dev/null +++ b/server508/lists/interfaces/235.txt @@ -0,0 +1,13 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, message: option3 +Child: 5, message: option4 +Child: 6, message: option5 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 337, height: 13 +Child: 10, type: 0, width: 476, height: 13 +Child: 11, type: 5, width: 57, height: 13 +Child: 12, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/236.txt b/server508/lists/interfaces/236.txt new file mode 100644 index 0000000..ab1e5ba --- /dev/null +++ b/server508/lists/interfaces/236.txt @@ -0,0 +1,9 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, type: 5, width: 57, height: 13 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 0, width: 337, height: 13 +Child: 6, type: 0, width: 476, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/237.txt b/server508/lists/interfaces/237.txt new file mode 100644 index 0000000..7b6526e --- /dev/null +++ b/server508/lists/interfaces/237.txt @@ -0,0 +1,11 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, message: option3 +Child: 4, message: option4 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 0, width: 337, height: 13 +Child: 8, type: 0, width: 476, height: 13 +Child: 9, type: 5, width: 57, height: 13 +Child: 10, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/238.txt b/server508/lists/interfaces/238.txt new file mode 100644 index 0000000..b833297 --- /dev/null +++ b/server508/lists/interfaces/238.txt @@ -0,0 +1,12 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, message: option3 +Child: 4, message: option4 +Child: 5, message: option5 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 0, width: 337, height: 13 +Child: 9, type: 0, width: 476, height: 13 +Child: 10, type: 5, width: 57, height: 13 +Child: 11, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/239.txt b/server508/lists/interfaces/239.txt new file mode 100644 index 0000000..4e046bb --- /dev/null +++ b/server508/lists/interfaces/239.txt @@ -0,0 +1,9 @@ +Child: 0, type: 6, width: 470, height: 261 +Child: 1, message: To: Engineer Claus Mousetrap +Child: 2, message: This morning I received a complaint about your inability to repair the Camp Tyras catapult, arriving without the tools and materials required. To avoid further delay, I'll repeat your instructions: +Child: 3, message: *The replacement wooden parts must be made from MAHOGANY planks and at least MITHRIL nails.
*You will need METAL PARTS, which have been ordered from Rolad, the dwarf scholar.
The pride of the King's Engineers is at stake, Claus. +Child: 4, message: SORT THIS MESS OUT! +Child: 5, message: Chief Engineer, Commander Measures +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 5, width: 26, height: 23 +Child: 8, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/24.txt b/server508/lists/interfaces/24.txt new file mode 100644 index 0000000..c78c1f5 --- /dev/null +++ b/server508/lists/interfaces/24.txt @@ -0,0 +1,7 @@ +Child: 0, message: Kill Count: %1 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/240.txt b/server508/lists/interfaces/240.txt new file mode 100644 index 0000000..e1c63fd --- /dev/null +++ b/server508/lists/interfaces/240.txt @@ -0,0 +1,34 @@ +Child: 0, type: 6, width: 176, height: 240 +Child: 1, type: 6, width: 162, height: 154 +Child: 2, type: 6, width: 63, height: 72 +Child: 3, type: 6, width: 176, height: 240 +Child: 4, type: 6, width: 162, height: 154 +Child: 5, type: 6, width: 63, height: 87 +Child: 6, type: 0, width: 32, height: 39 +Child: 7, type: 0, width: 107, height: 101 +Child: 8, type: 6, width: 176, height: 240 +Child: 9, type: 6, width: 162, height: 154 +Child: 10, type: 6, width: 63, height: 59 +Child: 11, type: 0, width: 40, height: 51 +Child: 12, type: 0, width: 107, height: 101 +Child: 13, type: 6, width: 176, height: 240 +Child: 14, type: 6, width: 162, height: 154 +Child: 15, type: 6, width: 76, height: 70 +Child: 16, type: 0, width: 47, height: 36 +Child: 17, type: 0, width: 107, height: 101 +Child: 18, type: 6, width: 176, height: 240 +Child: 19, type: 6, width: 162, height: 154 +Child: 20, type: 6, width: 74, height: 70 +Child: 21, type: 0, width: 47, height: 36 +Child: 22, type: 0, width: 107, height: 101 +Child: 23, type: 6, width: 42, height: 40 +Child: 24, type: 6, width: 42, height: 40 +Child: 25, type: 0, width: 43, height: 45 +Child: 26, type: 0, width: 43, height: 45 +Child: 27, message: Tries = 3 +Child: 28, message: +Child: 29, message: +Child: 30, message: +Child: 31, message: +Child: 32, message: +Child: 33, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/241.txt b/server508/lists/interfaces/241.txt new file mode 100644 index 0000000..7f2e42d --- /dev/null +++ b/server508/lists/interfaces/241.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Click here to continue diff --git a/server508/lists/interfaces/242.txt b/server508/lists/interfaces/242.txt new file mode 100644 index 0000000..679479f --- /dev/null +++ b/server508/lists/interfaces/242.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Click here to continue diff --git a/server508/lists/interfaces/243.txt b/server508/lists/interfaces/243.txt new file mode 100644 index 0000000..eefba27 --- /dev/null +++ b/server508/lists/interfaces/243.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Click here to continue diff --git a/server508/lists/interfaces/244.txt b/server508/lists/interfaces/244.txt new file mode 100644 index 0000000..317be8c --- /dev/null +++ b/server508/lists/interfaces/244.txt @@ -0,0 +1,9 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Line4 +Child: 8, message: Click here to continue diff --git a/server508/lists/interfaces/245.txt b/server508/lists/interfaces/245.txt new file mode 100644 index 0000000..8b74a07 --- /dev/null +++ b/server508/lists/interfaces/245.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 diff --git a/server508/lists/interfaces/246.txt b/server508/lists/interfaces/246.txt new file mode 100644 index 0000000..5d6dccd --- /dev/null +++ b/server508/lists/interfaces/246.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 diff --git a/server508/lists/interfaces/247.txt b/server508/lists/interfaces/247.txt new file mode 100644 index 0000000..b401126 --- /dev/null +++ b/server508/lists/interfaces/247.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 diff --git a/server508/lists/interfaces/248.txt b/server508/lists/interfaces/248.txt new file mode 100644 index 0000000..88788e3 --- /dev/null +++ b/server508/lists/interfaces/248.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line 1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Line4 diff --git a/server508/lists/interfaces/249.txt b/server508/lists/interfaces/249.txt new file mode 100644 index 0000000..4bba83e --- /dev/null +++ b/server508/lists/interfaces/249.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 387, height: 287 +Child: 1, type: 0, width: 358, height: 225 +Child: 2, message: Surok Magis, +Child: 3, type: 6, width: 418, height: 325 +Child: 4, message: Your actions are being watched. We know what you are trying to do and the VPSG will stop you! Do not attempt to leave the palace or you will be arrested on sight. We will not hesitate to kill you if you disobey King Roald's orders. Rat Burgiss +Child: 5, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/25.txt b/server508/lists/interfaces/25.txt new file mode 100644 index 0000000..2f8daad --- /dev/null +++ b/server508/lists/interfaces/25.txt @@ -0,0 +1,15 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, message: Which is the next shape in the above sequence? +Child: 2, type: 6, width: 93, height: 93 +Child: 3, type: 6, width: 93, height: 93 +Child: 4, type: 6, width: 93, height: 93 +Child: 5, type: 0, width: 355, height: 93 +Child: 6, type: 6, width: 93, height: 93 +Child: 7, type: 6, width: 93, height: 93 +Child: 8, type: 6, width: 93, height: 93 +Child: 9, type: 6, width: 157, height: 157 +Child: 10, type: 0, width: 16391, height: 16391 +Child: 11, message: 1. +Child: 12, message: 2. +Child: 13, message: 3. +Child: 14, message: 4. diff --git a/server508/lists/interfaces/250.txt b/server508/lists/interfaces/250.txt new file mode 100644 index 0000000..3544686 --- /dev/null +++ b/server508/lists/interfaces/250.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 418, height: 325 +Child: 1, type: 0, width: 387, height: 287 +Child: 2, type: 0, width: 358, height: 225 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, message: To My Business Partner, +Child: 5, message: All is well here, my friend. I will continue with my work. You do not need worry. They suspect nothing, the fools! In three days there will be a new King in Varrock! Surok Magis +Child: 6, type: 0, width: 508, height: 370 diff --git a/server508/lists/interfaces/251.txt b/server508/lists/interfaces/251.txt new file mode 100644 index 0000000..f1743f7 --- /dev/null +++ b/server508/lists/interfaces/251.txt @@ -0,0 +1,7 @@ +Child: 0, type: 3, width: 517, height: 335 +Child: 1, type: 0, width: 387, height: 287 +Child: 2, type: 0, width: 358, height: 225 +Child: 3, message: Instructions for Beacon Ring +Child: 4, type: 6, width: 55, height: 81 +Child: 5, message: Use this ring when you are ready to summon me to your aid. It is a daunting task, yet you must battle the king to allow me to remove the spell from him. When the king is almost dead, use this ring and I will teleport to your aid. Be warned - Though I am skilled with magic, I am no fighter! Should you summon me too early I will have to teleport us out of danger! When our mission is completed, I will remove the summon ability from this ring, but you may keep it for protection. Zaff +Child: 6, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/252.txt b/server508/lists/interfaces/252.txt new file mode 100644 index 0000000..d45da20 --- /dev/null +++ b/server508/lists/interfaces/252.txt @@ -0,0 +1,15 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 0, width: 32, height: 32 +Child: 3, type: 0, width: 52, height: 51 +Child: 4, type: 0, width: 49, height: 52 +Child: 5, type: 0, width: 51, height: 50 +Child: 6, type: 0, width: 48, height: 48 +Child: 7, type: 0, width: 50, height: 49 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 52, height: 51 +Child: 10, type: 6, width: 49, height: 52 +Child: 11, type: 6, width: 51, height: 50 +Child: 12, type: 6, width: 48, height: 48 +Child: 13, type: 6, width: 50, height: 49 +Child: 14, type: 6, width: 47, height: 91 diff --git a/server508/lists/interfaces/253.txt b/server508/lists/interfaces/253.txt new file mode 100644 index 0000000..0e21fa2 --- /dev/null +++ b/server508/lists/interfaces/253.txt @@ -0,0 +1,37 @@ +Child: 0, type: 6, width: 531, height: 369 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 6, width: 169, height: 242 +Child: 3, type: 6, width: 93, height: 91 +Child: 4, type: 6, width: 93, height: 91 +Child: 5, type: 6, width: 93, height: 91 +Child: 6, type: 6, width: 93, height: 91 +Child: 7, type: 6, width: 21, height: 40 +Child: 8, type: 6, width: 21, height: 40 +Child: 9, type: 6, width: 21, height: 40 +Child: 10, type: 6, width: 21, height: 40 +Child: 11, type: 6, width: 40, height: 19 +Child: 12, type: 0, width: 23, height: 40 +Child: 13, type: 0, width: 21, height: 40 +Child: 14, type: 0, width: 23, height: 39 +Child: 15, type: 0, width: 24, height: 43 +Child: 16, type: 0, width: 42, height: 23 +Child: 17, type: 0, width: 512, height: 334 +Child: 18, type: 0, width: 16391, height: 16391 +Child: 19, type: 0, width: 16391, height: 16391 +Child: 20, type: 5, width: 32, height: 334 +Child: 21, type: 5, width: 462, height: 32 +Child: 22, type: 5, width: 512, height: 32 +Child: 23, type: 5, width: 32, height: 334 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 0, width: 8192, height: 16391 +Child: 29, type: 0, width: 8188, height: 16391 +Child: 30, type: 0, width: 16391, height: 8192 +Child: 31, type: 0, width: 16391, height: 8182 +Child: 32, type: 0, width: 512, height: 334 +Child: 33, type: 5, width: 256, height: 16384 +Child: 34, type: 5, width: 256, height: 16391 +Child: 35, type: 5, width: 16391, height: 167 +Child: 36, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/254.txt b/server508/lists/interfaces/254.txt new file mode 100644 index 0000000..d20ff37 --- /dev/null +++ b/server508/lists/interfaces/254.txt @@ -0,0 +1,4 @@ +Child: 0, type: 3, width: 512, height: 335 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/255.txt b/server508/lists/interfaces/255.txt new file mode 100644 index 0000000..ac09fa9 --- /dev/null +++ b/server508/lists/interfaces/255.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 0, width: 32, height: 32 +Child: 3, message: diff --git a/server508/lists/interfaces/256.txt b/server508/lists/interfaces/256.txt new file mode 100644 index 0000000..974694e --- /dev/null +++ b/server508/lists/interfaces/256.txt @@ -0,0 +1,20 @@ +Child: 0, type: 3, width: 196, height: 18 +Child: 1, type: 3, width: 196, height: 82 +Child: 2, type: 3, width: 196, height: 18 +Child: 3, type: 3, width: 196, height: 82 +Child: 4, message: Current team +Child: 5, message: ----- +Child: 6, message: ----- +Child: 7, message: ----- +Child: 8, message: ----- +Child: 9, message: ----- +Child: 10, message: Leader: +Child: 11, message: Player 1: +Child: 12, message: Player 2: +Child: 13, message: Player 3: +Child: 14, message: Player 4: +Child: 15, type: 6, width: 16, height: 16 +Child: 16, type: 6, width: 16, height: 16 +Child: 17, type: 6, width: 16, height: 16 +Child: 18, type: 6, width: 16, height: 16 +Child: 19, type: 6, width: 16, height: 16 diff --git a/server508/lists/interfaces/257.txt b/server508/lists/interfaces/257.txt new file mode 100644 index 0000000..2e1de17 --- /dev/null +++ b/server508/lists/interfaces/257.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 43303, height: 58233 diff --git a/server508/lists/interfaces/258.txt b/server508/lists/interfaces/258.txt new file mode 100644 index 0000000..e22b150 --- /dev/null +++ b/server508/lists/interfaces/258.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 18567, height: 17126 +Child: 2, type: 6, width: 62119, height: 9621 +Child: 3, type: 6, width: 24647, height: 16783 +Child: 4, type: 6, width: 24647, height: 16783 +Child: 5, type: 6, width: 24647, height: 16783 +Child: 6, type: 6, width: 24647, height: 16783 +Child: 7, type: 6, width: 24647, height: 16783 +Child: 8, type: 6, width: 24647, height: 16783 +Child: 9, type: 6, width: 24647, height: 16783 diff --git a/server508/lists/interfaces/259.txt b/server508/lists/interfaces/259.txt new file mode 100644 index 0000000..6fd0f1b --- /dev/null +++ b/server508/lists/interfaces/259.txt @@ -0,0 +1,16 @@ +Child: 0, type: 0, width: 167, height: 226 +Child: 1, type: 3, width: 161, height: 226 +Child: 2, type: 5, width: 36, height: 173 +Child: 3, type: 5, width: 25, height: 30 +Child: 4, type: 5, width: 25, height: 30 +Child: 5, type: 5, width: 21, height: 170 +Child: 6, type: 5, width: 150, height: 21 +Child: 7, type: 5, width: 143, height: 21 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 25, height: 30 +Child: 10, type: 5, width: 18, height: 18 +Child: 11, message: Achievement Diary +Child: 12, type: 0, width: 16, height: 226 +Child: 13, message: Karamja +Child: 14, message: Varrock +Child: 15, message: More coming soon... diff --git a/server508/lists/interfaces/26.txt b/server508/lists/interfaces/26.txt new file mode 100644 index 0000000..3492c33 --- /dev/null +++ b/server508/lists/interfaces/26.txt @@ -0,0 +1,103 @@ +Child: 0, type: 3, width: 518, height: 363 +Child: 1, type: 6, width: 35, height: 35 +Child: 2, type: 0, width: 201, height: 241 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 0, width: 201, height: 241 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 0, width: 201, height: 241 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 0, width: 201, height: 241 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 0, width: 201, height: 241 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 0, width: 201, height: 241 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 0, width: 201, height: 241 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 0, width: 201, height: 241 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 0, width: 201, height: 241 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 0, width: 201, height: 241 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 0, width: 201, height: 241 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 0, width: 201, height: 241 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 0, width: 201, height: 241 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 0, width: 201, height: 241 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 0, width: 201, height: 241 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 0, width: 201, height: 241 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 0, width: 201, height: 241 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 0, width: 201, height: 241 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 0, width: 201, height: 241 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 0, width: 201, height: 241 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 0, width: 201, height: 241 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 0, width: 201, height: 241 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 0, width: 201, height: 241 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 0, width: 201, height: 241 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 0, width: 201, height: 241 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, type: 0, width: 201, height: 241 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 0, width: 201, height: 241 +Child: 55, type: 6, width: 32, height: 32 +Child: 56, type: 0, width: 201, height: 241 +Child: 57, type: 6, width: 32, height: 32 +Child: 58, type: 0, width: 201, height: 241 +Child: 59, type: 6, width: 32, height: 32 +Child: 60, type: 0, width: 201, height: 241 +Child: 61, type: 6, width: 32, height: 32 +Child: 62, type: 5, width: 39, height: 39 +Child: 63, type: 0, width: 45, height: 36 +Child: 64, type: 5, width: 39, height: 39 +Child: 65, type: 0, width: 45, height: 36 +Child: 66, message: page%1 +Child: 67, message: page%2 +Child: 68, type: 5, width: 21, height: 21 +Child: 69, message: line2 +Child: 70, message: line3 +Child: 71, message: line4 +Child: 72, message: line5 +Child: 73, message: line6 +Child: 74, message: line7 +Child: 75, message: line8 +Child: 76, message: line9 +Child: 77, message: line10 +Child: 78, message: line11 +Child: 79, message: line12 +Child: 80, message: line13 +Child: 81, message: line14 +Child: 82, message: line15 +Child: 83, message: line16 +Child: 84, message: line17 +Child: 85, message: line18 +Child: 86, message: line19 +Child: 87, message: line20 +Child: 88, message: line21 +Child: 89, message: line22 +Child: 90, message: line23 +Child: 91, message: line24 +Child: 92, message: line25 +Child: 93, message: line26 +Child: 94, message: line27 +Child: 95, message: line28 +Child: 96, message: line28 +Child: 97, message: line29 +Child: 98, message: line1 +Child: 99, type: 5, width: 39, height: 39 +Child: 100, type: 5, width: 351, height: 39 +Child: 101, type: 5, width: 39, height: 39 +Child: 102, message: Book Title diff --git a/server508/lists/interfaces/260.txt b/server508/lists/interfaces/260.txt new file mode 100644 index 0000000..7c2dda4 --- /dev/null +++ b/server508/lists/interfaces/260.txt @@ -0,0 +1,48 @@ +Child: 0, type: 3, width: 270, height: 308 +Child: 1, type: 3, width: 221, height: 308 +Child: 2, type: 5, width: 256, height: 296 +Child: 3, type: 5, width: 214, height: 304 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 21, height: 241 +Child: 17, type: 5, width: 24, height: 240 +Child: 18, type: 5, width: 209, height: 20 +Child: 19, type: 5, width: 253, height: 26 +Child: 20, type: 5, width: 208, height: 25 +Child: 21, type: 5, width: 161, height: 28 +Child: 22, type: 5, width: 176, height: 30 +Child: 23, type: 5, width: 202, height: 22 +Child: 24, type: 5, width: 20, height: 240 +Child: 25, type: 5, width: 22, height: 241 +Child: 26, type: 5, width: 61, height: 62 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, message: Cyrisus's Bank +Child: 42, type: 0, width: 240, height: 261 +Child: 43, message: Chest +Child: 44, type: 0, width: 513, height: 335 +Child: 45, type: 0, width: 86, height: 158 +Child: 46, type: 5, width: 16, height: 16 +Child: 47, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/261.txt b/server508/lists/interfaces/261.txt new file mode 100644 index 0000000..c5e1cef --- /dev/null +++ b/server508/lists/interfaces/261.txt @@ -0,0 +1,27 @@ +Child: 0, type: 0, width: 190, height: 261 +Child: 1, type: 5, width: 40, height: 40 +Child: 2, type: 5, width: 40, height: 40 +Child: 3, type: 5, width: 40, height: 40 +Child: 4, type: 5, width: 40, height: 40 +Child: 5, type: 5, width: 40, height: 40 +Child: 6, type: 5, width: 40, height: 40 +Child: 7, type: 5, width: 32, height: 33 +Child: 8, type: 5, width: 32, height: 33 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 33 +Child: 11, message: %1% +Child: 12, type: 5, width: 17, height: 18 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 40, height: 40 +Child: 15, type: 5, width: 40, height: 40 +Child: 16, type: 5, width: 40, height: 40 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 40, height: 40 +Child: 19, type: 5, width: 40, height: 40 +Child: 20, type: 5, width: 190, height: 27 +Child: 21, type: 0, width: 140, height: 15 +Child: 22, type: 0, width: 140, height: 100 +Child: 23, type: 0, width: 16, height: 98 +Child: 24, type: 0, width: 122, height: 98 +Child: 25, type: 0, width: 179, height: 251 +Child: 26, type: 0, width: 116, height: 132 diff --git a/server508/lists/interfaces/262.txt b/server508/lists/interfaces/262.txt new file mode 100644 index 0000000..130f3f1 --- /dev/null +++ b/server508/lists/interfaces/262.txt @@ -0,0 +1,65 @@ +Child: 0, type: 6, width: 130, height: 81 +Child: 1, type: 6, width: 496, height: 288 +Child: 2, type: 0, width: 130, height: 81 +Child: 3, type: 0, width: 125, height: 78 +Child: 4, type: 0, width: 118, height: 65 +Child: 5, type: 0, width: 516, height: 339 +Child: 6, type: 0, width: 517, height: 348 +Child: 7, type: 0, width: 525, height: 346 +Child: 8, type: 0, width: 520, height: 353 +Child: 9, type: 0, width: 517, height: 353 +Child: 10, type: 0, width: 515, height: 342 +Child: 11, type: 0, width: 524, height: 347 +Child: 12, type: 0, width: 519, height: 349 +Child: 13, type: 0, width: 518, height: 345 +Child: 14, type: 0, width: 516, height: 350 +Child: 15, type: 0, width: 513, height: 344 +Child: 16, type: 0, width: 516, height: 356 +Child: 17, type: 0, width: 513, height: 349 +Child: 18, type: 0, width: 519, height: 348 +Child: 19, type: 0, width: 514, height: 344 +Child: 20, type: 6, width: 53, height: 40 +Child: 21, type: 6, width: 55, height: 40 +Child: 22, type: 6, width: 55, height: 40 +Child: 23, type: 6, width: 55, height: 40 +Child: 24, type: 6, width: 55, height: 37 +Child: 25, type: 6, width: 55, height: 37 +Child: 26, type: 6, width: 525, height: 361 +Child: 27, type: 5, width: 26, height: 23 +Child: 28, type: 6, width: 112, height: 59 +Child: 29, type: 6, width: 106, height: 54 +Child: 30, type: 6, width: 41, height: 208 +Child: 31, type: 6, width: 41, height: 212 +Child: 32, type: 6, width: 42, height: 212 +Child: 33, type: 6, width: 147, height: 68 +Child: 34, type: 6, width: 250, height: 70 +Child: 35, type: 6, width: 147, height: 67 +Child: 36, type: 6, width: 146, height: 204 +Child: 37, type: 6, width: 254, height: 201 +Child: 38, type: 6, width: 147, height: 67 +Child: 39, type: 6, width: 253, height: 69 +Child: 40, type: 6, width: 154, height: 207 +Child: 41, type: 6, width: 150, height: 210 +Child: 42, type: 6, width: 147, height: 66 +Child: 43, type: 6, width: 255, height: 203 +Child: 44, type: 6, width: 152, height: 208 +Child: 45, type: 0, width: 512, height: 334 +Child: 46, type: 0, width: 16391, height: 16391 +Child: 47, type: 0, width: 16391, height: 16391 +Child: 48, type: 5, width: 32, height: 334 +Child: 49, type: 5, width: 462, height: 32 +Child: 50, type: 5, width: 512, height: 32 +Child: 51, type: 5, width: 32, height: 334 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 5, width: 32, height: 32 +Child: 54, type: 5, width: 32, height: 32 +Child: 55, type: 5, width: 32, height: 32 +Child: 56, type: 0, width: 8192, height: 16391 +Child: 57, type: 0, width: 8188, height: 16391 +Child: 58, type: 0, width: 16391, height: 8192 +Child: 59, type: 0, width: 16391, height: 8182 +Child: 60, type: 0, width: 512, height: 334 +Child: 61, type: 5, width: 256, height: 16384 +Child: 62, type: 5, width: 256, height: 16391 +Child: 63, type: 5, width: 16391, height: 167 +Child: 64, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/263.txt b/server508/lists/interfaces/263.txt new file mode 100644 index 0000000..e16516b --- /dev/null +++ b/server508/lists/interfaces/263.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 17191, height: 18451 +Child: 1, message: Score: 0 diff --git a/server508/lists/interfaces/264.txt b/server508/lists/interfaces/264.txt new file mode 100644 index 0000000..bc23ac7 --- /dev/null +++ b/server508/lists/interfaces/264.txt @@ -0,0 +1,10 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, type: 3, width: 107, height: 85 +Child: 7, type: 3, width: 97, height: 75 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/265.txt b/server508/lists/interfaces/265.txt new file mode 100644 index 0000000..27b3e59 --- /dev/null +++ b/server508/lists/interfaces/265.txt @@ -0,0 +1,10 @@ +Child: 0, type: 3, width: 239, height: 54 +Child: 1, type: 3, width: 239, height: 54 +Child: 2, message: Clan A's name +Child: 3, message: Players remaining: +Child: 4, message: Opposing clan +Child: 5, message: Players remaining: +Child: 6, message: 0 +Child: 7, message: 0 +Child: 8, message: Time till start +Child: 9, message: 0 secs diff --git a/server508/lists/interfaces/266.txt b/server508/lists/interfaces/266.txt new file mode 100644 index 0000000..a6f99e3 --- /dev/null +++ b/server508/lists/interfaces/266.txt @@ -0,0 +1,24 @@ +Child: 0, type: 3, width: 512, height: 335 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 6, width: 491, height: 151 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 5, width: 32, height: 334 +Child: 7, type: 5, width: 462, height: 32 +Child: 8, type: 5, width: 512, height: 32 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 8192, height: 16391 +Child: 15, type: 0, width: 8188, height: 16391 +Child: 16, type: 0, width: 16391, height: 8192 +Child: 17, type: 0, width: 16391, height: 8182 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 5, width: 256, height: 16384 +Child: 20, type: 5, width: 256, height: 16391 +Child: 21, type: 5, width: 16391, height: 167 +Child: 22, type: 5, width: 16391, height: 166 +Child: 23, message: --- diff --git a/server508/lists/interfaces/267.txt b/server508/lists/interfaces/267.txt new file mode 100644 index 0000000..c8288a9 --- /dev/null +++ b/server508/lists/interfaces/267.txt @@ -0,0 +1,127 @@ +Child: 0, type: 5, width: 470, height: 85 +Child: 1, type: 5, width: 461, height: 262 +Child: 2, type: 5, width: 29, height: 206 +Child: 3, type: 5, width: 25, height: 196 +Child: 4, type: 0, width: 32, height: 32 +Child: 5, type: 5, width: 25, height: 25 +Child: 6, type: 5, width: 25, height: 25 +Child: 7, type: 5, width: 25, height: 25 +Child: 8, type: 5, width: 25, height: 25 +Child: 9, type: 5, width: 25, height: 25 +Child: 10, type: 5, width: 25, height: 25 +Child: 11, type: 5, width: 25, height: 25 +Child: 12, message: Attack +Child: 13, message: Strength +Child: 14, message: Defence +Child: 15, message: Ranged +Child: 16, message: Magic +Child: 17, message: Hitpoints +Child: 18, message: Prayer +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 17, height: 23 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, message: Void Knight Mace +Child: 31, message: Void Knight Top +Child: 32, message: Void Knight Robes +Child: 33, message: Void Knight Gloves +Child: 34, message: Herb Pack +Child: 35, message: Seed Pack +Child: 36, message: (1 Pt) +Child: 37, message: (1 Pt) +Child: 38, message: (1 Pt) +Child: 39, message: (1 Pt) +Child: 40, message: (1 Pt) +Child: 41, message: (1 Pt) +Child: 42, message: (1 Pt) +Child: 43, message: (250 Pts) +Child: 44, message: (250 Pts) +Child: 45, message: (250 Pts) +Child: 46, message: (150 Pts) +Child: 47, message: (30 Pts) +Child: 48, message: (15 Pts) +Child: 49, message: Mineral Pack +Child: 50, message: (15 Pts) +Child: 51, message: (10 Pts) +Child: 52, message: (10 Pts) +Child: 53, message: (10 Pts) +Child: 54, message: (10 Pts) +Child: 55, message: (10 Pts) +Child: 56, message: (10 Pts) +Child: 57, message: (10 Pts) +Child: 58, message: (100 Pts) +Child: 59, message: (100 Pts) +Child: 60, message: (100 Pts) +Child: 61, message: (100 Pts) +Child: 62, message: (100 Pts) +Child: 63, message: (100 Pts) +Child: 64, message: (100 Pts) +Child: 65, message: Void Knight Mage Helm +Child: 66, message: Void Knight Ranger Helm +Child: 67, message: Void Knight Melee Helm +Child: 68, message: Void Knight Seal +Child: 69, message: (200 Pts) +Child: 70, message: (200 Pts) +Child: 71, message: (200 Pts) +Child: 72, message: (10 Pts) +Child: 73, message: Spinner Charm +Child: 74, message: Ravager Charm +Child: 75, message: Shifter Charm +Child: 76, message: Torcher Charm +Child: 77, message: (2 Pts) +Child: 78, message: (28 Pts) +Child: 79, message: (56 Pts) +Child: 80, message: (28 Pts) +Child: 81, message: (56 Pts) +Child: 82, message: (28 Pts) +Child: 83, message: (56 Pts) +Child: 84, message: (28 Pts) +Child: 85, message: (56 Pts) +Child: 86, message: (2 Pts) +Child: 87, message: (2 Pts) +Child: 88, message: (2 Pts) +Child: 89, type: 0, width: 459, height: 519 +Child: 90, type: 6, width: 33, height: 32 +Child: 91, type: 6, width: 33, height: 32 +Child: 92, type: 6, width: 33, height: 32 +Child: 93, type: 6, width: 33, height: 32 +Child: 94, type: 3, width: 512, height: 38 +Child: 95, type: 0, width: 462, height: 31 +Child: 96, message: Void Knights' Reward Options +Child: 97, type: 3, width: 512, height: 74 +Child: 98, type: 3, width: 22, height: 223 +Child: 99, type: 3, width: 22, height: 223 +Child: 100, type: 5, width: 16, height: 16 +Child: 101, type: 5, width: 32, height: 32 +Child: 102, type: 5, width: 32, height: 32 +Child: 103, type: 5, width: 32, height: 32 +Child: 104, type: 5, width: 32, height: 32 +Child: 105, type: 3, width: 138, height: 45 +Child: 106, message: Confirm: +Child: 107, type: 5, width: 98, height: 31 +Child: 108, type: 5, width: 107, height: 37 +Child: 109, message: +Child: 110, message: +Child: 111, type: 5, width: 32, height: 32 +Child: 112, type: 5, width: 32, height: 32 +Child: 113, type: 5, width: 418, height: 37 +Child: 114, type: 5, width: 32, height: 32 +Child: 115, type: 5, width: 413, height: 37 +Child: 116, type: 5, width: 459, height: 31 +Child: 117, type: 5, width: 32, height: 32 +Child: 118, type: 5, width: 32, height: 32 +Child: 119, type: 5, width: 32, height: 32 +Child: 120, type: 3, width: 339, height: 1 +Child: 121, type: 3, width: 337, height: 3 +Child: 122, type: 3, width: 339, height: 1 +Child: 123, type: 3, width: 337, height: 3 +Child: 124, type: 3, width: 339, height: 1 +Child: 125, type: 3, width: 337, height: 3 +Child: 126, type: 0, width: 16, height: 220 diff --git a/server508/lists/interfaces/268.txt b/server508/lists/interfaces/268.txt new file mode 100644 index 0000000..cf413fb --- /dev/null +++ b/server508/lists/interfaces/268.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 192, height: 262 +Child: 1, type: 3, width: 186, height: 3 +Child: 2, type: 3, width: 186, height: 3 +Child: 3, type: 3, width: 3, height: 250 +Child: 4, type: 3, width: 3, height: 250 +Child: 5, type: 3, width: 186, height: 256 +Child: 6, type: 3, width: 184, height: 254 +Child: 7, type: 3, width: 182, height: 252 +Child: 8, type: 3, width: 180, height: 250 +Child: 9, type: 3, width: 178, height: 248 +Child: 10, type: 3, width: 176, height: 246 +Child: 11, type: 3, width: 174, height: 244 +Child: 12, type: 3, width: 172, height: 242 +Child: 13, type: 3, width: 170, height: 240 +Child: 14, type: 3, width: 168, height: 238 +Child: 15, type: 3, width: 166, height: 236 +Child: 16, type: 3, width: 164, height: 234 +Child: 17, type: 3, width: 162, height: 232 +Child: 18, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/269.txt b/server508/lists/interfaces/269.txt new file mode 100644 index 0000000..c1905bf --- /dev/null +++ b/server508/lists/interfaces/269.txt @@ -0,0 +1,50 @@ +Child: 0, type: 3, width: 524, height: 349 +Child: 1, type: 6, width: 263, height: 296 +Child: 2, type: 6, width: 224, height: 117 +Child: 3, type: 6, width: 225, height: 28 +Child: 4, type: 6, width: 224, height: 69 +Child: 5, type: 6, width: 597, height: 373 +Child: 6, type: 6, width: 289, height: 362 +Child: 7, type: 6, width: 288, height: 362 +Child: 8, type: 6, width: 30, height: 31 +Child: 9, type: 6, width: 30, height: 31 +Child: 10, type: 6, width: 30, height: 31 +Child: 11, type: 6, width: 30, height: 31 +Child: 12, type: 6, width: 30, height: 31 +Child: 13, type: 6, width: 30, height: 31 +Child: 14, type: 6, width: 30, height: 31 +Child: 15, type: 6, width: 30, height: 31 +Child: 16, type: 6, width: 30, height: 31 +Child: 17, type: 6, width: 30, height: 31 +Child: 18, type: 6, width: 30, height: 31 +Child: 19, type: 6, width: 30, height: 31 +Child: 20, type: 6, width: 30, height: 31 +Child: 21, type: 6, width: 30, height: 31 +Child: 22, type: 6, width: 30, height: 31 +Child: 23, type: 6, width: 30, height: 31 +Child: 24, type: 6, width: 30, height: 31 +Child: 25, type: 6, width: 30, height: 31 +Child: 26, type: 6, width: 30, height: 31 +Child: 27, type: 6, width: 30, height: 31 +Child: 28, type: 6, width: 30, height: 31 +Child: 29, type: 6, width: 30, height: 31 +Child: 30, type: 6, width: 30, height: 31 +Child: 31, type: 6, width: 30, height: 31 +Child: 32, type: 6, width: 30, height: 31 +Child: 33, type: 6, width: 30, height: 31 +Child: 34, type: 6, width: 30, height: 31 +Child: 35, type: 6, width: 30, height: 31 +Child: 36, type: 6, width: 30, height: 31 +Child: 37, type: 6, width: 30, height: 31 +Child: 38, type: 6, width: 30, height: 31 +Child: 39, type: 6, width: 30, height: 31 +Child: 40, type: 6, width: 30, height: 31 +Child: 41, type: 6, width: 30, height: 31 +Child: 42, type: 6, width: 30, height: 31 +Child: 43, type: 6, width: 30, height: 31 +Child: 44, type: 5, width: 26, height: 23 +Child: 45, type: 0, width: 182, height: 94 +Child: 46, type: 0, width: 182, height: 44 +Child: 47, type: 0, width: 182, height: 48 +Child: 48, message: +Child: 49, message: diff --git a/server508/lists/interfaces/27.txt b/server508/lists/interfaces/27.txt new file mode 100644 index 0000000..11339a4 --- /dev/null +++ b/server508/lists/interfaces/27.txt @@ -0,0 +1,164 @@ +Child: 0, type: 6, width: 503, height: 306 +Child: 1, type: 5, width: 39, height: 39 +Child: 2, type: 0, width: 45, height: 36 +Child: 3, type: 5, width: 39, height: 39 +Child: 4, type: 0, width: 45, height: 36 +Child: 5, message: page%1 +Child: 6, message: page%2 +Child: 7, type: 5, width: 21, height: 21 +Child: 8, message: +Child: 9, type: 0, width: 201, height: 241 +Child: 10, type: 6, width: 68, height: 40 +Child: 11, type: 0, width: 201, height: 241 +Child: 12, type: 6, width: 68, height: 40 +Child: 13, type: 0, width: 201, height: 241 +Child: 14, type: 6, width: 68, height: 40 +Child: 15, type: 0, width: 201, height: 241 +Child: 16, type: 6, width: 68, height: 40 +Child: 17, type: 0, width: 201, height: 241 +Child: 18, type: 6, width: 68, height: 40 +Child: 19, type: 0, width: 201, height: 241 +Child: 20, type: 6, width: 68, height: 40 +Child: 21, type: 0, width: 201, height: 241 +Child: 22, type: 6, width: 68, height: 40 +Child: 23, type: 0, width: 201, height: 241 +Child: 24, type: 6, width: 68, height: 40 +Child: 25, type: 0, width: 201, height: 241 +Child: 26, type: 6, width: 68, height: 40 +Child: 27, type: 0, width: 201, height: 241 +Child: 28, type: 6, width: 68, height: 40 +Child: 29, type: 0, width: 201, height: 241 +Child: 30, type: 6, width: 68, height: 40 +Child: 31, type: 0, width: 201, height: 241 +Child: 32, type: 6, width: 68, height: 40 +Child: 33, type: 0, width: 201, height: 241 +Child: 34, type: 6, width: 68, height: 40 +Child: 35, type: 0, width: 201, height: 241 +Child: 36, type: 6, width: 68, height: 40 +Child: 37, type: 0, width: 201, height: 241 +Child: 38, message: line1 +Child: 39, message: line2 +Child: 40, message: line3 +Child: 41, message: line4 +Child: 42, message: line5 +Child: 43, message: line6 +Child: 44, message: line7 +Child: 45, message: line8 +Child: 46, message: line9 +Child: 47, message: line10 +Child: 48, message: line11 +Child: 49, message: line12 +Child: 50, message: line13 +Child: 51, message: line14 +Child: 52, message: line15 +Child: 53, message: line16 +Child: 54, message: line17 +Child: 55, message: line18 +Child: 56, message: line19 +Child: 57, message: line20 +Child: 58, message: line21 +Child: 59, message: line22 +Child: 60, message: line23 +Child: 61, message: line24 +Child: 62, message: line25 +Child: 63, message: line26 +Child: 64, message: line27 +Child: 65, message: line28 +Child: 66, message: line28 +Child: 67, message: line29 +Child: 68, type: 6, width: 68, height: 40 +Child: 69, type: 0, width: 201, height: 241 +Child: 70, type: 6, width: 68, height: 40 +Child: 71, type: 0, width: 201, height: 241 +Child: 72, type: 6, width: 68, height: 40 +Child: 73, type: 0, width: 201, height: 241 +Child: 74, type: 6, width: 68, height: 40 +Child: 75, type: 0, width: 201, height: 241 +Child: 76, type: 6, width: 68, height: 40 +Child: 77, type: 0, width: 201, height: 241 +Child: 78, type: 6, width: 68, height: 40 +Child: 79, type: 0, width: 201, height: 241 +Child: 80, type: 6, width: 68, height: 40 +Child: 81, type: 0, width: 201, height: 241 +Child: 82, type: 6, width: 68, height: 40 +Child: 83, type: 0, width: 201, height: 241 +Child: 84, type: 6, width: 68, height: 40 +Child: 85, type: 0, width: 201, height: 241 +Child: 86, type: 6, width: 68, height: 40 +Child: 87, type: 0, width: 201, height: 241 +Child: 88, type: 6, width: 68, height: 40 +Child: 89, type: 0, width: 201, height: 241 +Child: 90, type: 6, width: 68, height: 40 +Child: 91, type: 0, width: 201, height: 241 +Child: 92, type: 6, width: 68, height: 40 +Child: 93, type: 0, width: 201, height: 241 +Child: 94, type: 6, width: 68, height: 40 +Child: 95, type: 0, width: 201, height: 241 +Child: 96, type: 6, width: 68, height: 40 +Child: 97, type: 0, width: 201, height: 241 +Child: 98, type: 6, width: 68, height: 40 +Child: 99, type: 0, width: 202, height: 22 +Child: 100, message: +Child: 101, type: 0, width: 202, height: 22 +Child: 102, message: +Child: 103, type: 0, width: 202, height: 22 +Child: 104, message: +Child: 105, type: 0, width: 202, height: 22 +Child: 106, message: +Child: 107, type: 0, width: 202, height: 22 +Child: 108, message: +Child: 109, type: 0, width: 202, height: 22 +Child: 110, message: +Child: 111, type: 0, width: 202, height: 22 +Child: 112, message: +Child: 113, type: 0, width: 202, height: 22 +Child: 114, message: +Child: 115, type: 0, width: 202, height: 22 +Child: 116, message: +Child: 117, type: 0, width: 202, height: 22 +Child: 118, message: +Child: 119, type: 0, width: 202, height: 22 +Child: 120, message: +Child: 121, type: 0, width: 202, height: 22 +Child: 122, message: +Child: 123, type: 0, width: 202, height: 22 +Child: 124, message: +Child: 125, type: 0, width: 202, height: 22 +Child: 126, message: +Child: 127, type: 0, width: 202, height: 22 +Child: 128, message: +Child: 129, type: 0, width: 202, height: 22 +Child: 130, message: +Child: 131, type: 0, width: 202, height: 22 +Child: 132, message: +Child: 133, type: 0, width: 202, height: 22 +Child: 134, message: +Child: 135, type: 0, width: 202, height: 22 +Child: 136, message: +Child: 137, type: 0, width: 202, height: 22 +Child: 138, message: +Child: 139, type: 0, width: 202, height: 22 +Child: 140, message: +Child: 141, type: 0, width: 202, height: 22 +Child: 142, message: +Child: 143, type: 0, width: 202, height: 22 +Child: 144, message: +Child: 145, type: 0, width: 202, height: 22 +Child: 146, message: +Child: 147, type: 0, width: 202, height: 22 +Child: 148, message: +Child: 149, type: 0, width: 202, height: 22 +Child: 150, message: +Child: 151, type: 0, width: 202, height: 22 +Child: 152, message: +Child: 153, type: 0, width: 202, height: 22 +Child: 154, message: +Child: 155, type: 0, width: 202, height: 22 +Child: 156, message: +Child: 157, type: 0, width: 202, height: 22 +Child: 158, message: +Child: 159, message: Index +Child: 160, type: 5, width: 351, height: 39 +Child: 161, type: 5, width: 39, height: 39 +Child: 162, type: 5, width: 39, height: 39 +Child: 163, message: Book Title diff --git a/server508/lists/interfaces/270.txt b/server508/lists/interfaces/270.txt new file mode 100644 index 0000000..93d05d8 --- /dev/null +++ b/server508/lists/interfaces/270.txt @@ -0,0 +1,85 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 3, width: 527, height: 340 +Child: 2, type: 6, width: 225, height: 107 +Child: 3, type: 6, width: 435, height: 319 +Child: 4, message: Misthalin & Asgarnia +Child: 5, type: 6, width: 64, height: 62 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, message: Lumbridge +Child: 49, message: Draynor +Child: 50, message: Varrock +Child: 51, message: Falador +Child: 52, message: Port +Child: 53, message: Sarim +Child: 54, message: Rimmington +Child: 55, message: Edgeville +Child: 56, message: Al Kharid +Child: 57, type: 6, width: 34, height: 34 +Child: 58, type: 0, width: 494, height: 319 +Child: 59, type: 0, width: 72, height: 64 +Child: 60, message: Show Tutors +Child: 61, type: 5, width: 26, height: 23 +Child: 62, type: 6, width: 22, height: 23 +Child: 63, type: 6, width: 23, height: 21 +Child: 64, type: 6, width: 22, height: 23 +Child: 65, type: 0, width: 512, height: 334 +Child: 66, type: 0, width: 16391, height: 16391 +Child: 67, type: 0, width: 16391, height: 16391 +Child: 68, type: 5, width: 32, height: 334 +Child: 69, type: 5, width: 462, height: 32 +Child: 70, type: 5, width: 512, height: 32 +Child: 71, type: 5, width: 32, height: 334 +Child: 72, type: 5, width: 32, height: 32 +Child: 73, type: 5, width: 32, height: 32 +Child: 74, type: 5, width: 32, height: 32 +Child: 75, type: 5, width: 32, height: 32 +Child: 76, type: 0, width: 8192, height: 16391 +Child: 77, type: 0, width: 8188, height: 16391 +Child: 78, type: 0, width: 16391, height: 8192 +Child: 79, type: 0, width: 16391, height: 8182 +Child: 80, type: 0, width: 512, height: 334 +Child: 81, type: 5, width: 256, height: 16384 +Child: 82, type: 5, width: 256, height: 16391 +Child: 83, type: 5, width: 16391, height: 167 +Child: 84, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/271.txt b/server508/lists/interfaces/271.txt new file mode 100644 index 0000000..3be833b --- /dev/null +++ b/server508/lists/interfaces/271.txt @@ -0,0 +1,59 @@ +Child: 0, type: 5, width: 17, height: 18 +Child: 1, message: +Child: 2, type: 0, width: 190, height: 261 +Child: 3, type: 0, width: 190, height: 230 +Child: 4, type: 5, width: 34, height: 34 +Child: 5, type: 5, width: 30, height: 30 +Child: 6, type: 5, width: 34, height: 34 +Child: 7, type: 5, width: 30, height: 30 +Child: 8, type: 5, width: 34, height: 34 +Child: 9, type: 5, width: 30, height: 30 +Child: 10, type: 5, width: 34, height: 34 +Child: 11, type: 5, width: 30, height: 30 +Child: 12, type: 5, width: 34, height: 34 +Child: 13, type: 5, width: 30, height: 30 +Child: 14, type: 5, width: 34, height: 34 +Child: 15, type: 5, width: 30, height: 30 +Child: 16, type: 5, width: 34, height: 34 +Child: 17, type: 5, width: 30, height: 30 +Child: 18, type: 5, width: 34, height: 34 +Child: 19, type: 5, width: 30, height: 30 +Child: 20, type: 5, width: 34, height: 34 +Child: 21, type: 5, width: 30, height: 30 +Child: 22, type: 5, width: 34, height: 34 +Child: 23, type: 5, width: 30, height: 30 +Child: 24, type: 5, width: 34, height: 34 +Child: 25, type: 5, width: 30, height: 30 +Child: 26, type: 5, width: 34, height: 34 +Child: 27, type: 5, width: 30, height: 30 +Child: 28, type: 5, width: 34, height: 34 +Child: 29, type: 5, width: 30, height: 30 +Child: 30, type: 5, width: 34, height: 34 +Child: 31, type: 5, width: 30, height: 30 +Child: 32, type: 5, width: 34, height: 34 +Child: 33, type: 5, width: 30, height: 30 +Child: 34, type: 5, width: 34, height: 34 +Child: 35, type: 5, width: 30, height: 30 +Child: 36, type: 5, width: 34, height: 34 +Child: 37, type: 5, width: 30, height: 30 +Child: 38, type: 5, width: 34, height: 34 +Child: 39, type: 5, width: 30, height: 30 +Child: 40, type: 5, width: 34, height: 34 +Child: 41, type: 5, width: 30, height: 30 +Child: 42, type: 5, width: 34, height: 34 +Child: 43, type: 5, width: 30, height: 30 +Child: 44, type: 5, width: 34, height: 34 +Child: 45, type: 5, width: 30, height: 30 +Child: 46, type: 5, width: 34, height: 34 +Child: 47, type: 5, width: 30, height: 30 +Child: 48, type: 5, width: 34, height: 34 +Child: 49, type: 5, width: 30, height: 30 +Child: 50, type: 5, width: 34, height: 34 +Child: 51, type: 5, width: 30, height: 30 +Child: 52, type: 5, width: 34, height: 34 +Child: 53, type: 5, width: 30, height: 30 +Child: 54, type: 5, width: 34, height: 34 +Child: 55, type: 5, width: 30, height: 30 +Child: 56, type: 5, width: 34, height: 34 +Child: 57, type: 5, width: 30, height: 30 +Child: 58, type: 0, width: 1, height: 1 diff --git a/server508/lists/interfaces/272.txt b/server508/lists/interfaces/272.txt new file mode 100644 index 0000000..8f96558 --- /dev/null +++ b/server508/lists/interfaces/272.txt @@ -0,0 +1,19 @@ +Child: 0, type: 3, width: 493, height: 307 +Child: 1, type: 5, width: 478, height: 293 +Child: 2, type: 6, width: 328, height: 205 +Child: 3, type: 6, width: 361, height: 159 +Child: 4, type: 6, width: 78, height: 62 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 40, height: 232 +Child: 7, type: 5, width: 432, height: 28 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 472, height: 29 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 36, height: 231 +Child: 15, type: 5, width: 429, height: 31 +Child: 16, message: Grave Monument +Child: 17, message: Saradomin

lights my way

through

the darkness of life +Child: 18, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/273.txt b/server508/lists/interfaces/273.txt new file mode 100644 index 0000000..a6cc8bb --- /dev/null +++ b/server508/lists/interfaces/273.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: Pop the correct balloon animal to find a key +Child: 2, type: 0, width: 511, height: 334 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/274.txt b/server508/lists/interfaces/274.txt new file mode 100644 index 0000000..fcdc3de --- /dev/null +++ b/server508/lists/interfaces/274.txt @@ -0,0 +1,155 @@ +Child: 0, type: 0, width: 167, height: 226 +Child: 1, type: 3, width: 161, height: 222 +Child: 2, type: 5, width: 21, height: 189 +Child: 3, type: 5, width: 25, height: 30 +Child: 4, type: 5, width: 25, height: 30 +Child: 5, type: 5, width: 21, height: 193 +Child: 6, type: 5, width: 150, height: 21 +Child: 7, type: 5, width: 143, height: 21 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 25, height: 30 +Child: 10, message: Quest Points: 0 +Child: 11, type: 5, width: 18, height: 18 +Child: 12, type: 0, width: 16, height: 226 +Child: 13, message: Free Quests +Child: 14, message: Black Knights' Fortress +Child: 15, message: Cook's Assistant +Child: 16, message: Demon Slayer +Child: 17, message: Doric's Quest +Child: 18, message: Dragon Slayer +Child: 19, message: Ernest the Chicken +Child: 20, message: Goblin Diplomacy +Child: 21, message: Imp Catcher +Child: 22, message: The Knight's Sword +Child: 23, message: Pirate's Treasure +Child: 24, message: Prince Ali Rescue +Child: 25, message: The Restless Ghost +Child: 26, message: Romeo & Juliet +Child: 27, message: Rune Mysteries +Child: 28, message: Sheep Shearer +Child: 29, message: Shield of Arrav +Child: 30, message: Vampire Slayer +Child: 31, message: Witch's Potion +Child: 32, message: Members' Quests +Child: 33, message: Animal Magnetism +Child: 34, message: Between a Rock... +Child: 35, message: Big Chompy Bird Hunting +Child: 36, message: Biohazard +Child: 37, message: Cabin Fever +Child: 38, message: Clock Tower +Child: 39, message: Contact! +Child: 40, message: Zogre Flesh Eaters +Child: 41, message: Creature of Fenkenstrain +Child: 42, message: Darkness of Hallowvale +Child: 43, message: Death to the Dorgeshuun +Child: 44, message: Death Plateau +Child: 45, message: Desert Treasure +Child: 46, message: Devious Minds +Child: 47, message: The Dig Site +Child: 48, message: Druidic Ritual +Child: 49, message: Dwarf Cannon +Child: 50, message: Eadgar's Ruse +Child: 51, message: Eagles' Peak +Child: 52, message: Elemental Workshop I +Child: 53, message: Elemental Workshop II +Child: 54, message: Enakhra's Lament +Child: 55, message: Enlightened Journey +Child: 56, message: The Eyes of Glouphrie +Child: 57, message: Fairytale I - Growing Pains +Child: 58, message: Fairytale II - Cure a Queen +Child: 59, message: Family Crest +Child: 60, message: The Feud +Child: 61, message: Fight Arena +Child: 62, message: Fishing Contest +Child: 63, message: Forgettable Tale... +Child: 64, message: The Fremennik Trials +Child: 65, message: Waterfall Quest +Child: 66, message: Garden of Tranquillity +Child: 67, message: Gertrude's Cat +Child: 68, message: Ghosts Ahoy +Child: 69, message: The Giant Dwarf +Child: 70, message: The Golem +Child: 71, message: The Grand Tree +Child: 72, message: The Hand in the Sand +Child: 73, message: Haunted Mine +Child: 74, message: Hazeel Cult +Child: 75, message: Heroes' Quest +Child: 76, message: Holy Grail +Child: 77, message: Horror from the Deep +Child: 78, message: Icthlarin's Little Helper +Child: 79, message: In Aid of the Myreque +Child: 80, message: In Search of the Myreque +Child: 81, message: Jungle Potion +Child: 82, message: Legends' Quest +Child: 83, message: Lost City +Child: 84, message: The Lost Tribe +Child: 85, message: Lunar Diplomacy +Child: 86, message: Making History +Child: 87, message: Merlin's Crystal +Child: 88, message: Monkey Madness +Child: 89, message: Monk's Friend +Child: 90, message: Mountain Daughter +Child: 91, message: Mourning's Ends Part I +Child: 92, message: Mourning's Ends Part II +Child: 93, message: Murder Mystery +Child: 94, message: My Arm's Big Adventure +Child: 95, message: Nature Spirit +Child: 96, message: Observatory Quest +Child: 97, message: One Small Favour +Child: 98, message: Plague City +Child: 99, message: Priest in Peril +Child: 100, message: Rag and Bone Man +Child: 101, message: Ratcatchers +Child: 102, message: Recipe for Disaster +Child: 103, message: Recruitment Drive +Child: 104, message: Regicide +Child: 105, message: Roving Elves +Child: 106, message: Royal Trouble +Child: 107, message: Rum Deal +Child: 108, message: Scorpion Catcher +Child: 109, message: Sea Slug +Child: 110, message: The Slug Menace +Child: 111, message: Shades of Mort'ton +Child: 112, message: Shadow of the Storm +Child: 113, message: Sheep Herder +Child: 114, message: Shilo Village +Child: 115, message: A Soul's Bane +Child: 116, message: Spirits of the Elid +Child: 117, message: Swan Song +Child: 118, message: Tai Bwo Wannai Trio +Child: 119, message: A Tail of Two Cats +Child: 120, message: Tears of Guthix +Child: 121, message: Temple of Ikov +Child: 122, message: Throne of Miscellania +Child: 123, message: The Tourist Trap +Child: 124, message: Witch's House +Child: 125, message: Tree Gnome Village +Child: 126, message: Tribal Totem +Child: 127, message: Troll Romance +Child: 128, message: Troll Stronghold +Child: 129, message: Underground Pass +Child: 130, message: Wanted! +Child: 131, message: Watchtower +Child: 132, message: Cold War +Child: 133, message: The Fremennik Isles +Child: 134, message: Tower of Life +Child: 135, message: The Great Brain Robbery +Child: 136, message: What Lies Below +Child: 137, message: Olaf's Quest +Child: 138, message: Another Slice of H.A.M. +Child: 139, message: Dream Mentor +Child: 140, message: Grim Tales +Child: 141, message: King's Ransom +Child: 142, message: The Path of Glouphrie +Child: 143, message: Back to my Roots +Child: 144, message: Land of the Goblins +Child: 145, message: Dealing with Scabaras +Child: 146, message: Wolf Whistle +Child: 147, message: As a First Resort... +Child: 148, message: Catapult Construction +Child: 149, message: Kennith's Concerns +Child: 150, message: Legacy of Seergaze +Child: 151, message: Perils of Ice Mountain +Child: 152, message: TokTz-Ket-Dill +Child: 153, message: Smoking Kills +Child: 154, message: Rocking Out diff --git a/server508/lists/interfaces/275.txt b/server508/lists/interfaces/275.txt new file mode 100644 index 0000000..7556475 --- /dev/null +++ b/server508/lists/interfaces/275.txt @@ -0,0 +1,310 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 6, width: 464, height: 47 +Child: 2, message: ifquestname +Child: 3, type: 6, width: 436, height: 222 +Child: 4, type: 6, width: 479, height: 31 +Child: 5, type: 6, width: 478, height: 30 +Child: 6, type: 0, width: 404, height: 215 +Child: 7, type: 0, width: 16, height: 215 +Child: 8, type: 5, width: 21, height: 20 +Child: 9, type: 0, width: 512, height: 334 +Child: 10, message: qj1 +Child: 11, message: qj2 +Child: 12, message: qj3 +Child: 13, message: qj4 +Child: 14, message: qj5 +Child: 15, message: qj6 +Child: 16, message: qj7 +Child: 17, message: qj8 +Child: 18, message: qj9 +Child: 19, message: qj10 +Child: 20, message: qj11 +Child: 21, message: qj12 +Child: 22, message: qj13 +Child: 23, message: qj14 +Child: 24, message: qj15 +Child: 25, message: qj16 +Child: 26, message: qj17 +Child: 27, message: qj18 +Child: 28, message: qj19 +Child: 29, message: qj20 +Child: 30, message: qj21 +Child: 31, message: qj22 +Child: 32, message: qj23 +Child: 33, message: qj24 +Child: 34, message: qj25 +Child: 35, message: qj26 +Child: 36, message: qj27 +Child: 37, message: qj28 +Child: 38, message: qj29 +Child: 39, message: qj30 +Child: 40, message: qj31 +Child: 41, message: qj32 +Child: 42, message: qj33 +Child: 43, message: qj34 +Child: 44, message: qj35 +Child: 45, message: qj36 +Child: 46, message: qj37 +Child: 47, message: qj38 +Child: 48, message: qj39 +Child: 49, message: qj40 +Child: 50, message: qj41 +Child: 51, message: qj42 +Child: 52, message: qj43 +Child: 53, message: qj44 +Child: 54, message: qj45 +Child: 55, message: qj46 +Child: 56, message: qj47 +Child: 57, message: qj48 +Child: 58, message: qj49 +Child: 59, message: qj50 +Child: 60, message: qj51 +Child: 61, message: qj52 +Child: 62, message: qj53 +Child: 63, message: qj54 +Child: 64, message: qj55 +Child: 65, message: qj56 +Child: 66, message: qj57 +Child: 67, message: qj58 +Child: 68, message: qj59 +Child: 69, message: qj60 +Child: 70, message: qj61 +Child: 71, message: qj62 +Child: 72, message: qj63 +Child: 73, message: qj64 +Child: 74, message: qj65 +Child: 75, message: qj66 +Child: 76, message: qj67 +Child: 77, message: qj68 +Child: 78, message: qj69 +Child: 79, message: qj70 +Child: 80, message: qj71 +Child: 81, message: qj72 +Child: 82, message: qj73 +Child: 83, message: qj74 +Child: 84, message: qj75 +Child: 85, message: qj76 +Child: 86, message: qj77 +Child: 87, message: qj78 +Child: 88, message: qj79 +Child: 89, message: qj80 +Child: 90, message: qj81 +Child: 91, message: qj82 +Child: 92, message: qj83 +Child: 93, message: qj84 +Child: 94, message: qj85 +Child: 95, message: qj86 +Child: 96, message: qj87 +Child: 97, message: qj88 +Child: 98, message: qj89 +Child: 99, message: qj90 +Child: 100, message: qj91 +Child: 101, message: qj92 +Child: 102, message: qj93 +Child: 103, message: qj94 +Child: 104, message: qj95 +Child: 105, message: qj96 +Child: 106, message: qj97 +Child: 107, message: qj98 +Child: 108, message: qj99 +Child: 109, message: qj100 +Child: 110, message: qj101 +Child: 111, message: qj102 +Child: 112, message: qj103 +Child: 113, message: qj104 +Child: 114, message: qj105 +Child: 115, message: qj106 +Child: 116, message: qj107 +Child: 117, message: qj108 +Child: 118, message: qj109 +Child: 119, message: qj110 +Child: 120, message: qj111 +Child: 121, message: qj112 +Child: 122, message: qj113 +Child: 123, message: qj114 +Child: 124, message: qj115 +Child: 125, message: qj116 +Child: 126, message: qj117 +Child: 127, message: qj118 +Child: 128, message: qj119 +Child: 129, message: qj120 +Child: 130, message: qj121 +Child: 131, message: qj122 +Child: 132, message: qj123 +Child: 133, message: qj124 +Child: 134, message: qj125 +Child: 135, message: qj126 +Child: 136, message: qj127 +Child: 137, message: qj128 +Child: 138, message: qj129 +Child: 139, message: qj130 +Child: 140, message: qj131 +Child: 141, message: qj132 +Child: 142, message: qj133 +Child: 143, message: qj134 +Child: 144, message: qj135 +Child: 145, message: qj136 +Child: 146, message: qj137 +Child: 147, message: qj138 +Child: 148, message: qj139 +Child: 149, message: qj140 +Child: 150, message: qj141 +Child: 151, message: qj142 +Child: 152, message: qj143 +Child: 153, message: qj144 +Child: 154, message: qj145 +Child: 155, message: qj146 +Child: 156, message: qj147 +Child: 157, message: qj148 +Child: 158, message: qj149 +Child: 159, message: qj150 +Child: 160, message: qj151 +Child: 161, message: qj152 +Child: 162, message: qj153 +Child: 163, message: qj154 +Child: 164, message: qj155 +Child: 165, message: qj156 +Child: 166, message: qj157 +Child: 167, message: qj158 +Child: 168, message: qj159 +Child: 169, message: qj160 +Child: 170, message: qj161 +Child: 171, message: qj162 +Child: 172, message: qj163 +Child: 173, message: qj164 +Child: 174, message: qj165 +Child: 175, message: qj166 +Child: 176, message: qj167 +Child: 177, message: qj168 +Child: 178, message: qj169 +Child: 179, message: qj170 +Child: 180, message: qj171 +Child: 181, message: qj172 +Child: 182, message: qj173 +Child: 183, message: qj174 +Child: 184, message: qj175 +Child: 185, message: qj176 +Child: 186, message: qj177 +Child: 187, message: qj178 +Child: 188, message: qj179 +Child: 189, message: qj180 +Child: 190, message: qj181 +Child: 191, message: qj182 +Child: 192, message: qj183 +Child: 193, message: qj184 +Child: 194, message: qj185 +Child: 195, message: qj186 +Child: 196, message: qj187 +Child: 197, message: qj188 +Child: 198, message: qj189 +Child: 199, message: qj190 +Child: 200, message: qj191 +Child: 201, message: qj192 +Child: 202, message: qj193 +Child: 203, message: qj194 +Child: 204, message: qj195 +Child: 205, message: qj196 +Child: 206, message: qj197 +Child: 207, message: qj198 +Child: 208, message: qj199 +Child: 209, message: qj200 +Child: 210, message: qj201 +Child: 211, message: qj202 +Child: 212, message: qj203 +Child: 213, message: qj204 +Child: 214, message: qj205 +Child: 215, message: qj206 +Child: 216, message: qj207 +Child: 217, message: qj208 +Child: 218, message: qj209 +Child: 219, message: qj210 +Child: 220, message: qj211 +Child: 221, message: qj212 +Child: 222, message: qj213 +Child: 223, message: qj214 +Child: 224, message: qj215 +Child: 225, message: qj216 +Child: 226, message: qj217 +Child: 227, message: qj218 +Child: 228, message: qj219 +Child: 229, message: qj220 +Child: 230, message: qj221 +Child: 231, message: qj222 +Child: 232, message: qj223 +Child: 233, message: qj224 +Child: 234, message: qj225 +Child: 235, message: qj226 +Child: 236, message: qj227 +Child: 237, message: qj228 +Child: 238, message: qj229 +Child: 239, message: qj230 +Child: 240, message: qj231 +Child: 241, message: qj232 +Child: 242, message: qj233 +Child: 243, message: qj234 +Child: 244, message: qj235 +Child: 245, message: qj236 +Child: 246, message: qj237 +Child: 247, message: qj238 +Child: 248, message: qj239 +Child: 249, message: qj240 +Child: 250, message: qj241 +Child: 251, message: qj242 +Child: 252, message: qj243 +Child: 253, message: qj244 +Child: 254, message: qj245 +Child: 255, message: qj246 +Child: 256, message: qj247 +Child: 257, message: qj248 +Child: 258, message: qj249 +Child: 259, message: qj250 +Child: 260, message: qj251 +Child: 261, message: qj252 +Child: 262, message: qj253 +Child: 263, message: qj254 +Child: 264, message: qj255 +Child: 265, message: qj256 +Child: 266, message: qj257 +Child: 267, message: qj258 +Child: 268, message: qj259 +Child: 269, message: qj260 +Child: 270, message: qj261 +Child: 271, message: qj262 +Child: 272, message: qj263 +Child: 273, message: qj264 +Child: 274, message: qj265 +Child: 275, message: qj266 +Child: 276, message: qj267 +Child: 277, message: qj268 +Child: 278, message: qj269 +Child: 279, message: qj270 +Child: 280, message: qj271 +Child: 281, message: qj272 +Child: 282, message: qj273 +Child: 283, message: qj274 +Child: 284, message: qj275 +Child: 285, message: qj276 +Child: 286, message: qj277 +Child: 287, message: qj278 +Child: 288, message: qj279 +Child: 289, message: qj280 +Child: 290, message: qj281 +Child: 291, message: qj282 +Child: 292, message: qj283 +Child: 293, message: qj284 +Child: 294, message: qj285 +Child: 295, message: qj286 +Child: 296, message: qj287 +Child: 297, message: qj288 +Child: 298, message: qj289 +Child: 299, message: qj290 +Child: 300, message: qj291 +Child: 301, message: qj292 +Child: 302, message: qj293 +Child: 303, message: qj294 +Child: 304, message: qj295 +Child: 305, message: qj296 +Child: 306, message: qj297 +Child: 307, message: qj298 +Child: 308, message: qj299 +Child: 309, message: qj300 diff --git a/server508/lists/interfaces/276.txt b/server508/lists/interfaces/276.txt new file mode 100644 index 0000000..3f81d3b --- /dev/null +++ b/server508/lists/interfaces/276.txt @@ -0,0 +1,14 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 35, height: 35 +Child: 2, message: Congratulations! +Child: 3, message: +Child: 4, type: 6, width: 85, height: 105 +Child: 5, message: Total Points: +Child: 6, message: %1 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, message: You are awarded +Child: 9, message: 0 +Child: 10, message: Quest points. +Child: 11, type: 5, width: 26, height: 23 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/277.txt b/server508/lists/interfaces/277.txt new file mode 100644 index 0000000..c46c45f --- /dev/null +++ b/server508/lists/interfaces/277.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 6, width: 507, height: 317 +Child: 3, message: Congratulations! +Child: 4, message: You have completed Death Plateau! +Child: 5, type: 6, width: 65, height: 52 +Child: 6, message: Quest Points: +Child: 7, message: %1 +Child: 8, type: 6, width: 73, height: 148 +Child: 9, message: You are awarded: +Child: 10, message: Line 1 +Child: 11, message: Line 2 +Child: 12, message: Line 3 +Child: 13, message: Line 4 +Child: 14, message: Line 5 +Child: 15, message: Line 6 +Child: 16, message: Line 7 +Child: 17, message: Line 8 +Child: 18, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/278.txt b/server508/lists/interfaces/278.txt new file mode 100644 index 0000000..194a444 --- /dev/null +++ b/server508/lists/interfaces/278.txt @@ -0,0 +1,93 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Ranging Guild Ticket Exchange +inventory type: 32 slots, width: 8, height: 4, 89 +Child: 90, type: 5, width: 26, height: 23 +Child: 91, type: 5, width: 26, height: 23 +Child: 92, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/279.txt b/server508/lists/interfaces/279.txt new file mode 100644 index 0000000..9e412a4 --- /dev/null +++ b/server508/lists/interfaces/279.txt @@ -0,0 +1,48 @@ +Child: 0, type: 5, width: 5000, height: 5000 +Child: 1, type: 3, width: 512, height: 334 +Child: 2, type: 6, width: 154, height: 166 +Child: 3, type: 6, width: 156, height: 167 +Child: 4, type: 6, width: 204, height: 115 +Child: 5, type: 6, width: 190, height: 108 +Child: 6, type: 6, width: 169, height: 49 +Child: 7, type: 5, width: 72, height: 36 +Child: 8, type: 5, width: 72, height: 36 +Child: 9, message: Player's Cat +Child: 10, message: Opponent's Cat +Child: 11, message: Vs +Child: 12, message: ACCEPT +Child: 13, message: DECLINE +Child: 14, message: Amount +Child: 15, message: Amount +Child: 16, message: 0 +Child: 17, message: 0 +Child: 18, type: 6, width: 31, height: 30 +Child: 19, type: 6, width: 31, height: 30 +Child: 20, type: 6, width: 27, height: 9 +Child: 21, type: 6, width: 27, height: 27 +Child: 22, type: 5, width: 119, height: 36 +Child: 23, type: 5, width: 119, height: 36 +Child: 24, message: Your Limit: +Child: 25, message: Their Limit: +Child: 26, message: 1000 +Child: 27, message: 1000 +Child: 28, type: 0, width: 512, height: 334 +Child: 29, type: 0, width: 16391, height: 16391 +Child: 30, type: 0, width: 16391, height: 16391 +Child: 31, type: 5, width: 32, height: 334 +Child: 32, type: 5, width: 462, height: 32 +Child: 33, type: 5, width: 512, height: 32 +Child: 34, type: 5, width: 32, height: 334 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 0, width: 8192, height: 16391 +Child: 40, type: 0, width: 8188, height: 16391 +Child: 41, type: 0, width: 16391, height: 8192 +Child: 42, type: 0, width: 16391, height: 8182 +Child: 43, type: 0, width: 512, height: 334 +Child: 44, type: 5, width: 256, height: 16384 +Child: 45, type: 5, width: 256, height: 16391 +Child: 46, type: 5, width: 16391, height: 167 +Child: 47, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/28.txt b/server508/lists/interfaces/28.txt new file mode 100644 index 0000000..4ba98d0 --- /dev/null +++ b/server508/lists/interfaces/28.txt @@ -0,0 +1,121 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: Iron: %1 +Child: 76, message: Blast Furnace Bar Stock +Child: 77, message: Bronze: %1 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, type: 5, width: 36, height: 36 +Child: 100, message: Steel: %1 +Child: 101, message: Mithril: %1 +Child: 102, message: Adamantite: %1 +Child: 103, message: Runite: %1 +Child: 104, message: Silver: %1 +Child: 105, message: Gold: %1 +Child: 106, message: Perfect gold: %1 +Child: 107, message: Coal to add: %2 +Child: 108, message: (All) +Child: 109, message: (All) +Child: 110, message: (All) +Child: 111, message: (All) +Child: 112, message: (All) +Child: 113, message: (All) +Child: 114, message: (All) +Child: 115, message: (All) +Child: 116, message: (All) +Child: 117, type: 0, width: 105, height: 101 +Child: 118, type: 5, width: 26, height: 23 +Child: 119, type: 5, width: 26, height: 23 +Child: 120, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/280.txt b/server508/lists/interfaces/280.txt new file mode 100644 index 0000000..b8c4433 --- /dev/null +++ b/server508/lists/interfaces/280.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 5, width: 72, height: 36 +Child: 2, type: 5, width: 72, height: 36 +Child: 3, message: YES +Child: 4, message: NO +Child: 5, message: Do you really want to bet X? diff --git a/server508/lists/interfaces/281.txt b/server508/lists/interfaces/281.txt new file mode 100644 index 0000000..d212bf2 --- /dev/null +++ b/server508/lists/interfaces/281.txt @@ -0,0 +1,11 @@ +Child: 0, message: Text +Child: 1, message: Text +Child: 2, type: 6, width: 44, height: 45 +Child: 3, type: 6, width: 45, height: 45 +Child: 4, message: 10 +Child: 5, message: 10 +Child: 6, type: 5, width: 25, height: 25 +Child: 7, type: 0, width: 268, height: 121 +Child: 8, type: 6, width: 264, height: 76 +Child: 9, message: Your cat has been +Child: 10, message: Defeated diff --git a/server508/lists/interfaces/282.txt b/server508/lists/interfaces/282.txt new file mode 100644 index 0000000..d300915 --- /dev/null +++ b/server508/lists/interfaces/282.txt @@ -0,0 +1,47 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 445, height: 332 +Child: 2, type: 6, width: 69, height: 314 +Child: 3, type: 6, width: 257, height: 265 +Child: 4, type: 6, width: 257, height: 265 +Child: 5, type: 6, width: 257, height: 265 +Child: 6, type: 6, width: 257, height: 265 +Child: 7, type: 6, width: 257, height: 265 +Child: 8, type: 6, width: 257, height: 265 +Child: 9, type: 6, width: 257, height: 265 +Child: 10, type: 6, width: 257, height: 265 +Child: 11, message: Page 1 of 8 +Child: 12, type: 6, width: 62, height: 57 +Child: 13, type: 6, width: 7, height: 79 +Child: 14, type: 6, width: 7, height: 80 +Child: 15, type: 6, width: 7, height: 80 +Child: 16, type: 6, width: 7, height: 80 +Child: 17, type: 6, width: 7, height: 80 +Child: 18, type: 6, width: 7, height: 80 +Child: 19, type: 6, width: 7, height: 80 +Child: 20, type: 6, width: 7, height: 80 +Child: 21, message: PLAY +Child: 22, type: 0, width: 44, height: 42 +Child: 23, type: 0, width: 44, height: 42 +Child: 24, type: 5, width: 26, height: 23 +Child: 25, type: 6, width: 35, height: 35 +Child: 26, type: 6, width: 33, height: 35 +Child: 27, type: 0, width: 512, height: 334 +Child: 28, type: 0, width: 16391, height: 16391 +Child: 29, type: 0, width: 16391, height: 16391 +Child: 30, type: 5, width: 32, height: 334 +Child: 31, type: 5, width: 462, height: 32 +Child: 32, type: 5, width: 512, height: 32 +Child: 33, type: 5, width: 32, height: 334 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 0, width: 8192, height: 16391 +Child: 39, type: 0, width: 8188, height: 16391 +Child: 40, type: 0, width: 16391, height: 8192 +Child: 41, type: 0, width: 16391, height: 8182 +Child: 42, type: 0, width: 512, height: 334 +Child: 43, type: 5, width: 256, height: 16384 +Child: 44, type: 5, width: 256, height: 16391 +Child: 45, type: 5, width: 16391, height: 167 +Child: 46, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/283.txt b/server508/lists/interfaces/283.txt new file mode 100644 index 0000000..559c57b --- /dev/null +++ b/server508/lists/interfaces/283.txt @@ -0,0 +1,44 @@ +Child: 0, type: 6, width: 488, height: 304 +Child: 1, type: 6, width: 257, height: 265 +Child: 2, type: 6, width: 257, height: 265 +Child: 3, type: 6, width: 257, height: 265 +Child: 4, type: 6, width: 257, height: 265 +Child: 5, type: 6, width: 257, height: 265 +Child: 6, type: 6, width: 257, height: 265 +Child: 7, type: 6, width: 257, height: 265 +Child: 8, type: 6, width: 257, height: 265 +Child: 9, type: 6, width: 7, height: 79 +Child: 10, type: 6, width: 7, height: 79 +Child: 11, type: 6, width: 7, height: 79 +Child: 12, type: 6, width: 7, height: 79 +Child: 13, type: 6, width: 7, height: 79 +Child: 14, type: 6, width: 7, height: 79 +Child: 15, type: 6, width: 11, height: 83 +Child: 16, type: 6, width: 7, height: 79 +Child: 17, type: 6, width: 45, height: 41 +Child: 18, type: 5, width: 26, height: 23 +Child: 19, type: 0, width: 512, height: 334 +Child: 20, type: 0, width: 44, height: 42 +Child: 21, type: 0, width: 44, height: 42 +Child: 22, type: 5, width: 26, height: 23 +Child: 23, type: 6, width: 35, height: 35 +Child: 24, type: 6, width: 33, height: 35 +Child: 25, type: 0, width: 16391, height: 16391 +Child: 26, type: 0, width: 16391, height: 16391 +Child: 27, type: 5, width: 32, height: 334 +Child: 28, type: 5, width: 462, height: 32 +Child: 29, type: 5, width: 512, height: 32 +Child: 30, type: 5, width: 32, height: 334 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 0, width: 8192, height: 16391 +Child: 36, type: 0, width: 8188, height: 16391 +Child: 37, type: 0, width: 16391, height: 8192 +Child: 38, type: 0, width: 16391, height: 8182 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 5, width: 256, height: 16384 +Child: 41, type: 5, width: 256, height: 16391 +Child: 42, type: 5, width: 16391, height: 167 +Child: 43, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/284.txt b/server508/lists/interfaces/284.txt new file mode 100644 index 0000000..29a43d6 --- /dev/null +++ b/server508/lists/interfaces/284.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/285.txt b/server508/lists/interfaces/285.txt new file mode 100644 index 0000000..20a2923 --- /dev/null +++ b/server508/lists/interfaces/285.txt @@ -0,0 +1,61 @@ +Child: 0, type: 3, width: 508, height: 172 +Child: 1, type: 3, width: 499, height: 164 +Child: 2, type: 0, width: 488, height: 36 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 25, height: 30 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 25, height: 30 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 25, height: 30 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 25, height: 30 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, message: A +Child: 44, message: A +Child: 45, message: A +Child: 46, message: A +Child: 47, type: 5, width: 45, height: 36 +Child: 48, type: 5, width: 45, height: 36 +Child: 49, type: 5, width: 45, height: 36 +Child: 50, type: 5, width: 45, height: 36 +Child: 51, type: 5, width: 45, height: 36 +Child: 52, type: 5, width: 45, height: 36 +Child: 53, type: 5, width: 45, height: 36 +Child: 54, type: 5, width: 45, height: 36 +Child: 55, message: Combination Lock Door +Child: 56, type: 3, width: 128, height: 32 +Child: 57, message: E N T E R +Child: 58, type: 5, width: 26, height: 23 +Child: 59, type: 5, width: 26, height: 23 +Child: 60, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/286.txt b/server508/lists/interfaces/286.txt new file mode 100644 index 0000000..47a7035 --- /dev/null +++ b/server508/lists/interfaces/286.txt @@ -0,0 +1,169 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 25, height: 30 +Child: 69, type: 5, width: 25, height: 30 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Fractional still +Child: 89, type: 6, width: 32, height: 32 +Child: 90, message: Heat +Child: 91, type: 6, width: 32, height: 32 +Child: 92, message: Pressure +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, type: 6, width: 32, height: 32 +Child: 100, type: 6, width: 32, height: 32 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, type: 6, width: 32, height: 32 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, type: 6, width: 32, height: 32 +Child: 108, type: 6, width: 32, height: 32 +Child: 109, type: 6, width: 32, height: 32 +Child: 110, type: 6, width: 32, height: 32 +Child: 111, type: 6, width: 32, height: 32 +Child: 112, type: 6, width: 32, height: 32 +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, type: 6, width: 32, height: 32 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, type: 6, width: 32, height: 32 +Child: 118, type: 6, width: 32, height: 32 +Child: 119, type: 6, width: 150, height: 100 +Child: 120, message: Add Coal +Child: 121, type: 6, width: 32, height: 32 +Child: 122, type: 6, width: 32, height: 32 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, message: +Child: 129, message: +Child: 130, message: +Child: 131, message: +Child: 132, type: 3, width: 7, height: 7 +Child: 133, type: 3, width: 7, height: 7 +Child: 134, type: 3, width: 7, height: 7 +Child: 135, type: 3, width: 7, height: 7 +Child: 136, type: 3, width: 7, height: 7 +Child: 137, type: 3, width: 7, height: 7 +Child: 138, type: 3, width: 7, height: 7 +Child: 139, type: 3, width: 7, height: 7 +Child: 140, type: 3, width: 7, height: 7 +Child: 141, type: 3, width: 7, height: 7 +Child: 142, type: 3, width: 7, height: 7 +Child: 143, type: 3, width: 7, height: 7 +Child: 144, type: 3, width: 7, height: 7 +Child: 145, type: 3, width: 7, height: 7 +Child: 146, type: 3, width: 7, height: 7 +Child: 147, type: 3, width: 7, height: 7 +Child: 148, type: 3, width: 7, height: 7 +Child: 149, type: 3, width: 7, height: 7 +Child: 150, type: 3, width: 7, height: 7 +Child: 151, type: 3, width: 7, height: 7 +Child: 152, type: 3, width: 7, height: 7 +Child: 153, type: 3, width: 7, height: 7 +Child: 154, type: 3, width: 7, height: 7 +Child: 155, type: 3, width: 7, height: 7 +Child: 156, type: 3, width: 7, height: 7 +Child: 157, message: Tar regulator +Child: 158, message: Pressure valve +Child: 159, type: 3, width: 4, height: 12 +Child: 160, message: Total distilled +Child: 161, type: 3, width: 12, height: 4 +Child: 162, type: 3, width: 12, height: 4 +Child: 163, type: 3, width: 12, height: 4 +Child: 164, type: 3, width: 4, height: 12 +Child: 165, type: 3, width: 12, height: 4 +Child: 166, type: 5, width: 26, height: 23 +Child: 167, type: 5, width: 26, height: 23 +Child: 168, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/287.txt b/server508/lists/interfaces/287.txt new file mode 100644 index 0000000..f6bdbb5 --- /dev/null +++ b/server508/lists/interfaces/287.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 194, height: 192 +Child: 1, type: 6, width: 32, height: 32 +inventory type: 25 slots, width: 5, height: 5, 2 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/288.txt b/server508/lists/interfaces/288.txt new file mode 100644 index 0000000..9e0cea9 --- /dev/null +++ b/server508/lists/interfaces/288.txt @@ -0,0 +1,135 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 3, width: 511, height: 19 +Child: 2, type: 3, width: 86, height: 145 +Child: 3, type: 3, width: 86, height: 145 +Child: 4, type: 3, width: 359, height: 334 +Child: 5, type: 3, width: 343, height: 334 +Child: 6, type: 3, width: 71, height: 130 +Child: 7, type: 3, width: 71, height: 130 +Child: 8, type: 3, width: 84, height: 24 +Child: 9, message: open casket +Child: 10, type: 3, width: 32, height: 32 +Child: 11, type: 3, width: 32, height: 32 +Child: 12, type: 3, width: 32, height: 32 +Child: 13, type: 3, width: 32, height: 32 +Child: 14, type: 3, width: 32, height: 32 +Child: 15, type: 3, width: 32, height: 32 +Child: 16, type: 3, width: 32, height: 32 +Child: 17, type: 3, width: 32, height: 32 +Child: 18, type: 3, width: 32, height: 32 +Child: 19, type: 3, width: 32, height: 32 +Child: 20, type: 3, width: 32, height: 32 +Child: 21, type: 3, width: 32, height: 32 +Child: 22, type: 3, width: 32, height: 32 +Child: 23, type: 3, width: 32, height: 32 +Child: 24, type: 3, width: 32, height: 32 +Child: 25, type: 3, width: 32, height: 32 +Child: 26, type: 3, width: 32, height: 32 +Child: 27, type: 3, width: 32, height: 32 +Child: 28, type: 3, width: 32, height: 32 +Child: 29, type: 3, width: 32, height: 32 +Child: 30, type: 3, width: 32, height: 32 +Child: 31, type: 3, width: 32, height: 32 +Child: 32, type: 3, width: 32, height: 32 +Child: 33, type: 3, width: 32, height: 32 +Child: 34, type: 3, width: 32, height: 32 +Child: 35, type: 3, width: 32, height: 32 +Child: 36, type: 3, width: 32, height: 32 +Child: 37, type: 3, width: 32, height: 32 +Child: 38, type: 3, width: 32, height: 32 +Child: 39, type: 3, width: 32, height: 32 +Child: 40, type: 3, width: 32, height: 32 +Child: 41, type: 3, width: 32, height: 32 +Child: 42, type: 3, width: 32, height: 32 +Child: 43, type: 3, width: 32, height: 32 +Child: 44, type: 3, width: 32, height: 32 +Child: 45, type: 3, width: 32, height: 32 +Child: 46, type: 3, width: 32, height: 32 +Child: 47, type: 3, width: 32, height: 32 +Child: 48, type: 3, width: 32, height: 32 +Child: 49, type: 3, width: 32, height: 32 +Child: 50, type: 3, width: 32, height: 32 +Child: 51, type: 3, width: 32, height: 32 +Child: 52, type: 3, width: 32, height: 32 +Child: 53, type: 3, width: 32, height: 32 +Child: 54, type: 3, width: 32, height: 32 +Child: 55, type: 3, width: 32, height: 32 +Child: 56, type: 3, width: 32, height: 32 +Child: 57, type: 3, width: 32, height: 32 +Child: 58, type: 3, width: 32, height: 32 +Child: 59, type: 3, width: 32, height: 32 +Child: 60, type: 3, width: 32, height: 32 +Child: 61, type: 3, width: 32, height: 32 +Child: 62, type: 3, width: 32, height: 32 +Child: 63, type: 3, width: 32, height: 32 +Child: 64, type: 3, width: 32, height: 32 +Child: 65, type: 3, width: 32, height: 32 +Child: 66, type: 3, width: 32, height: 32 +Child: 67, type: 3, width: 32, height: 32 +Child: 68, type: 3, width: 32, height: 32 +Child: 69, type: 3, width: 32, height: 32 +Child: 70, type: 3, width: 32, height: 32 +Child: 71, type: 3, width: 32, height: 32 +Child: 72, type: 3, width: 32, height: 32 +Child: 73, type: 3, width: 32, height: 32 +Child: 74, type: 3, width: 32, height: 32 +Child: 75, type: 3, width: 32, height: 32 +Child: 76, type: 3, width: 32, height: 32 +Child: 77, type: 3, width: 32, height: 32 +Child: 78, type: 3, width: 32, height: 32 +Child: 79, type: 3, width: 32, height: 32 +Child: 80, type: 3, width: 32, height: 32 +Child: 81, type: 3, width: 32, height: 32 +Child: 82, type: 3, width: 32, height: 32 +Child: 83, type: 3, width: 32, height: 32 +Child: 84, type: 3, width: 32, height: 32 +Child: 85, type: 3, width: 32, height: 32 +Child: 86, type: 3, width: 32, height: 32 +Child: 87, type: 3, width: 32, height: 32 +Child: 88, type: 3, width: 32, height: 32 +Child: 89, type: 3, width: 32, height: 32 +Child: 90, type: 3, width: 32, height: 32 +Child: 91, type: 0, width: 47, height: 48 +Child: 92, type: 0, width: 47, height: 48 +Child: 93, type: 0, width: 47, height: 48 +Child: 94, type: 0, width: 47, height: 48 +Child: 95, type: 0, width: 47, height: 48 +Child: 96, type: 0, width: 47, height: 48 +Child: 97, type: 0, width: 47, height: 48 +Child: 98, type: 0, width: 47, height: 48 +Child: 99, type: 0, width: 47, height: 48 +Child: 100, type: 0, width: 47, height: 48 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, type: 6, width: 32, height: 32 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, type: 6, width: 32, height: 32 +Child: 108, type: 6, width: 32, height: 32 +Child: 109, type: 6, width: 32, height: 32 +Child: 110, type: 6, width: 32, height: 32 +Child: 111, type: 6, width: 32, height: 32 +Child: 112, type: 6, width: 32, height: 32 +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, type: 6, width: 32, height: 32 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, type: 6, width: 32, height: 32 +Child: 118, type: 6, width: 32, height: 32 +Child: 119, type: 6, width: 32, height: 32 +Child: 120, type: 6, width: 32, height: 32 +Child: 121, type: 6, width: 32, height: 32 +Child: 122, type: 6, width: 32, height: 32 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 6, width: 32, height: 32 +Child: 129, type: 6, width: 32, height: 32 +Child: 130, type: 6, width: 32, height: 32 +inventory type: 81 slots, width: 9, height: 9, 131 +Child: 132, type: 5, width: 26, height: 23 +Child: 133, type: 5, width: 26, height: 23 +Child: 134, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/289.txt b/server508/lists/interfaces/289.txt new file mode 100644 index 0000000..72148ef --- /dev/null +++ b/server508/lists/interfaces/289.txt @@ -0,0 +1,66 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 3, width: 512, height: 20 +Child: 2, type: 3, width: 232, height: 236 +Child: 3, type: 3, width: 220, height: 222 +Child: 4, type: 3, width: 43, height: 43 +Child: 5, type: 3, width: 43, height: 43 +Child: 6, type: 3, width: 43, height: 43 +Child: 7, type: 3, width: 43, height: 43 +Child: 8, type: 3, width: 43, height: 43 +Child: 9, type: 3, width: 43, height: 43 +Child: 10, type: 3, width: 43, height: 43 +Child: 11, type: 3, width: 43, height: 43 +Child: 12, type: 3, width: 43, height: 43 +Child: 13, type: 3, width: 43, height: 43 +Child: 14, type: 3, width: 43, height: 43 +Child: 15, type: 3, width: 43, height: 43 +Child: 16, type: 3, width: 43, height: 43 +Child: 17, type: 3, width: 43, height: 43 +Child: 18, type: 3, width: 43, height: 43 +Child: 19, type: 3, width: 43, height: 43 +Child: 20, type: 3, width: 33, height: 32 +Child: 21, type: 3, width: 33, height: 32 +Child: 22, type: 3, width: 33, height: 32 +Child: 23, type: 3, width: 33, height: 32 +Child: 24, type: 3, width: 33, height: 32 +Child: 25, type: 3, width: 33, height: 32 +Child: 26, type: 3, width: 33, height: 32 +Child: 27, type: 3, width: 33, height: 32 +Child: 28, type: 3, width: 33, height: 32 +Child: 29, type: 3, width: 33, height: 32 +Child: 30, type: 3, width: 33, height: 32 +Child: 31, type: 3, width: 33, height: 32 +Child: 32, type: 3, width: 33, height: 32 +Child: 33, type: 3, width: 33, height: 32 +Child: 34, type: 3, width: 33, height: 32 +Child: 35, type: 3, width: 33, height: 32 +Child: 36, type: 3, width: 89, height: 31 +Child: 37, type: 3, width: 113, height: 174 +Child: 38, type: 3, width: 93, height: 149 +Child: 39, type: 3, width: 113, height: 174 +Child: 40, type: 3, width: 93, height: 149 +Child: 41, message: open casket +Child: 42, type: 0, width: 42, height: 42 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 0, width: 42, height: 42 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 0, width: 42, height: 42 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 6, width: 32, height: 32 +Child: 51, type: 0, width: 42, height: 42 +Child: 52, type: 6, width: 32, height: 32 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 0, width: 42, height: 42 +Child: 55, type: 6, width: 32, height: 32 +Child: 56, type: 6, width: 32, height: 32 +Child: 57, type: 6, width: 32, height: 32 +Child: 58, type: 6, width: 32, height: 32 +Child: 59, type: 6, width: 32, height: 32 +Child: 60, type: 6, width: 32, height: 32 +Child: 61, type: 6, width: 32, height: 32 +inventory type: 16 slots, width: 4, height: 4, 62 +Child: 63, type: 5, width: 26, height: 23 +Child: 64, type: 5, width: 26, height: 23 +Child: 65, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/29.txt b/server508/lists/interfaces/29.txt new file mode 100644 index 0000000..fde373b --- /dev/null +++ b/server508/lists/interfaces/29.txt @@ -0,0 +1,16 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 481, height: 327 +Child: 2, type: 6, width: 41, height: 40 +Child: 3, message: Blast Furnace Plan +Child: 4, message: Stove +Child: 5, message: Air Pump +Child: 6, message: Temp Gauge +Child: 7, message: Furnace +Child: 8, message: Dispenser +Child: 9, message: Conveyor
Belt +Child: 10, message: Cogs +Child: 11, message: Pipes +Child: 12, message: Coke +Child: 13, type: 6, width: 41, height: 40 +Child: 14, type: 6, width: 41, height: 40 +Child: 15, type: 6, width: 41, height: 40 diff --git a/server508/lists/interfaces/290.txt b/server508/lists/interfaces/290.txt new file mode 100644 index 0000000..d9fa317 --- /dev/null +++ b/server508/lists/interfaces/290.txt @@ -0,0 +1,43 @@ +Child: 0, type: 3, width: 400, height: 400 +Child: 1, type: 6, width: 127, height: 149 +Child: 2, type: 6, width: 131, height: 41 +Child: 3, type: 6, width: 199, height: 214 +Child: 4, type: 6, width: 215, height: 241 +Child: 5, type: 0, width: 32, height: 32 +Child: 6, type: 6, width: 614, height: 549 +Child: 7, type: 6, width: 247, height: 244 +Child: 8, type: 6, width: 75, height: 78 +Child: 9, type: 6, width: 75, height: 78 +Child: 10, type: 6, width: 75, height: 78 +Child: 11, type: 6, width: 75, height: 78 +Child: 12, type: 6, width: 75, height: 78 +Child: 13, type: 6, width: 75, height: 78 +Child: 14, type: 6, width: 75, height: 78 +Child: 15, type: 6, width: 75, height: 78 +Child: 16, type: 6, width: 75, height: 78 +Child: 17, type: 6, width: 51, height: 70 +Child: 18, type: 6, width: 62, height: 50 +Child: 19, type: 6, width: 49, height: 55 +Child: 20, type: 6, width: 71, height: 50 +Child: 21, type: 5, width: 26, height: 23 +Child: 22, type: 0, width: 512, height: 334 +Child: 23, type: 0, width: 512, height: 334 +Child: 24, type: 0, width: 16391, height: 16391 +Child: 25, type: 0, width: 16391, height: 16391 +Child: 26, type: 5, width: 32, height: 334 +Child: 27, type: 5, width: 462, height: 32 +Child: 28, type: 5, width: 512, height: 32 +Child: 29, type: 5, width: 32, height: 334 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 0, width: 8192, height: 16391 +Child: 35, type: 0, width: 8188, height: 16391 +Child: 36, type: 0, width: 16391, height: 8192 +Child: 37, type: 0, width: 16391, height: 8182 +Child: 38, type: 0, width: 512, height: 334 +Child: 39, type: 5, width: 256, height: 16384 +Child: 40, type: 5, width: 256, height: 16391 +Child: 41, type: 5, width: 16391, height: 167 +Child: 42, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/291.txt b/server508/lists/interfaces/291.txt new file mode 100644 index 0000000..6324043 --- /dev/null +++ b/server508/lists/interfaces/291.txt @@ -0,0 +1,12 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 3, width: 65, height: 65 +Child: 7, type: 3, width: 65, height: 65 +Child: 8, type: 3, width: 65, height: 65 +Child: 9, type: 3, width: 65, height: 65 +Child: 10, type: 3, width: 65, height: 65 +Child: 11, type: 3, width: 65, height: 65 diff --git a/server508/lists/interfaces/292.txt b/server508/lists/interfaces/292.txt new file mode 100644 index 0000000..e2d35f4 --- /dev/null +++ b/server508/lists/interfaces/292.txt @@ -0,0 +1,55 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 0, width: 512, height: 320 +Child: 32, type: 0, width: 512, height: 320 +Child: 33, type: 0, width: 512, height: 320 +Child: 34, type: 0, width: 512, height: 320 +Child: 35, type: 0, width: 512, height: 320 +Child: 36, type: 0, width: 512, height: 320 +Child: 37, type: 0, width: 512, height: 320 +Child: 38, type: 0, width: 512, height: 320 +Child: 39, type: 0, width: 512, height: 320 +Child: 40, type: 0, width: 512, height: 320 +Child: 41, type: 0, width: 512, height: 320 +Child: 42, type: 0, width: 512, height: 320 +Child: 43, type: 0, width: 512, height: 320 +Child: 44, type: 0, width: 512, height: 320 +Child: 45, type: 0, width: 512, height: 320 +Child: 46, type: 0, width: 512, height: 320 +Child: 47, type: 0, width: 512, height: 320 +Child: 48, type: 0, width: 512, height: 320 +Child: 49, type: 3, width: 120, height: 80 +Child: 50, type: 3, width: 120, height: 120 +Child: 51, type: 3, width: 120, height: 120 +Child: 52, type: 5, width: 26, height: 23 +Child: 53, type: 5, width: 26, height: 23 +Child: 54, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/293.txt b/server508/lists/interfaces/293.txt new file mode 100644 index 0000000..d616242 --- /dev/null +++ b/server508/lists/interfaces/293.txt @@ -0,0 +1,30 @@ +Child: 0, type: 0, width: 32, height: 32 +Child: 1, type: 6, width: 540, height: 346 +Child: 2, type: 6, width: 320, height: 314 +Child: 3, type: 6, width: 119, height: 115 +Child: 4, type: 6, width: 119, height: 117 +Child: 5, type: 6, width: 118, height: 116 +Child: 6, type: 6, width: 117, height: 117 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 0, width: 512, height: 334 +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 0, width: 16391, height: 16391 +Child: 13, type: 5, width: 32, height: 334 +Child: 14, type: 5, width: 462, height: 32 +Child: 15, type: 5, width: 512, height: 32 +Child: 16, type: 5, width: 32, height: 334 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 0, width: 8192, height: 16391 +Child: 22, type: 0, width: 8188, height: 16391 +Child: 23, type: 0, width: 16391, height: 8192 +Child: 24, type: 0, width: 16391, height: 8182 +Child: 25, type: 0, width: 512, height: 334 +Child: 26, type: 5, width: 256, height: 16384 +Child: 27, type: 5, width: 256, height: 16391 +Child: 28, type: 5, width: 16391, height: 167 +Child: 29, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/294.txt b/server508/lists/interfaces/294.txt new file mode 100644 index 0000000..ceeb6ab --- /dev/null +++ b/server508/lists/interfaces/294.txt @@ -0,0 +1,26 @@ +Child: 0, type: 6, width: 545, height: 349 +Child: 1, type: 6, width: 401, height: 101 +Child: 2, type: 6, width: 149, height: 108 +Child: 3, type: 6, width: 408, height: 347 +Child: 4, message: Rum +Child: 5, message: Deal +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 462, height: 32 +Child: 11, type: 5, width: 512, height: 32 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 0, width: 8192, height: 16391 +Child: 18, type: 0, width: 8188, height: 16391 +Child: 19, type: 0, width: 16391, height: 8192 +Child: 20, type: 0, width: 16391, height: 8182 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 5, width: 256, height: 16384 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 5, width: 16391, height: 167 +Child: 25, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/295.txt b/server508/lists/interfaces/295.txt new file mode 100644 index 0000000..0a21aa1 --- /dev/null +++ b/server508/lists/interfaces/295.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 621, height: 186 +Child: 1, message: Rum +Child: 2, message: Deal +Child: 3, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/296.txt b/server508/lists/interfaces/296.txt new file mode 100644 index 0000000..081746f --- /dev/null +++ b/server508/lists/interfaces/296.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 42343, height: 11485 diff --git a/server508/lists/interfaces/297.txt b/server508/lists/interfaces/297.txt new file mode 100644 index 0000000..62e2d80 --- /dev/null +++ b/server508/lists/interfaces/297.txt @@ -0,0 +1,51 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 532, height: 468 +Child: 2, message: Choose your refreshment from the sandwich tray +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 32, height: 32 +Child: 5, type: 0, width: 515, height: 335 +Child: 6, type: 0, width: 448, height: 277 +Child: 7, type: 6, width: 53, height: 59 +Child: 8, type: 6, width: 57, height: 50 +Child: 9, type: 6, width: 57, height: 52 +Child: 10, type: 6, width: 36, height: 34 +Child: 11, type: 6, width: 57, height: 43 +Child: 12, type: 6, width: 42, height: 26 +Child: 13, type: 6, width: 30, height: 36 +Child: 14, message: Key +Child: 15, type: 3, width: 515, height: 335 +Child: 16, type: 6, width: 53, height: 59 +Child: 17, type: 6, width: 57, height: 50 +Child: 18, type: 6, width: 57, height: 52 +Child: 19, type: 6, width: 36, height: 34 +Child: 20, type: 6, width: 57, height: 43 +Child: 21, type: 6, width: 42, height: 26 +Child: 22, type: 6, width: 30, height: 36 +Child: 23, message: Meat Pie +Child: 24, message: Kebab +Child: 25, message: Chocolate Bar +Child: 26, message: Baguette +Child: 27, message: Triangle Sandwich +Child: 28, message: Square Sandwich +Child: 29, message: back +Child: 30, message: Roll +Child: 31, message: +Child: 32, type: 0, width: 16391, height: 16391 +Child: 33, type: 0, width: 16391, height: 16391 +Child: 34, type: 5, width: 32, height: 334 +Child: 35, type: 5, width: 462, height: 32 +Child: 36, type: 5, width: 512, height: 32 +Child: 37, type: 5, width: 32, height: 334 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 0, width: 8192, height: 16391 +Child: 43, type: 0, width: 8188, height: 16391 +Child: 44, type: 0, width: 16391, height: 8192 +Child: 45, type: 0, width: 16391, height: 8182 +Child: 46, type: 0, width: 512, height: 334 +Child: 47, type: 5, width: 256, height: 16384 +Child: 48, type: 5, width: 256, height: 16391 +Child: 49, type: 5, width: 16391, height: 167 +Child: 50, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/298.txt b/server508/lists/interfaces/298.txt new file mode 100644 index 0000000..20a2923 --- /dev/null +++ b/server508/lists/interfaces/298.txt @@ -0,0 +1,61 @@ +Child: 0, type: 3, width: 508, height: 172 +Child: 1, type: 3, width: 499, height: 164 +Child: 2, type: 0, width: 488, height: 36 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 25, height: 30 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 25, height: 30 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 25, height: 30 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 25, height: 30 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, message: A +Child: 44, message: A +Child: 45, message: A +Child: 46, message: A +Child: 47, type: 5, width: 45, height: 36 +Child: 48, type: 5, width: 45, height: 36 +Child: 49, type: 5, width: 45, height: 36 +Child: 50, type: 5, width: 45, height: 36 +Child: 51, type: 5, width: 45, height: 36 +Child: 52, type: 5, width: 45, height: 36 +Child: 53, type: 5, width: 45, height: 36 +Child: 54, type: 5, width: 45, height: 36 +Child: 55, message: Combination Lock Door +Child: 56, type: 3, width: 128, height: 32 +Child: 57, message: E N T E R +Child: 58, type: 5, width: 26, height: 23 +Child: 59, type: 5, width: 26, height: 23 +Child: 60, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/299.txt b/server508/lists/interfaces/299.txt new file mode 100644 index 0000000..0051ba6 --- /dev/null +++ b/server508/lists/interfaces/299.txt @@ -0,0 +1,91 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 6, width: 511, height: 333 +Child: 2, message: Ape +Child: 3, message: Asgarnia +Child: 4, message: Karamja +Child: 5, message: Crandor +Child: 6, message: Entrana +Child: 7, message: Port +Child: 8, message: Sarim +Child: 9, type: 6, width: 16, height: 22 +Child: 10, type: 6, width: 16, height: 22 +Child: 11, type: 6, width: 16, height: 21 +Child: 12, type: 6, width: 16, height: 22 +Child: 13, message: Port +Child: 14, message: Khazard +Child: 15, message: Ship +Child: 16, message: Yard +Child: 17, type: 6, width: 16, height: 22 +Child: 18, type: 6, width: 16, height: 22 +Child: 19, message: Cairn +Child: 20, message: Isle +Child: 21, type: 6, width: 16, height: 22 +Child: 22, message: Brimhaven +Child: 23, message: Ardougne +Child: 24, type: 6, width: 16, height: 22 +Child: 25, message: You Journey on the ship.... +Child: 26, type: 6, width: 16, height: 22 +Child: 27, message: Atoll +Child: 28, type: 6, width: 16, height: 22 +Child: 29, type: 6, width: 16, height: 21 +Child: 30, message: Feldip +Child: 31, message: Hills +Child: 32, type: 0, width: 512, height: 334 +Child: 33, type: 0, width: 512, height: 334 +Child: 34, type: 0, width: 512, height: 334 +Child: 35, type: 0, width: 512, height: 334 +Child: 36, type: 0, width: 512, height: 334 +Child: 37, type: 0, width: 512, height: 334 +Child: 38, type: 0, width: 512, height: 334 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 0, width: 512, height: 334 +Child: 41, type: 0, width: 512, height: 334 +Child: 42, type: 0, width: 512, height: 334 +Child: 43, type: 0, width: 512, height: 334 +Child: 44, type: 0, width: 512, height: 334 +Child: 45, type: 0, width: 512, height: 334 +Child: 46, type: 0, width: 512, height: 334 +Child: 47, type: 0, width: 512, height: 334 +Child: 48, message: The ogres follow the scent of the chompy.... +Child: 49, message: The ogres travel back with the goods +Child: 50, type: 0, width: 512, height: 334 +Child: 51, type: 3, width: 32, height: 32 +Child: 52, type: 6, width: 103, height: 93 +Child: 53, type: 6, width: 145, height: 74 +Child: 54, type: 6, width: 145, height: 74 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 6, width: 148, height: 66 +Child: 57, type: 6, width: 148, height: 66 +Child: 58, type: 6, width: 87, height: 69 +Child: 59, type: 6, width: 87, height: 69 +Child: 60, type: 6, width: 58, height: 41 +Child: 61, type: 6, width: 58, height: 41 +Child: 62, type: 6, width: 28, height: 32 +Child: 63, type: 6, width: 83, height: 90 +Child: 64, type: 6, width: 287, height: 125 +Child: 65, type: 6, width: 287, height: 125 +Child: 66, type: 6, width: 224, height: 124 +Child: 67, type: 6, width: 266, height: 236 +Child: 68, type: 6, width: 265, height: 237 +Child: 69, type: 6, width: 103, height: 93 +Child: 70, type: 0, width: 16391, height: 16391 +Child: 71, type: 0, width: 305, height: 20 +Child: 72, type: 0, width: 305, height: 20 +Child: 73, type: 0, width: 16391, height: 16391 +Child: 74, type: 5, width: 32, height: 334 +Child: 75, type: 5, width: 462, height: 32 +Child: 76, type: 5, width: 512, height: 32 +Child: 77, type: 5, width: 32, height: 334 +Child: 78, type: 5, width: 32, height: 32 +Child: 79, type: 5, width: 32, height: 32 +Child: 80, type: 5, width: 32, height: 32 +Child: 81, type: 5, width: 32, height: 32 +Child: 82, type: 0, width: 8192, height: 16391 +Child: 83, type: 0, width: 8188, height: 16391 +Child: 84, type: 0, width: 16391, height: 8192 +Child: 85, type: 0, width: 16391, height: 8182 +Child: 86, type: 0, width: 512, height: 334 +Child: 87, type: 5, width: 256, height: 16384 +Child: 88, type: 5, width: 256, height: 16391 +Child: 89, type: 5, width: 16391, height: 167 +Child: 90, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/3.txt b/server508/lists/interfaces/3.txt new file mode 100644 index 0000000..1bc9cfd --- /dev/null +++ b/server508/lists/interfaces/3.txt @@ -0,0 +1,15 @@ +Child: 0, type: 6, width: 42, height: 265 +Child: 1, type: 0, width: 164, height: 326 +Child: 2, type: 0, width: 195, height: 334 +Child: 3, type: 0, width: 170, height: 338 +Child: 4, type: 0, width: 168, height: 330 +Child: 5, type: 0, width: 178, height: 329 +Child: 6, type: 0, width: 173, height: 331 +Child: 7, type: 0, width: 177, height: 333 +Child: 8, type: 6, width: 101, height: 134 +Child: 9, type: 6, width: 100, height: 136 +Child: 10, type: 6, width: 101, height: 134 +Child: 11, type: 6, width: 100, height: 134 +Child: 12, type: 6, width: 101, height: 134 +Child: 13, type: 6, width: 73, height: 134 +Child: 14, type: 0, width: 109, height: 304 diff --git a/server508/lists/interfaces/30.txt b/server508/lists/interfaces/30.txt new file mode 100644 index 0000000..415f814 --- /dev/null +++ b/server508/lists/interfaces/30.txt @@ -0,0 +1,26 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, message: Blast Furnace Temp Gauge +Child: 2, type: 6, width: 119, height: 67 +Child: 3, type: 6, width: 113, height: 64 +Child: 4, type: 6, width: 257, height: 257 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 462, height: 32 +Child: 11, type: 5, width: 512, height: 32 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 0, width: 8192, height: 16391 +Child: 18, type: 0, width: 8188, height: 16391 +Child: 19, type: 0, width: 16391, height: 8192 +Child: 20, type: 0, width: 16391, height: 8182 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 5, width: 256, height: 16384 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 5, width: 16391, height: 167 +Child: 25, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/300.txt b/server508/lists/interfaces/300.txt new file mode 100644 index 0000000..0878b80 --- /dev/null +++ b/server508/lists/interfaces/300.txt @@ -0,0 +1,275 @@ +Child: 0, type: 3, width: 508, height: 305 +Child: 1, type: 5, width: 498, height: 300 +Child: 2, type: 3, width: 498, height: 292 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 243 +Child: 6, type: 5, width: 448, height: 34 +Child: 7, type: 5, width: 448, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 490, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 16, height: 16 +Child: 15, message: Smithing +Child: 16, type: 0, width: 484, height: 264 +Child: 17, type: 0, width: 16, height: 264 +Child: 18, type: 0, width: 109, height: 32 +Child: 19, type: 5, width: 36, height: 32 +Child: 20, message: Dagger +Child: 21, message: 1 Bar +Child: 22, message: +Child: 23, message: +Child: 24, message: +Child: 25, message: +Child: 26, type: 0, width: 109, height: 32 +Child: 27, type: 5, width: 36, height: 32 +Child: 28, message: Axe +Child: 29, message: 1 Bar +Child: 30, message: +Child: 31, message: +Child: 32, message: +Child: 33, message: +Child: 34, type: 0, width: 109, height: 32 +Child: 35, type: 5, width: 36, height: 32 +Child: 36, message: Mace +Child: 37, message: 1 Bar +Child: 38, message: +Child: 39, message: +Child: 40, message: +Child: 41, message: +Child: 42, type: 0, width: 109, height: 32 +Child: 43, type: 5, width: 36, height: 32 +Child: 44, message: Medium helm +Child: 45, message: 1 Bar +Child: 46, message: +Child: 47, message: +Child: 48, message: +Child: 49, message: +Child: 50, type: 0, width: 114, height: 32 +Child: 51, type: 5, width: 36, height: 32 +Child: 52, message: Crossbow bolts +Child: 53, message: 1 Bar +Child: 54, message: +Child: 55, message: +Child: 56, message: +Child: 57, message: +Child: 58, type: 0, width: 109, height: 32 +Child: 59, type: 5, width: 36, height: 32 +Child: 60, message: Sword +Child: 61, message: 1 Bar +Child: 62, message: +Child: 63, message: +Child: 64, message: +Child: 65, message: +Child: 66, type: 0, width: 124, height: 32 +Child: 67, type: 5, width: 36, height: 32 +Child: 68, message: Dart tips +Child: 69, message: 1 Bar +Child: 70, message: +Child: 71, message: +Child: 72, message: +Child: 73, message: +Child: 74, type: 0, width: 109, height: 32 +Child: 75, type: 5, width: 36, height: 32 +Child: 76, message: Nails +Child: 77, message: 1 Bar +Child: 78, message: +Child: 79, message: +Child: 80, message: +Child: 81, message: +Child: 82, type: 0, width: 109, height: 32 +Child: 83, type: 5, width: 36, height: 32 +Child: 84, message: Bronze wire +Child: 85, message: 1 Bar +Child: 86, message: +Child: 87, message: +Child: 88, message: +Child: 89, message: +Child: 90, type: 0, width: 109, height: 32 +Child: 91, type: 5, width: 36, height: 32 +Child: 92, message: Spit iron +Child: 93, message: 1 Bar +Child: 94, message: +Child: 95, message: +Child: 96, message: +Child: 97, message: +Child: 98, type: 0, width: 109, height: 32 +Child: 99, type: 5, width: 36, height: 32 +Child: 100, message: Studs +Child: 101, message: 1 Bar +Child: 102, message: +Child: 103, message: +Child: 104, message: +Child: 105, message: +Child: 106, type: 0, width: 109, height: 32 +Child: 107, type: 5, width: 36, height: 32 +Child: 108, message: Arrow tips +Child: 109, message: 1 Bar +Child: 110, message: +Child: 111, message: +Child: 112, message: +Child: 113, message: +Child: 114, type: 0, width: 109, height: 32 +Child: 115, type: 5, width: 36, height: 32 +Child: 116, message: Scimitar +Child: 117, message: 2 Bars +Child: 118, message: +Child: 119, message: +Child: 120, message: +Child: 121, message: +Child: 122, type: 0, width: 112, height: 32 +Child: 123, type: 5, width: 36, height: 32 +Child: 124, message: Crossbow limbs +Child: 125, message: 1 Bar +Child: 126, message: +Child: 127, message: +Child: 128, message: +Child: 129, message: +Child: 130, type: 0, width: 109, height: 32 +Child: 131, type: 5, width: 36, height: 32 +Child: 132, message: Longsword +Child: 133, message: 2 Bars +Child: 134, message: +Child: 135, message: +Child: 136, message: +Child: 137, message: +Child: 138, type: 0, width: 109, height: 32 +Child: 139, type: 5, width: 36, height: 32 +Child: 140, message: Throwing knife +Child: 141, message: 1 Bar +Child: 142, message: +Child: 143, message: +Child: 144, message: +Child: 145, message: +Child: 146, type: 0, width: 109, height: 32 +Child: 147, type: 5, width: 36, height: 32 +Child: 148, message: Full helm +Child: 149, message: 2 Bars +Child: 150, message: +Child: 151, message: +Child: 152, message: +Child: 153, message: +Child: 154, type: 0, width: 109, height: 32 +Child: 155, type: 5, width: 36, height: 32 +Child: 156, message: Square shield +Child: 157, message: 2 Bars +Child: 158, message: +Child: 159, message: +Child: 160, message: +Child: 161, message: +Child: 162, type: 0, width: 118, height: 32 +Child: 163, type: 5, width: 36, height: 32 +Child: 164, message: Bullseye lantern +Child: 165, message: 1 Bar +Child: 166, message: +Child: 167, message: +Child: 168, message: +Child: 169, message: +Child: 170, type: 0, width: 109, height: 32 +Child: 171, type: 5, width: 36, height: 32 +Child: 172, message: Grapple tip +Child: 173, message: 1 Bar +Child: 174, message: +Child: 175, message: +Child: 176, message: +Child: 177, message: +Child: 178, type: 0, width: 109, height: 32 +Child: 179, type: 5, width: 36, height: 32 +Child: 180, message: Warhammer +Child: 181, message: 3 Bars +Child: 182, message: +Child: 183, message: +Child: 184, message: +Child: 185, message: +Child: 186, type: 0, width: 109, height: 32 +Child: 187, type: 5, width: 36, height: 32 +Child: 188, message: Battleaxe +Child: 189, message: 3 Bars +Child: 190, message: +Child: 191, message: +Child: 192, message: +Child: 193, message: +Child: 194, type: 0, width: 109, height: 32 +Child: 195, type: 5, width: 36, height: 32 +Child: 196, message: Chainbody +Child: 197, message: 3 Bars +Child: 198, message: +Child: 199, message: +Child: 200, message: +Child: 201, message: +Child: 202, type: 0, width: 109, height: 32 +Child: 203, type: 5, width: 36, height: 32 +Child: 204, message: Kiteshield +Child: 205, message: 3 Bars +Child: 206, message: +Child: 207, message: +Child: 208, message: +Child: 209, message: +Child: 210, type: 0, width: 109, height: 32 +Child: 211, type: 5, width: 36, height: 32 +Child: 212, message: Claws +Child: 213, message: 2 Bars +Child: 214, message: +Child: 215, message: +Child: 216, message: +Child: 217, message: +Child: 218, type: 0, width: 118, height: 32 +Child: 219, type: 5, width: 36, height: 32 +Child: 220, message: 2-h sword +Child: 221, message: 3 Bars +Child: 222, message: +Child: 223, message: +Child: 224, message: +Child: 225, message: +Child: 226, type: 0, width: 109, height: 32 +Child: 227, type: 5, width: 36, height: 32 +Child: 228, message: Plateskirt +Child: 229, message: 3 Bars +Child: 230, message: +Child: 231, message: +Child: 232, message: +Child: 233, message: +Child: 234, type: 0, width: 190, height: 32 +Child: 235, type: 5, width: 36, height: 32 +Child: 236, message: Platelegs +Child: 237, message: 3 Bars +Child: 238, message: +Child: 239, message: +Child: 240, message: +Child: 241, message: +Child: 242, type: 0, width: 109, height: 32 +Child: 243, type: 5, width: 36, height: 32 +Child: 244, message: Platebody +Child: 245, message: 5 Bars +Child: 246, message: +Child: 247, message: +Child: 248, message: +Child: 249, message: +Child: 250, type: 0, width: 484, height: 264 +Child: 251, type: 0, width: 109, height: 32 +Child: 252, type: 5, width: 36, height: 32 +Child: 253, message: Crossbow bolts +Child: 254, message: 1 Bar +Child: 255, message: +Child: 256, message: +Child: 257, message: +Child: 258, message: +Child: 259, type: 0, width: 109, height: 32 +Child: 260, type: 5, width: 36, height: 32 +Child: 261, message: Crossbow limbs +Child: 262, message: 1 Bar +Child: 263, message: +Child: 264, message: +Child: 265, message: +Child: 266, message: +Child: 267, type: 0, width: 109, height: 42 +Child: 268, type: 5, width: 36, height: 32 +Child: 269, message: Pickaxe +Child: 270, message: 2 Bars +Child: 271, message: +Child: 272, message: +Child: 273, message: +Child: 274, message: diff --git a/server508/lists/interfaces/301.txt b/server508/lists/interfaces/301.txt new file mode 100644 index 0000000..4256612 --- /dev/null +++ b/server508/lists/interfaces/301.txt @@ -0,0 +1,102 @@ +Child: 0, type: 3, width: 476, height: 232 +Child: 1, type: 5, width: 210, height: 25 +Child: 2, type: 5, width: 210, height: 25 +Child: 3, type: 5, width: 210, height: 25 +Child: 4, type: 5, width: 210, height: 25 +Child: 5, type: 5, width: 210, height: 25 +Child: 6, type: 5, width: 210, height: 25 +Child: 7, type: 5, width: 210, height: 25 +Child: 8, type: 5, width: 210, height: 25 +Child: 9, type: 5, width: 210, height: 25 +Child: 10, message: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +Child: 11, type: 3, width: 212, height: 27 +Child: 12, type: 3, width: 212, height: 27 +Child: 13, type: 0, width: 212, height: 27 +Child: 14, type: 3, width: 212, height: 27 +Child: 15, type: 3, width: 212, height: 27 +Child: 16, type: 3, width: 212, height: 27 +Child: 17, type: 3, width: 212, height: 27 +Child: 18, type: 0, width: 212, height: 27 +Child: 19, type: 3, width: 212, height: 27 +Child: 20, type: 3, width: 212, height: 27 +Child: 21, type: 3, width: 212, height: 27 +Child: 22, type: 3, width: 212, height: 27 +Child: 23, type: 0, width: 212, height: 27 +Child: 24, type: 3, width: 212, height: 27 +Child: 25, type: 3, width: 212, height: 27 +Child: 26, type: 3, width: 212, height: 27 +Child: 27, type: 3, width: 212, height: 27 +Child: 28, type: 0, width: 212, height: 27 +Child: 29, type: 3, width: 212, height: 27 +Child: 30, type: 3, width: 212, height: 27 +Child: 31, type: 3, width: 212, height: 27 +Child: 32, type: 3, width: 212, height: 27 +Child: 33, type: 0, width: 212, height: 27 +Child: 34, type: 3, width: 212, height: 27 +Child: 35, type: 3, width: 212, height: 27 +Child: 36, type: 3, width: 212, height: 27 +Child: 37, type: 3, width: 212, height: 27 +Child: 38, type: 0, width: 212, height: 27 +Child: 39, type: 3, width: 212, height: 27 +Child: 40, type: 3, width: 212, height: 27 +Child: 41, type: 3, width: 212, height: 27 +Child: 42, type: 3, width: 212, height: 27 +Child: 43, type: 0, width: 212, height: 27 +Child: 44, type: 3, width: 212, height: 27 +Child: 45, type: 3, width: 212, height: 27 +Child: 46, type: 3, width: 212, height: 27 +Child: 47, type: 3, width: 212, height: 27 +Child: 48, type: 0, width: 212, height: 27 +Child: 49, type: 3, width: 212, height: 27 +Child: 50, type: 3, width: 212, height: 27 +Child: 51, type: 3, width: 212, height: 27 +Child: 52, type: 3, width: 212, height: 27 +Child: 53, type: 0, width: 212, height: 27 +Child: 54, type: 3, width: 212, height: 27 +Child: 55, type: 3, width: 212, height: 27 +Child: 56, type: 3, width: 212, height: 27 +Child: 57, type: 3, width: 212, height: 27 +Child: 58, type: 5, width: 16, height: 16 +Child: 59, type: 5, width: 32, height: 27 +Child: 60, type: 5, width: 32, height: 32 +Child: 61, type: 5, width: 32, height: 32 +Child: 62, type: 5, width: 32, height: 27 +Child: 63, type: 5, width: 417, height: 32 +Child: 64, type: 5, width: 32, height: 164 +Child: 65, type: 5, width: 417, height: 32 +Child: 66, type: 5, width: 32, height: 165 +Child: 67, type: 5, width: 32, height: 32 +Child: 68, type: 5, width: 466, height: 32 +Child: 69, type: 5, width: 32, height: 32 +Child: 70, message: Runecrafting XP +Child: 71, message: XP +Child: 72, message: Crafting XP +Child: 73, message: XP +Child: 74, message: Fletching XP +Child: 75, message: XP +Child: 76, message: Construction XP +Child: 77, message: XP +Child: 78, message: Farming XP +Child: 79, message: XP +Child: 80, message: Magic XP +Child: 81, message: XP +Child: 82, message: Smithing XP +Child: 83, message: XP +Child: 84, message: Cooking XP +Child: 85, message: XP +Child: 86, message: Herblore XP +Child: 87, message: XP +Child: 88, type: 5, width: 25, height: 25 +Child: 89, type: 5, width: 25, height: 25 +Child: 90, type: 5, width: 25, height: 25 +Child: 91, type: 5, width: 25, height: 25 +Child: 92, type: 5, width: 25, height: 25 +Child: 93, type: 5, width: 25, height: 25 +Child: 94, type: 5, width: 25, height: 25 +Child: 95, type: 5, width: 25, height: 25 +Child: 96, type: 5, width: 25, height: 25 +Child: 97, type: 0, width: 486, height: 212 +Child: 98, message: Total XP earned +Child: 99, message: XP +Child: 100, type: 0, width: 115, height: 133 +Child: 101, message: Assist System XP Display - You are assisting diff --git a/server508/lists/interfaces/302.txt b/server508/lists/interfaces/302.txt new file mode 100644 index 0000000..2d617ae --- /dev/null +++ b/server508/lists/interfaces/302.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 520, height: 400 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/303.txt b/server508/lists/interfaces/303.txt new file mode 100644 index 0000000..c0b96d9 --- /dev/null +++ b/server508/lists/interfaces/303.txt @@ -0,0 +1,13 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 67, height: 82 +Child: 3, type: 6, width: 67, height: 82 +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: What would you like to make? diff --git a/server508/lists/interfaces/304.txt b/server508/lists/interfaces/304.txt new file mode 100644 index 0000000..3805b09 --- /dev/null +++ b/server508/lists/interfaces/304.txt @@ -0,0 +1,18 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 67, height: 82 +Child: 3, type: 6, width: 67, height: 82 +Child: 4, type: 6, width: 67, height: 82 +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: What would you like to make? diff --git a/server508/lists/interfaces/305.txt b/server508/lists/interfaces/305.txt new file mode 100644 index 0000000..5eb7b48 --- /dev/null +++ b/server508/lists/interfaces/305.txt @@ -0,0 +1,23 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 81 +Child: 3, type: 6, width: 64, height: 81 +Child: 4, type: 6, width: 64, height: 81 +Child: 5, type: 6, width: 64, height: 81 +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: What would you like to make? diff --git a/server508/lists/interfaces/306.txt b/server508/lists/interfaces/306.txt new file mode 100644 index 0000000..2650675 --- /dev/null +++ b/server508/lists/interfaces/306.txt @@ -0,0 +1,28 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 63, height: 82 +Child: 3, type: 6, width: 63, height: 82 +Child: 4, type: 6, width: 63, height: 82 +Child: 5, type: 6, width: 63, height: 82 +Child: 6, type: 6, width: 63, height: 82 +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, message: +Child: 25, message: +Child: 26, message: +Child: 27, message: What would you like to make? diff --git a/server508/lists/interfaces/307.txt b/server508/lists/interfaces/307.txt new file mode 100644 index 0000000..85f16bb --- /dev/null +++ b/server508/lists/interfaces/307.txt @@ -0,0 +1,8 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 66, height: 83 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: How many would you like to cook? diff --git a/server508/lists/interfaces/308.txt b/server508/lists/interfaces/308.txt new file mode 100644 index 0000000..700628e --- /dev/null +++ b/server508/lists/interfaces/308.txt @@ -0,0 +1,12 @@ +Child: 0, type: 6, width: 55, height: 81 +Child: 1, message: +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/309.txt b/server508/lists/interfaces/309.txt new file mode 100644 index 0000000..4930acc --- /dev/null +++ b/server508/lists/interfaces/309.txt @@ -0,0 +1,8 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 62, height: 83 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: How many would you like to make? diff --git a/server508/lists/interfaces/31.txt b/server508/lists/interfaces/31.txt new file mode 100644 index 0000000..50418b3 --- /dev/null +++ b/server508/lists/interfaces/31.txt @@ -0,0 +1,39 @@ +Child: 0, type: 3, width: 334, height: 221 +Child: 1, type: 5, width: 326, height: 213 +Child: 2, type: 0, width: 80, height: 45 +Child: 3, message: Challenge: Select Game +Child: 4, type: 3, width: 72, height: 33 +Child: 5, message: Select +Child: 6, type: 0, width: 295, height: 158 +Child: 7, type: 5, width: 15, height: 15 +Child: 8, type: 5, width: 15, height: 15 +Child: 9, message: Draughts +Child: 10, message: Runelink +Child: 11, message: 100 vs 100 +Child: 12, message: 100 vs 100 +Child: 13, message: Game: +Child: 14, message: Ranks (mine vs opponent's): +Child: 15, type: 5, width: 15, height: 15 +Child: 16, message: Runesquares +Child: 17, message: 100 vs 100 +Child: 18, type: 5, width: 15, height: 15 +Child: 19, message: Runeversi +Child: 20, message: 100 vs 100 +Child: 21, type: 5, width: 16, height: 16 +Child: 22, type: 5, width: 32, height: 179 +Child: 23, type: 5, width: 269, height: 32 +Child: 24, type: 5, width: 311, height: 32 +Child: 25, type: 5, width: 269, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 155 diff --git a/server508/lists/interfaces/310.txt b/server508/lists/interfaces/310.txt new file mode 100644 index 0000000..b132aac --- /dev/null +++ b/server508/lists/interfaces/310.txt @@ -0,0 +1,8 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, message: Cancel +Child: 7, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/311.txt b/server508/lists/interfaces/311.txt new file mode 100644 index 0000000..3b22a4a --- /dev/null +++ b/server508/lists/interfaces/311.txt @@ -0,0 +1,49 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, message: What would you like to smelt? +inventory type: 8 slots, width: 8, height: 1, 3 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message:



Bronze +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message:



Blurite +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, message:



Iron +Child: 25, message: +Child: 26, message: +Child: 27, message: +Child: 28, message:



Silver +Child: 29, message: +Child: 30, message: +Child: 31, message: +Child: 32, message:



Steel +Child: 33, message: +Child: 34, message: +Child: 35, message: +Child: 36, message:



Gold +Child: 37, message: +Child: 38, message: +Child: 39, message: +Child: 40, message:



Mithril +Child: 41, message: +Child: 42, message: +Child: 43, message: +Child: 44, message:



Adamant +Child: 45, message: +Child: 46, message: +Child: 47, message: +Child: 48, message:



Rune diff --git a/server508/lists/interfaces/312.txt b/server508/lists/interfaces/312.txt new file mode 100644 index 0000000..496cb17 --- /dev/null +++ b/server508/lists/interfaces/312.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This sneaky gublinch wanted to set up a webcam conversation with a player! The player refused and sensibly used the Report Abuse button to enable us to catch him. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/313.txt b/server508/lists/interfaces/313.txt new file mode 100644 index 0000000..6896ed7 --- /dev/null +++ b/server508/lists/interfaces/313.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/314.txt b/server508/lists/interfaces/314.txt new file mode 100644 index 0000000..b4d17c1 --- /dev/null +++ b/server508/lists/interfaces/314.txt @@ -0,0 +1,9 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 50 +Child: 3, type: 6, width: 64, height: 50 +Child: 4, type: 6, width: 64, height: 50 +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: Select an Option diff --git a/server508/lists/interfaces/315.txt b/server508/lists/interfaces/315.txt new file mode 100644 index 0000000..7e12276 --- /dev/null +++ b/server508/lists/interfaces/315.txt @@ -0,0 +1,25 @@ +Child: 0, type: 0, width: 35, height: 14 +Child: 1, type: 3, width: 41, height: 41 +Child: 2, type: 0, width: 40, height: 14 +Child: 3, type: 3, width: 41, height: 41 +Child: 4, type: 0, width: 41, height: 14 +Child: 5, type: 3, width: 41, height: 41 +Child: 6, type: 0, width: 41, height: 14 +Child: 7, type: 3, width: 41, height: 41 +Child: 8, type: 0, width: 41, height: 14 +Child: 9, type: 3, width: 41, height: 41 +Child: 10, type: 0, width: 41, height: 14 +Child: 11, type: 3, width: 41, height: 41 +Child: 12, type: 0, width: 40, height: 14 +Child: 13, type: 3, width: 41, height: 41 +Child: 14, type: 0, width: 41, height: 14 +Child: 15, type: 3, width: 41, height: 41 +Child: 16, type: 0, width: 40, height: 14 +Child: 17, type: 3, width: 41, height: 41 +Child: 18, type: 0, width: 36, height: 14 +Child: 19, type: 3, width: 41, height: 41 +Child: 20, type: 3, width: 11, height: 14 +Child: 21, type: 3, width: 409, height: 11 +Child: 22, type: 3, width: 10, height: 14 +Child: 23, type: 3, width: 409, height: 9 +Child: 24, message: Rage level. diff --git a/server508/lists/interfaces/316.txt b/server508/lists/interfaces/316.txt new file mode 100644 index 0000000..0d6d732 --- /dev/null +++ b/server508/lists/interfaces/316.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 450, height: 24 +Child: 1, message: Text diff --git a/server508/lists/interfaces/317.txt b/server508/lists/interfaces/317.txt new file mode 100644 index 0000000..b12c13e --- /dev/null +++ b/server508/lists/interfaces/317.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/318.txt b/server508/lists/interfaces/318.txt new file mode 100644 index 0000000..9dbfc0c --- /dev/null +++ b/server508/lists/interfaces/318.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 543, height: 357 +Child: 1, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/319.txt b/server508/lists/interfaces/319.txt new file mode 100644 index 0000000..ce854c9 --- /dev/null +++ b/server508/lists/interfaces/319.txt @@ -0,0 +1,18 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, type: 5, width: 24, height: 24 +Child: 7, type: 5, width: 24, height: 24 +Child: 8, type: 5, width: 24, height: 24 +Child: 9, type: 5, width: 24, height: 24 +Child: 10, type: 5, width: 24, height: 24 +Child: 11, type: 5, width: 24, height: 24 +Child: 12, type: 5, width: 24, height: 24 +Child: 13, type: 5, width: 24, height: 24 +Child: 14, type: 5, width: 24, height: 24 +Child: 15, type: 5, width: 24, height: 24 +Child: 16, message: Cancel +Child: 17, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/32.txt b/server508/lists/interfaces/32.txt new file mode 100644 index 0000000..862af75 --- /dev/null +++ b/server508/lists/interfaces/32.txt @@ -0,0 +1,45 @@ +Child: 0, type: 5, width: 487, height: 297 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 27, height: 250 +Child: 3, type: 5, width: 22, height: 247 +Child: 4, message: Insert a very long name here! +Child: 5, type: 5, width: 444, height: 27 +Child: 6, type: 5, width: 441, height: 27 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 25, height: 30 +Child: 10, message: vs +Child: 11, message: Insert a very long name here! +Child: 12, type: 5, width: 38, height: 289 +Child: 13, type: 5, width: 181, height: 23 +Child: 14, message: Turn: +Child: 15, type: 0, width: 122, height: 35 +Child: 16, type: 0, width: 122, height: 36 +Child: 17, message: Draughts +Child: 18, type: 3, width: 111, height: 25 +Child: 19, message: Resign +Child: 20, type: 3, width: 112, height: 26 +Child: 21, message: Offer draw +Child: 22, type: 5, width: 77, height: 23 +Child: 23, type: 5, width: 79, height: 23 +Child: 24, message: A very long name +Child: 25, type: 5, width: 84, height: 50 +Child: 26, type: 5, width: 25, height: 30 +Child: 27, type: 5, width: 25, height: 30 +Child: 28, type: 5, width: 25, height: 30 +Child: 29, type: 5, width: 25, height: 30 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 25, height: 30 +Child: 33, type: 5, width: 77, height: 35 +Child: 34, type: 5, width: 25, height: 30 +Child: 35, type: 6, width: 275, height: 274 +Child: 36, type: 3, width: 258, height: 258 +Child: 37, message: Blah blah blah blah blah blah blah! +Child: 38, type: 6, width: 32, height: 32 +Child: 39, message: Blah blah blah blah blah blah blah! +Child: 40, message: Blah blah blah blah blah! +Child: 41, type: 6, width: 20, height: 20 +Child: 42, type: 6, width: 20, height: 20 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 0, width: 258, height: 258 diff --git a/server508/lists/interfaces/320.txt b/server508/lists/interfaces/320.txt new file mode 100644 index 0000000..8134d80 --- /dev/null +++ b/server508/lists/interfaces/320.txt @@ -0,0 +1,152 @@ +Child: 0, type: 3, width: 184, height: 231 +Child: 1, type: 3, width: 182, height: 229 +Child: 2, type: 3, width: 183, height: 230 +Child: 3, type: 3, width: 180, height: 227 +Child: 4, message: +Child: 5, type: 5, width: 36, height: 36 +Child: 6, type: 5, width: 36, height: 36 +Child: 7, type: 5, width: 36, height: 36 +Child: 8, type: 5, width: 36, height: 36 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 36, height: 36 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 25, height: 25 +Child: 54, type: 5, width: 25, height: 25 +Child: 55, type: 5, width: 25, height: 25 +Child: 56, type: 5, width: 25, height: 25 +Child: 57, type: 5, width: 25, height: 25 +Child: 58, type: 5, width: 25, height: 25 +Child: 59, type: 5, width: 25, height: 25 +Child: 60, type: 5, width: 25, height: 25 +Child: 61, type: 5, width: 25, height: 25 +Child: 62, type: 5, width: 25, height: 25 +Child: 63, type: 5, width: 25, height: 25 +Child: 64, type: 5, width: 25, height: 25 +Child: 65, type: 5, width: 25, height: 25 +Child: 66, type: 5, width: 25, height: 25 +Child: 67, type: 5, width: 25, height: 25 +Child: 68, type: 5, width: 25, height: 25 +Child: 69, type: 5, width: 25, height: 25 +Child: 70, type: 5, width: 25, height: 25 +Child: 71, type: 5, width: 25, height: 25 +Child: 72, type: 5, width: 25, height: 25 +Child: 73, type: 5, width: 25, height: 25 +Child: 74, type: 5, width: 25, height: 25 +Child: 75, type: 5, width: 25, height: 25 +Child: 76, type: 5, width: 25, height: 25 +Child: 77, message: +Child: 78, message: +Child: 79, message: +Child: 80, message: +Child: 81, message: +Child: 82, message: +Child: 83, message: +Child: 84, message: +Child: 85, message: +Child: 86, message: +Child: 87, message: +Child: 88, message: +Child: 89, message: +Child: 90, message: +Child: 91, message: +Child: 92, message: +Child: 93, message: +Child: 94, message: +Child: 95, message: +Child: 96, message: +Child: 97, message: +Child: 98, message: +Child: 99, message: +Child: 100, message: +Child: 101, message: +Child: 102, message: +Child: 103, message: +Child: 104, message: +Child: 105, message: +Child: 106, message: +Child: 107, message: +Child: 108, message: +Child: 109, message: +Child: 110, message: +Child: 111, message: +Child: 112, message: +Child: 113, message: +Child: 114, message: +Child: 115, message: +Child: 116, message: +Child: 117, message: +Child: 118, message: +Child: 119, message: +Child: 120, message: +Child: 121, message: +Child: 122, message: +Child: 123, message: +Child: 124, message: +Child: 125, message: +Child: 126, message: +Child: 127, message: +Child: 128, message: +Child: 129, message: +Child: 130, message: +Child: 131, message: +Child: 132, message: +Child: 133, message: +Child: 134, message: +Child: 135, message: +Child: 136, message: +Child: 137, message: +Child: 138, message: +Child: 139, message: +Child: 140, message: +Child: 141, message: +Child: 142, message: +Child: 143, message: +Child: 144, message: +Child: 145, message: +Child: 146, message: +Child: 147, message: +Child: 148, message: +Child: 149, type: 0, width: 167, height: 227 +Child: 150, type: 0, width: 16, height: 227 +Child: 151, type: 0, width: 190, height: 241 diff --git a/server508/lists/interfaces/321.txt b/server508/lists/interfaces/321.txt new file mode 100644 index 0000000..4dc06d0 --- /dev/null +++ b/server508/lists/interfaces/321.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 16167, height: 15557 +Child: 2, type: 6, width: 9927, height: 8640 diff --git a/server508/lists/interfaces/322.txt b/server508/lists/interfaces/322.txt new file mode 100644 index 0000000..4dc06d0 --- /dev/null +++ b/server508/lists/interfaces/322.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 16167, height: 15557 +Child: 2, type: 6, width: 9927, height: 8640 diff --git a/server508/lists/interfaces/323.txt b/server508/lists/interfaces/323.txt new file mode 100644 index 0000000..b6011d3 --- /dev/null +++ b/server508/lists/interfaces/323.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 3, width: 300, height: 170 +Child: 2, type: 6, width: 509, height: 298 +Child: 3, message: Tai Bwo Wannai Parcel service +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 294, height: 147 diff --git a/server508/lists/interfaces/324.txt b/server508/lists/interfaces/324.txt new file mode 100644 index 0000000..f40ca55 --- /dev/null +++ b/server508/lists/interfaces/324.txt @@ -0,0 +1,156 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: What hides would you like tanning? +Child: 89, type: 5, width: 23, height: 23 +Child: 90, type: 5, width: 23, height: 23 +Child: 91, type: 0, width: 32, height: 32 +Child: 92, type: 0, width: 96, height: 128 +Child: 93, type: 0, width: 96, height: 128 +Child: 94, type: 0, width: 96, height: 128 +Child: 95, type: 0, width: 96, height: 128 +Child: 96, type: 0, width: 96, height: 128 +Child: 97, type: 0, width: 96, height: 128 +Child: 98, type: 0, width: 96, height: 128 +Child: 99, type: 0, width: 115, height: 128 +Child: 100, type: 6, width: 96, height: 96 +Child: 101, type: 6, width: 96, height: 96 +Child: 102, type: 6, width: 96, height: 96 +Child: 103, type: 6, width: 96, height: 96 +Child: 104, type: 6, width: 96, height: 96 +Child: 105, type: 6, width: 96, height: 96 +Child: 106, type: 6, width: 96, height: 96 +Child: 107, type: 6, width: 96, height: 96 +Child: 108, message: Hide +Child: 109, message: Hide +Child: 110, message: Hide +Child: 111, message: Hide +Child: 112, message: Hide +Child: 113, message: Hide +Child: 114, message: Hide +Child: 115, message: Hide +Child: 116, message: Cost +Child: 117, message: Cost +Child: 118, message: Cost +Child: 119, message: Cost +Child: 120, message: Cost +Child: 121, message: Cost +Child: 122, message: Cost +Child: 123, message: Cost +Child: 124, message: +Child: 125, message: +Child: 126, message: +Child: 127, message: +Child: 128, message: +Child: 129, message: +Child: 130, message: +Child: 131, message: +Child: 132, message: +Child: 133, message: +Child: 134, message: +Child: 135, message: +Child: 136, message: +Child: 137, message: +Child: 138, message: +Child: 139, message: +Child: 140, message: +Child: 141, message: +Child: 142, message: +Child: 143, message: +Child: 144, message: +Child: 145, message: +Child: 146, message: +Child: 147, message: +Child: 148, message: +Child: 149, message: +Child: 150, message: +Child: 151, message: +Child: 152, message: +Child: 153, message: +Child: 154, message: +Child: 155, message: diff --git a/server508/lists/interfaces/325.txt b/server508/lists/interfaces/325.txt new file mode 100644 index 0000000..52ab2bf --- /dev/null +++ b/server508/lists/interfaces/325.txt @@ -0,0 +1,124 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 23, height: 23 +Child: 89, type: 5, width: 23, height: 23 +Child: 90, type: 0, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 25, height: 25 +Child: 93, message: Target View +Child: 94, type: 6, width: 25, height: 25 +Child: 95, type: 6, width: 25, height: 25 +Child: 96, type: 6, width: 25, height: 25 +Child: 97, type: 6, width: 25, height: 25 +Child: 98, type: 6, width: 25, height: 25 +Child: 99, type: 6, width: 25, height: 25 +Child: 100, type: 6, width: 25, height: 25 +Child: 101, type: 6, width: 25, height: 25 +Child: 102, type: 6, width: 25, height: 25 +Child: 103, type: 6, width: 25, height: 25 +Child: 104, type: 6, width: 25, height: 25 +Child: 105, message: Shots +Child: 106, message: Score: +Child: 107, message: %1 +Child: 108, message: Left: +Child: 109, message: 10 +Child: 110, message: 20 +Child: 111, message: 30 +Child: 112, message: 50 +Child: 113, type: 6, width: 25, height: 25 +Child: 114, message: 100 +Child: 115, type: 6, width: 25, height: 25 +Child: 116, type: 6, width: 25, height: 25 +Child: 117, type: 6, width: 25, height: 25 +Child: 118, type: 6, width: 25, height: 25 +Child: 119, type: 6, width: 25, height: 25 +Child: 120, type: 6, width: 25, height: 25 +Child: 121, type: 6, width: 25, height: 25 +Child: 122, type: 6, width: 25, height: 25 +Child: 123, message: Missed! diff --git a/server508/lists/interfaces/326.txt b/server508/lists/interfaces/326.txt new file mode 100644 index 0000000..f6f0487 --- /dev/null +++ b/server508/lists/interfaces/326.txt @@ -0,0 +1,115 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Teleport Option +Child: 89, message: %1 +Child: 90, message: ...wants to teleport you to... +Child: 91, message: %2 +Child: 92, message: Do you accept? +Child: 93, type: 5, width: 57, height: 13 +Child: 94, type: 5, width: 57, height: 13 +Child: 95, type: 0, width: 87, height: 52 +Child: 96, type: 0, width: 88, height: 52 +Child: 97, type: 3, width: 66, height: 31 +Child: 98, message: Accept +Child: 99, type: 3, width: 66, height: 31 +Child: 100, message: Decline +Child: 101, type: 5, width: 36, height: 36 +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 5, width: 36, height: 36 +Child: 104, type: 5, width: 25, height: 30 +Child: 105, type: 5, width: 25, height: 30 +Child: 106, type: 5, width: 25, height: 30 +Child: 107, type: 5, width: 25, height: 30 +Child: 108, type: 5, width: 25, height: 30 +Child: 109, type: 5, width: 25, height: 30 +Child: 110, type: 5, width: 25, height: 30 +Child: 111, type: 5, width: 36, height: 36 +Child: 112, type: 5, width: 25, height: 30 +Child: 113, type: 6, width: 31, height: 27 +Child: 114, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/327.txt b/server508/lists/interfaces/327.txt new file mode 100644 index 0000000..daf0864 --- /dev/null +++ b/server508/lists/interfaces/327.txt @@ -0,0 +1,20 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is so cold that you will experience
a constant, slow drain of your stats while
you remain within it. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Don't show me this again +Child: 18, type: 5, width: 19, height: 19 +Child: 19, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/328.txt b/server508/lists/interfaces/328.txt new file mode 100644 index 0000000..bf026f7 --- /dev/null +++ b/server508/lists/interfaces/328.txt @@ -0,0 +1,8 @@ +Child: 0, message: Repair State : +Child: 1, message: **** +Child: 2, message: Resources : +Child: 3, message: **** +Child: 4, message: Sanctity: +Child: 5, message: **** +Child: 6, message: * Temple Repair * +Child: 7, type: 0, width: 139, height: 62 diff --git a/server508/lists/interfaces/329.txt b/server508/lists/interfaces/329.txt new file mode 100644 index 0000000..af67eef --- /dev/null +++ b/server508/lists/interfaces/329.txt @@ -0,0 +1,60 @@ +Child: 0, type: 3, width: 16519, height: 19039 +Child: 1, type: 6, width: 393, height: 347 +Child: 2, message: Burgh DeRott +Child: 3, message: Mort'ton +Child: 4, message: Canifis +Child: 5, message: Mort +Child: 6, message: Myre +Child: 7, message: Swamp +Child: 8, message: The Hollows +Child: 9, type: 6, width: 155, height: 44 +Child: 10, type: 6, width: 156, height: 43 +Child: 11, type: 6, width: 153, height: 49 +Child: 12, type: 6, width: 203, height: 89 +Child: 13, message: Choose a route +Child: 14, message: Route One +Child: 15, type: 0, width: 464, height: 304 +Child: 16, message: Route Two +Child: 17, type: 0, width: 464, height: 304 +Child: 18, message: Route Three +Child: 19, type: 0, width: 464, height: 304 +Child: 20, type: 6, width: 161, height: 289 +Child: 21, message: Temple +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 0, width: 512, height: 334 +Child: 48, type: 6, width: 203, height: 89 +Child: 49, type: 6, width: 203, height: 89 +Child: 50, type: 6, width: 203, height: 89 +Child: 51, type: 6, width: 134, height: 219 +Child: 52, message: Route One +Child: 53, type: 6, width: 134, height: 219 +Child: 54, message: Route Two +Child: 55, type: 6, width: 160, height: 219 +Child: 56, message: Route Three +Child: 57, message: Slow plod,
can evade
encounters. +Child: 58, message: Leisurely walk,
harder to evade
encounters. +Child: 59, message: Brisk walk,
impossible to
evade encounters. diff --git a/server508/lists/interfaces/33.txt b/server508/lists/interfaces/33.txt new file mode 100644 index 0000000..fbfb2a6 --- /dev/null +++ b/server508/lists/interfaces/33.txt @@ -0,0 +1,118 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 25, height: 30 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 25, height: 30 +Child: 52, type: 5, width: 25, height: 30 +Child: 53, type: 5, width: 25, height: 30 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 0, width: 108, height: 42 +Child: 66, message: Draughts: Options +Child: 67, type: 3, width: 98, height: 31 +Child: 68, message: Challenge +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 25, height: 30 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: 30 seconds +Child: 76, type: 5, width: 14, height: 15 +Child: 77, type: 0, width: 113, height: 95 +Child: 78, type: 5, width: 14, height: 15 +Child: 79, type: 5, width: 14, height: 15 +Child: 80, type: 5, width: 14, height: 15 +Child: 81, message: 1 minute +Child: 82, message: 2 minutes +Child: 83, message: 15 seconds +Child: 84, message: Time per move: +Child: 85, type: 0, width: 191, height: 179 +Child: 86, type: 5, width: 14, height: 15 +Child: 87, type: 6, width: 34, height: 32 +Child: 88, message: Choose piece: +Child: 89, type: 6, width: 34, height: 32 +Child: 90, type: 6, width: 34, height: 32 +Child: 91, type: 6, width: 34, height: 32 +Child: 92, type: 6, width: 34, height: 32 +Child: 93, type: 6, width: 34, height: 32 +Child: 94, type: 6, width: 34, height: 32 +Child: 95, type: 6, width: 34, height: 32 +Child: 96, type: 6, width: 34, height: 32 +Child: 97, type: 6, width: 34, height: 31 +Child: 98, type: 6, width: 34, height: 32 +Child: 99, type: 6, width: 34, height: 32 +Child: 100, type: 5, width: 14, height: 15 +Child: 101, type: 5, width: 14, height: 15 +Child: 102, type: 5, width: 14, height: 15 +Child: 103, type: 5, width: 14, height: 15 +Child: 104, type: 5, width: 14, height: 15 +Child: 105, type: 5, width: 14, height: 15 +Child: 106, type: 5, width: 14, height: 15 +Child: 107, type: 5, width: 14, height: 15 +Child: 108, type: 5, width: 14, height: 15 +Child: 109, type: 5, width: 15, height: 15 +Child: 110, type: 5, width: 14, height: 15 +Child: 111, message: Ranked +Child: 112, type: 5, width: 14, height: 15 +Child: 113, type: 5, width: 26, height: 23 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 0, width: 32, height: 32 +Child: 116, type: 5, width: 36, height: 36 +Child: 117, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/330.txt b/server508/lists/interfaces/330.txt new file mode 100644 index 0000000..81b3ecc --- /dev/null +++ b/server508/lists/interfaces/330.txt @@ -0,0 +1,35 @@ +Child: 0, type: 0, width: 600, height: 500 +Child: 1, type: 6, width: 676, height: 587 +Child: 2, type: 0, width: 155, height: 170 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 6, width: 34, height: 33 +Child: 5, type: 6, width: 32, height: 37 +Child: 6, type: 6, width: 33, height: 36 +Child: 7, type: 6, width: 36, height: 32 +Child: 8, type: 6, width: 37, height: 32 +Child: 9, type: 6, width: 36, height: 33 +Child: 10, type: 6, width: 31, height: 38 +Child: 11, type: 6, width: 32, height: 39 +Child: 12, type: 6, width: 35, height: 33 +Child: 13, type: 6, width: 40, height: 35 +Child: 14, type: 0, width: 512, height: 334 +Child: 15, type: 0, width: 512, height: 334 +Child: 16, type: 0, width: 16391, height: 16391 +Child: 17, type: 0, width: 16391, height: 16391 +Child: 18, type: 5, width: 32, height: 334 +Child: 19, type: 5, width: 462, height: 32 +Child: 20, type: 5, width: 512, height: 32 +Child: 21, type: 5, width: 32, height: 334 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 0, width: 8192, height: 16391 +Child: 27, type: 0, width: 8188, height: 16391 +Child: 28, type: 0, width: 16391, height: 8192 +Child: 29, type: 0, width: 16391, height: 8182 +Child: 30, type: 0, width: 512, height: 334 +Child: 31, type: 5, width: 256, height: 16384 +Child: 32, type: 5, width: 256, height: 16391 +Child: 33, type: 5, width: 16391, height: 167 +Child: 34, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/331.txt b/server508/lists/interfaces/331.txt new file mode 100644 index 0000000..c72c1d5 --- /dev/null +++ b/server508/lists/interfaces/331.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, message: Whatever text you need goes here! +Child: 3, message: Combi for lock +Child: 4, message: Text +Child: 5, message: Text +Child: 6, message: Text +Child: 7, type: 5, width: 26, height: 23 +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/332.txt b/server508/lists/interfaces/332.txt new file mode 100644 index 0000000..f2322c7 --- /dev/null +++ b/server508/lists/interfaces/332.txt @@ -0,0 +1,30 @@ +Child: 0, type: 5, width: 476, height: 288 +Child: 1, type: 5, width: 32, height: 32 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 232 +Child: 4, type: 5, width: 32, height: 232 +Child: 5, type: 5, width: 427, height: 32 +Child: 6, type: 5, width: 426, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 468, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, message: Water Battlestaff +Child: 14, message: Air Battlestaff +Child: 15, message: Earth Battlestaff +Child: 16, message: Fire Battlestaff +Child: 17, message: What would you like to enchant? +Child: 18, message: Lava Battlestaff +Child: 19, message: Mud Battlestaff +Child: 20, message: Steam Battlestaff +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 0, width: 512, height: 334 +Child: 29, type: 0, width: 50, height: 34 diff --git a/server508/lists/interfaces/333.txt b/server508/lists/interfaces/333.txt new file mode 100644 index 0000000..dba77be --- /dev/null +++ b/server508/lists/interfaces/333.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16384, height: 16384 diff --git a/server508/lists/interfaces/334.txt b/server508/lists/interfaces/334.txt new file mode 100644 index 0000000..d98167b --- /dev/null +++ b/server508/lists/interfaces/334.txt @@ -0,0 +1,47 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 16, height: 16 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 222 +Child: 16, type: 5, width: 34, height: 36 +Child: 17, type: 3, width: 233, height: 250 +Child: 18, type: 0, width: 235, height: 232 +Child: 19, type: 3, width: 234, height: 251 +Child: 20, type: 3, width: 65, height: 25 +Child: 21, type: 3, width: 67, height: 24 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 423, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, message: You are about to give: +Child: 32, message: In return you will receive: +Child: 33, message: Are you sure you want to make this trade? +Child: 34, message: There is NO WAY to reverse a trade if you change your mind. +Child: 35, message: Accept +Child: 36, message: Decline +Child: 37, message: Item +Child: 38, message: Item +Child: 39, message: Item +Child: 40, message: Item +Child: 41, message: Item +Child: 42, message: Item +Child: 43, type: 0, width: 32, height: 32 +Child: 44, message: Trading with:
Unknown +Child: 45, message: Trade modified +Child: 46, message: Trade modified diff --git a/server508/lists/interfaces/335.txt b/server508/lists/interfaces/335.txt new file mode 100644 index 0000000..241d98d --- /dev/null +++ b/server508/lists/interfaces/335.txt @@ -0,0 +1,81 @@ +Child: 0, type: 5, width: 498, height: 302 +Child: 1, type: 5, width: 32, height: 251 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 250 +Child: 4, type: 5, width: 448, height: 34 +Child: 5, type: 5, width: 448, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 490, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, type: 3, width: 249, height: 244 +Child: 14, type: 3, width: 247, height: 244 +Child: 15, type: 3, width: 499, height: 27 +Child: 16, type: 5, width: 32, height: 244 +Child: 17, message: Trading With: Unknown +Child: 18, type: 0, width: 65, height: 32 +Child: 19, message: Accept +Child: 20, type: 0, width: 65, height: 32 +Child: 21, message: Decline +Child: 22, type: 3, width: 91, height: 47 +Child: 23, message: Name +Child: 24, type: 5, width: 40, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 35, height: 32 +Child: 30, type: 5, width: 499, height: 32 +Child: 31, type: 0, width: 497, height: 301 +Child: 32, type: 0, width: 185, height: 223 +Child: 33, type: 0, width: 185, height: 223 +Child: 34, type: 0, width: 185, height: 223 +Child: 35, type: 0, width: 185, height: 223 +Child: 36, message: Trader's Offer +Child: 37, message: Your Offer +Child: 38, message: Waiting for other player +Child: 39, type: 0, width: 32, height: 32 +Child: 40, message: Trade modified +Child: 41, message: Trade modified +Child: 42, message: Limit: 3000 +Child: 43, message: Wealth transfer +Child: 44, message: Limit: 3000 +Child: 45, type: 6, width: 0, height: 0 +Child: 46, type: 5, width: 490, height: 32 +Child: 47, type: 9, width: 493, height: 0 +Child: 48, type: 9, width: 493, height: 0 +Child: 49, type: 9, width: 0, height: 8 +Child: 50, type: 9, width: 0, height: 7 +Child: 51, type: 9, width: 0, height: 9 +Child: 52, type: 9, width: 0, height: 5 +Child: 53, type: 9, width: 0, height: 8 +Child: 54, type: 9, width: 0, height: 8 +Child: 55, type: 9, width: 0, height: 9 +Child: 56, type: 9, width: 0, height: 5 +Child: 57, type: 9, width: 0, height: 8 +Child: 58, type: 9, width: 0, height: 8 +Child: 59, type: 9, width: 0, height: 9 +Child: 60, type: 9, width: 0, height: 5 +Child: 61, type: 9, width: 0, height: 8 +Child: 62, type: 9, width: 0, height: 5 +Child: 63, type: 9, width: 0, height: 8 +Child: 64, type: 9, width: 0, height: 8 +Child: 65, type: 9, width: 0, height: 9 +Child: 66, type: 9, width: 0, height: 5 +Child: 67, type: 9, width: 0, height: 8 +Child: 68, type: 9, width: 0, height: 8 +Child: 69, type: 9, width: 0, height: 9 +Child: 70, type: 9, width: 0, height: 5 +Child: 71, type: 9, width: 0, height: 8 +Child: 72, type: 9, width: 0, height: 8 +Child: 73, type: 9, width: 0, height: 9 +Child: 74, type: 6, width: 0, height: 0 +Child: 75, type: 5, width: 12, height: 12 +Child: 76, type: 5, width: 12, height: 12 +Child: 77, type: 5, width: 12, height: 12 +Child: 78, type: 5, width: 12, height: 12 +Child: 79, type: 0, width: 10, height: 10 +Child: 80, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/336.txt b/server508/lists/interfaces/336.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/336.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/337.txt b/server508/lists/interfaces/337.txt new file mode 100644 index 0000000..318e9ff --- /dev/null +++ b/server508/lists/interfaces/337.txt @@ -0,0 +1,83 @@ +Child: 0, type: 6, width: 327, height: 308 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 6, width: 20, height: 18 +Child: 3, type: 6, width: 12, height: 14 +Child: 4, type: 6, width: 20, height: 16 +Child: 5, type: 6, width: 12, height: 15 +Child: 6, type: 6, width: 19, height: 18 +Child: 7, type: 6, width: 22, height: 13 +Child: 8, type: 6, width: 21, height: 18 +Child: 9, type: 6, width: 98, height: 86 +Child: 10, type: 6, width: 87, height: 98 +Child: 11, type: 6, width: 12, height: 15 +Child: 12, type: 6, width: 99, height: 85 +Child: 13, type: 6, width: 19, height: 20 +Child: 14, type: 6, width: 21, height: 16 +Child: 15, type: 6, width: 19, height: 17 +Child: 16, type: 6, width: 12, height: 15 +Child: 17, type: 6, width: 11, height: 14 +Child: 18, type: 6, width: 11, height: 14 +Child: 19, type: 6, width: 15, height: 12 +Child: 20, type: 6, width: 19, height: 18 +Child: 21, type: 6, width: 20, height: 23 +Child: 22, type: 6, width: 14, height: 15 +Child: 23, type: 6, width: 19, height: 18 +Child: 24, type: 6, width: 11, height: 11 +Child: 25, type: 6, width: 20, height: 19 +Child: 26, type: 6, width: 11, height: 14 +Child: 27, type: 6, width: 12, height: 15 +Child: 28, type: 6, width: 12, height: 15 +Child: 29, type: 6, width: 21, height: 26 +Child: 30, type: 6, width: 87, height: 98 +Child: 31, type: 6, width: 14, height: 23 +Child: 32, type: 6, width: 15, height: 23 +Child: 33, type: 6, width: 14, height: 11 +Child: 34, type: 6, width: 13, height: 15 +Child: 35, type: 6, width: 17, height: 19 +Child: 36, type: 6, width: 12, height: 11 +Child: 37, type: 6, width: 15, height: 12 +Child: 38, type: 6, width: 13, height: 10 +Child: 39, type: 6, width: 15, height: 12 +Child: 40, type: 6, width: 13, height: 9 +Child: 41, type: 6, width: 13, height: 9 +Child: 42, type: 6, width: 21, height: 12 +Child: 43, type: 6, width: 15, height: 12 +Child: 44, type: 6, width: 13, height: 10 +Child: 45, type: 6, width: 13, height: 10 +Child: 46, type: 6, width: 12, height: 11 +Child: 47, type: 6, width: 21, height: 26 +Child: 48, type: 6, width: 20, height: 25 +Child: 49, type: 6, width: 20, height: 25 +Child: 50, type: 6, width: 20, height: 25 +Child: 51, type: 6, width: 16, height: 20 +Child: 52, type: 6, width: 16, height: 20 +Child: 53, type: 6, width: 16, height: 20 +Child: 54, type: 6, width: 16, height: 20 +Child: 55, type: 6, width: 12, height: 11 +Child: 56, type: 6, width: 20, height: 19 +Child: 57, type: 6, width: 13, height: 9 +Child: 58, type: 6, width: 13, height: 9 +Child: 59, type: 6, width: 12, height: 15 +Child: 60, type: 6, width: 14, height: 10 +Child: 61, type: 6, width: 10, height: 13 +Child: 62, type: 6, width: 11, height: 13 +Child: 63, type: 6, width: 10, height: 11 +Child: 64, type: 6, width: 12, height: 15 +Child: 65, type: 6, width: 16, height: 20 +Child: 66, type: 6, width: 16, height: 20 +Child: 67, type: 6, width: 16, height: 20 +Child: 68, type: 6, width: 17, height: 19 +Child: 69, type: 6, width: 21, height: 21 +Child: 70, type: 6, width: 30, height: 27 +Child: 71, type: 6, width: 18, height: 21 +Child: 72, type: 6, width: 17, height: 20 +Child: 73, type: 6, width: 12, height: 11 +Child: 74, type: 6, width: 16, height: 19 +Child: 75, type: 6, width: 9, height: 4 +Child: 76, type: 6, width: 9, height: 3 +Child: 77, type: 6, width: 9, height: 3 +Child: 78, type: 6, width: 4, height: 9 +Child: 79, type: 6, width: 34, height: 45 +Child: 80, message: 1S +Child: 81, message: 3E +Child: 82, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/338.txt b/server508/lists/interfaces/338.txt new file mode 100644 index 0000000..7217b27 --- /dev/null +++ b/server508/lists/interfaces/338.txt @@ -0,0 +1,14 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 98, height: 85 +Child: 2, type: 6, width: 87, height: 98 +Child: 3, type: 6, width: 99, height: 85 +Child: 4, type: 6, width: 25, height: 21 +Child: 5, type: 6, width: 86, height: 98 +Child: 6, type: 6, width: 18, height: 23 +Child: 7, type: 6, width: 26, height: 25 +Child: 8, type: 6, width: 25, height: 21 +Child: 9, type: 6, width: 18, height: 23 +Child: 10, type: 6, width: 41, height: 34 +Child: 11, type: 6, width: 18, height: 23 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/339.txt b/server508/lists/interfaces/339.txt new file mode 100644 index 0000000..db84b6c --- /dev/null +++ b/server508/lists/interfaces/339.txt @@ -0,0 +1,53 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 98, height: 85 +Child: 3, type: 6, width: 87, height: 98 +Child: 4, type: 6, width: 99, height: 85 +Child: 5, type: 6, width: 46, height: 47 +Child: 6, type: 6, width: 86, height: 98 +Child: 7, type: 6, width: 18, height: 23 +Child: 8, type: 6, width: 26, height: 25 +Child: 9, type: 6, width: 16, height: 19 +Child: 10, type: 6, width: 18, height: 22 +Child: 11, type: 6, width: 46, height: 47 +Child: 12, type: 6, width: 18, height: 22 +Child: 13, type: 6, width: 18, height: 22 +Child: 14, type: 6, width: 18, height: 22 +Child: 15, type: 6, width: 18, height: 22 +Child: 16, type: 6, width: 46, height: 46 +Child: 17, type: 6, width: 46, height: 46 +Child: 18, type: 6, width: 8, height: 13 +Child: 19, type: 6, width: 8, height: 13 +Child: 20, type: 6, width: 8, height: 13 +Child: 21, type: 6, width: 13, height: 7 +Child: 22, type: 6, width: 13, height: 7 +Child: 23, type: 6, width: 13, height: 7 +Child: 24, type: 6, width: 13, height: 7 +Child: 25, message: 3N +Child: 26, message: 2E +Child: 27, type: 6, width: 26, height: 17 +Child: 28, type: 6, width: 27, height: 16 +Child: 29, type: 6, width: 29, height: 17 +Child: 30, type: 6, width: 34, height: 22 +Child: 31, type: 6, width: 31, height: 24 +Child: 32, type: 6, width: 23, height: 19 +Child: 33, type: 6, width: 33, height: 22 +Child: 34, type: 6, width: 29, height: 12 +Child: 35, type: 6, width: 16, height: 24 +Child: 36, type: 6, width: 29, height: 15 +Child: 37, type: 6, width: 29, height: 17 +Child: 38, type: 6, width: 34, height: 22 +Child: 39, type: 6, width: 31, height: 24 +Child: 40, type: 6, width: 23, height: 19 +Child: 41, type: 6, width: 27, height: 17 +Child: 42, type: 6, width: 29, height: 12 +Child: 43, type: 6, width: 46, height: 46 +Child: 44, type: 6, width: 19, height: 24 +Child: 45, type: 6, width: 35, height: 20 +Child: 46, type: 6, width: 16, height: 24 +Child: 47, type: 6, width: 16, height: 24 +Child: 48, type: 6, width: 19, height: 24 +Child: 49, type: 6, width: 29, height: 15 +Child: 50, type: 6, width: 16, height: 12 +Child: 51, type: 6, width: 18, height: 22 +Child: 52, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/34.txt b/server508/lists/interfaces/34.txt new file mode 100644 index 0000000..d0e062b --- /dev/null +++ b/server508/lists/interfaces/34.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 69, height: 68 +Child: 1, message: Draughts +Child: 2, message: Rank: %1 +Child: 3, type: 0, width: 88, height: 122 diff --git a/server508/lists/interfaces/340.txt b/server508/lists/interfaces/340.txt new file mode 100644 index 0000000..1807a32 --- /dev/null +++ b/server508/lists/interfaces/340.txt @@ -0,0 +1,87 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 41, height: 18 +Child: 2, type: 6, width: 325, height: 310 +Child: 3, type: 6, width: 99, height: 86 +Child: 4, type: 6, width: 15, height: 15 +Child: 5, type: 6, width: 19, height: 12 +Child: 6, type: 6, width: 11, height: 14 +Child: 7, type: 6, width: 93, height: 104 +Child: 8, type: 6, width: 98, height: 87 +Child: 9, type: 6, width: 87, height: 98 +Child: 10, type: 6, width: 11, height: 4 +Child: 11, type: 6, width: 26, height: 26 +Child: 12, type: 6, width: 26, height: 26 +Child: 13, type: 6, width: 5, height: 11 +Child: 14, type: 6, width: 5, height: 11 +Child: 15, type: 6, width: 5, height: 11 +Child: 16, type: 6, width: 5, height: 11 +Child: 17, type: 6, width: 11, height: 4 +Child: 18, type: 6, width: 26, height: 26 +Child: 19, type: 6, width: 26, height: 26 +Child: 20, type: 6, width: 26, height: 26 +Child: 21, type: 6, width: 26, height: 26 +Child: 22, type: 6, width: 5, height: 11 +Child: 23, type: 6, width: 11, height: 4 +Child: 24, type: 6, width: 24, height: 23 +Child: 25, message: 2N +Child: 26, message: 3W +Child: 27, message: 3N +Child: 28, message: 2W +Child: 29, message: 3N +Child: 30, type: 6, width: 10, height: 11 +Child: 31, type: 6, width: 12, height: 14 +Child: 32, type: 6, width: 10, height: 11 +Child: 33, type: 6, width: 11, height: 10 +Child: 34, type: 6, width: 10, height: 18 +Child: 35, type: 6, width: 10, height: 18 +Child: 36, type: 6, width: 10, height: 18 +Child: 37, type: 6, width: 11, height: 10 +Child: 38, type: 6, width: 16, height: 15 +Child: 39, type: 6, width: 15, height: 11 +Child: 40, type: 6, width: 10, height: 10 +Child: 41, type: 6, width: 10, height: 11 +Child: 42, type: 6, width: 14, height: 12 +Child: 43, type: 6, width: 10, height: 18 +Child: 44, type: 6, width: 10, height: 18 +Child: 45, type: 6, width: 10, height: 18 +Child: 46, type: 6, width: 10, height: 18 +Child: 47, type: 6, width: 12, height: 14 +Child: 48, type: 6, width: 10, height: 11 +Child: 49, type: 6, width: 12, height: 14 +Child: 50, type: 6, width: 12, height: 14 +Child: 51, type: 6, width: 19, height: 12 +Child: 52, type: 6, width: 12, height: 14 +Child: 53, type: 6, width: 10, height: 11 +Child: 54, type: 6, width: 15, height: 11 +Child: 55, type: 6, width: 11, height: 10 +Child: 56, type: 6, width: 10, height: 18 +Child: 57, type: 6, width: 10, height: 18 +Child: 58, type: 6, width: 11, height: 10 +Child: 59, type: 6, width: 16, height: 15 +Child: 60, type: 6, width: 10, height: 18 +Child: 61, type: 6, width: 14, height: 12 +Child: 62, type: 6, width: 19, height: 12 +Child: 63, type: 6, width: 19, height: 12 +Child: 64, type: 6, width: 12, height: 18 +Child: 65, type: 6, width: 14, height: 12 +Child: 66, type: 6, width: 10, height: 11 +Child: 67, type: 6, width: 14, height: 12 +Child: 68, type: 6, width: 10, height: 11 +Child: 69, type: 6, width: 15, height: 16 +Child: 70, type: 6, width: 15, height: 16 +Child: 71, type: 6, width: 15, height: 11 +Child: 72, type: 6, width: 11, height: 10 +Child: 73, type: 6, width: 10, height: 18 +Child: 74, type: 6, width: 10, height: 18 +Child: 75, type: 6, width: 10, height: 18 +Child: 76, type: 6, width: 10, height: 18 +Child: 77, type: 6, width: 18, height: 11 +Child: 78, type: 6, width: 18, height: 11 +Child: 79, type: 6, width: 18, height: 11 +Child: 80, type: 6, width: 18, height: 11 +Child: 81, type: 6, width: 41, height: 18 +Child: 82, type: 6, width: 41, height: 18 +Child: 83, type: 6, width: 15, height: 15 +Child: 84, type: 6, width: 15, height: 15 +Child: 85, type: 6, width: 26, height: 26 +Child: 86, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/341.txt b/server508/lists/interfaces/341.txt new file mode 100644 index 0000000..4d95af6 --- /dev/null +++ b/server508/lists/interfaces/341.txt @@ -0,0 +1,114 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 29, height: 39 +Child: 2, type: 6, width: 337, height: 316 +Child: 3, type: 6, width: 87, height: 98 +Child: 4, type: 6, width: 99, height: 87 +Child: 5, type: 6, width: 21, height: 24 +Child: 6, type: 6, width: 86, height: 99 +Child: 7, type: 6, width: 98, height: 87 +Child: 8, type: 6, width: 21, height: 24 +Child: 9, type: 6, width: 29, height: 39 +Child: 10, type: 6, width: 5, height: 11 +Child: 11, type: 6, width: 21, height: 24 +Child: 12, type: 6, width: 39, height: 38 +Child: 13, type: 6, width: 17, height: 15 +Child: 14, type: 6, width: 35, height: 42 +Child: 15, type: 6, width: 31, height: 33 +Child: 16, type: 6, width: 41, height: 38 +Child: 17, type: 6, width: 13, height: 13 +Child: 18, type: 6, width: 14, height: 16 +Child: 19, type: 6, width: 16, height: 18 +Child: 20, type: 6, width: 42, height: 38 +Child: 21, type: 6, width: 12, height: 13 +Child: 22, type: 6, width: 30, height: 32 +Child: 23, type: 6, width: 33, height: 40 +Child: 24, type: 6, width: 15, height: 15 +Child: 25, type: 6, width: 16, height: 9 +Child: 26, type: 6, width: 16, height: 9 +Child: 27, type: 6, width: 16, height: 9 +Child: 28, type: 6, width: 16, height: 9 +Child: 29, type: 6, width: 17, height: 16 +Child: 30, type: 6, width: 21, height: 24 +Child: 31, type: 6, width: 21, height: 24 +Child: 32, type: 6, width: 21, height: 24 +Child: 33, type: 6, width: 21, height: 24 +Child: 34, type: 6, width: 11, height: 4 +Child: 35, type: 6, width: 21, height: 24 +Child: 36, type: 6, width: 21, height: 24 +Child: 37, type: 6, width: 21, height: 24 +Child: 38, type: 6, width: 21, height: 24 +Child: 39, type: 6, width: 5, height: 11 +Child: 40, type: 6, width: 21, height: 24 +Child: 41, type: 6, width: 5, height: 11 +Child: 42, type: 6, width: 21, height: 24 +Child: 43, type: 6, width: 21, height: 24 +Child: 44, type: 6, width: 21, height: 24 +Child: 45, type: 6, width: 37, height: 36 +Child: 46, type: 6, width: 16, height: 18 +Child: 47, type: 6, width: 15, height: 15 +Child: 48, type: 6, width: 15, height: 13 +Child: 49, type: 6, width: 15, height: 15 +Child: 50, type: 6, width: 16, height: 9 +Child: 51, type: 6, width: 17, height: 16 +Child: 52, type: 6, width: 16, height: 9 +Child: 53, type: 6, width: 39, height: 38 +Child: 54, type: 6, width: 11, height: 15 +Child: 55, type: 6, width: 33, height: 41 +Child: 56, type: 6, width: 37, height: 38 +Child: 57, type: 6, width: 30, height: 34 +Child: 58, type: 6, width: 35, height: 35 +Child: 59, type: 6, width: 18, height: 16 +Child: 60, type: 6, width: 15, height: 17 +Child: 61, type: 6, width: 14, height: 12 +Child: 62, type: 6, width: 15, height: 17 +Child: 63, type: 6, width: 12, height: 13 +Child: 64, type: 6, width: 16, height: 9 +Child: 65, type: 6, width: 30, height: 32 +Child: 66, type: 6, width: 16, height: 9 +Child: 67, type: 6, width: 15, height: 18 +Child: 68, type: 6, width: 21, height: 24 +Child: 69, type: 6, width: 21, height: 24 +Child: 70, type: 6, width: 21, height: 24 +Child: 71, type: 6, width: 21, height: 24 +Child: 72, type: 6, width: 21, height: 24 +Child: 73, type: 6, width: 21, height: 24 +Child: 74, type: 6, width: 21, height: 24 +Child: 75, type: 6, width: 21, height: 24 +Child: 76, type: 6, width: 21, height: 24 +Child: 77, type: 6, width: 21, height: 24 +Child: 78, type: 6, width: 21, height: 24 +Child: 79, type: 6, width: 21, height: 24 +Child: 80, type: 6, width: 21, height: 24 +Child: 81, type: 6, width: 21, height: 24 +Child: 82, type: 6, width: 27, height: 23 +Child: 83, type: 6, width: 14, height: 12 +Child: 84, type: 6, width: 11, height: 11 +Child: 85, type: 6, width: 10, height: 10 +Child: 86, type: 6, width: 11, height: 11 +Child: 87, type: 6, width: 24, height: 23 +Child: 88, type: 6, width: 5, height: 11 +Child: 89, type: 6, width: 5, height: 11 +Child: 90, type: 6, width: 5, height: 11 +Child: 91, type: 6, width: 5, height: 11 +Child: 92, type: 6, width: 5, height: 11 +Child: 93, type: 6, width: 5, height: 11 +Child: 94, type: 6, width: 5, height: 11 +Child: 95, type: 6, width: 11, height: 4 +Child: 96, type: 6, width: 11, height: 4 +Child: 97, type: 6, width: 11, height: 4 +Child: 98, type: 6, width: 11, height: 4 +Child: 99, type: 6, width: 11, height: 4 +Child: 100, type: 6, width: 21, height: 24 +Child: 101, type: 6, width: 21, height: 24 +Child: 102, type: 6, width: 21, height: 24 +Child: 103, type: 6, width: 21, height: 24 +Child: 104, type: 6, width: 21, height: 24 +Child: 105, type: 6, width: 21, height: 24 +Child: 106, type: 6, width: 21, height: 24 +Child: 107, type: 6, width: 21, height: 24 +Child: 108, type: 6, width: 21, height: 24 +Child: 109, type: 6, width: 21, height: 24 +Child: 110, message: 8N +Child: 111, message: 6W +Child: 112, message: 2S +Child: 113, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/342.txt b/server508/lists/interfaces/342.txt new file mode 100644 index 0000000..38a29f4 --- /dev/null +++ b/server508/lists/interfaces/342.txt @@ -0,0 +1,19 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 18, height: 23 +Child: 3, type: 6, width: 98, height: 85 +Child: 4, type: 6, width: 87, height: 98 +Child: 5, type: 6, width: 17, height: 11 +Child: 6, type: 6, width: 99, height: 85 +Child: 7, type: 6, width: 86, height: 98 +Child: 8, type: 6, width: 18, height: 23 +Child: 9, type: 6, width: 18, height: 24 +Child: 10, type: 6, width: 138, height: 180 +Child: 11, type: 6, width: 18, height: 23 +Child: 12, type: 6, width: 18, height: 23 +Child: 13, type: 6, width: 18, height: 23 +Child: 14, type: 6, width: 18, height: 23 +Child: 15, type: 6, width: 10, height: 17 +Child: 16, type: 6, width: 15, height: 9 +Child: 17, type: 6, width: 26, height: 25 +Child: 18, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/343.txt b/server508/lists/interfaces/343.txt new file mode 100644 index 0000000..11d9ee3 --- /dev/null +++ b/server508/lists/interfaces/343.txt @@ -0,0 +1,148 @@ +Child: 0, type: 5, width: 26, height: 23 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 13, height: 12 +Child: 3, type: 6, width: 13, height: 12 +Child: 4, type: 6, width: 15, height: 13 +Child: 5, type: 6, width: 12, height: 12 +Child: 6, type: 6, width: 15, height: 14 +Child: 7, type: 6, width: 9, height: 9 +Child: 8, type: 6, width: 98, height: 85 +Child: 9, type: 6, width: 87, height: 98 +Child: 10, type: 6, width: 17, height: 12 +Child: 11, type: 6, width: 99, height: 85 +Child: 12, type: 6, width: 17, height: 11 +Child: 13, type: 6, width: 86, height: 98 +Child: 14, type: 6, width: 16, height: 15 +Child: 15, type: 6, width: 18, height: 22 +Child: 16, type: 6, width: 26, height: 25 +Child: 17, type: 6, width: 18, height: 13 +Child: 18, type: 6, width: 14, height: 13 +Child: 19, type: 6, width: 12, height: 15 +Child: 20, type: 6, width: 16, height: 16 +Child: 21, type: 6, width: 14, height: 12 +Child: 22, type: 6, width: 17, height: 13 +Child: 23, type: 6, width: 16, height: 14 +Child: 24, type: 6, width: 13, height: 10 +Child: 25, type: 6, width: 16, height: 16 +Child: 26, type: 6, width: 15, height: 17 +Child: 27, type: 6, width: 15, height: 15 +Child: 28, type: 6, width: 18, height: 14 +Child: 29, type: 6, width: 15, height: 12 +Child: 30, type: 6, width: 15, height: 12 +Child: 31, type: 6, width: 17, height: 16 +Child: 32, type: 6, width: 13, height: 13 +Child: 33, type: 6, width: 13, height: 13 +Child: 34, type: 6, width: 16, height: 16 +Child: 35, type: 6, width: 13, height: 11 +Child: 36, type: 6, width: 18, height: 15 +Child: 37, type: 6, width: 13, height: 11 +Child: 38, type: 6, width: 16, height: 15 +Child: 39, type: 6, width: 17, height: 13 +Child: 40, type: 6, width: 13, height: 11 +Child: 41, type: 6, width: 14, height: 14 +Child: 42, type: 6, width: 15, height: 16 +Child: 43, type: 6, width: 16, height: 17 +Child: 44, type: 6, width: 16, height: 15 +Child: 45, type: 6, width: 17, height: 11 +Child: 46, type: 6, width: 17, height: 13 +Child: 47, type: 6, width: 17, height: 12 +Child: 48, type: 6, width: 17, height: 14 +Child: 49, type: 6, width: 17, height: 12 +Child: 50, type: 6, width: 13, height: 9 +Child: 51, type: 6, width: 16, height: 10 +Child: 52, type: 6, width: 18, height: 10 +Child: 53, type: 6, width: 15, height: 8 +Child: 54, type: 6, width: 15, height: 11 +Child: 55, type: 6, width: 16, height: 14 +Child: 56, type: 6, width: 15, height: 13 +Child: 57, type: 6, width: 14, height: 11 +Child: 58, type: 6, width: 13, height: 9 +Child: 59, type: 6, width: 17, height: 13 +Child: 60, type: 6, width: 16, height: 10 +Child: 61, type: 6, width: 16, height: 14 +Child: 62, type: 6, width: 11, height: 10 +Child: 63, type: 6, width: 16, height: 15 +Child: 64, type: 6, width: 12, height: 14 +Child: 65, type: 6, width: 16, height: 17 +Child: 66, type: 6, width: 12, height: 13 +Child: 67, type: 6, width: 14, height: 15 +Child: 68, type: 6, width: 16, height: 16 +Child: 69, type: 6, width: 13, height: 13 +Child: 70, type: 6, width: 18, height: 15 +Child: 71, type: 6, width: 14, height: 11 +Child: 72, type: 6, width: 17, height: 16 +Child: 73, type: 6, width: 17, height: 15 +Child: 74, type: 6, width: 12, height: 13 +Child: 75, type: 6, width: 13, height: 16 +Child: 76, type: 6, width: 16, height: 16 +Child: 77, type: 6, width: 15, height: 17 +Child: 78, type: 6, width: 13, height: 15 +Child: 79, type: 6, width: 16, height: 15 +Child: 80, type: 6, width: 12, height: 13 +Child: 81, type: 6, width: 13, height: 13 +Child: 82, type: 6, width: 17, height: 16 +Child: 83, type: 6, width: 14, height: 12 +Child: 84, type: 6, width: 18, height: 14 +Child: 85, type: 6, width: 15, height: 13 +Child: 86, type: 6, width: 18, height: 22 +Child: 87, type: 6, width: 18, height: 22 +Child: 88, type: 6, width: 18, height: 22 +Child: 89, type: 6, width: 18, height: 22 +Child: 90, type: 6, width: 14, height: 14 +Child: 91, type: 6, width: 10, height: 15 +Child: 92, type: 6, width: 17, height: 10 +Child: 93, type: 6, width: 15, height: 12 +Child: 94, type: 6, width: 15, height: 11 +Child: 95, type: 6, width: 17, height: 7 +Child: 96, type: 6, width: 15, height: 9 +Child: 97, type: 6, width: 17, height: 8 +Child: 98, type: 6, width: 17, height: 8 +Child: 99, type: 6, width: 15, height: 14 +Child: 100, type: 6, width: 15, height: 14 +Child: 101, type: 6, width: 17, height: 11 +Child: 102, type: 6, width: 17, height: 11 +Child: 103, type: 6, width: 17, height: 13 +Child: 104, type: 6, width: 12, height: 14 +Child: 105, type: 6, width: 14, height: 14 +Child: 106, type: 6, width: 14, height: 12 +Child: 107, type: 6, width: 15, height: 11 +Child: 108, type: 6, width: 14, height: 14 +Child: 109, type: 6, width: 14, height: 14 +Child: 110, type: 6, width: 15, height: 11 +Child: 111, type: 6, width: 14, height: 13 +Child: 112, type: 6, width: 13, height: 14 +Child: 113, type: 6, width: 14, height: 14 +Child: 114, type: 6, width: 12, height: 14 +Child: 115, type: 6, width: 18, height: 10 +Child: 116, type: 6, width: 15, height: 12 +Child: 117, type: 6, width: 17, height: 12 +Child: 118, type: 6, width: 17, height: 11 +Child: 119, type: 6, width: 17, height: 13 +Child: 120, type: 6, width: 14, height: 14 +Child: 121, type: 6, width: 14, height: 14 +Child: 122, type: 6, width: 12, height: 7 +Child: 123, type: 6, width: 10, height: 11 +Child: 124, type: 6, width: 18, height: 9 +Child: 125, type: 6, width: 18, height: 9 +Child: 126, type: 6, width: 18, height: 10 +Child: 127, type: 6, width: 18, height: 9 +Child: 128, type: 6, width: 18, height: 9 +Child: 129, type: 6, width: 18, height: 10 +Child: 130, type: 6, width: 18, height: 10 +Child: 131, type: 6, width: 18, height: 10 +Child: 132, type: 6, width: 18, height: 10 +Child: 133, type: 6, width: 18, height: 10 +Child: 134, type: 6, width: 18, height: 9 +Child: 135, type: 6, width: 18, height: 9 +Child: 136, type: 6, width: 11, height: 10 +Child: 137, type: 6, width: 13, height: 11 +Child: 138, type: 6, width: 11, height: 9 +Child: 139, type: 6, width: 12, height: 11 +Child: 140, type: 6, width: 23, height: 17 +Child: 141, type: 6, width: 23, height: 15 +Child: 142, type: 6, width: 23, height: 17 +Child: 143, type: 6, width: 23, height: 16 +Child: 144, type: 6, width: 23, height: 17 +Child: 145, type: 6, width: 23, height: 16 +Child: 146, type: 6, width: 23, height: 16 +Child: 147, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/344.txt b/server508/lists/interfaces/344.txt new file mode 100644 index 0000000..823cc83 --- /dev/null +++ b/server508/lists/interfaces/344.txt @@ -0,0 +1,109 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 23, height: 17 +Child: 2, type: 6, width: 23, height: 16 +Child: 3, type: 6, width: 98, height: 85 +Child: 4, type: 6, width: 87, height: 98 +Child: 5, type: 6, width: 99, height: 85 +Child: 6, type: 6, width: 17, height: 11 +Child: 7, type: 6, width: 86, height: 98 +Child: 8, type: 6, width: 18, height: 22 +Child: 9, type: 6, width: 26, height: 25 +Child: 10, type: 6, width: 17, height: 15 +Child: 11, type: 6, width: 18, height: 22 +Child: 12, type: 6, width: 18, height: 22 +Child: 13, type: 6, width: 18, height: 22 +Child: 14, type: 6, width: 46, height: 46 +Child: 15, type: 6, width: 18, height: 22 +Child: 16, type: 6, width: 46, height: 46 +Child: 17, type: 6, width: 18, height: 22 +Child: 18, type: 6, width: 18, height: 22 +Child: 19, type: 6, width: 17, height: 13 +Child: 20, type: 6, width: 15, height: 14 +Child: 21, type: 6, width: 12, height: 15 +Child: 22, type: 6, width: 14, height: 13 +Child: 23, type: 6, width: 16, height: 13 +Child: 24, type: 6, width: 14, height: 14 +Child: 25, type: 6, width: 11, height: 14 +Child: 26, type: 6, width: 12, height: 14 +Child: 27, type: 6, width: 12, height: 14 +Child: 28, type: 6, width: 10, height: 14 +Child: 29, type: 6, width: 11, height: 14 +Child: 30, type: 6, width: 11, height: 14 +Child: 31, type: 6, width: 11, height: 14 +Child: 32, type: 6, width: 13, height: 13 +Child: 33, type: 6, width: 15, height: 12 +Child: 34, type: 6, width: 18, height: 10 +Child: 35, type: 6, width: 17, height: 11 +Child: 36, type: 6, width: 15, height: 13 +Child: 37, type: 6, width: 13, height: 14 +Child: 38, type: 6, width: 10, height: 15 +Child: 39, type: 6, width: 12, height: 14 +Child: 40, type: 6, width: 10, height: 14 +Child: 41, type: 6, width: 10, height: 14 +Child: 42, type: 6, width: 10, height: 14 +Child: 43, type: 6, width: 12, height: 14 +Child: 44, type: 6, width: 10, height: 15 +Child: 45, type: 6, width: 12, height: 14 +Child: 46, type: 6, width: 15, height: 13 +Child: 47, type: 6, width: 13, height: 14 +Child: 48, type: 6, width: 18, height: 10 +Child: 49, type: 6, width: 18, height: 10 +Child: 50, type: 6, width: 18, height: 10 +Child: 51, type: 6, width: 17, height: 13 +Child: 52, type: 6, width: 15, height: 14 +Child: 53, type: 6, width: 14, height: 14 +Child: 54, type: 6, width: 16, height: 13 +Child: 55, type: 6, width: 14, height: 14 +Child: 56, type: 6, width: 10, height: 15 +Child: 57, type: 6, width: 13, height: 14 +Child: 58, type: 6, width: 10, height: 15 +Child: 59, type: 6, width: 12, height: 14 +Child: 60, type: 6, width: 12, height: 14 +Child: 61, type: 6, width: 11, height: 15 +Child: 62, type: 6, width: 10, height: 14 +Child: 63, type: 6, width: 13, height: 14 +Child: 64, type: 6, width: 17, height: 11 +Child: 65, type: 6, width: 17, height: 11 +Child: 66, type: 6, width: 18, height: 22 +Child: 67, type: 6, width: 18, height: 22 +Child: 68, type: 6, width: 18, height: 22 +Child: 69, type: 6, width: 18, height: 22 +Child: 70, type: 6, width: 18, height: 22 +Child: 71, type: 6, width: 18, height: 22 +Child: 72, type: 6, width: 17, height: 15 +Child: 73, type: 6, width: 15, height: 14 +Child: 74, type: 6, width: 15, height: 14 +Child: 75, type: 6, width: 17, height: 16 +Child: 76, type: 6, width: 17, height: 14 +Child: 77, type: 6, width: 17, height: 15 +Child: 78, type: 6, width: 18, height: 15 +Child: 79, type: 6, width: 13, height: 14 +Child: 80, type: 6, width: 13, height: 13 +Child: 81, type: 6, width: 18, height: 16 +Child: 82, type: 6, width: 18, height: 15 +Child: 83, type: 6, width: 13, height: 13 +Child: 84, type: 6, width: 16, height: 16 +Child: 85, type: 6, width: 18, height: 16 +Child: 86, type: 6, width: 17, height: 13 +Child: 87, type: 6, width: 18, height: 14 +Child: 88, type: 6, width: 18, height: 14 +Child: 89, type: 6, width: 17, height: 15 +Child: 90, type: 6, width: 15, height: 14 +Child: 91, type: 6, width: 15, height: 14 +Child: 92, type: 6, width: 17, height: 15 +Child: 93, type: 6, width: 16, height: 15 +Child: 94, type: 6, width: 16, height: 15 +Child: 95, type: 6, width: 18, height: 15 +Child: 96, type: 6, width: 16, height: 15 +Child: 97, type: 6, width: 17, height: 16 +Child: 98, type: 6, width: 18, height: 13 +Child: 99, type: 6, width: 17, height: 12 +Child: 100, type: 6, width: 15, height: 10 +Child: 101, type: 6, width: 14, height: 12 +Child: 102, type: 6, width: 14, height: 14 +Child: 103, type: 6, width: 23, height: 17 +Child: 104, type: 6, width: 23, height: 16 +Child: 105, type: 6, width: 23, height: 17 +Child: 106, type: 6, width: 23, height: 16 +Child: 107, type: 5, width: 26, height: 23 +Child: 108, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/345.txt b/server508/lists/interfaces/345.txt new file mode 100644 index 0000000..c703cb2 --- /dev/null +++ b/server508/lists/interfaces/345.txt @@ -0,0 +1,12 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: The quick brown fox jumped over the +Child: 2, message: The quick brown fox jumped over the +Child: 3, message: The quick brown fox jumped over the +Child: 4, message: The quick brown fox jumped over the +Child: 5, message: The quick brown fox jumped over the +Child: 6, message: The quick brown fox jumped over the +Child: 7, message: The quick brown fox jumped over the +Child: 8, message: The quick brown fox jumped over the +Child: 9, type: 5, width: 25, height: 25 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/346.txt b/server508/lists/interfaces/346.txt new file mode 100644 index 0000000..89f3d1a --- /dev/null +++ b/server508/lists/interfaces/346.txt @@ -0,0 +1,50 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 31, height: 24 +Child: 2, type: 6, width: 27, height: 24 +Child: 3, type: 6, width: 31, height: 24 +Child: 4, type: 6, width: 26, height: 23 +Child: 5, type: 6, width: 27, height: 26 +Child: 6, type: 6, width: 30, height: 30 +Child: 7, type: 6, width: 29, height: 31 +Child: 8, type: 6, width: 32, height: 24 +Child: 9, type: 6, width: 26, height: 24 +Child: 10, type: 6, width: 31, height: 32 +Child: 11, type: 6, width: 34, height: 30 +Child: 12, type: 6, width: 30, height: 23 +Child: 13, type: 6, width: 28, height: 22 +Child: 14, type: 6, width: 32, height: 25 +Child: 15, type: 6, width: 30, height: 32 +Child: 16, type: 6, width: 30, height: 33 +Child: 17, type: 6, width: 30, height: 23 +Child: 18, type: 6, width: 27, height: 24 +Child: 19, type: 6, width: 28, height: 24 +Child: 20, type: 6, width: 30, height: 29 +Child: 21, type: 6, width: 29, height: 30 +Child: 22, type: 6, width: 34, height: 20 +Child: 23, type: 6, width: 33, height: 27 +Child: 24, type: 6, width: 33, height: 26 +Child: 25, type: 6, width: 32, height: 24 +Child: 26, type: 6, width: 98, height: 85 +Child: 27, type: 6, width: 87, height: 98 +Child: 28, type: 6, width: 99, height: 85 +Child: 29, type: 6, width: 87, height: 97 +Child: 30, type: 6, width: 13, height: 16 +Child: 31, type: 6, width: 13, height: 16 +Child: 32, message: 2E +Child: 33, type: 6, width: 20, height: 19 +Child: 34, type: 6, width: 21, height: 26 +Child: 35, type: 6, width: 22, height: 26 +Child: 36, type: 6, width: 22, height: 27 +Child: 37, type: 6, width: 8, height: 4 +Child: 38, type: 6, width: 22, height: 18 +Child: 39, type: 6, width: 19, height: 17 +Child: 40, type: 6, width: 21, height: 19 +Child: 41, type: 6, width: 22, height: 18 +Child: 42, type: 6, width: 22, height: 18 +Child: 43, type: 6, width: 22, height: 18 +Child: 44, type: 6, width: 19, height: 18 +Child: 45, type: 6, width: 21, height: 19 +Child: 46, type: 6, width: 8, height: 4 +Child: 47, type: 6, width: 24, height: 27 +Child: 48, type: 5, width: 26, height: 23 +Child: 49, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/347.txt b/server508/lists/interfaces/347.txt new file mode 100644 index 0000000..a872705 --- /dev/null +++ b/server508/lists/interfaces/347.txt @@ -0,0 +1,68 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 98, height: 85 +Child: 3, type: 6, width: 87, height: 98 +Child: 4, type: 6, width: 99, height: 85 +Child: 5, type: 6, width: 87, height: 97 +Child: 6, type: 0, width: 229, height: 225 +Child: 7, type: 0, width: 201, height: 172 +Child: 8, type: 6, width: 18, height: 17 +Child: 9, type: 6, width: 19, height: 17 +Child: 10, type: 6, width: 18, height: 17 +Child: 11, type: 6, width: 22, height: 18 +Child: 12, type: 6, width: 18, height: 17 +Child: 13, type: 6, width: 22, height: 18 +Child: 14, type: 6, width: 18, height: 17 +Child: 15, type: 6, width: 22, height: 18 +Child: 16, type: 6, width: 22, height: 18 +Child: 17, type: 6, width: 19, height: 17 +Child: 18, type: 6, width: 19, height: 15 +Child: 19, type: 6, width: 19, height: 15 +Child: 20, type: 6, width: 16, height: 14 +Child: 21, type: 6, width: 22, height: 18 +Child: 22, type: 6, width: 19, height: 17 +Child: 23, type: 6, width: 22, height: 18 +Child: 24, type: 6, width: 19, height: 15 +Child: 25, type: 6, width: 16, height: 14 +Child: 26, type: 6, width: 16, height: 14 +Child: 27, type: 5, width: 26, height: 23 +Child: 28, type: 6, width: 9, height: 4 +Child: 29, type: 6, width: 4, height: 8 +Child: 30, type: 6, width: 9, height: 4 +Child: 31, type: 6, width: 4, height: 8 +Child: 32, type: 6, width: 4, height: 8 +Child: 33, type: 6, width: 4, height: 8 +Child: 34, type: 6, width: 4, height: 8 +Child: 35, type: 6, width: 24, height: 22 +Child: 36, type: 6, width: 4, height: 8 +Child: 37, type: 6, width: 9, height: 4 +Child: 38, type: 6, width: 9, height: 4 +Child: 39, type: 6, width: 9, height: 4 +Child: 40, type: 6, width: 9, height: 4 +Child: 41, type: 6, width: 9, height: 4 +Child: 42, type: 6, width: 9, height: 4 +Child: 43, type: 6, width: 4, height: 9 +Child: 44, message: 1N +Child: 45, message: 6E +Child: 46, message: 2W +Child: 47, message: 6N +Child: 48, type: 6, width: 16, height: 37 +Child: 49, type: 6, width: 17, height: 42 +Child: 50, type: 6, width: 23, height: 35 +Child: 51, type: 6, width: 12, height: 31 +Child: 52, type: 6, width: 18, height: 18 +Child: 53, type: 6, width: 25, height: 8 +Child: 54, type: 6, width: 22, height: 8 +Child: 55, type: 6, width: 22, height: 8 +Child: 56, type: 6, width: 22, height: 8 +Child: 57, type: 6, width: 13, height: 4 +Child: 58, type: 6, width: 8, height: 21 +Child: 59, type: 6, width: 8, height: 21 +Child: 60, type: 6, width: 31, height: 32 +Child: 61, type: 6, width: 18, height: 14 +Child: 62, type: 6, width: 19, height: 15 +Child: 63, type: 6, width: 18, height: 15 +Child: 64, type: 6, width: 14, height: 13 +Child: 65, type: 6, width: 10, height: 16 +Child: 66, type: 6, width: 14, height: 18 +Child: 67, type: 6, width: 4, height: 8 diff --git a/server508/lists/interfaces/348.txt b/server508/lists/interfaces/348.txt new file mode 100644 index 0000000..9325ddc --- /dev/null +++ b/server508/lists/interfaces/348.txt @@ -0,0 +1,49 @@ +Child: 0, type: 6, width: 43, height: 35 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 24, height: 22 +Child: 3, type: 6, width: 98, height: 85 +Child: 4, type: 6, width: 87, height: 98 +Child: 5, type: 6, width: 99, height: 85 +Child: 6, type: 6, width: 87, height: 97 +Child: 7, type: 0, width: 313, height: 239 +Child: 8, type: 6, width: 31, height: 26 +Child: 9, type: 6, width: 35, height: 28 +Child: 10, type: 6, width: 23, height: 28 +Child: 11, type: 6, width: 22, height: 26 +Child: 12, type: 6, width: 22, height: 28 +Child: 13, type: 6, width: 23, height: 28 +Child: 14, type: 6, width: 22, height: 27 +Child: 15, type: 6, width: 7, height: 3 +Child: 16, type: 6, width: 7, height: 3 +Child: 17, type: 6, width: 3, height: 7 +Child: 18, type: 6, width: 3, height: 7 +Child: 19, type: 6, width: 3, height: 7 +Child: 20, type: 6, width: 3, height: 7 +Child: 21, type: 6, width: 7, height: 3 +Child: 22, type: 6, width: 7, height: 3 +Child: 23, type: 6, width: 7, height: 3 +Child: 24, type: 6, width: 3, height: 7 +Child: 25, type: 6, width: 3, height: 7 +Child: 26, type: 6, width: 3, height: 7 +Child: 27, message: 2W +Child: 28, message: 4S +Child: 29, message: 3E +Child: 30, message: 3S +Child: 31, type: 6, width: 23, height: 15 +Child: 32, type: 6, width: 23, height: 16 +Child: 33, type: 6, width: 23, height: 17 +Child: 34, type: 6, width: 27, height: 15 +Child: 35, type: 6, width: 23, height: 16 +Child: 36, type: 6, width: 23, height: 16 +Child: 37, type: 6, width: 23, height: 16 +Child: 38, type: 5, width: 26, height: 23 +Child: 39, type: 6, width: 41, height: 35 +Child: 40, type: 6, width: 38, height: 32 +Child: 41, type: 6, width: 35, height: 31 +Child: 42, type: 6, width: 38, height: 31 +Child: 43, type: 6, width: 40, height: 31 +Child: 44, type: 6, width: 42, height: 31 +Child: 45, type: 6, width: 42, height: 31 +Child: 46, type: 6, width: 43, height: 31 +Child: 47, type: 6, width: 43, height: 31 +Child: 48, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/349.txt b/server508/lists/interfaces/349.txt new file mode 100644 index 0000000..d91c235 --- /dev/null +++ b/server508/lists/interfaces/349.txt @@ -0,0 +1,59 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 24, height: 22 +Child: 2, type: 6, width: 98, height: 85 +Child: 3, type: 6, width: 87, height: 98 +Child: 4, type: 6, width: 99, height: 85 +Child: 5, type: 6, width: 87, height: 97 +Child: 6, type: 6, width: 49, height: 49 +Child: 7, type: 0, width: 200, height: 210 +Child: 8, type: 6, width: 7, height: 11 +Child: 9, type: 6, width: 10, height: 10 +Child: 10, type: 6, width: 9, height: 9 +Child: 11, type: 6, width: 10, height: 10 +Child: 12, type: 6, width: 7, height: 11 +Child: 13, type: 6, width: 12, height: 7 +Child: 14, type: 6, width: 12, height: 7 +Child: 15, type: 6, width: 7, height: 3 +Child: 16, type: 6, width: 7, height: 3 +Child: 17, type: 6, width: 7, height: 3 +Child: 18, type: 6, width: 3, height: 7 +Child: 19, type: 6, width: 3, height: 7 +Child: 20, type: 6, width: 3, height: 7 +Child: 21, type: 6, width: 7, height: 3 +Child: 22, type: 6, width: 3, height: 7 +Child: 23, type: 6, width: 3, height: 7 +Child: 24, message: 3E +Child: 25, message: 3N +Child: 26, message: 1E +Child: 27, message: 2N +Child: 28, type: 6, width: 18, height: 23 +Child: 29, type: 6, width: 18, height: 23 +Child: 30, type: 6, width: 18, height: 23 +Child: 31, type: 6, width: 18, height: 23 +Child: 32, type: 6, width: 18, height: 23 +Child: 33, type: 6, width: 18, height: 23 +Child: 34, type: 6, width: 18, height: 23 +Child: 35, type: 6, width: 18, height: 23 +Child: 36, type: 6, width: 18, height: 23 +Child: 37, type: 6, width: 18, height: 23 +Child: 38, type: 6, width: 18, height: 23 +Child: 39, type: 6, width: 18, height: 23 +Child: 40, type: 6, width: 18, height: 23 +Child: 41, type: 6, width: 18, height: 23 +Child: 42, type: 6, width: 18, height: 23 +Child: 43, type: 6, width: 18, height: 23 +Child: 44, type: 5, width: 26, height: 23 +Child: 45, type: 6, width: 27, height: 27 +Child: 46, type: 6, width: 27, height: 27 +Child: 47, type: 6, width: 28, height: 28 +Child: 48, type: 6, width: 27, height: 27 +Child: 49, type: 6, width: 16, height: 36 +Child: 50, type: 6, width: 28, height: 28 +Child: 51, type: 6, width: 27, height: 27 +Child: 52, type: 6, width: 25, height: 26 +Child: 53, type: 6, width: 16, height: 16 +Child: 54, type: 6, width: 28, height: 28 +Child: 55, type: 6, width: 28, height: 28 +Child: 56, type: 6, width: 27, height: 27 +Child: 57, type: 6, width: 28, height: 28 +Child: 58, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/35.txt b/server508/lists/interfaces/35.txt new file mode 100644 index 0000000..ac388a4 --- /dev/null +++ b/server508/lists/interfaces/35.txt @@ -0,0 +1,109 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, message: Insert a very long name here! +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: vs +Child: 76, message: Insert a very long name here! +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Draughts +Child: 89, type: 0, width: 78, height: 43 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 3, width: 258, height: 258 +inventory type: 64 slots, width: 8, height: 8, 92 +Child: 93, type: 5, width: 36, height: 36 +Child: 94, type: 5, width: 36, height: 36 +Child: 95, type: 5, width: 36, height: 36 +Child: 96, message: Blah blah blah blah blah! +Child: 97, type: 3, width: 66, height: 31 +Child: 98, message: Close +Child: 99, type: 5, width: 36, height: 36 +Child: 100, type: 5, width: 36, height: 36 +Child: 101, type: 5, width: 25, height: 30 +Child: 102, type: 5, width: 25, height: 30 +Child: 103, type: 5, width: 25, height: 30 +Child: 104, type: 5, width: 25, height: 30 +Child: 105, type: 6, width: 20, height: 20 +Child: 106, type: 6, width: 20, height: 20 +Child: 107, message: Blah blah blah blah blah blah blah! +Child: 108, message: Blah blah blah blah blah blah blah! diff --git a/server508/lists/interfaces/350.txt b/server508/lists/interfaces/350.txt new file mode 100644 index 0000000..d3d0f42 --- /dev/null +++ b/server508/lists/interfaces/350.txt @@ -0,0 +1,50 @@ +Child: 0, type: 6, width: 24, height: 22 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 6, width: 54, height: 56 +Child: 3, type: 6, width: 17, height: 17 +Child: 4, type: 6, width: 20, height: 12 +Child: 5, type: 6, width: 20, height: 12 +Child: 6, type: 6, width: 14, height: 23 +Child: 7, type: 6, width: 24, height: 14 +Child: 8, type: 6, width: 24, height: 14 +Child: 9, type: 6, width: 16, height: 13 +Child: 10, type: 6, width: 16, height: 13 +Child: 11, type: 6, width: 64, height: 24 +Child: 12, type: 6, width: 64, height: 24 +Child: 13, type: 6, width: 64, height: 24 +Child: 14, type: 6, width: 22, height: 53 +Child: 15, type: 6, width: 42, height: 41 +Child: 16, type: 6, width: 46, height: 16 +Child: 17, type: 6, width: 15, height: 38 +Child: 18, type: 6, width: 15, height: 38 +Child: 19, type: 6, width: 14, height: 11 +Child: 20, type: 6, width: 14, height: 11 +Child: 21, type: 6, width: 14, height: 11 +Child: 22, type: 6, width: 14, height: 11 +Child: 23, type: 6, width: 14, height: 11 +Child: 24, type: 6, width: 14, height: 11 +Child: 25, type: 6, width: 14, height: 11 +Child: 26, type: 6, width: 14, height: 11 +Child: 27, type: 6, width: 14, height: 11 +Child: 28, type: 6, width: 14, height: 11 +Child: 29, type: 6, width: 14, height: 11 +Child: 30, type: 6, width: 14, height: 11 +Child: 31, type: 6, width: 14, height: 11 +Child: 32, type: 6, width: 14, height: 11 +Child: 33, type: 6, width: 14, height: 11 +Child: 34, type: 6, width: 14, height: 11 +Child: 35, type: 0, width: 203, height: 220 +Child: 36, type: 6, width: 98, height: 85 +Child: 37, type: 6, width: 87, height: 98 +Child: 38, type: 6, width: 99, height: 85 +Child: 39, type: 6, width: 87, height: 97 +Child: 40, type: 6, width: 83, height: 93 +Child: 41, type: 5, width: 26, height: 23 +Child: 42, type: 6, width: 27, height: 15 +Child: 43, type: 6, width: 22, height: 53 +Child: 44, type: 6, width: 14, height: 11 +Child: 45, type: 6, width: 14, height: 11 +Child: 46, type: 6, width: 14, height: 11 +Child: 47, type: 6, width: 14, height: 11 +Child: 48, type: 6, width: 14, height: 11 +Child: 49, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/351.txt b/server508/lists/interfaces/351.txt new file mode 100644 index 0000000..6b0b224 --- /dev/null +++ b/server508/lists/interfaces/351.txt @@ -0,0 +1,61 @@ +Child: 0, type: 6, width: 24, height: 22 +Child: 1, type: 6, width: 325, height: 310 +Child: 2, type: 0, width: 203, height: 220 +Child: 3, type: 6, width: 98, height: 85 +Child: 4, type: 6, width: 87, height: 98 +Child: 5, type: 6, width: 99, height: 85 +Child: 6, type: 6, width: 87, height: 97 +Child: 7, type: 6, width: 8, height: 7 +Child: 8, type: 6, width: 8, height: 7 +Child: 9, type: 6, width: 8, height: 7 +Child: 10, type: 6, width: 8, height: 7 +Child: 11, type: 6, width: 8, height: 7 +Child: 12, type: 6, width: 8, height: 7 +Child: 13, type: 6, width: 8, height: 7 +Child: 14, type: 6, width: 8, height: 7 +Child: 15, type: 6, width: 9, height: 9 +Child: 16, type: 6, width: 18, height: 23 +Child: 17, type: 6, width: 18, height: 23 +Child: 18, type: 6, width: 11, height: 9 +Child: 19, type: 6, width: 23, height: 20 +Child: 20, type: 6, width: 24, height: 18 +Child: 21, type: 6, width: 22, height: 18 +Child: 22, type: 6, width: 11, height: 10 +Child: 23, type: 6, width: 22, height: 18 +Child: 24, type: 6, width: 10, height: 9 +Child: 25, type: 6, width: 18, height: 23 +Child: 26, type: 6, width: 18, height: 23 +Child: 27, type: 6, width: 18, height: 23 +Child: 28, type: 5, width: 26, height: 23 +Child: 29, type: 6, width: 22, height: 12 +Child: 30, type: 6, width: 18, height: 43 +Child: 31, type: 6, width: 58, height: 21 +Child: 32, type: 6, width: 16, height: 16 +Child: 33, type: 6, width: 16, height: 14 +Child: 34, type: 6, width: 25, height: 14 +Child: 35, type: 6, width: 58, height: 21 +Child: 36, type: 6, width: 58, height: 21 +Child: 37, type: 6, width: 25, height: 14 +Child: 38, type: 6, width: 22, height: 12 +Child: 39, type: 6, width: 36, height: 35 +Child: 40, type: 6, width: 22, height: 12 +Child: 41, type: 6, width: 22, height: 12 +Child: 42, type: 6, width: 13, height: 20 +Child: 43, type: 6, width: 16, height: 12 +Child: 44, type: 6, width: 16, height: 17 +Child: 45, type: 6, width: 15, height: 12 +Child: 46, type: 6, width: 22, height: 12 +Child: 47, type: 6, width: 22, height: 12 +Child: 48, type: 6, width: 13, height: 21 +Child: 49, type: 6, width: 22, height: 13 +Child: 50, type: 6, width: 13, height: 7 +Child: 51, type: 6, width: 13, height: 7 +Child: 52, type: 6, width: 16, height: 14 +Child: 53, type: 6, width: 15, height: 15 +Child: 54, type: 6, width: 27, height: 36 +Child: 55, type: 6, width: 16, height: 15 +Child: 56, type: 6, width: 13, height: 20 +Child: 57, type: 6, width: 15, height: 14 +Child: 58, type: 6, width: 15, height: 14 +Child: 59, type: 6, width: 18, height: 43 +Child: 60, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/352.txt b/server508/lists/interfaces/352.txt new file mode 100644 index 0000000..b6c0e69 --- /dev/null +++ b/server508/lists/interfaces/352.txt @@ -0,0 +1,71 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 41, height: 32 +Child: 2, type: 6, width: 34, height: 29 +Child: 3, type: 6, width: 12, height: 13 +Child: 4, type: 6, width: 14, height: 16 +Child: 5, type: 6, width: 30, height: 28 +Child: 6, type: 6, width: 43, height: 30 +Child: 7, type: 6, width: 24, height: 22 +Child: 8, type: 6, width: 40, height: 32 +Child: 9, type: 6, width: 98, height: 85 +Child: 10, type: 6, width: 87, height: 98 +Child: 11, type: 6, width: 17, height: 16 +Child: 12, type: 6, width: 99, height: 85 +Child: 13, type: 6, width: 15, height: 15 +Child: 14, type: 6, width: 42, height: 31 +Child: 15, type: 6, width: 87, height: 97 +Child: 16, type: 0, width: 442, height: 286 +Child: 17, type: 6, width: 17, height: 13 +Child: 18, type: 6, width: 23, height: 18 +Child: 19, type: 6, width: 18, height: 21 +Child: 20, type: 6, width: 30, height: 32 +Child: 21, type: 6, width: 23, height: 15 +Child: 22, type: 6, width: 23, height: 16 +Child: 23, type: 6, width: 23, height: 17 +Child: 24, type: 6, width: 27, height: 15 +Child: 25, type: 6, width: 23, height: 16 +Child: 26, type: 6, width: 23, height: 16 +Child: 27, type: 6, width: 23, height: 16 +Child: 28, type: 6, width: 15, height: 15 +Child: 29, type: 6, width: 17, height: 16 +Child: 30, type: 6, width: 17, height: 15 +Child: 31, type: 6, width: 17, height: 15 +Child: 32, type: 6, width: 43, height: 29 +Child: 33, type: 6, width: 16, height: 15 +Child: 34, type: 6, width: 36, height: 26 +Child: 35, type: 6, width: 37, height: 35 +Child: 36, type: 6, width: 17, height: 16 +Child: 37, type: 6, width: 17, height: 16 +Child: 38, type: 6, width: 17, height: 16 +Child: 39, type: 6, width: 14, height: 15 +Child: 40, type: 6, width: 16, height: 18 +Child: 41, type: 6, width: 15, height: 17 +Child: 42, type: 6, width: 15, height: 15 +Child: 43, type: 6, width: 15, height: 15 +Child: 44, type: 6, width: 18, height: 15 +Child: 45, type: 6, width: 16, height: 15 +Child: 46, type: 6, width: 15, height: 14 +Child: 47, type: 6, width: 13, height: 13 +Child: 48, type: 6, width: 12, height: 14 +Child: 49, type: 6, width: 14, height: 13 +Child: 50, type: 6, width: 17, height: 15 +Child: 51, type: 6, width: 17, height: 15 +Child: 52, type: 6, width: 16, height: 14 +Child: 53, type: 6, width: 17, height: 15 +Child: 54, type: 6, width: 18, height: 16 +Child: 55, type: 6, width: 18, height: 16 +Child: 56, type: 6, width: 15, height: 15 +Child: 57, type: 6, width: 18, height: 16 +Child: 58, type: 6, width: 17, height: 15 +Child: 59, type: 6, width: 17, height: 16 +Child: 60, type: 6, width: 23, height: 18 +Child: 61, type: 6, width: 23, height: 18 +Child: 62, type: 6, width: 18, height: 21 +Child: 63, type: 6, width: 18, height: 21 +Child: 64, type: 6, width: 18, height: 21 +Child: 65, type: 6, width: 18, height: 21 +Child: 66, type: 6, width: 18, height: 21 +Child: 67, type: 6, width: 18, height: 21 +Child: 68, type: 6, width: 18, height: 21 +Child: 69, type: 5, width: 26, height: 23 +Child: 70, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/353.txt b/server508/lists/interfaces/353.txt new file mode 100644 index 0000000..75de179 --- /dev/null +++ b/server508/lists/interfaces/353.txt @@ -0,0 +1,65 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 15, height: 15 +Child: 2, type: 6, width: 13, height: 13 +Child: 3, type: 6, width: 13, height: 13 +Child: 4, type: 6, width: 16, height: 18 +Child: 5, type: 6, width: 16, height: 18 +Child: 6, type: 6, width: 16, height: 18 +Child: 7, type: 6, width: 15, height: 18 +Child: 8, type: 6, width: 98, height: 85 +Child: 9, type: 6, width: 87, height: 98 +Child: 10, type: 6, width: 15, height: 18 +Child: 11, type: 6, width: 99, height: 85 +Child: 12, type: 6, width: 14, height: 17 +Child: 13, type: 6, width: 33, height: 27 +Child: 14, type: 6, width: 87, height: 97 +Child: 15, type: 6, width: 16, height: 16 +Child: 16, type: 6, width: 16, height: 16 +Child: 17, type: 6, width: 15, height: 15 +Child: 18, type: 6, width: 13, height: 12 +Child: 19, type: 6, width: 16, height: 16 +Child: 20, type: 6, width: 23, height: 15 +Child: 21, type: 6, width: 23, height: 16 +Child: 22, type: 6, width: 27, height: 15 +Child: 23, type: 6, width: 23, height: 16 +Child: 24, type: 6, width: 16, height: 18 +Child: 25, type: 6, width: 16, height: 17 +Child: 26, type: 6, width: 30, height: 79 +Child: 27, type: 6, width: 26, height: 27 +Child: 28, type: 6, width: 79, height: 30 +Child: 29, type: 6, width: 79, height: 30 +Child: 30, type: 6, width: 30, height: 79 +Child: 31, type: 6, width: 19, height: 19 +Child: 32, type: 6, width: 21, height: 26 +Child: 33, type: 6, width: 30, height: 79 +Child: 34, type: 6, width: 30, height: 79 +Child: 35, type: 6, width: 79, height: 30 +Child: 36, type: 6, width: 79, height: 30 +Child: 37, type: 6, width: 17, height: 18 +Child: 38, type: 6, width: 17, height: 18 +Child: 39, type: 6, width: 17, height: 18 +Child: 40, type: 6, width: 19, height: 18 +Child: 41, type: 6, width: 19, height: 18 +Child: 42, type: 6, width: 19, height: 18 +Child: 43, type: 6, width: 19, height: 18 +Child: 44, type: 6, width: 19, height: 18 +Child: 45, type: 6, width: 19, height: 18 +Child: 46, type: 6, width: 17, height: 18 +Child: 47, type: 6, width: 17, height: 18 +Child: 48, type: 6, width: 43, height: 16 +Child: 49, type: 6, width: 17, height: 43 +Child: 50, type: 6, width: 18, height: 10 +Child: 51, type: 6, width: 18, height: 10 +Child: 52, type: 6, width: 13, height: 21 +Child: 53, type: 6, width: 13, height: 21 +Child: 54, type: 6, width: 21, height: 26 +Child: 55, type: 6, width: 20, height: 25 +Child: 56, type: 6, width: 20, height: 25 +Child: 57, type: 6, width: 20, height: 25 +Child: 58, type: 6, width: 16, height: 19 +Child: 59, type: 6, width: 16, height: 20 +Child: 60, type: 6, width: 16, height: 19 +Child: 61, type: 6, width: 16, height: 19 +Child: 62, type: 6, width: 24, height: 22 +Child: 63, type: 5, width: 26, height: 23 +Child: 64, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/354.txt b/server508/lists/interfaces/354.txt new file mode 100644 index 0000000..6cf19ac --- /dev/null +++ b/server508/lists/interfaces/354.txt @@ -0,0 +1,84 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 17, height: 14 +Child: 2, type: 6, width: 19, height: 15 +Child: 3, type: 6, width: 20, height: 16 +Child: 4, type: 6, width: 20, height: 17 +Child: 5, type: 6, width: 20, height: 17 +Child: 6, type: 6, width: 20, height: 15 +Child: 7, type: 6, width: 20, height: 15 +Child: 8, type: 6, width: 98, height: 85 +Child: 9, type: 6, width: 87, height: 98 +Child: 10, type: 6, width: 99, height: 85 +Child: 11, type: 6, width: 87, height: 97 +Child: 12, type: 6, width: 20, height: 25 +Child: 13, type: 6, width: 24, height: 22 +Child: 14, type: 0, width: 256, height: 249 +Child: 15, type: 6, width: 18, height: 21 +Child: 16, type: 6, width: 18, height: 21 +Child: 17, type: 6, width: 18, height: 21 +Child: 18, type: 6, width: 18, height: 21 +Child: 19, type: 6, width: 18, height: 21 +Child: 20, type: 6, width: 18, height: 21 +Child: 21, type: 6, width: 18, height: 21 +Child: 22, type: 6, width: 18, height: 21 +Child: 23, type: 6, width: 18, height: 21 +Child: 24, type: 6, width: 18, height: 21 +Child: 25, type: 6, width: 18, height: 21 +Child: 26, type: 6, width: 18, height: 21 +Child: 27, type: 5, width: 26, height: 23 +Child: 28, type: 6, width: 18, height: 14 +Child: 29, type: 6, width: 15, height: 12 +Child: 30, type: 6, width: 18, height: 14 +Child: 31, type: 6, width: 20, height: 15 +Child: 32, type: 6, width: 37, height: 37 +Child: 33, type: 6, width: 39, height: 38 +Child: 34, type: 6, width: 15, height: 13 +Child: 35, type: 6, width: 14, height: 17 +Child: 36, type: 6, width: 13, height: 17 +Child: 37, type: 6, width: 15, height: 15 +Child: 38, type: 6, width: 18, height: 18 +Child: 39, type: 6, width: 19, height: 15 +Child: 40, type: 6, width: 19, height: 49 +Child: 41, type: 6, width: 19, height: 15 +Child: 42, type: 6, width: 18, height: 14 +Child: 43, type: 6, width: 19, height: 15 +Child: 44, type: 6, width: 19, height: 13 +Child: 45, type: 6, width: 16, height: 17 +Child: 46, type: 6, width: 15, height: 15 +Child: 47, type: 6, width: 31, height: 33 +Child: 48, type: 6, width: 15, height: 19 +Child: 49, type: 6, width: 15, height: 18 +Child: 50, type: 6, width: 17, height: 20 +Child: 51, type: 6, width: 13, height: 15 +Child: 52, type: 6, width: 15, height: 19 +Child: 53, type: 6, width: 13, height: 17 +Child: 54, type: 6, width: 15, height: 16 +Child: 55, type: 6, width: 15, height: 16 +Child: 56, type: 6, width: 15, height: 16 +Child: 57, type: 6, width: 15, height: 16 +Child: 58, type: 6, width: 15, height: 16 +Child: 59, type: 6, width: 13, height: 15 +Child: 60, type: 6, width: 31, height: 33 +Child: 61, type: 6, width: 15, height: 18 +Child: 62, type: 6, width: 15, height: 13 +Child: 63, type: 6, width: 19, height: 49 +Child: 64, type: 6, width: 49, height: 18 +Child: 65, type: 6, width: 49, height: 18 +Child: 66, type: 6, width: 19, height: 49 +Child: 67, type: 6, width: 19, height: 49 +Child: 68, type: 6, width: 22, height: 12 +Child: 69, type: 6, width: 22, height: 12 +Child: 70, type: 6, width: 43, height: 24 +Child: 71, type: 6, width: 43, height: 24 +Child: 72, type: 6, width: 43, height: 24 +Child: 73, type: 6, width: 22, height: 12 +Child: 74, type: 6, width: 22, height: 12 +Child: 75, type: 6, width: 13, height: 21 +Child: 76, type: 6, width: 11, height: 12 +Child: 77, type: 6, width: 11, height: 11 +Child: 78, type: 6, width: 13, height: 21 +Child: 79, type: 6, width: 13, height: 21 +Child: 80, type: 6, width: 13, height: 21 +Child: 81, type: 6, width: 13, height: 21 +Child: 82, type: 6, width: 22, height: 12 +Child: 83, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/355.txt b/server508/lists/interfaces/355.txt new file mode 100644 index 0000000..4710492 --- /dev/null +++ b/server508/lists/interfaces/355.txt @@ -0,0 +1,66 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 15, height: 16 +Child: 2, type: 6, width: 98, height: 85 +Child: 3, type: 6, width: 87, height: 98 +Child: 4, type: 6, width: 99, height: 85 +Child: 5, type: 6, width: 10, height: 17 +Child: 6, type: 6, width: 15, height: 16 +Child: 7, type: 6, width: 87, height: 97 +Child: 8, type: 6, width: 16, height: 15 +Child: 9, type: 6, width: 16, height: 15 +Child: 10, type: 6, width: 16, height: 15 +Child: 11, type: 6, width: 16, height: 15 +Child: 12, type: 6, width: 17, height: 10 +Child: 13, type: 6, width: 11, height: 13 +Child: 14, type: 6, width: 18, height: 21 +Child: 15, type: 6, width: 18, height: 21 +Child: 16, type: 6, width: 18, height: 21 +Child: 17, type: 6, width: 18, height: 21 +Child: 18, type: 6, width: 18, height: 21 +Child: 19, type: 6, width: 18, height: 21 +Child: 20, type: 6, width: 18, height: 21 +Child: 21, type: 6, width: 18, height: 21 +Child: 22, type: 6, width: 18, height: 21 +Child: 23, type: 6, width: 18, height: 21 +Child: 24, type: 6, width: 14, height: 18 +Child: 25, type: 6, width: 14, height: 18 +Child: 26, type: 6, width: 14, height: 18 +Child: 27, type: 6, width: 14, height: 18 +Child: 28, type: 6, width: 14, height: 18 +Child: 29, type: 6, width: 14, height: 18 +Child: 30, type: 6, width: 14, height: 18 +Child: 31, type: 6, width: 14, height: 18 +Child: 32, type: 6, width: 14, height: 18 +Child: 33, type: 6, width: 14, height: 18 +Child: 34, type: 6, width: 14, height: 18 +Child: 35, type: 6, width: 14, height: 18 +Child: 36, type: 6, width: 14, height: 18 +Child: 37, type: 6, width: 14, height: 18 +Child: 38, type: 6, width: 14, height: 18 +Child: 39, type: 6, width: 18, height: 21 +Child: 40, type: 6, width: 18, height: 21 +Child: 41, type: 6, width: 18, height: 21 +Child: 42, type: 6, width: 18, height: 21 +Child: 43, type: 6, width: 14, height: 18 +Child: 44, type: 6, width: 14, height: 18 +Child: 45, type: 6, width: 14, height: 18 +Child: 46, type: 6, width: 18, height: 21 +Child: 47, type: 0, width: 184, height: 165 +Child: 48, type: 6, width: 37, height: 39 +Child: 49, type: 5, width: 26, height: 23 +Child: 50, type: 6, width: 15, height: 16 +Child: 51, type: 6, width: 15, height: 16 +Child: 52, type: 6, width: 12, height: 19 +Child: 53, type: 6, width: 19, height: 9 +Child: 54, type: 6, width: 15, height: 16 +Child: 55, type: 6, width: 15, height: 16 +Child: 56, type: 6, width: 18, height: 48 +Child: 57, type: 6, width: 15, height: 16 +Child: 58, type: 6, width: 15, height: 16 +Child: 59, type: 6, width: 19, height: 9 +Child: 60, type: 6, width: 19, height: 9 +Child: 61, type: 6, width: 19, height: 9 +Child: 62, type: 6, width: 18, height: 48 +Child: 63, type: 6, width: 18, height: 48 +Child: 64, type: 6, width: 18, height: 48 +Child: 65, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/356.txt b/server508/lists/interfaces/356.txt new file mode 100644 index 0000000..b853968 --- /dev/null +++ b/server508/lists/interfaces/356.txt @@ -0,0 +1,84 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 33, height: 31 +Child: 2, type: 6, width: 30, height: 36 +Child: 3, type: 6, width: 16, height: 17 +Child: 4, type: 6, width: 15, height: 15 +Child: 5, type: 6, width: 16, height: 17 +Child: 6, type: 6, width: 15, height: 18 +Child: 7, type: 6, width: 24, height: 22 +Child: 8, type: 6, width: 15, height: 18 +Child: 9, type: 6, width: 98, height: 85 +Child: 10, type: 6, width: 87, height: 98 +Child: 11, type: 6, width: 15, height: 18 +Child: 12, type: 6, width: 99, height: 85 +Child: 13, type: 6, width: 15, height: 15 +Child: 14, type: 6, width: 14, height: 13 +Child: 15, type: 6, width: 86, height: 98 +Child: 16, type: 6, width: 15, height: 15 +Child: 17, type: 6, width: 16, height: 16 +Child: 18, type: 6, width: 13, height: 16 +Child: 19, type: 6, width: 17, height: 13 +Child: 20, type: 6, width: 17, height: 16 +Child: 21, type: 6, width: 23, height: 15 +Child: 22, type: 6, width: 23, height: 16 +Child: 23, type: 6, width: 23, height: 17 +Child: 24, type: 6, width: 27, height: 15 +Child: 25, type: 6, width: 23, height: 16 +Child: 26, type: 6, width: 23, height: 16 +Child: 27, type: 6, width: 23, height: 16 +Child: 28, type: 6, width: 17, height: 13 +Child: 29, type: 6, width: 15, height: 11 +Child: 30, type: 6, width: 18, height: 15 +Child: 31, type: 6, width: 18, height: 16 +Child: 32, type: 6, width: 13, height: 14 +Child: 33, type: 6, width: 32, height: 40 +Child: 34, type: 6, width: 14, height: 16 +Child: 35, type: 6, width: 12, height: 15 +Child: 36, type: 6, width: 18, height: 21 +Child: 37, type: 6, width: 13, height: 16 +Child: 38, type: 6, width: 16, height: 18 +Child: 39, type: 6, width: 15, height: 18 +Child: 40, type: 6, width: 12, height: 15 +Child: 41, type: 6, width: 17, height: 16 +Child: 42, type: 6, width: 12, height: 13 +Child: 43, type: 6, width: 29, height: 16 +Child: 44, type: 6, width: 24, height: 23 +Child: 45, type: 6, width: 24, height: 23 +Child: 46, type: 6, width: 16, height: 28 +Child: 47, type: 6, width: 16, height: 28 +Child: 48, type: 6, width: 22, height: 23 +Child: 49, type: 6, width: 22, height: 23 +Child: 50, type: 6, width: 29, height: 16 +Child: 51, type: 6, width: 22, height: 23 +Child: 52, type: 6, width: 22, height: 23 +Child: 53, type: 6, width: 16, height: 28 +Child: 54, type: 6, width: 16, height: 28 +Child: 55, type: 6, width: 24, height: 23 +Child: 56, type: 6, width: 24, height: 23 +Child: 57, type: 6, width: 29, height: 16 +Child: 58, type: 6, width: 29, height: 16 +Child: 59, type: 6, width: 30, height: 33 +Child: 60, type: 6, width: 13, height: 13 +Child: 61, type: 6, width: 14, height: 14 +Child: 62, type: 6, width: 13, height: 13 +Child: 63, type: 6, width: 13, height: 13 +Child: 64, type: 6, width: 12, height: 14 +Child: 65, type: 6, width: 11, height: 14 +Child: 66, type: 6, width: 16, height: 18 +Child: 67, type: 6, width: 13, height: 16 +Child: 68, type: 6, width: 13, height: 16 +Child: 69, type: 6, width: 11, height: 14 +Child: 70, type: 6, width: 13, height: 14 +Child: 71, type: 6, width: 15, height: 15 +Child: 72, type: 6, width: 17, height: 15 +Child: 73, type: 6, width: 13, height: 13 +Child: 74, type: 6, width: 17, height: 11 +Child: 75, type: 6, width: 17, height: 11 +Child: 76, type: 6, width: 14, height: 14 +Child: 77, type: 6, width: 14, height: 14 +Child: 78, type: 6, width: 14, height: 14 +Child: 79, type: 6, width: 14, height: 15 +Child: 80, type: 6, width: 17, height: 11 +Child: 81, type: 6, width: 18, height: 21 +Child: 82, type: 5, width: 26, height: 23 +Child: 83, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/357.txt b/server508/lists/interfaces/357.txt new file mode 100644 index 0000000..b1b2d58 --- /dev/null +++ b/server508/lists/interfaces/357.txt @@ -0,0 +1,95 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 22, height: 12 +Child: 2, type: 6, width: 8, height: 9 +Child: 3, type: 6, width: 8, height: 9 +Child: 4, type: 6, width: 13, height: 21 +Child: 5, type: 6, width: 22, height: 12 +Child: 6, type: 6, width: 22, height: 12 +Child: 7, type: 6, width: 98, height: 85 +Child: 8, type: 6, width: 87, height: 98 +Child: 9, type: 6, width: 99, height: 85 +Child: 10, type: 6, width: 8, height: 9 +Child: 11, type: 6, width: 8, height: 9 +Child: 12, type: 6, width: 8, height: 9 +Child: 13, type: 6, width: 9, height: 8 +Child: 14, type: 6, width: 9, height: 8 +Child: 15, type: 6, width: 11, height: 10 +Child: 16, type: 6, width: 9, height: 8 +Child: 17, type: 6, width: 8, height: 9 +Child: 18, type: 6, width: 8, height: 9 +Child: 19, type: 6, width: 8, height: 9 +Child: 20, type: 6, width: 8, height: 9 +Child: 21, type: 6, width: 8, height: 9 +Child: 22, type: 6, width: 22, height: 21 +Child: 23, type: 6, width: 87, height: 97 +Child: 24, type: 6, width: 22, height: 12 +Child: 25, type: 6, width: 22, height: 12 +Child: 26, type: 6, width: 22, height: 12 +Child: 27, type: 6, width: 13, height: 21 +Child: 28, type: 6, width: 13, height: 21 +Child: 29, type: 6, width: 13, height: 21 +Child: 30, type: 6, width: 13, height: 21 +Child: 31, type: 6, width: 13, height: 21 +Child: 32, type: 6, width: 13, height: 21 +Child: 33, type: 6, width: 13, height: 21 +Child: 34, type: 6, width: 13, height: 21 +Child: 35, type: 6, width: 13, height: 21 +Child: 36, type: 6, width: 13, height: 21 +Child: 37, type: 6, width: 22, height: 12 +Child: 38, type: 6, width: 22, height: 12 +Child: 39, type: 6, width: 22, height: 12 +Child: 40, type: 6, width: 22, height: 12 +Child: 41, type: 6, width: 22, height: 12 +Child: 42, type: 6, width: 13, height: 21 +Child: 43, type: 6, width: 13, height: 21 +Child: 44, type: 6, width: 13, height: 21 +Child: 45, type: 6, width: 22, height: 12 +Child: 46, type: 6, width: 22, height: 12 +Child: 47, type: 6, width: 22, height: 12 +Child: 48, type: 6, width: 22, height: 12 +Child: 49, type: 6, width: 8, height: 9 +Child: 50, type: 6, width: 8, height: 9 +Child: 51, type: 6, width: 8, height: 9 +Child: 52, type: 6, width: 8, height: 9 +Child: 53, type: 6, width: 22, height: 12 +Child: 54, type: 6, width: 22, height: 12 +Child: 55, type: 6, width: 8, height: 9 +Child: 56, type: 6, width: 9, height: 8 +Child: 57, type: 6, width: 9, height: 8 +Child: 58, type: 6, width: 8, height: 9 +Child: 59, type: 6, width: 8, height: 9 +Child: 60, type: 6, width: 8, height: 9 +Child: 61, type: 6, width: 22, height: 12 +Child: 62, type: 6, width: 8, height: 9 +Child: 63, type: 6, width: 8, height: 9 +Child: 64, type: 6, width: 22, height: 12 +Child: 65, type: 6, width: 8, height: 9 +Child: 66, type: 6, width: 8, height: 9 +Child: 67, type: 6, width: 9, height: 8 +Child: 68, type: 6, width: 22, height: 12 +Child: 69, type: 6, width: 22, height: 12 +Child: 70, type: 6, width: 22, height: 12 +Child: 71, type: 6, width: 22, height: 12 +Child: 72, type: 6, width: 8, height: 9 +Child: 73, type: 6, width: 8, height: 9 +Child: 74, type: 6, width: 8, height: 9 +Child: 75, type: 6, width: 8, height: 9 +Child: 76, type: 6, width: 8, height: 9 +Child: 77, type: 6, width: 8, height: 9 +Child: 78, type: 6, width: 8, height: 9 +Child: 79, type: 6, width: 8, height: 9 +Child: 80, type: 6, width: 22, height: 12 +Child: 81, type: 6, width: 22, height: 12 +Child: 82, type: 6, width: 8, height: 9 +Child: 83, type: 6, width: 8, height: 9 +Child: 84, type: 6, width: 8, height: 9 +Child: 85, type: 6, width: 8, height: 9 +Child: 86, type: 6, width: 22, height: 12 +Child: 87, type: 6, width: 22, height: 12 +Child: 88, type: 6, width: 22, height: 12 +Child: 89, type: 6, width: 8, height: 9 +Child: 90, type: 6, width: 8, height: 9 +Child: 91, type: 6, width: 8, height: 9 +Child: 92, type: 6, width: 8, height: 9 +Child: 93, type: 5, width: 26, height: 23 +Child: 94, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/358.txt b/server508/lists/interfaces/358.txt new file mode 100644 index 0000000..e7331d4 --- /dev/null +++ b/server508/lists/interfaces/358.txt @@ -0,0 +1,60 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 13, height: 14 +Child: 2, type: 6, width: 29, height: 16 +Child: 3, type: 6, width: 29, height: 16 +Child: 4, type: 6, width: 12, height: 12 +Child: 5, type: 6, width: 16, height: 26 +Child: 6, type: 6, width: 16, height: 26 +Child: 7, type: 6, width: 16, height: 26 +Child: 8, type: 6, width: 12, height: 12 +Child: 9, type: 6, width: 29, height: 16 +Child: 10, type: 6, width: 16, height: 26 +Child: 11, type: 6, width: 98, height: 85 +Child: 12, type: 6, width: 87, height: 98 +Child: 13, type: 6, width: 99, height: 85 +Child: 14, type: 6, width: 29, height: 16 +Child: 15, type: 6, width: 29, height: 16 +Child: 16, type: 6, width: 37, height: 37 +Child: 17, type: 6, width: 86, height: 98 +Child: 18, type: 6, width: 16, height: 26 +Child: 19, type: 6, width: 16, height: 26 +Child: 20, type: 6, width: 16, height: 26 +Child: 21, type: 6, width: 29, height: 16 +Child: 22, type: 6, width: 29, height: 16 +Child: 23, type: 6, width: 16, height: 26 +Child: 24, type: 6, width: 29, height: 16 +Child: 25, type: 6, width: 13, height: 14 +Child: 26, type: 6, width: 20, height: 26 +Child: 27, type: 6, width: 20, height: 26 +Child: 28, type: 6, width: 16, height: 1 +Child: 29, type: 6, width: 16, height: 1 +Child: 30, type: 6, width: 16, height: 26 +Child: 31, type: 6, width: 16, height: 26 +Child: 32, type: 6, width: 16, height: 26 +Child: 33, type: 6, width: 19, height: 20 +Child: 34, type: 6, width: 16, height: 26 +Child: 35, type: 6, width: 19, height: 20 +Child: 36, type: 6, width: 16, height: 1 +Child: 37, type: 6, width: 20, height: 20 +Child: 38, type: 6, width: 16, height: 26 +Child: 39, type: 6, width: 16, height: 26 +Child: 40, type: 6, width: 16, height: 26 +Child: 41, type: 6, width: 20, height: 20 +Child: 42, type: 6, width: 16, height: 26 +Child: 43, type: 6, width: 20, height: 26 +Child: 44, type: 6, width: 20, height: 26 +Child: 45, type: 6, width: 16, height: 26 +Child: 46, type: 6, width: 20, height: 26 +Child: 47, type: 6, width: 20, height: 26 +Child: 48, type: 6, width: 20, height: 26 +Child: 49, type: 6, width: 13, height: 14 +Child: 50, type: 5, width: 26, height: 23 +Child: 51, type: 6, width: 16, height: 26 +Child: 52, type: 6, width: 13, height: 14 +Child: 53, type: 6, width: 12, height: 12 +Child: 54, type: 6, width: 13, height: 14 +Child: 55, type: 6, width: 16, height: 26 +Child: 56, type: 6, width: 12, height: 12 +Child: 57, type: 6, width: 29, height: 16 +Child: 58, type: 6, width: 29, height: 16 +Child: 59, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/359.txt b/server508/lists/interfaces/359.txt new file mode 100644 index 0000000..453d3ab --- /dev/null +++ b/server508/lists/interfaces/359.txt @@ -0,0 +1,125 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 29, height: 16 +Child: 2, type: 6, width: 16, height: 28 +Child: 3, type: 6, width: 16, height: 28 +Child: 4, type: 6, width: 29, height: 16 +Child: 5, type: 6, width: 29, height: 16 +Child: 6, type: 6, width: 16, height: 28 +Child: 7, type: 6, width: 98, height: 85 +Child: 8, type: 6, width: 87, height: 98 +Child: 9, type: 6, width: 29, height: 16 +Child: 10, type: 6, width: 99, height: 85 +Child: 11, type: 6, width: 16, height: 28 +Child: 12, type: 6, width: 29, height: 16 +Child: 13, type: 6, width: 86, height: 98 +Child: 14, type: 6, width: 29, height: 16 +Child: 15, type: 6, width: 29, height: 16 +Child: 16, type: 6, width: 29, height: 16 +Child: 17, type: 6, width: 29, height: 16 +Child: 18, type: 6, width: 29, height: 16 +Child: 19, type: 6, width: 23, height: 16 +Child: 20, type: 6, width: 23, height: 17 +Child: 21, type: 6, width: 23, height: 16 +Child: 22, type: 6, width: 23, height: 16 +Child: 23, type: 6, width: 23, height: 16 +Child: 24, type: 6, width: 29, height: 16 +Child: 25, type: 6, width: 29, height: 16 +Child: 26, type: 6, width: 16, height: 28 +Child: 27, type: 6, width: 16, height: 28 +Child: 28, type: 6, width: 29, height: 16 +Child: 29, type: 6, width: 29, height: 16 +Child: 30, type: 6, width: 29, height: 16 +Child: 31, type: 6, width: 29, height: 16 +Child: 32, type: 6, width: 29, height: 16 +Child: 33, type: 6, width: 16, height: 28 +Child: 34, type: 6, width: 16, height: 28 +Child: 35, type: 6, width: 16, height: 28 +Child: 36, type: 6, width: 16, height: 28 +Child: 37, type: 6, width: 29, height: 16 +Child: 38, type: 6, width: 29, height: 16 +Child: 39, type: 6, width: 29, height: 16 +Child: 40, type: 6, width: 16, height: 28 +Child: 41, type: 6, width: 16, height: 28 +Child: 42, type: 6, width: 16, height: 28 +Child: 43, type: 6, width: 16, height: 28 +Child: 44, type: 6, width: 16, height: 28 +Child: 45, type: 6, width: 16, height: 28 +Child: 46, type: 6, width: 16, height: 28 +Child: 47, type: 6, width: 16, height: 28 +Child: 48, type: 6, width: 16, height: 28 +Child: 49, type: 6, width: 16, height: 28 +Child: 50, type: 6, width: 29, height: 16 +Child: 51, type: 6, width: 29, height: 16 +Child: 52, type: 6, width: 16, height: 28 +Child: 53, type: 6, width: 16, height: 28 +Child: 54, type: 6, width: 16, height: 28 +Child: 55, type: 6, width: 16, height: 28 +Child: 56, type: 6, width: 29, height: 16 +Child: 57, type: 6, width: 29, height: 16 +Child: 58, type: 6, width: 29, height: 16 +Child: 59, type: 6, width: 35, height: 37 +Child: 60, type: 6, width: 33, height: 35 +Child: 61, type: 6, width: 35, height: 33 +Child: 62, type: 6, width: 35, height: 33 +Child: 63, type: 6, width: 33, height: 33 +Child: 64, type: 6, width: 31, height: 33 +Child: 65, type: 6, width: 36, height: 26 +Child: 66, type: 6, width: 38, height: 33 +Child: 67, type: 6, width: 30, height: 28 +Child: 68, type: 6, width: 15, height: 11 +Child: 69, type: 6, width: 17, height: 13 +Child: 70, type: 6, width: 17, height: 13 +Child: 71, type: 6, width: 17, height: 13 +Child: 72, type: 6, width: 15, height: 18 +Child: 73, type: 6, width: 14, height: 17 +Child: 74, type: 6, width: 12, height: 15 +Child: 75, type: 6, width: 13, height: 13 +Child: 76, type: 6, width: 13, height: 13 +Child: 77, type: 6, width: 16, height: 16 +Child: 78, type: 6, width: 14, height: 13 +Child: 79, type: 6, width: 14, height: 13 +Child: 80, type: 6, width: 14, height: 13 +Child: 81, type: 6, width: 12, height: 14 +Child: 82, type: 6, width: 12, height: 15 +Child: 83, type: 6, width: 12, height: 14 +Child: 84, type: 6, width: 14, height: 13 +Child: 85, type: 6, width: 16, height: 14 +Child: 86, type: 6, width: 18, height: 16 +Child: 87, type: 6, width: 17, height: 14 +Child: 88, type: 6, width: 13, height: 13 +Child: 89, type: 6, width: 16, height: 12 +Child: 90, type: 6, width: 15, height: 11 +Child: 91, type: 6, width: 13, height: 13 +Child: 92, type: 6, width: 15, height: 16 +Child: 93, type: 6, width: 16, height: 17 +Child: 94, type: 6, width: 15, height: 16 +Child: 95, type: 6, width: 16, height: 12 +Child: 96, type: 6, width: 14, height: 13 +Child: 97, type: 6, width: 16, height: 18 +Child: 98, type: 6, width: 13, height: 17 +Child: 99, type: 6, width: 15, height: 15 +Child: 100, type: 6, width: 15, height: 15 +Child: 101, type: 6, width: 15, height: 12 +Child: 102, type: 6, width: 18, height: 15 +Child: 103, type: 6, width: 15, height: 12 +Child: 104, type: 6, width: 14, height: 14 +Child: 105, type: 6, width: 17, height: 14 +Child: 106, type: 6, width: 15, height: 15 +Child: 107, type: 6, width: 13, height: 13 +Child: 108, type: 6, width: 12, height: 15 +Child: 109, type: 6, width: 13, height: 16 +Child: 110, type: 6, width: 12, height: 13 +Child: 111, type: 6, width: 15, height: 14 +Child: 112, type: 6, width: 13, height: 17 +Child: 113, type: 6, width: 29, height: 16 +Child: 114, type: 6, width: 29, height: 16 +Child: 115, type: 6, width: 15, height: 14 +Child: 116, type: 6, width: 18, height: 16 +Child: 117, type: 6, width: 17, height: 13 +Child: 118, type: 6, width: 15, height: 15 +Child: 119, type: 6, width: 16, height: 18 +Child: 120, type: 6, width: 14, height: 15 +Child: 121, type: 6, width: 17, height: 13 +Child: 122, type: 6, width: 14, height: 11 +Child: 123, type: 5, width: 26, height: 23 +Child: 124, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/36.txt b/server508/lists/interfaces/36.txt new file mode 100644 index 0000000..1062d87 --- /dev/null +++ b/server508/lists/interfaces/36.txt @@ -0,0 +1,60 @@ +Child: 0, type: 5, width: 483, height: 297 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 43, height: 243 +Child: 3, type: 5, width: 34, height: 249 +Child: 4, message: Insert a very long name here! +Child: 5, type: 5, width: 448, height: 42 +Child: 6, type: 5, width: 443, height: 42 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, message: vs +Child: 10, message: Insert a very long name here! +Child: 11, type: 5, width: 38, height: 289 +Child: 12, type: 5, width: 181, height: 34 +Child: 13, message: Turn: +Child: 14, type: 6, width: 33, height: 91 +Child: 15, type: 0, width: 122, height: 42 +Child: 16, type: 0, width: 122, height: 43 +Child: 17, message: Runelink +Child: 18, type: 3, width: 110, height: 31 +Child: 19, message: Resign +Child: 20, type: 3, width: 110, height: 31 +Child: 21, message: Offer draw +Child: 22, type: 5, width: 79, height: 32 +Child: 23, type: 5, width: 85, height: 34 +Child: 24, message: Name +Child: 25, type: 5, width: 79, height: 37 +Child: 26, type: 5, width: 25, height: 30 +Child: 27, type: 5, width: 25, height: 30 +Child: 28, type: 5, width: 25, height: 30 +Child: 29, type: 5, width: 25, height: 30 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 25, height: 30 +Child: 33, type: 5, width: 80, height: 33 +Child: 34, type: 5, width: 25, height: 30 +Child: 35, type: 6, width: 299, height: 252 +Child: 36, type: 6, width: 1, height: 1 +Child: 37, message: +Child: 38, message: +Child: 39, type: 5, width: 32, height: 207 +Child: 40, type: 5, width: 32, height: 207 +Child: 41, type: 5, width: 32, height: 207 +Child: 42, type: 5, width: 32, height: 207 +Child: 43, type: 5, width: 32, height: 207 +Child: 44, type: 5, width: 32, height: 207 +Child: 45, type: 5, width: 32, height: 207 +Child: 46, message: +Child: 47, type: 0, width: 78, height: 42 +Child: 48, type: 3, width: 66, height: 31 +Child: 49, message: Close +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 25, height: 30 +Child: 52, type: 5, width: 25, height: 30 +Child: 53, type: 5, width: 25, height: 30 +Child: 54, type: 5, width: 25, height: 30 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 6, width: 20, height: 19 +Child: 57, type: 6, width: 20, height: 19 +Child: 58, type: 5, width: 25, height: 30 +Child: 59, type: 0, width: 242, height: 207 diff --git a/server508/lists/interfaces/360.txt b/server508/lists/interfaces/360.txt new file mode 100644 index 0000000..2fc22b5 --- /dev/null +++ b/server508/lists/interfaces/360.txt @@ -0,0 +1,85 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 36, height: 35 +Child: 2, type: 6, width: 24, height: 22 +Child: 3, type: 6, width: 98, height: 85 +Child: 4, type: 6, width: 87, height: 98 +Child: 5, type: 6, width: 16, height: 16 +Child: 6, type: 6, width: 15, height: 13 +Child: 7, type: 6, width: 18, height: 14 +Child: 8, type: 6, width: 86, height: 98 +Child: 9, type: 6, width: 15, height: 14 +Child: 10, type: 6, width: 15, height: 14 +Child: 11, type: 6, width: 15, height: 17 +Child: 12, type: 6, width: 14, height: 14 +Child: 13, type: 6, width: 23, height: 15 +Child: 14, type: 6, width: 23, height: 16 +Child: 15, type: 6, width: 23, height: 17 +Child: 16, type: 6, width: 27, height: 15 +Child: 17, type: 6, width: 23, height: 16 +Child: 18, type: 6, width: 14, height: 16 +Child: 19, type: 6, width: 12, height: 15 +Child: 20, type: 6, width: 14, height: 16 +Child: 21, type: 6, width: 12, height: 14 +Child: 22, type: 6, width: 15, height: 18 +Child: 23, type: 6, width: 16, height: 16 +Child: 24, type: 6, width: 16, height: 16 +Child: 25, type: 6, width: 13, height: 13 +Child: 26, type: 6, width: 13, height: 13 +Child: 27, type: 6, width: 17, height: 13 +Child: 28, type: 6, width: 17, height: 13 +Child: 29, type: 6, width: 17, height: 13 +Child: 30, type: 6, width: 14, height: 17 +Child: 31, type: 6, width: 15, height: 11 +Child: 32, type: 6, width: 16, height: 13 +Child: 33, type: 6, width: 16, height: 12 +Child: 34, type: 6, width: 13, height: 11 +Child: 35, type: 6, width: 16, height: 18 +Child: 36, type: 6, width: 13, height: 16 +Child: 37, type: 6, width: 12, height: 15 +Child: 38, type: 6, width: 16, height: 17 +Child: 39, type: 6, width: 15, height: 17 +Child: 40, type: 6, width: 14, height: 14 +Child: 41, type: 6, width: 14, height: 15 +Child: 42, type: 6, width: 14, height: 14 +Child: 43, type: 6, width: 18, height: 16 +Child: 44, type: 6, width: 16, height: 16 +Child: 45, type: 6, width: 12, height: 14 +Child: 46, type: 6, width: 16, height: 16 +Child: 47, type: 6, width: 16, height: 16 +Child: 48, type: 6, width: 12, height: 13 +Child: 49, type: 6, width: 16, height: 17 +Child: 50, type: 6, width: 18, height: 21 +Child: 51, type: 6, width: 18, height: 21 +Child: 52, type: 6, width: 18, height: 21 +Child: 53, type: 6, width: 18, height: 21 +Child: 54, type: 6, width: 18, height: 21 +Child: 55, type: 6, width: 18, height: 21 +Child: 56, type: 6, width: 14, height: 17 +Child: 57, type: 6, width: 14, height: 17 +Child: 58, type: 6, width: 14, height: 17 +Child: 59, type: 6, width: 14, height: 17 +Child: 60, type: 6, width: 14, height: 17 +Child: 61, type: 6, width: 14, height: 17 +Child: 62, type: 6, width: 14, height: 17 +Child: 63, type: 6, width: 14, height: 17 +Child: 64, type: 6, width: 14, height: 17 +Child: 65, type: 6, width: 99, height: 85 +Child: 66, type: 6, width: 14, height: 17 +Child: 67, type: 6, width: 14, height: 17 +Child: 68, type: 6, width: 14, height: 17 +Child: 69, type: 6, width: 14, height: 17 +Child: 70, type: 6, width: 14, height: 17 +Child: 71, type: 6, width: 14, height: 17 +Child: 72, type: 6, width: 14, height: 17 +Child: 73, type: 6, width: 14, height: 17 +Child: 74, type: 6, width: 14, height: 17 +Child: 75, type: 5, width: 26, height: 23 +Child: 76, type: 6, width: 14, height: 17 +Child: 77, type: 6, width: 42, height: 42 +Child: 78, type: 6, width: 20, height: 20 +Child: 79, type: 6, width: 14, height: 17 +Child: 80, type: 6, width: 20, height: 11 +Child: 81, type: 6, width: 9, height: 15 +Child: 82, type: 6, width: 11, height: 19 +Child: 83, type: 6, width: 21, height: 20 +Child: 84, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/361.txt b/server508/lists/interfaces/361.txt new file mode 100644 index 0000000..93745e8 --- /dev/null +++ b/server508/lists/interfaces/361.txt @@ -0,0 +1,119 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 14, height: 14 +Child: 2, type: 6, width: 13, height: 13 +Child: 3, type: 6, width: 35, height: 33 +Child: 4, type: 6, width: 32, height: 40 +Child: 5, type: 6, width: 33, height: 30 +Child: 6, type: 6, width: 35, height: 33 +Child: 7, type: 6, width: 30, height: 40 +Child: 8, type: 6, width: 16, height: 16 +Child: 9, type: 6, width: 13, height: 22 +Child: 10, type: 6, width: 98, height: 85 +Child: 11, type: 6, width: 87, height: 98 +Child: 12, type: 6, width: 23, height: 13 +Child: 13, type: 6, width: 99, height: 85 +Child: 14, type: 6, width: 13, height: 22 +Child: 15, type: 6, width: 86, height: 98 +Child: 16, type: 6, width: 13, height: 22 +Child: 17, type: 6, width: 13, height: 22 +Child: 18, type: 6, width: 13, height: 16 +Child: 19, type: 6, width: 15, height: 15 +Child: 20, type: 6, width: 15, height: 17 +Child: 21, type: 6, width: 23, height: 16 +Child: 22, type: 6, width: 23, height: 17 +Child: 23, type: 6, width: 23, height: 16 +Child: 24, type: 6, width: 16, height: 17 +Child: 25, type: 6, width: 15, height: 17 +Child: 26, type: 6, width: 16, height: 16 +Child: 27, type: 6, width: 16, height: 16 +Child: 28, type: 6, width: 12, height: 15 +Child: 29, type: 6, width: 14, height: 18 +Child: 30, type: 6, width: 16, height: 16 +Child: 31, type: 6, width: 11, height: 14 +Child: 32, type: 6, width: 15, height: 17 +Child: 33, type: 6, width: 18, height: 14 +Child: 34, type: 6, width: 18, height: 14 +Child: 35, type: 6, width: 17, height: 13 +Child: 36, type: 6, width: 17, height: 12 +Child: 37, type: 6, width: 16, height: 12 +Child: 38, type: 6, width: 15, height: 11 +Child: 39, type: 6, width: 17, height: 15 +Child: 40, type: 6, width: 16, height: 12 +Child: 41, type: 6, width: 17, height: 16 +Child: 42, type: 6, width: 17, height: 16 +Child: 43, type: 6, width: 15, height: 14 +Child: 44, type: 6, width: 15, height: 15 +Child: 45, type: 6, width: 15, height: 12 +Child: 46, type: 6, width: 16, height: 17 +Child: 47, type: 6, width: 15, height: 11 +Child: 48, type: 6, width: 18, height: 15 +Child: 49, type: 6, width: 16, height: 16 +Child: 50, type: 6, width: 15, height: 17 +Child: 51, type: 6, width: 18, height: 16 +Child: 52, type: 6, width: 18, height: 16 +Child: 53, type: 6, width: 19, height: 18 +Child: 54, type: 6, width: 18, height: 18 +Child: 55, type: 6, width: 16, height: 16 +Child: 56, type: 6, width: 23, height: 13 +Child: 57, type: 6, width: 18, height: 18 +Child: 58, type: 6, width: 18, height: 18 +Child: 59, type: 6, width: 23, height: 13 +Child: 60, type: 6, width: 35, height: 37 +Child: 61, type: 6, width: 23, height: 13 +Child: 62, type: 6, width: 13, height: 22 +Child: 63, type: 6, width: 13, height: 22 +Child: 64, type: 6, width: 13, height: 22 +Child: 65, type: 6, width: 12, height: 21 +Child: 66, type: 6, width: 13, height: 22 +Child: 67, type: 6, width: 13, height: 22 +Child: 68, type: 6, width: 12, height: 21 +Child: 69, type: 6, width: 23, height: 13 +Child: 70, type: 6, width: 23, height: 13 +Child: 71, type: 6, width: 13, height: 22 +Child: 72, type: 6, width: 13, height: 22 +Child: 73, type: 6, width: 13, height: 22 +Child: 74, type: 6, width: 13, height: 22 +Child: 75, type: 6, width: 13, height: 22 +Child: 76, type: 6, width: 13, height: 22 +Child: 77, type: 6, width: 23, height: 13 +Child: 78, type: 6, width: 23, height: 13 +Child: 79, type: 6, width: 23, height: 13 +Child: 80, type: 6, width: 13, height: 22 +Child: 81, type: 6, width: 13, height: 22 +Child: 82, type: 6, width: 23, height: 13 +Child: 83, type: 6, width: 23, height: 13 +Child: 84, type: 6, width: 23, height: 13 +Child: 85, type: 6, width: 23, height: 13 +Child: 86, type: 6, width: 13, height: 22 +Child: 87, type: 6, width: 13, height: 22 +Child: 88, type: 6, width: 13, height: 22 +Child: 89, type: 6, width: 9, height: 15 +Child: 90, type: 6, width: 9, height: 15 +Child: 91, type: 6, width: 8, height: 13 +Child: 92, type: 6, width: 8, height: 13 +Child: 93, type: 6, width: 16, height: 9 +Child: 94, type: 6, width: 16, height: 9 +Child: 95, type: 6, width: 16, height: 9 +Child: 96, type: 6, width: 16, height: 9 +Child: 97, type: 6, width: 13, height: 22 +Child: 98, type: 6, width: 18, height: 10 +Child: 99, type: 6, width: 13, height: 22 +Child: 100, type: 6, width: 13, height: 22 +Child: 101, type: 6, width: 9, height: 15 +Child: 102, type: 6, width: 18, height: 10 +Child: 103, type: 6, width: 16, height: 16 +Child: 104, type: 6, width: 16, height: 16 +Child: 105, type: 6, width: 13, height: 16 +Child: 106, type: 6, width: 15, height: 17 +Child: 107, type: 6, width: 14, height: 15 +Child: 108, type: 6, width: 16, height: 17 +Child: 109, type: 6, width: 14, height: 16 +Child: 110, type: 6, width: 16, height: 17 +Child: 111, type: 6, width: 16, height: 17 +Child: 112, type: 6, width: 15, height: 17 +Child: 113, type: 6, width: 16, height: 17 +Child: 114, type: 6, width: 14, height: 16 +Child: 115, type: 6, width: 16, height: 17 +Child: 116, type: 6, width: 23, height: 17 +Child: 117, type: 5, width: 26, height: 23 +Child: 118, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/362.txt b/server508/lists/interfaces/362.txt new file mode 100644 index 0000000..86762cd --- /dev/null +++ b/server508/lists/interfaces/362.txt @@ -0,0 +1,86 @@ +Child: 0, type: 6, width: 325, height: 310 +Child: 1, type: 6, width: 37, height: 28 +Child: 2, type: 6, width: 42, height: 37 +Child: 3, type: 6, width: 18, height: 15 +Child: 4, type: 6, width: 16, height: 17 +Child: 5, type: 6, width: 13, height: 22 +Child: 6, type: 6, width: 32, height: 30 +Child: 7, type: 6, width: 13, height: 22 +Child: 8, type: 6, width: 19, height: 18 +Child: 9, type: 6, width: 23, height: 13 +Child: 10, type: 6, width: 23, height: 13 +Child: 11, type: 6, width: 23, height: 13 +Child: 12, type: 6, width: 98, height: 85 +Child: 13, type: 6, width: 87, height: 98 +Child: 14, type: 6, width: 23, height: 13 +Child: 15, type: 6, width: 99, height: 85 +Child: 16, type: 6, width: 13, height: 22 +Child: 17, type: 6, width: 86, height: 98 +Child: 18, type: 6, width: 13, height: 22 +Child: 19, type: 6, width: 18, height: 18 +Child: 20, type: 6, width: 23, height: 13 +Child: 21, type: 6, width: 23, height: 13 +Child: 22, type: 6, width: 23, height: 13 +Child: 23, type: 6, width: 23, height: 16 +Child: 24, type: 6, width: 23, height: 17 +Child: 25, type: 6, width: 23, height: 16 +Child: 26, type: 6, width: 23, height: 13 +Child: 27, type: 6, width: 23, height: 13 +Child: 28, type: 6, width: 13, height: 22 +Child: 29, type: 6, width: 23, height: 13 +Child: 30, type: 6, width: 23, height: 13 +Child: 31, type: 6, width: 18, height: 10 +Child: 32, type: 6, width: 8, height: 13 +Child: 33, type: 6, width: 11, height: 11 +Child: 34, type: 6, width: 11, height: 10 +Child: 35, type: 6, width: 23, height: 13 +Child: 36, type: 6, width: 8, height: 13 +Child: 37, type: 6, width: 23, height: 13 +Child: 38, type: 6, width: 23, height: 13 +Child: 39, type: 6, width: 23, height: 13 +Child: 40, type: 6, width: 18, height: 18 +Child: 41, type: 6, width: 23, height: 13 +Child: 42, type: 6, width: 19, height: 18 +Child: 43, type: 6, width: 23, height: 13 +Child: 44, type: 6, width: 13, height: 22 +Child: 45, type: 6, width: 13, height: 22 +Child: 46, type: 6, width: 18, height: 16 +Child: 47, type: 6, width: 17, height: 13 +Child: 48, type: 6, width: 15, height: 17 +Child: 49, type: 6, width: 13, height: 14 +Child: 50, type: 6, width: 13, height: 13 +Child: 51, type: 6, width: 18, height: 22 +Child: 52, type: 6, width: 13, height: 16 +Child: 53, type: 6, width: 17, height: 14 +Child: 54, type: 6, width: 13, height: 14 +Child: 55, type: 6, width: 17, height: 15 +Child: 56, type: 6, width: 17, height: 16 +Child: 57, type: 6, width: 17, height: 15 +Child: 58, type: 6, width: 16, height: 15 +Child: 59, type: 6, width: 15, height: 15 +Child: 60, type: 6, width: 26, height: 25 +Child: 61, type: 6, width: 15, height: 15 +Child: 62, type: 6, width: 17, height: 15 +Child: 63, type: 6, width: 16, height: 15 +Child: 64, type: 6, width: 17, height: 16 +Child: 65, type: 6, width: 18, height: 15 +Child: 66, type: 6, width: 13, height: 17 +Child: 67, type: 6, width: 18, height: 15 +Child: 68, type: 6, width: 17, height: 13 +Child: 69, type: 6, width: 15, height: 11 +Child: 70, type: 6, width: 18, height: 13 +Child: 71, type: 6, width: 17, height: 14 +Child: 72, type: 6, width: 17, height: 14 +Child: 73, type: 6, width: 18, height: 14 +Child: 74, type: 6, width: 23, height: 16 +Child: 75, type: 6, width: 23, height: 17 +Child: 76, type: 6, width: 23, height: 15 +Child: 77, type: 6, width: 18, height: 22 +Child: 78, type: 6, width: 18, height: 22 +Child: 79, type: 6, width: 18, height: 22 +Child: 80, type: 6, width: 18, height: 22 +Child: 81, type: 6, width: 17, height: 21 +Child: 82, type: 6, width: 23, height: 17 +Child: 83, type: 6, width: 17, height: 13 +Child: 84, type: 5, width: 26, height: 23 +Child: 85, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/363.txt b/server508/lists/interfaces/363.txt new file mode 100644 index 0000000..3b9d0f7 --- /dev/null +++ b/server508/lists/interfaces/363.txt @@ -0,0 +1,10 @@ +Child: 0, type: 6, width: 30, height: 27 +Child: 1, type: 6, width: 204, height: 203 +Child: 2, type: 0, width: 42, height: 47 +Child: 3, type: 0, width: 210, height: 210 +Child: 4, type: 6, width: 211, height: 210 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 183, height: 183 +Child: 7, message: Hint +Child: 8, type: 6, width: 204, height: 203 +Child: 9, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/364.txt b/server508/lists/interfaces/364.txt new file mode 100644 index 0000000..122c1f6 --- /dev/null +++ b/server508/lists/interfaces/364.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 330, height: 313 +Child: 2, type: 6, width: 99, height: 99 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 128, height: 130 +Child: 5, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/365.txt b/server508/lists/interfaces/365.txt new file mode 100644 index 0000000..8b07876 --- /dev/null +++ b/server508/lists/interfaces/365.txt @@ -0,0 +1,35 @@ +Child: 0, type: 5, width: 16391, height: 16391 +Child: 1, type: 3, width: 16391, height: 16391 +Child: 2, type: 6, width: 132, height: 246 +Child: 3, type: 6, width: 26, height: 48 +Child: 4, type: 6, width: 27, height: 45 +Child: 5, type: 6, width: 47, height: 52 +Child: 6, type: 6, width: 165, height: 405 +Child: 7, type: 6, width: 44, height: 43 +Child: 8, type: 6, width: 46, height: 38 +Child: 9, type: 6, width: 266, height: 287 +Child: 10, type: 6, width: 109, height: 243 +Child: 11, type: 6, width: 266, height: 317 +Child: 12, message: Get Location +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 0, width: 32, height: 32 +Child: 15, type: 0, width: 512, height: 334 +Child: 16, type: 0, width: 16391, height: 16391 +Child: 17, type: 0, width: 16391, height: 16391 +Child: 18, type: 5, width: 32, height: 334 +Child: 19, type: 5, width: 462, height: 32 +Child: 20, type: 5, width: 512, height: 32 +Child: 21, type: 5, width: 32, height: 334 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 0, width: 8192, height: 16391 +Child: 27, type: 0, width: 8188, height: 16391 +Child: 28, type: 0, width: 16391, height: 8192 +Child: 29, type: 0, width: 16391, height: 8182 +Child: 30, type: 0, width: 512, height: 334 +Child: 31, type: 5, width: 256, height: 16384 +Child: 32, type: 5, width: 256, height: 16391 +Child: 33, type: 5, width: 16391, height: 167 +Child: 34, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/366.txt b/server508/lists/interfaces/366.txt new file mode 100644 index 0000000..6b14049 --- /dev/null +++ b/server508/lists/interfaces/366.txt @@ -0,0 +1,30 @@ +Child: 0, type: 3, width: 21, height: 10 +Child: 1, type: 3, width: 21, height: 10 +Child: 2, type: 3, width: 21, height: 10 +Child: 3, type: 3, width: 21, height: 10 +Child: 4, type: 3, width: 21, height: 10 +Child: 5, type: 3, width: 21, height: 10 +Child: 6, type: 3, width: 21, height: 10 +Child: 7, type: 3, width: 21, height: 10 +Child: 8, type: 3, width: 21, height: 10 +Child: 9, type: 3, width: 21, height: 10 +Child: 10, type: 3, width: 21, height: 10 +Child: 11, type: 3, width: 21, height: 10 +Child: 12, type: 3, width: 21, height: 10 +Child: 13, type: 3, width: 21, height: 10 +Child: 14, type: 3, width: 21, height: 10 +Child: 15, type: 3, width: 21, height: 10 +Child: 16, type: 3, width: 21, height: 10 +Child: 17, type: 3, width: 21, height: 10 +Child: 18, type: 3, width: 21, height: 10 +Child: 19, type: 3, width: 21, height: 10 +Child: 20, type: 0, width: 475, height: 62 +Child: 21, message: Water: +Child: 22, message: Net: +Child: 23, message: Catch: +Child: 24, message: Time left: +Child: 25, type: 3, width: 421, height: 10 +Child: 26, message: Okay +Child: 27, message: Ripped! +Child: 28, message: Nothing +Child: 29, message: 10 mins diff --git a/server508/lists/interfaces/367.txt b/server508/lists/interfaces/367.txt new file mode 100644 index 0000000..bc5d10f --- /dev/null +++ b/server508/lists/interfaces/367.txt @@ -0,0 +1,92 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +inventory type: 40 slots, width: 8, height: 5, 75 +Child: 76, message: Trawler Catch +Child: 77, message: Dump Items +Child: 78, message: Click Dump Items to close the window and discard remaining items. +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/368.txt b/server508/lists/interfaces/368.txt new file mode 100644 index 0000000..c218a80 --- /dev/null +++ b/server508/lists/interfaces/368.txt @@ -0,0 +1,12 @@ +Child: 0, message: Body Text +Child: 1, type: 6, width: 482, height: 303 +Child: 2, type: 6, width: 57, height: 36 +Child: 3, type: 6, width: 56, height: 42 +Child: 4, type: 6, width: 50, height: 63 +Child: 5, message: Use rope to repair the Trawler's nets. +Child: 6, message: Use Swamp Paste to repair leaks in the Ship's hull. +Child: 7, message: If all else fails you can always try and bail the water out as well! +Child: 8, message: How to play: +Child: 9, type: 3, width: 200, height: 1 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/369.txt b/server508/lists/interfaces/369.txt new file mode 100644 index 0000000..601de5b --- /dev/null +++ b/server508/lists/interfaces/369.txt @@ -0,0 +1,43 @@ +Child: 0, type: 3, width: 508, height: 172 +Child: 1, type: 0, width: 491, height: 39 +Child: 2, type: 5, width: 481, height: 53 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 439, height: 35 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 440, height: 22 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, message: A +Child: 14, message: A +Child: 15, message: A +Child: 16, message: A +Child: 17, type: 5, width: 45, height: 36 +Child: 18, type: 5, width: 45, height: 36 +Child: 19, type: 5, width: 45, height: 36 +Child: 20, type: 5, width: 45, height: 36 +Child: 21, type: 5, width: 45, height: 36 +Child: 22, type: 5, width: 45, height: 36 +Child: 23, type: 5, width: 45, height: 36 +Child: 24, type: 5, width: 45, height: 36 +Child: 25, message: Combination Lock Door +Child: 26, type: 3, width: 128, height: 32 +Child: 27, message: Enter +Child: 28, type: 5, width: 26, height: 23 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 87, height: 31 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 91, height: 31 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 447, height: 23 +Child: 38, type: 5, width: 31, height: 114 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 450, height: 19 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 36, height: 115 diff --git a/server508/lists/interfaces/37.txt b/server508/lists/interfaces/37.txt new file mode 100644 index 0000000..1757b83 --- /dev/null +++ b/server508/lists/interfaces/37.txt @@ -0,0 +1,118 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 25, height: 30 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 25, height: 30 +Child: 52, type: 5, width: 25, height: 30 +Child: 53, type: 5, width: 25, height: 30 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 0, width: 100, height: 43 +Child: 66, message: Runelink: Options +Child: 67, type: 3, width: 89, height: 31 +Child: 68, message: Challenge +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 25, height: 30 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: 30 seconds +Child: 76, type: 5, width: 14, height: 15 +Child: 77, type: 0, width: 114, height: 97 +Child: 78, type: 5, width: 14, height: 15 +Child: 79, type: 5, width: 14, height: 15 +Child: 80, type: 5, width: 14, height: 15 +Child: 81, message: 1 minute +Child: 82, message: 2 minutes +Child: 83, message: 15 seconds +Child: 84, message: Time per move: +Child: 85, type: 0, width: 191, height: 179 +Child: 86, type: 5, width: 14, height: 15 +Child: 87, type: 6, width: 34, height: 32 +Child: 88, message: Choose piece: +Child: 89, type: 6, width: 34, height: 32 +Child: 90, type: 6, width: 34, height: 32 +Child: 91, type: 6, width: 34, height: 32 +Child: 92, type: 6, width: 34, height: 32 +Child: 93, type: 6, width: 34, height: 32 +Child: 94, type: 6, width: 34, height: 32 +Child: 95, type: 6, width: 34, height: 32 +Child: 96, type: 6, width: 34, height: 32 +Child: 97, type: 6, width: 34, height: 31 +Child: 98, type: 6, width: 34, height: 32 +Child: 99, type: 6, width: 34, height: 32 +Child: 100, type: 5, width: 14, height: 15 +Child: 101, type: 5, width: 14, height: 15 +Child: 102, type: 5, width: 14, height: 15 +Child: 103, type: 5, width: 14, height: 15 +Child: 104, type: 5, width: 14, height: 15 +Child: 105, type: 5, width: 14, height: 15 +Child: 106, type: 5, width: 14, height: 15 +Child: 107, type: 5, width: 14, height: 15 +Child: 108, type: 5, width: 14, height: 15 +Child: 109, type: 5, width: 15, height: 15 +Child: 110, type: 5, width: 14, height: 15 +Child: 111, message: Ranked +Child: 112, type: 5, width: 14, height: 15 +Child: 113, type: 5, width: 26, height: 23 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 0, width: 32, height: 32 +Child: 116, type: 5, width: 36, height: 36 +Child: 117, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/370.txt b/server508/lists/interfaces/370.txt new file mode 100644 index 0000000..421c440 --- /dev/null +++ b/server508/lists/interfaces/370.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 17575, height: 23749 +Child: 1, type: 6, width: 13991, height: 24190 diff --git a/server508/lists/interfaces/371.txt b/server508/lists/interfaces/371.txt new file mode 100644 index 0000000..e5f967a --- /dev/null +++ b/server508/lists/interfaces/371.txt @@ -0,0 +1,28 @@ +Child: 0, type: 0, width: 504, height: 66 +Child: 1, message: % Done +Child: 2, message: Tutorial Island Progress +Child: 3, type: 3, width: 421, height: 10 +Child: 4, type: 0, width: 512, height: 128 +Child: 5, type: 3, width: 21, height: 10 +Child: 6, type: 3, width: 21, height: 10 +Child: 7, type: 3, width: 21, height: 10 +Child: 8, type: 3, width: 21, height: 10 +Child: 9, type: 3, width: 21, height: 10 +Child: 10, type: 3, width: 21, height: 10 +Child: 11, type: 3, width: 21, height: 10 +Child: 12, type: 3, width: 21, height: 10 +Child: 13, type: 3, width: 21, height: 10 +Child: 14, type: 3, width: 21, height: 10 +Child: 15, type: 3, width: 21, height: 10 +Child: 16, type: 3, width: 21, height: 10 +Child: 17, type: 3, width: 21, height: 10 +Child: 18, type: 3, width: 21, height: 10 +Child: 19, type: 3, width: 21, height: 10 +Child: 20, type: 3, width: 21, height: 10 +Child: 21, type: 3, width: 21, height: 10 +Child: 22, type: 3, width: 21, height: 10 +Child: 23, type: 3, width: 21, height: 10 +Child: 24, type: 3, width: 21, height: 10 +Child: 25, type: 0, width: 512, height: 334 +Child: 26, type: 6, width: 480, height: 113 +Child: 27, message: Please follow the instructions below to advance in the tutorial. diff --git a/server508/lists/interfaces/372.txt b/server508/lists/interfaces/372.txt new file mode 100644 index 0000000..38b6301 --- /dev/null +++ b/server508/lists/interfaces/372.txt @@ -0,0 +1,5 @@ +Child: 0, message: Title +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 diff --git a/server508/lists/interfaces/373.txt b/server508/lists/interfaces/373.txt new file mode 100644 index 0000000..d0733c8 --- /dev/null +++ b/server508/lists/interfaces/373.txt @@ -0,0 +1,3 @@ +Child: 0, message: Current Champion: TzHaar-Xil-Huz +Child: 1, message: Foes Remaining: +Child: 2, type: 0, width: 191, height: 27 diff --git a/server508/lists/interfaces/374.txt b/server508/lists/interfaces/374.txt new file mode 100644 index 0000000..c20faa4 --- /dev/null +++ b/server508/lists/interfaces/374.txt @@ -0,0 +1,16 @@ +Child: 0, type: 5, width: 36, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, message: Stop Viewing +Child: 6, type: 6, width: 28, height: 28 +Child: 7, type: 6, width: 28, height: 28 +Child: 8, type: 6, width: 28, height: 28 +Child: 9, type: 6, width: 28, height: 28 +Child: 10, type: 6, width: 28, height: 28 +Child: 11, message: Centre +Child: 12, message: North-West +Child: 13, message: North-East +Child: 14, message: South-East +Child: 15, message: South-West diff --git a/server508/lists/interfaces/375.txt b/server508/lists/interfaces/375.txt new file mode 100644 index 0000000..6302cea --- /dev/null +++ b/server508/lists/interfaces/375.txt @@ -0,0 +1,4 @@ +Child: 0, type: 5, width: 91, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, message: Unmorph diff --git a/server508/lists/interfaces/376.txt b/server508/lists/interfaces/376.txt new file mode 100644 index 0000000..428b797 --- /dev/null +++ b/server508/lists/interfaces/376.txt @@ -0,0 +1,38 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 518, height: 388 +Child: 2, type: 6, width: 294, height: 454 +Child: 3, type: 6, width: 362, height: 359 +Child: 4, type: 6, width: 552, height: 551 +Child: 5, type: 6, width: 176, height: 176 +Child: 6, type: 6, width: 292, height: 157 +Child: 7, type: 0, width: 335, height: 259 +Child: 8, type: 6, width: 473, height: 255 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 32, height: 32 +Child: 11, type: 6, width: 3893, height: 769 +Child: 12, type: 6, width: 24, height: 24 +Child: 13, type: 6, width: 22, height: 24 +Child: 14, type: 6, width: 23, height: 22 +Child: 15, type: 6, width: 22, height: 21 +Child: 16, type: 6, width: 24, height: 22 +Child: 17, type: 6, width: 21, height: 22 +Child: 18, type: 6, width: 22, height: 21 +Child: 19, type: 0, width: 16391, height: 16391 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 5, width: 32, height: 334 +Child: 22, type: 5, width: 462, height: 32 +Child: 23, type: 5, width: 512, height: 32 +Child: 24, type: 5, width: 32, height: 334 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 0, width: 8192, height: 16391 +Child: 30, type: 0, width: 8188, height: 16391 +Child: 31, type: 0, width: 16391, height: 8192 +Child: 32, type: 0, width: 16391, height: 8182 +Child: 33, type: 0, width: 512, height: 334 +Child: 34, type: 5, width: 256, height: 16384 +Child: 35, type: 5, width: 256, height: 16391 +Child: 36, type: 5, width: 16391, height: 167 +Child: 37, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/377.txt b/server508/lists/interfaces/377.txt new file mode 100644 index 0000000..37273f1 --- /dev/null +++ b/server508/lists/interfaces/377.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 152, height: 97 +Child: 1, type: 6, width: 130, height: 73 +Child: 2, type: 0, width: 165, height: 20 +Child: 3, type: 0, width: 224, height: 73 +Child: 4, message: **** +Child: 5, message: * Tai Bwo Favour * diff --git a/server508/lists/interfaces/378.txt b/server508/lists/interfaces/378.txt new file mode 100644 index 0000000..72879f4 --- /dev/null +++ b/server508/lists/interfaces/378.txt @@ -0,0 +1,145 @@ +Child: 0, type: 0, width: 765, height: 503 +Child: 1, type: 5, width: 180, height: 38 +Child: 2, type: 3, width: 174, height: 29 +Child: 3, type: 3, width: 178, height: 33 +Child: 4, type: 5, width: 5, height: 26 +Child: 5, type: 5, width: 5, height: 26 +Child: 6, type: 5, width: 160, height: 26 +Child: 7, message: Credit +Child: 8, type: 5, width: 180, height: 38 +Child: 9, type: 3, width: 176, height: 29 +Child: 10, type: 3, width: 180, height: 33 +Child: 11, type: 5, width: 162, height: 26 +Child: 12, type: 5, width: 5, height: 26 +Child: 13, type: 5, width: 5, height: 26 +Child: 14, message: Message Centre +Child: 15, type: 5, width: 186, height: 154 +Child: 16, type: 3, width: 200, height: 182 +Child: 17, type: 3, width: 204, height: 186 +Child: 18, type: 3, width: 180, height: 48 +Child: 19, type: 5, width: 6, height: 6 +Child: 20, type: 5, width: 8, height: 172 +Child: 21, type: 5, width: 180, height: 8 +Child: 22, type: 5, width: 6, height: 64 +Child: 23, type: 5, width: 8, height: 8 +Child: 24, type: 5, width: 6, height: 6 +Child: 25, type: 5, width: 8, height: 8 +Child: 26, type: 5, width: 158, height: 64 +Child: 27, type: 5, width: 180, height: 8 +Child: 28, type: 5, width: 6, height: 64 +Child: 29, type: 5, width: 8, height: 172 +Child: 30, type: 5, width: 8, height: 8 +Child: 31, type: 5, width: 6, height: 6 +Child: 32, type: 5, width: 158, height: 6 +Child: 33, type: 5, width: 8, height: 8 +Child: 34, type: 5, width: 6, height: 6 +Child: 35, type: 5, width: 158, height: 6 +Child: 36, type: 5, width: 40, height: 28 +Child: 37, message: 1 unread message +Child: 38, message: Jagex staff will NEVER email you. We use the Message Centre on this website instead. +Child: 39, message: 1 +Child: 40, type: 3, width: 378, height: 53 +Child: 41, type: 3, width: 371, height: 49 +Child: 42, type: 5, width: 359, height: 45 +Child: 43, type: 5, width: 4, height: 45 +Child: 44, type: 5, width: 4, height: 45 +Child: 45, message: Click Here To Play +Child: 46, type: 3, width: 202, height: 94 +Child: 47, type: 3, width: 206, height: 98 +Child: 48, type: 3, width: 186, height: 75 +Child: 49, type: 5, width: 9, height: 9 +Child: 50, type: 5, width: 9, height: 72 +Child: 51, type: 5, width: 9, height: 9 +Child: 52, type: 5, width: 9, height: 72 +Child: 53, type: 5, width: 9, height: 9 +Child: 54, type: 5, width: 180, height: 9 +Child: 55, type: 5, width: 180, height: 9 +Child: 56, message: You have not yet set any recovery questions. +Child: 57, type: 5, width: 9, height: 9 +Child: 58, type: 5, width: 51, height: 51 +Child: 59, type: 3, width: 206, height: 97 +Child: 60, type: 3, width: 202, height: 94 +Child: 61, type: 3, width: 186, height: 75 +Child: 62, message: You do not have a bank pin. Please visit a bank if you would like one. +Child: 63, type: 5, width: 51, height: 51 +Child: 64, type: 5, width: 9, height: 9 +Child: 65, type: 5, width: 9, height: 72 +Child: 66, type: 5, width: 180, height: 9 +Child: 67, type: 5, width: 9, height: 72 +Child: 68, type: 5, width: 9, height: 9 +Child: 69, type: 5, width: 9, height: 9 +Child: 70, type: 5, width: 180, height: 9 +Child: 71, type: 5, width: 9, height: 9 +Child: 72, type: 5, width: 186, height: 154 +Child: 73, type: 3, width: 200, height: 192 +Child: 74, type: 3, width: 204, height: 196 +Child: 75, type: 3, width: 180, height: 48 +Child: 76, type: 5, width: 6, height: 6 +Child: 77, type: 5, width: 8, height: 172 +Child: 78, type: 5, width: 180, height: 8 +Child: 79, type: 5, width: 6, height: 64 +Child: 80, type: 5, width: 8, height: 8 +Child: 81, type: 5, width: 6, height: 6 +Child: 82, type: 5, width: 8, height: 8 +Child: 83, type: 5, width: 158, height: 64 +Child: 84, type: 5, width: 180, height: 8 +Child: 85, type: 5, width: 6, height: 64 +Child: 86, type: 5, width: 8, height: 172 +Child: 87, type: 5, width: 8, height: 8 +Child: 88, type: 5, width: 6, height: 6 +Child: 89, type: 5, width: 158, height: 6 +Child: 90, type: 5, width: 8, height: 8 +Child: 91, type: 5, width: 6, height: 6 +Child: 92, type: 5, width: 158, height: 6 +Child: 93, message: You have 60 days of member credit remaining. Please click here to extend your credit. +Child: 94, message: 60 days of member credit +Child: 95, type: 5, width: 42, height: 33 +Child: 96, message: 60 +Child: 97, type: 5, width: 554, height: 26 +Child: 98, type: 5, width: 251, height: 26 +Child: 99, type: 5, width: 37, height: 26 +Child: 100, type: 5, width: 37, height: 26 +Child: 101, type: 5, width: 37, height: 26 +Child: 102, type: 5, width: 37, height: 26 +Child: 103, type: 3, width: 16391, height: 16391 +Child: 104, type: 5, width: 338, height: 422 +Child: 105, type: 5, width: 346, height: 422 +Child: 106, type: 5, width: 179, height: 43 +Child: 107, type: 5, width: 400, height: 43 +Child: 108, type: 5, width: 179, height: 43 +Child: 109, type: 5, width: 400, height: 43 +Child: 110, type: 5, width: 179, height: 43 +Child: 111, type: 5, width: 179, height: 43 +Child: 112, type: 3, width: 628, height: 228 +Child: 113, type: 3, width: 628, height: 70 +Child: 114, type: 0, width: 765, height: 503 +Child: 115, message: Welcome to RuneScape +Child: 116, message: You last logged in yesterday from: +Child: 117, message: 10.1120.190 +Child: 118, type: 0, width: 765, height: 503 +Child: 119, type: 0, width: 185, height: 42 +Child: 120, type: 0, width: 175, height: 28 +Child: 121, type: 0, width: 765, height: 503 +Child: 122, type: 0, width: 182, height: 40 +Child: 123, type: 0, width: 174, height: 30 +Child: 124, type: 0, width: 765, height: 503 +Child: 125, type: 0, width: 765, height: 503 +Child: 126, type: 5, width: 162, height: 26 +Child: 127, type: 5, width: 5, height: 26 +Child: 128, type: 5, width: 5, height: 26 +Child: 129, message: Message Centre +Child: 130, type: 5, width: 160, height: 26 +Child: 131, type: 5, width: 5, height: 26 +Child: 132, type: 5, width: 5, height: 26 +Child: 133, message: Credit +Child: 134, type: 0, width: 375, height: 52 +Child: 135, type: 5, width: 359, height: 45 +Child: 136, type: 5, width: 4, height: 45 +Child: 137, type: 5, width: 4, height: 45 +Child: 138, message: Click Here To Play +Child: 139, type: 0, width: 375, height: 52 +Child: 140, type: 0, width: 379, height: 58 +Child: 141, type: 0, width: 758, height: 305 +Child: 142, type: 0, width: 186, height: 78 +Child: 143, type: 0, width: 185, height: 43 +Child: 144, type: 0, width: 184, height: 38 diff --git a/server508/lists/interfaces/379.txt b/server508/lists/interfaces/379.txt new file mode 100644 index 0000000..93ab79f --- /dev/null +++ b/server508/lists/interfaces/379.txt @@ -0,0 +1,28 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 557, height: 449 +Child: 2, type: 6, width: 132, height: 156 +Child: 3, type: 6, width: 133, height: 159 +Child: 4, message: Time +Child: 5, message: 4:17 +Child: 6, message: 300 +Child: 7, message: XP score +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 0, width: 16391, height: 16391 +Child: 10, type: 0, width: 16391, height: 16391 +Child: 11, type: 5, width: 32, height: 334 +Child: 12, type: 5, width: 462, height: 32 +Child: 13, type: 5, width: 512, height: 32 +Child: 14, type: 5, width: 32, height: 334 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 0, width: 8192, height: 16391 +Child: 20, type: 0, width: 8188, height: 16391 +Child: 21, type: 0, width: 16391, height: 8192 +Child: 22, type: 0, width: 16391, height: 8182 +Child: 23, type: 0, width: 512, height: 334 +Child: 24, type: 5, width: 256, height: 16384 +Child: 25, type: 5, width: 256, height: 16391 +Child: 26, type: 5, width: 16391, height: 167 +Child: 27, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/38.txt b/server508/lists/interfaces/38.txt new file mode 100644 index 0000000..9a21f7b --- /dev/null +++ b/server508/lists/interfaces/38.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 74, height: 66 +Child: 1, message: Runelink +Child: 2, message: Rank: %1 +Child: 3, type: 0, width: 86, height: 105 diff --git a/server508/lists/interfaces/380.txt b/server508/lists/interfaces/380.txt new file mode 100644 index 0000000..d2d53b0 --- /dev/null +++ b/server508/lists/interfaces/380.txt @@ -0,0 +1,3 @@ +Child: 0, type: 5, width: 25, height: 25 +Child: 1, message: Level: %1 +Child: 2, type: 0, width: 53, height: 41 diff --git a/server508/lists/interfaces/381.txt b/server508/lists/interfaces/381.txt new file mode 100644 index 0000000..a069863 --- /dev/null +++ b/server508/lists/interfaces/381.txt @@ -0,0 +1,3 @@ +Child: 0, type: 5, width: 25, height: 25 +Child: 1, message: +Child: 2, type: 0, width: 53, height: 41 diff --git a/server508/lists/interfaces/382.txt b/server508/lists/interfaces/382.txt new file mode 100644 index 0000000..8f3bda5 --- /dev/null +++ b/server508/lists/interfaces/382.txt @@ -0,0 +1,30 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 373, height: 243 +Child: 2, type: 5, width: 361, height: 236 +Child: 3, type: 5, width: 32, height: 202 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 205 +Child: 6, type: 5, width: 341, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 358, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, type: 6, width: 24, height: 28 +Child: 15, type: 6, width: 24, height: 28 +Child: 16, type: 6, width: 24, height: 28 +Child: 17, type: 6, width: 24, height: 28 +Child: 18, type: 5, width: 90, height: 56 +Child: 19, type: 5, width: 90, height: 56 +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 5, width: 19, height: 19 +Child: 22, message: WARNING! +Child: 23, message: If you go any further you will enter the Wilderness. This is a very dangerous area, haunted by ghosts! The further north you go, the more dangerous it becomes. +Child: 24, message: Enter Wilderness +Child: 25, message: Don't go +Child: 26, type: 0, width: 255, height: 20 +Child: 27, message: Don't ask me this again +Child: 28, type: 5, width: 19, height: 19 +Child: 29, type: 5, width: 310, height: 32 diff --git a/server508/lists/interfaces/383.txt b/server508/lists/interfaces/383.txt new file mode 100644 index 0000000..524f470 --- /dev/null +++ b/server508/lists/interfaces/383.txt @@ -0,0 +1,35 @@ +Child: 0, type: 3, width: 541, height: 373 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 0, width: 123, height: 279 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 0, width: 206, height: 341 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 0, width: 294, height: 288 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 0, width: 310, height: 267 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 0, width: 235, height: 266 +Child: 19, type: 3, width: 65, height: 56 +Child: 20, type: 3, width: 31, height: 31 +Child: 21, type: 3, width: 45, height: 68 +Child: 22, type: 3, width: 62, height: 54 +Child: 23, type: 3, width: 46, height: 52 +Child: 24, type: 3, width: 61, height: 49 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, message: Pick a colour +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 5, width: 26, height: 23 +Child: 33, type: 5, width: 26, height: 23 +Child: 34, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/384.txt b/server508/lists/interfaces/384.txt new file mode 100644 index 0000000..98701cd --- /dev/null +++ b/server508/lists/interfaces/384.txt @@ -0,0 +1,20 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: wom1 +Child: 2, message: wom2 +Child: 3, message: wom3 +Child: 4, message: wom4 +Child: 5, message: wom5 +Child: 6, message: wom6 +Child: 7, message: wom7 +Child: 8, message: wom8 +Child: 9, message: wom9 +Child: 10, message: wom10 +Child: 11, message: wom11 +Child: 12, message: wom12 +Child: 13, message: wom13 +Child: 14, message: wom14 +Child: 15, message: wom15 +Child: 16, message: wom16 +Child: 17, type: 5, width: 26, height: 23 +Child: 18, type: 5, width: 26, height: 23 +Child: 19, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/385.txt b/server508/lists/interfaces/385.txt new file mode 100644 index 0000000..eb7a501 --- /dev/null +++ b/server508/lists/interfaces/385.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 18439, height: 22326 diff --git a/server508/lists/interfaces/386.txt b/server508/lists/interfaces/386.txt new file mode 100644 index 0000000..b51c4e4 --- /dev/null +++ b/server508/lists/interfaces/386.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 23079, height: 19873 diff --git a/server508/lists/interfaces/387.txt b/server508/lists/interfaces/387.txt new file mode 100644 index 0000000..bf6a13c --- /dev/null +++ b/server508/lists/interfaces/387.txt @@ -0,0 +1,60 @@ +Child: 0, type: 5, width: 36, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, type: 5, width: 36, height: 36 +Child: 6, type: 5, width: 36, height: 36 +Child: 7, type: 5, width: 36, height: 36 +Child: 8, type: 5, width: 36, height: 36 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 36, height: 36 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 9, height: 9 +Child: 24, type: 5, width: 9, height: 9 +Child: 25, type: 5, width: 9, height: 9 +Child: 26, type: 5, width: 9, height: 9 +Child: 27, type: 5, width: 9, height: 9 +inventory type: 15 slots, width: 3, height: 5, 28 +Child: 29, type: 5, width: 9, height: 9 +Child: 30, type: 5, width: 9, height: 9 +Child: 31, type: 5, width: 9, height: 9 +Child: 32, type: 5, width: 9, height: 9 +Child: 33, type: 5, width: 9, height: 9 +Child: 34, type: 5, width: 9, height: 9 +Child: 35, type: 5, width: 9, height: 9 +Child: 36, type: 5, width: 9, height: 9 +Child: 37, type: 5, width: 9, height: 9 +Child: 38, type: 5, width: 9, height: 9 +Child: 39, type: 5, width: 9, height: 9 +Child: 40, type: 5, width: 9, height: 9 +Child: 41, type: 5, width: 9, height: 9 +Child: 42, type: 5, width: 9, height: 9 +Child: 43, type: 5, width: 9, height: 9 +Child: 44, type: 5, width: 9, height: 9 +Child: 45, type: 5, width: 9, height: 9 +Child: 46, type: 5, width: 9, height: 9 +Child: 47, type: 5, width: 9, height: 9 +Child: 48, type: 5, width: 9, height: 9 +Child: 49, type: 5, width: 9, height: 9 +Child: 50, type: 5, width: 34, height: 34 +Child: 51, type: 5, width: 34, height: 34 +Child: 52, type: 5, width: 9, height: 9 +Child: 53, type: 5, width: 9, height: 9 +Child: 54, type: 5, width: 9, height: 9 +Child: 55, type: 5, width: 9, height: 9 +Child: 56, type: 5, width: 9, height: 9 +Child: 57, type: 5, width: 9, height: 9 +Child: 58, type: 8, width: 34, height: 34 +Child: 59, type: 8, width: 34, height: 34 diff --git a/server508/lists/interfaces/388.txt b/server508/lists/interfaces/388.txt new file mode 100644 index 0000000..ce854c9 --- /dev/null +++ b/server508/lists/interfaces/388.txt @@ -0,0 +1,18 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, type: 5, width: 24, height: 24 +Child: 7, type: 5, width: 24, height: 24 +Child: 8, type: 5, width: 24, height: 24 +Child: 9, type: 5, width: 24, height: 24 +Child: 10, type: 5, width: 24, height: 24 +Child: 11, type: 5, width: 24, height: 24 +Child: 12, type: 5, width: 24, height: 24 +Child: 13, type: 5, width: 24, height: 24 +Child: 14, type: 5, width: 24, height: 24 +Child: 15, type: 5, width: 24, height: 24 +Child: 16, message: Cancel +Child: 17, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/389.txt b/server508/lists/interfaces/389.txt new file mode 100644 index 0000000..cd9f76f --- /dev/null +++ b/server508/lists/interfaces/389.txt @@ -0,0 +1,16 @@ +Child: 0, type: 3, width: 506, height: 130 +Child: 1, type: 3, width: 506, height: 20 +Child: 2, type: 3, width: 506, height: 3 +Child: 3, type: 3, width: 506, height: 2 +Child: 4, type: 0, width: 430, height: 107 +Child: 5, type: 0, width: 422, height: 105 +Child: 6, message: +Child: 7, message: To search for an item, start by typing part of its name.
Then, simply select the item you want from the results on display. +Child: 8, type: 0, width: 16, height: 108 +Child: 9, message: +Child: 10, type: 5, width: 16, height: 16 +Child: 11, type: 5, width: 506, height: 32 +Child: 12, type: 5, width: 32, height: 108 +Child: 13, type: 5, width: 16, height: 14 +Child: 14, type: 5, width: 40, height: 36 +Child: 15, type: 5, width: 36, height: 32 diff --git a/server508/lists/interfaces/39.txt b/server508/lists/interfaces/39.txt new file mode 100644 index 0000000..5fb0e15 --- /dev/null +++ b/server508/lists/interfaces/39.txt @@ -0,0 +1,116 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, message: Insert a very long name here! +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 25, height: 30 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, message: vs +Child: 74, message: Insert a very long name here! +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, message: Runelink +Child: 87, type: 6, width: 299, height: 252 +Child: 88, type: 6, width: 1, height: 1 +Child: 89, message: Blah blah blah blah blah blah blah! +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 +Child: 92, type: 5, width: 36, height: 36 +Child: 93, message: Blah blah blah blah blah blah blah! +Child: 94, type: 5, width: 32, height: 207 +Child: 95, type: 5, width: 32, height: 207 +Child: 96, type: 5, width: 32, height: 207 +Child: 97, type: 5, width: 32, height: 207 +Child: 98, type: 5, width: 32, height: 207 +Child: 99, type: 5, width: 32, height: 207 +Child: 100, type: 5, width: 32, height: 207 +Child: 101, message: Blah blah blah blah blah! +Child: 102, type: 0, width: 78, height: 42 +Child: 103, type: 3, width: 66, height: 31 +Child: 104, message: Close +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 5, width: 25, height: 30 +Child: 107, type: 5, width: 25, height: 30 +Child: 108, type: 5, width: 25, height: 30 +Child: 109, type: 5, width: 25, height: 30 +Child: 110, type: 5, width: 36, height: 36 +Child: 111, type: 6, width: 20, height: 19 +Child: 112, type: 6, width: 20, height: 19 +Child: 113, type: 5, width: 25, height: 30 +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 0, width: 242, height: 207 diff --git a/server508/lists/interfaces/390.txt b/server508/lists/interfaces/390.txt new file mode 100644 index 0000000..9ce86aa --- /dev/null +++ b/server508/lists/interfaces/390.txt @@ -0,0 +1,39 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 888, height: 472 +Child: 2, type: 6, width: 544, height: 152 +Child: 3, type: 0, width: 371, height: 354 +Child: 4, type: 6, width: 102, height: 81 +Child: 5, type: 0, width: 16, height: 275 +Child: 6, message: Show riddle +Child: 7, type: 0, width: 54, height: 56 +Child: 8, type: 0, width: 45, height: 34 +Child: 9, type: 0, width: 32, height: 37 +Child: 10, type: 0, width: 43, height: 73 +Child: 11, type: 0, width: 40, height: 32 +Child: 12, type: 0, width: 41, height: 34 +Child: 13, type: 0, width: 42, height: 61 +Child: 14, type: 0, width: 36, height: 27 +Child: 15, type: 0, width: 50, height: 29 +Child: 16, type: 5, width: 26, height: 23 +Child: 17, type: 6, width: 358, height: 342 +Child: 18, message: +Child: 19, type: 0, width: 280, height: 279 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 0, width: 16391, height: 16391 +Child: 22, type: 5, width: 32, height: 334 +Child: 23, type: 5, width: 462, height: 32 +Child: 24, type: 5, width: 512, height: 32 +Child: 25, type: 5, width: 32, height: 334 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 0, width: 8192, height: 16391 +Child: 31, type: 0, width: 8188, height: 16391 +Child: 32, type: 0, width: 16391, height: 8192 +Child: 33, type: 0, width: 16391, height: 8182 +Child: 34, type: 0, width: 512, height: 334 +Child: 35, type: 5, width: 256, height: 16384 +Child: 36, type: 5, width: 256, height: 16391 +Child: 37, type: 5, width: 16391, height: 167 +Child: 38, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/391.txt b/server508/lists/interfaces/391.txt new file mode 100644 index 0000000..a0869cd --- /dev/null +++ b/server508/lists/interfaces/391.txt @@ -0,0 +1,183 @@ +Child: 0, type: 6, width: 555, height: 478 +Child: 1, message: Kingdom of Miscellania +Child: 2, type: 0, width: 93, height: 61 +Child: 3, type: 0, width: 156, height: 148 +Child: 4, type: 6, width: 59, height: 48 +Child: 5, type: 6, width: 58, height: 57 +Child: 6, type: 0, width: 153, height: 56 +Child: 7, type: 6, width: 36, height: 54 +Child: 8, type: 6, width: 28, height: 44 +Child: 9, type: 0, width: 88, height: 59 +Child: 10, type: 6, width: 35, height: 53 +Child: 11, type: 0, width: 104, height: 76 +Child: 12, type: 6, width: 40, height: 26 +Child: 13, type: 0, width: 88, height: 80 +Child: 14, type: 6, width: 24, height: 16 +Child: 15, type: 6, width: 27, height: 17 +Child: 16, type: 6, width: 57, height: 50 +Child: 17, type: 6, width: 111, height: 111 +Child: 18, message: Help +Child: 19, type: 6, width: 48, height: 42 +Child: 20, type: 6, width: 74, height: 73 +Child: 21, type: 6, width: 34, height: 52 +Child: 22, type: 6, width: 35, height: 53 +Child: 23, type: 6, width: 41, height: 62 +Child: 24, type: 6, width: 35, height: 53 +Child: 25, type: 0, width: 104, height: 76 +Child: 26, type: 0, width: 90, height: 63 +Child: 27, type: 0, width: 151, height: 104 +Child: 28, type: 0, width: 146, height: 93 +Child: 29, type: 5, width: 26, height: 23 +Child: 30, type: 0, width: 32, height: 32 +Child: 31, type: 3, width: 15, height: 47 +Child: 32, message: Mining +Child: 33, type: 6, width: 53, height: 42 +Child: 34, type: 3, width: 16, height: 54 +Child: 35, type: 6, width: 51, height: 49 +Child: 36, type: 6, width: 18, height: 21 +Child: 37, message: Herbs +Child: 38, type: 6, width: 17, height: 21 +Child: 39, type: 3, width: 9, height: 4 +Child: 40, type: 3, width: 9, height: 4 +Child: 41, type: 3, width: 9, height: 4 +Child: 42, type: 3, width: 9, height: 4 +Child: 43, type: 3, width: 9, height: 4 +Child: 44, type: 3, width: 9, height: 4 +Child: 45, type: 3, width: 9, height: 4 +Child: 46, type: 3, width: 9, height: 4 +Child: 47, type: 3, width: 9, height: 4 +Child: 48, type: 3, width: 9, height: 4 +Child: 49, message: Coffers: +Child: 50, type: 6, width: 18, height: 21 +Child: 51, type: 6, width: 17, height: 21 +Child: 52, type: 3, width: 15, height: 57 +Child: 53, type: 3, width: 9, height: 5 +Child: 54, type: 3, width: 9, height: 5 +Child: 55, type: 3, width: 9, height: 6 +Child: 56, type: 3, width: 9, height: 6 +Child: 57, type: 3, width: 9, height: 5 +Child: 58, type: 3, width: 9, height: 6 +Child: 59, type: 3, width: 9, height: 5 +Child: 60, type: 3, width: 9, height: 6 +Child: 61, type: 3, width: 9, height: 6 +Child: 62, message: Wood +Child: 63, type: 6, width: 18, height: 21 +Child: 64, type: 6, width: 17, height: 21 +Child: 65, type: 3, width: 9, height: 5 +Child: 66, type: 6, width: 39, height: 37 +Child: 67, type: 6, width: 49, height: 60 +Child: 68, type: 3, width: 16, height: 51 +Child: 69, type: 3, width: 10, height: 5 +Child: 70, type: 3, width: 10, height: 5 +Child: 71, type: 3, width: 10, height: 5 +Child: 72, type: 3, width: 10, height: 5 +Child: 73, type: 3, width: 10, height: 5 +Child: 74, type: 3, width: 10, height: 5 +Child: 75, type: 3, width: 10, height: 5 +Child: 76, type: 3, width: 10, height: 5 +Child: 77, type: 3, width: 10, height: 5 +Child: 78, type: 3, width: 10, height: 5 +Child: 79, message: Fishing +Child: 80, type: 6, width: 18, height: 21 +Child: 81, type: 6, width: 17, height: 21 +Child: 82, type: 3, width: 10, height: 5 +Child: 83, type: 3, width: 10, height: 5 +Child: 84, type: 3, width: 10, height: 5 +Child: 85, type: 3, width: 16, height: 75 +Child: 86, type: 3, width: 10, height: 4 +Child: 87, type: 3, width: 10, height: 5 +Child: 88, type: 3, width: 10, height: 4 +Child: 89, type: 3, width: 10, height: 4 +Child: 90, type: 3, width: 10, height: 5 +Child: 91, type: 3, width: 10, height: 4 +Child: 92, type: 3, width: 10, height: 5 +Child: 93, type: 3, width: 10, height: 5 +Child: 94, type: 3, width: 10, height: 5 +Child: 95, type: 3, width: 10, height: 5 +Child: 96, type: 3, width: 10, height: 5 +Child: 97, message: Idle +Child: 98, type: 6, width: 38, height: 42 +Child: 99, type: 3, width: 10, height: 5 +Child: 100, type: 3, width: 10, height: 5 +Child: 101, type: 3, width: 10, height: 5 +Child: 102, type: 3, width: 10, height: 5 +Child: 103, type: 3, width: 10, height: 5 +Child: 104, type: 3, width: 10, height: 5 +Child: 105, type: 3, width: 10, height: 5 +Child: 106, type: 3, width: 10, height: 5 +Child: 107, type: 3, width: 10, height: 5 +Child: 108, type: 3, width: 10, height: 5 +Child: 109, type: 3, width: 10, height: 5 +Child: 110, message: 500,000 +Child: 111, message: Deposit +Child: 112, message: Withdraw +Child: 113, message: Deposit money in +Child: 114, message: the coffers to +Child: 115, message: pay your subjects +Child: 116, message: and make them +Child: 117, message: work harder. +Child: 118, message: Use the arrows to +Child: 119, message: adjust the amount +Child: 120, message: of effort your +Child: 121, message: subjects spend +Child: 122, message: on each resource. +Child: 123, message: Cooked +Child: 124, type: 5, width: 15, height: 15 +Child: 125, type: 3, width: 15, height: 47 +Child: 126, type: 6, width: 18, height: 21 +Child: 127, type: 6, width: 17, height: 21 +Child: 128, type: 3, width: 9, height: 4 +Child: 129, type: 3, width: 9, height: 4 +Child: 130, type: 3, width: 9, height: 4 +Child: 131, type: 3, width: 9, height: 4 +Child: 132, type: 3, width: 9, height: 4 +Child: 133, type: 3, width: 9, height: 4 +Child: 134, type: 3, width: 9, height: 4 +Child: 135, type: 3, width: 9, height: 4 +Child: 136, type: 3, width: 9, height: 4 +Child: 137, type: 3, width: 9, height: 4 +Child: 138, type: 5, width: 15, height: 15 +Child: 139, type: 5, width: 15, height: 15 +Child: 140, type: 5, width: 15, height: 15 +Child: 141, message: Mahogany +Child: 142, message: Teak +Child: 143, message: Both +Child: 144, message: Hardwood +Child: 145, type: 3, width: 15, height: 47 +Child: 146, message: Farm +Child: 147, type: 6, width: 18, height: 21 +Child: 148, type: 6, width: 17, height: 21 +Child: 149, type: 3, width: 9, height: 4 +Child: 150, type: 3, width: 9, height: 4 +Child: 151, type: 3, width: 9, height: 4 +Child: 152, type: 3, width: 9, height: 4 +Child: 153, type: 3, width: 9, height: 4 +Child: 154, type: 3, width: 9, height: 4 +Child: 155, type: 3, width: 9, height: 4 +Child: 156, type: 3, width: 9, height: 4 +Child: 157, type: 3, width: 9, height: 4 +Child: 158, type: 3, width: 9, height: 4 +Child: 159, type: 5, width: 15, height: 15 +Child: 160, message: Herbs +Child: 161, type: 5, width: 15, height: 15 +Child: 162, message: Flax +Child: 163, type: 0, width: 512, height: 334 +Child: 164, type: 0, width: 16391, height: 16391 +Child: 165, type: 0, width: 16391, height: 16391 +Child: 166, type: 5, width: 32, height: 334 +Child: 167, type: 5, width: 462, height: 32 +Child: 168, type: 5, width: 512, height: 32 +Child: 169, type: 5, width: 32, height: 334 +Child: 170, type: 5, width: 32, height: 32 +Child: 171, type: 5, width: 32, height: 32 +Child: 172, type: 5, width: 32, height: 32 +Child: 173, type: 5, width: 32, height: 32 +Child: 174, type: 0, width: 8192, height: 16391 +Child: 175, type: 0, width: 8188, height: 16391 +Child: 176, type: 0, width: 16391, height: 8192 +Child: 177, type: 0, width: 16391, height: 8182 +Child: 178, type: 0, width: 512, height: 334 +Child: 179, type: 5, width: 256, height: 16384 +Child: 180, type: 5, width: 256, height: 16391 +Child: 181, type: 5, width: 16391, height: 167 +Child: 182, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/392.txt b/server508/lists/interfaces/392.txt new file mode 100644 index 0000000..a127f64 --- /dev/null +++ b/server508/lists/interfaces/392.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 387, height: 287 +Child: 1, type: 0, width: 342, height: 215 +Child: 2, message: Resources Collected +inventory type: 90 slots, width: 9, height: 10, 3 +Child: 4, type: 6, width: 55, height: 81 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/393.txt b/server508/lists/interfaces/393.txt new file mode 100644 index 0000000..02c800a --- /dev/null +++ b/server508/lists/interfaces/393.txt @@ -0,0 +1,32 @@ +Child: 0, message: A +Child: 1, message: B +Child: 2, message: C +Child: 3, message: D +Child: 4, message: E +Child: 5, message: F +Child: 6, message: G +Child: 7, message: H +Child: 8, message: I +Child: 9, message: J +Child: 10, message: K +Child: 11, message: L +Child: 12, message: M +Child: 13, message: N +Child: 14, message: O +Child: 15, message: P +Child: 16, message: Q +Child: 17, message: R +Child: 18, message: S +Child: 19, message: T +Child: 20, message: U +Child: 21, message: V +Child: 22, message: W +Child: 23, message: X +Child: 24, message: Y +Child: 25, message: Z +Child: 26, type: 5, width: 72, height: 36 +Child: 27, message: GUESS +Child: 28, message: +Child: 29, message: __________ +Child: 30, message: Enter up to five letters in any order then click 'guess' again. +Child: 31, type: 0, width: 406, height: 24 diff --git a/server508/lists/interfaces/394.txt b/server508/lists/interfaces/394.txt new file mode 100644 index 0000000..9781c62 --- /dev/null +++ b/server508/lists/interfaces/394.txt @@ -0,0 +1,116 @@ +Child: 0, type: 3, width: 511, height: 333 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 25, height: 30 +Child: 67, type: 5, width: 25, height: 30 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 25, height: 30 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 88, height: 60 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 25, height: 30 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, message: Furniture Creation Menu +Child: 90, message: Select a piece of furniture to build. +Child: 91, message: Wooden Chair +Child: 92, message: 5 Wood +Child: 93, message: 2 Oak +Child: 94, message: 2 Oak +Child: 95, message: 2 Oak +Child: 96, message: Wooden Chair +Child: 97, message: 5 Wood +Child: 98, message: 2 Oak +Child: 99, message: 2 Oak +Child: 100, message: 2 Oak +Child: 101, message: Wooden Chair +Child: 102, message: 5 Wood +Child: 103, message: 2 Oak +Child: 104, message: 2 Oak +Child: 105, message: 2 Oak +inventory type: 3 slots, width: 1, height: 3, 106 +Child: 107, type: 5, width: 16, height: 16 +Child: 108, type: 5, width: 16, height: 16 +Child: 109, type: 5, width: 16, height: 16 +Child: 110, message: Level +Child: 111, message: Level +Child: 112, message: Level +Child: 113, type: 5, width: 26, height: 23 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/395.txt b/server508/lists/interfaces/395.txt new file mode 100644 index 0000000..0457503 --- /dev/null +++ b/server508/lists/interfaces/395.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 1353, height: 1187 diff --git a/server508/lists/interfaces/396.txt b/server508/lists/interfaces/396.txt new file mode 100644 index 0000000..0ee307e --- /dev/null +++ b/server508/lists/interfaces/396.txt @@ -0,0 +1,150 @@ +Child: 0, type: 3, width: 479, height: 299 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 88, height: 60 +Child: 32, type: 5, width: 88, height: 60 +Child: 33, type: 5, width: 88, height: 60 +Child: 34, type: 5, width: 88, height: 60 +Child: 35, type: 5, width: 88, height: 60 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 25, height: 30 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 25, height: 30 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 88, height: 60 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 +Child: 92, type: 5, width: 36, height: 36 +Child: 93, type: 5, width: 25, height: 30 +Child: 94, type: 5, width: 36, height: 36 +Child: 95, message: Select a piece of furniture to build. +Child: 96, message: +Child: 97, message: Wooden Chair +Child: 98, message: 5 Wood +Child: 99, message: 2 Oak +Child: 100, message: 2 Oak +Child: 101, message: 2 Oak +Child: 102, message: Wooden Chair +Child: 103, message: 5 Wood +Child: 104, message: 2 Oak +Child: 105, message: 2 Oak +Child: 106, message: 2 Oak +Child: 107, message: Wooden Chair +Child: 108, message: 5 Wood +Child: 109, message: 2 Oak +Child: 110, message: 2 Oak +Child: 111, message: 2 Oak +Child: 112, message: Wooden Chair +Child: 113, message: 5 Wood +Child: 114, message: 2 Oak +Child: 115, message: 2 Oak +Child: 116, message: 2 Oak +Child: 117, message: Wooden Chair +Child: 118, message: 5 Wood +Child: 119, message: 2 Oak +Child: 120, message: 2 Oak +Child: 121, message: 2 Oak +Child: 122, message: Wooden Chair +Child: 123, message: 5 Wood +Child: 124, message: 2 Oak +Child: 125, message: 2 Oak +Child: 126, message: 2 Oak +Child: 127, message: Wooden Chair +Child: 128, message: 5 Wood +Child: 129, message: 2 Oak +Child: 130, message: 2 Oak +Child: 131, message: 2 Oak +inventory type: 8 slots, width: 2, height: 4, 132 +Child: 133, type: 5, width: 16, height: 16 +Child: 134, type: 5, width: 16, height: 16 +Child: 135, type: 5, width: 16, height: 16 +Child: 136, type: 5, width: 16, height: 16 +Child: 137, type: 5, width: 16, height: 16 +Child: 138, type: 5, width: 16, height: 16 +Child: 139, type: 5, width: 16, height: 16 +Child: 140, message: Level +Child: 141, message: Level +Child: 142, message: Level +Child: 143, message: Level +Child: 144, message: Level +Child: 145, message: Level +Child: 146, message: Level +Child: 147, type: 5, width: 26, height: 23 +Child: 148, type: 5, width: 26, height: 23 +Child: 149, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/397.txt b/server508/lists/interfaces/397.txt new file mode 100644 index 0000000..809823f --- /dev/null +++ b/server508/lists/interfaces/397.txt @@ -0,0 +1,147 @@ +Child: 0, type: 3, width: 568, height: 369 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 25, height: 30 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 25, height: 30 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 0, width: 250, height: 222 +Child: 71, type: 6, width: 49, height: 34 +Child: 72, type: 6, width: 49, height: 34 +Child: 73, type: 6, width: 49, height: 34 +Child: 74, type: 6, width: 33, height: 39 +Child: 75, type: 6, width: 35, height: 29 +Child: 76, type: 6, width: 32, height: 32 +Child: 77, type: 6, width: 32, height: 32 +Child: 78, type: 6, width: 32, height: 32 +Child: 79, type: 6, width: 31, height: 28 +Child: 80, type: 6, width: 38, height: 41 +Child: 81, type: 6, width: 38, height: 29 +Child: 82, type: 6, width: 38, height: 41 +Child: 83, type: 6, width: 38, height: 41 +Child: 84, type: 6, width: 38, height: 41 +Child: 85, type: 6, width: 38, height: 41 +Child: 86, type: 6, width: 38, height: 23 +Child: 87, type: 3, width: 267, height: 222 +Child: 88, message: Armchairs +Child: 89, message: Bookcases +Child: 90, message: Beer Barrels +Child: 91, message: Kitchen Tables +Child: 92, message: Dining Tables +Child: 93, message: Dining Benches +Child: 94, message: Beds +Child: 95, message: Dressers +Child: 96, message: Wardrobes +Child: 97, message: Clocks +Child: 98, message: Cape Racks +Child: 99, message: Magic Wardrobes +Child: 100, message: Armour cases +Child: 101, message: Treasure trail chests +Child: 102, message: Fancy dress boxes +Child: 103, message: Toy boxes +Child: 104, type: 5, width: 88, height: 60 +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 5, width: 36, height: 36 +Child: 107, type: 5, width: 36, height: 36 +Child: 108, type: 5, width: 36, height: 36 +Child: 109, type: 5, width: 25, height: 30 +Child: 110, type: 3, width: 374, height: 23 +Child: 111, type: 3, width: 238, height: 61 +Child: 112, type: 3, width: 238, height: 61 +Child: 113, type: 3, width: 238, height: 61 +Child: 114, type: 3, width: 238, height: 56 +Child: 115, type: 3, width: 238, height: 61 +Child: 116, type: 3, width: 238, height: 58 +Child: 117, type: 3, width: 238, height: 61 +Child: 118, type: 3, width: 238, height: 56 +Child: 119, type: 3, width: 238, height: 59 +Child: 120, type: 3, width: 238, height: 59 +Child: 121, type: 3, width: 238, height: 59 +Child: 122, type: 3, width: 238, height: 59 +Child: 123, type: 3, width: 238, height: 59 +Child: 124, type: 3, width: 238, height: 59 +Child: 125, type: 3, width: 238, height: 59 +Child: 126, type: 3, width: 238, height: 59 +Child: 127, type: 5, width: 88, height: 60 +Child: 128, message: Select a piece of furniture to build +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 5, width: 36, height: 36 +Child: 131, type: 5, width: 36, height: 36 +Child: 132, type: 5, width: 36, height: 36 +Child: 133, message: Furniture Creation Menu +Child: 134, type: 5, width: 36, height: 36 +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 5, width: 36, height: 36 +Child: 137, type: 5, width: 88, height: 60 +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 5, width: 25, height: 30 +Child: 140, type: 5, width: 36, height: 36 +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 5, width: 36, height: 36 +Child: 143, type: 3, width: 96, height: 60 +Child: 144, type: 5, width: 26, height: 23 +Child: 145, type: 5, width: 26, height: 23 +Child: 146, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/398.txt b/server508/lists/interfaces/398.txt new file mode 100644 index 0000000..b2f66d7 --- /dev/null +++ b/server508/lists/interfaces/398.txt @@ -0,0 +1,24 @@ +Child: 0, type: 5, width: 36, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, message: Off +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, type: 5, width: 36, height: 36 +Child: 6, type: 5, width: 36, height: 36 +Child: 7, message: House Options +Child: 8, type: 5, width: 36, height: 36 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 170, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 170, height: 36 +Child: 16, message: Leave House +Child: 17, message: Building Mode +Child: 18, message: Expel Guests +Child: 19, message: On +Child: 20, message: Number Of Rooms: %1 +Child: 21, type: 5, width: 26, height: 23 +Child: 22, type: 5, width: 26, height: 23 +Child: 23, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/399.txt b/server508/lists/interfaces/399.txt new file mode 100644 index 0000000..13b73da --- /dev/null +++ b/server508/lists/interfaces/399.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, message: There's no place like home... +Child: 2, type: 5, width: 256, height: 192 +Child: 3, type: 3, width: 256, height: 192 +Child: 4, type: 3, width: 258, height: 194 +Child: 5, type: 0, width: 514, height: 231 diff --git a/server508/lists/interfaces/4.txt b/server508/lists/interfaces/4.txt new file mode 100644 index 0000000..895b92b --- /dev/null +++ b/server508/lists/interfaces/4.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 182, height: 215 +Child: 1, type: 6, width: 142, height: 27 +Child: 2, type: 6, width: 124, height: 11 +Child: 3, type: 6, width: 109, height: 79 +Child: 4, type: 6, width: 89, height: 57 +Child: 5, message: Water Collected +Child: 6, message: Time Left +Child: 7, type: 6, width: 33, height: 29 +Child: 8, message: %1 +Child: 9, type: 0, width: 182, height: 190 diff --git a/server508/lists/interfaces/40.txt b/server508/lists/interfaces/40.txt new file mode 100644 index 0000000..4a8165c --- /dev/null +++ b/server508/lists/interfaces/40.txt @@ -0,0 +1,336 @@ +Child: 0, type: 5, width: 483, height: 296 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 34, height: 252 +Child: 3, type: 5, width: 36, height: 243 +Child: 4, message: Insert a very long name here! +Child: 5, type: 5, width: 441, height: 36 +Child: 6, type: 5, width: 439, height: 54 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 25, height: 30 +Child: 10, message: vs +Child: 11, message: Insert a very long name here! +Child: 12, type: 5, width: 28, height: 290 +Child: 13, type: 5, width: 181, height: 42 +Child: 14, message: Turn: +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 0, width: 122, height: 42 +Child: 17, type: 0, width: 122, height: 43 +Child: 18, message: Runesquares +Child: 19, type: 3, width: 110, height: 31 +Child: 20, message: Resign +Child: 21, type: 3, width: 110, height: 31 +Child: 22, message: Offer draw +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, message: A very long name +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 25, height: 30 +Child: 28, type: 5, width: 25, height: 30 +Child: 29, type: 5, width: 30, height: 30 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 25, height: 30 +Child: 33, type: 5, width: 25, height: 30 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 25, height: 30 +Child: 36, message: Blah blah blah blah blah blah blah! +Child: 37, message: Blah blah blah blah blah blah blah! +Child: 38, message: Blah blah blah blah blah! +Child: 39, type: 0, width: 78, height: 42 +Child: 40, type: 0, width: 270, height: 270 +Child: 41, type: 3, width: 66, height: 31 +Child: 42, message: Close +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 25, height: 30 +Child: 45, type: 5, width: 25, height: 30 +Child: 46, type: 5, width: 25, height: 30 +Child: 47, type: 5, width: 25, height: 30 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 6, width: 20, height: 20 +Child: 50, type: 6, width: 20, height: 20 +Child: 51, type: 3, width: 2, height: 32 +Child: 52, type: 3, width: 2, height: 32 +Child: 53, type: 3, width: 2, height: 32 +Child: 54, type: 3, width: 2, height: 32 +Child: 55, type: 3, width: 2, height: 32 +Child: 56, type: 3, width: 2, height: 32 +Child: 57, type: 3, width: 2, height: 32 +Child: 58, type: 3, width: 2, height: 32 +Child: 59, type: 3, width: 2, height: 32 +Child: 60, type: 3, width: 2, height: 32 +Child: 61, type: 3, width: 2, height: 32 +Child: 62, type: 3, width: 2, height: 32 +Child: 63, type: 3, width: 2, height: 32 +Child: 64, type: 3, width: 2, height: 32 +Child: 65, type: 3, width: 2, height: 32 +Child: 66, type: 3, width: 2, height: 32 +Child: 67, type: 3, width: 2, height: 32 +Child: 68, type: 3, width: 2, height: 32 +Child: 69, type: 3, width: 2, height: 32 +Child: 70, type: 3, width: 2, height: 32 +Child: 71, type: 3, width: 2, height: 32 +Child: 72, type: 3, width: 2, height: 32 +Child: 73, type: 3, width: 2, height: 32 +Child: 74, type: 3, width: 2, height: 32 +Child: 75, type: 3, width: 2, height: 32 +Child: 76, type: 3, width: 2, height: 32 +Child: 77, type: 3, width: 2, height: 32 +Child: 78, type: 3, width: 2, height: 32 +Child: 79, type: 3, width: 2, height: 32 +Child: 80, type: 3, width: 2, height: 32 +Child: 81, type: 3, width: 2, height: 32 +Child: 82, type: 3, width: 2, height: 32 +Child: 83, type: 3, width: 2, height: 32 +Child: 84, type: 3, width: 2, height: 32 +Child: 85, type: 3, width: 2, height: 32 +Child: 86, type: 3, width: 2, height: 32 +Child: 87, type: 3, width: 2, height: 32 +Child: 88, type: 3, width: 2, height: 32 +Child: 89, type: 3, width: 2, height: 32 +Child: 90, type: 3, width: 2, height: 32 +Child: 91, type: 3, width: 2, height: 32 +Child: 92, type: 3, width: 2, height: 32 +Child: 93, type: 3, width: 2, height: 32 +Child: 94, type: 3, width: 2, height: 32 +Child: 95, type: 3, width: 2, height: 32 +Child: 96, type: 3, width: 2, height: 32 +Child: 97, type: 3, width: 2, height: 32 +Child: 98, type: 3, width: 2, height: 32 +Child: 99, type: 3, width: 2, height: 32 +Child: 100, type: 3, width: 2, height: 32 +Child: 101, type: 3, width: 2, height: 32 +Child: 102, type: 3, width: 2, height: 32 +Child: 103, type: 3, width: 2, height: 32 +Child: 104, type: 3, width: 2, height: 32 +Child: 105, type: 3, width: 2, height: 32 +Child: 106, type: 3, width: 2, height: 32 +Child: 107, type: 3, width: 32, height: 2 +Child: 108, type: 3, width: 32, height: 2 +Child: 109, type: 3, width: 32, height: 2 +Child: 110, type: 3, width: 32, height: 2 +Child: 111, type: 3, width: 32, height: 2 +Child: 112, type: 3, width: 32, height: 2 +Child: 113, type: 3, width: 32, height: 2 +Child: 114, type: 3, width: 32, height: 2 +Child: 115, type: 3, width: 32, height: 2 +Child: 116, type: 3, width: 32, height: 2 +Child: 117, type: 3, width: 32, height: 2 +Child: 118, type: 3, width: 32, height: 2 +Child: 119, type: 3, width: 32, height: 2 +Child: 120, type: 3, width: 32, height: 2 +Child: 121, type: 3, width: 32, height: 2 +Child: 122, type: 3, width: 32, height: 2 +Child: 123, type: 3, width: 32, height: 2 +Child: 124, type: 3, width: 32, height: 2 +Child: 125, type: 3, width: 32, height: 2 +Child: 126, type: 3, width: 32, height: 2 +Child: 127, type: 3, width: 32, height: 2 +Child: 128, type: 3, width: 32, height: 2 +Child: 129, type: 3, width: 32, height: 2 +Child: 130, type: 3, width: 32, height: 2 +Child: 131, type: 3, width: 32, height: 2 +Child: 132, type: 3, width: 32, height: 2 +Child: 133, type: 3, width: 32, height: 2 +Child: 134, type: 3, width: 32, height: 2 +Child: 135, type: 3, width: 32, height: 2 +Child: 136, type: 3, width: 32, height: 2 +Child: 137, type: 3, width: 32, height: 2 +Child: 138, type: 3, width: 32, height: 2 +Child: 139, type: 3, width: 32, height: 2 +Child: 140, type: 3, width: 32, height: 2 +Child: 141, type: 3, width: 32, height: 2 +Child: 142, type: 3, width: 32, height: 2 +Child: 143, type: 3, width: 32, height: 2 +Child: 144, type: 3, width: 32, height: 2 +Child: 145, type: 3, width: 32, height: 2 +Child: 146, type: 3, width: 32, height: 2 +Child: 147, type: 3, width: 32, height: 2 +Child: 148, type: 3, width: 32, height: 2 +Child: 149, type: 3, width: 32, height: 2 +Child: 150, type: 3, width: 32, height: 2 +Child: 151, type: 3, width: 32, height: 2 +Child: 152, type: 3, width: 32, height: 2 +Child: 153, type: 3, width: 32, height: 2 +Child: 154, type: 3, width: 32, height: 2 +Child: 155, type: 3, width: 32, height: 2 +Child: 156, type: 3, width: 32, height: 2 +Child: 157, type: 3, width: 32, height: 2 +Child: 158, type: 3, width: 32, height: 2 +Child: 159, type: 3, width: 32, height: 2 +Child: 160, type: 3, width: 32, height: 2 +Child: 161, type: 3, width: 32, height: 2 +Child: 162, type: 3, width: 32, height: 2 +Child: 163, type: 3, width: 272, height: 2 +Child: 164, type: 3, width: 272, height: 2 +Child: 165, type: 3, width: 2, height: 272 +Child: 166, type: 3, width: 2, height: 272 +Child: 167, type: 3, width: 2, height: 2 +Child: 168, type: 3, width: 2, height: 2 +Child: 169, type: 3, width: 2, height: 2 +Child: 170, type: 3, width: 2, height: 2 +Child: 171, type: 3, width: 2, height: 2 +Child: 172, type: 3, width: 2, height: 2 +Child: 173, type: 3, width: 2, height: 2 +Child: 174, type: 3, width: 2, height: 2 +Child: 175, type: 3, width: 2, height: 2 +Child: 176, type: 3, width: 2, height: 2 +Child: 177, type: 3, width: 2, height: 2 +Child: 178, type: 3, width: 2, height: 2 +Child: 179, type: 3, width: 2, height: 2 +Child: 180, type: 3, width: 2, height: 2 +Child: 181, type: 3, width: 2, height: 2 +Child: 182, type: 3, width: 2, height: 2 +Child: 183, type: 3, width: 2, height: 2 +Child: 184, type: 3, width: 2, height: 2 +Child: 185, type: 3, width: 2, height: 2 +Child: 186, type: 3, width: 2, height: 2 +Child: 187, type: 3, width: 2, height: 2 +Child: 188, type: 3, width: 2, height: 2 +Child: 189, type: 3, width: 2, height: 2 +Child: 190, type: 3, width: 2, height: 2 +Child: 191, type: 3, width: 2, height: 2 +Child: 192, type: 3, width: 2, height: 2 +Child: 193, type: 3, width: 2, height: 2 +Child: 194, type: 3, width: 2, height: 2 +Child: 195, type: 3, width: 2, height: 2 +Child: 196, type: 3, width: 2, height: 2 +Child: 197, type: 3, width: 2, height: 2 +Child: 198, type: 3, width: 2, height: 2 +Child: 199, type: 3, width: 2, height: 2 +Child: 200, type: 3, width: 2, height: 2 +Child: 201, type: 3, width: 2, height: 2 +Child: 202, type: 3, width: 2, height: 2 +Child: 203, type: 3, width: 2, height: 2 +Child: 204, type: 3, width: 2, height: 2 +Child: 205, type: 3, width: 2, height: 2 +Child: 206, type: 3, width: 2, height: 2 +Child: 207, type: 3, width: 2, height: 2 +Child: 208, type: 3, width: 2, height: 2 +Child: 209, type: 3, width: 2, height: 2 +Child: 210, type: 3, width: 2, height: 2 +Child: 211, type: 3, width: 2, height: 2 +Child: 212, type: 3, width: 2, height: 2 +Child: 213, type: 3, width: 2, height: 2 +Child: 214, type: 3, width: 2, height: 2 +Child: 215, type: 3, width: 2, height: 2 +Child: 216, type: 3, width: 12, height: 20 +Child: 217, type: 3, width: 12, height: 20 +Child: 218, type: 3, width: 12, height: 20 +Child: 219, type: 3, width: 12, height: 20 +Child: 220, type: 3, width: 12, height: 20 +Child: 221, type: 3, width: 12, height: 20 +Child: 222, type: 3, width: 12, height: 20 +Child: 223, type: 3, width: 12, height: 20 +Child: 224, type: 3, width: 12, height: 20 +Child: 225, type: 3, width: 12, height: 20 +Child: 226, type: 3, width: 12, height: 20 +Child: 227, type: 3, width: 12, height: 20 +Child: 228, type: 3, width: 12, height: 20 +Child: 229, type: 3, width: 12, height: 20 +Child: 230, type: 3, width: 12, height: 20 +Child: 231, type: 3, width: 12, height: 20 +Child: 232, type: 3, width: 12, height: 20 +Child: 233, type: 3, width: 12, height: 20 +Child: 234, type: 3, width: 12, height: 20 +Child: 235, type: 3, width: 12, height: 20 +Child: 236, type: 3, width: 12, height: 20 +Child: 237, type: 3, width: 12, height: 20 +Child: 238, type: 3, width: 12, height: 20 +Child: 239, type: 3, width: 12, height: 20 +Child: 240, type: 3, width: 12, height: 20 +Child: 241, type: 3, width: 12, height: 20 +Child: 242, type: 3, width: 12, height: 20 +Child: 243, type: 3, width: 12, height: 20 +Child: 244, type: 3, width: 12, height: 20 +Child: 245, type: 3, width: 12, height: 20 +Child: 246, type: 3, width: 12, height: 20 +Child: 247, type: 3, width: 12, height: 20 +Child: 248, type: 3, width: 12, height: 20 +Child: 249, type: 3, width: 12, height: 20 +Child: 250, type: 3, width: 12, height: 20 +Child: 251, type: 3, width: 12, height: 20 +Child: 252, type: 3, width: 12, height: 20 +Child: 253, type: 3, width: 12, height: 20 +Child: 254, type: 3, width: 12, height: 20 +Child: 255, type: 3, width: 12, height: 20 +Child: 256, type: 3, width: 12, height: 20 +Child: 257, type: 3, width: 12, height: 20 +Child: 258, type: 3, width: 12, height: 20 +Child: 259, type: 3, width: 12, height: 20 +Child: 260, type: 3, width: 12, height: 20 +Child: 261, type: 3, width: 12, height: 20 +Child: 262, type: 3, width: 12, height: 20 +Child: 263, type: 3, width: 12, height: 20 +Child: 264, type: 3, width: 12, height: 20 +Child: 265, type: 3, width: 12, height: 20 +Child: 266, type: 3, width: 12, height: 20 +Child: 267, type: 3, width: 12, height: 20 +Child: 268, type: 3, width: 12, height: 20 +Child: 269, type: 3, width: 12, height: 20 +Child: 270, type: 3, width: 12, height: 20 +Child: 271, type: 3, width: 12, height: 20 +Child: 272, type: 3, width: 20, height: 12 +Child: 273, type: 3, width: 20, height: 12 +Child: 274, type: 3, width: 20, height: 12 +Child: 275, type: 3, width: 20, height: 12 +Child: 276, type: 3, width: 20, height: 12 +Child: 277, type: 3, width: 20, height: 12 +Child: 278, type: 3, width: 20, height: 12 +Child: 279, type: 3, width: 20, height: 12 +Child: 280, type: 3, width: 20, height: 12 +Child: 281, type: 3, width: 20, height: 12 +Child: 282, type: 3, width: 20, height: 12 +Child: 283, type: 3, width: 20, height: 12 +Child: 284, type: 3, width: 20, height: 12 +Child: 285, type: 3, width: 20, height: 12 +Child: 286, type: 3, width: 20, height: 12 +Child: 287, type: 3, width: 20, height: 12 +Child: 288, type: 3, width: 20, height: 12 +Child: 289, type: 3, width: 20, height: 12 +Child: 290, type: 3, width: 20, height: 12 +Child: 291, type: 3, width: 20, height: 12 +Child: 292, type: 3, width: 20, height: 12 +Child: 293, type: 3, width: 20, height: 12 +Child: 294, type: 3, width: 20, height: 12 +Child: 295, type: 3, width: 20, height: 12 +Child: 296, type: 3, width: 20, height: 12 +Child: 297, type: 3, width: 20, height: 12 +Child: 298, type: 3, width: 20, height: 12 +Child: 299, type: 3, width: 20, height: 12 +Child: 300, type: 3, width: 20, height: 12 +Child: 301, type: 3, width: 20, height: 12 +Child: 302, type: 3, width: 20, height: 12 +Child: 303, type: 3, width: 20, height: 12 +Child: 304, type: 3, width: 20, height: 12 +Child: 305, type: 3, width: 20, height: 12 +Child: 306, type: 3, width: 20, height: 12 +Child: 307, type: 3, width: 20, height: 12 +Child: 308, type: 3, width: 20, height: 12 +Child: 309, type: 3, width: 20, height: 12 +Child: 310, type: 3, width: 20, height: 12 +Child: 311, type: 3, width: 20, height: 12 +Child: 312, type: 3, width: 20, height: 12 +Child: 313, type: 3, width: 20, height: 12 +Child: 314, type: 3, width: 20, height: 12 +Child: 315, type: 3, width: 20, height: 12 +Child: 316, type: 3, width: 20, height: 12 +Child: 317, type: 3, width: 20, height: 12 +Child: 318, type: 3, width: 20, height: 12 +Child: 319, type: 3, width: 20, height: 12 +Child: 320, type: 3, width: 20, height: 12 +Child: 321, type: 3, width: 20, height: 12 +Child: 322, type: 3, width: 20, height: 12 +Child: 323, type: 3, width: 20, height: 12 +Child: 324, type: 3, width: 20, height: 12 +Child: 325, type: 3, width: 20, height: 12 +Child: 326, type: 3, width: 20, height: 12 +Child: 327, type: 3, width: 20, height: 12 +Child: 328, type: 5, width: 36, height: 36 +Child: 329, type: 5, width: 36, height: 36 +Child: 330, type: 5, width: 36, height: 36 +Child: 331, type: 5, width: 36, height: 36 +Child: 332, type: 5, width: 36, height: 36 +Child: 333, type: 5, width: 36, height: 36 +Child: 334, type: 5, width: 36, height: 36 +Child: 335, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/400.txt b/server508/lists/interfaces/400.txt new file mode 100644 index 0000000..1d0cb0b --- /dev/null +++ b/server508/lists/interfaces/400.txt @@ -0,0 +1,20 @@ +Child: 0, type: 6, width: 473, height: 298 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 69, height: 67 +Child: 3, type: 6, width: 71, height: 66 +Child: 4, type: 6, width: 70, height: 69 +Child: 5, type: 6, width: 67, height: 67 +Child: 6, type: 6, width: 66, height: 68 +Child: 7, type: 6, width: 66, height: 68 +Child: 8, type: 6, width: 66, height: 66 +Child: 9, type: 6, width: 66, height: 67 +Child: 10, type: 6, width: 67, height: 68 +Child: 11, type: 6, width: 67, height: 67 +Child: 12, type: 6, width: 67, height: 67 +Child: 13, type: 6, width: 66, height: 67 +Child: 14, type: 6, width: 69, height: 69 +Child: 15, type: 6, width: 65, height: 68 +Child: 16, type: 6, width: 69, height: 66 +Child: 17, type: 5, width: 26, height: 23 +Child: 18, type: 5, width: 26, height: 23 +Child: 19, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/401.txt b/server508/lists/interfaces/401.txt new file mode 100644 index 0000000..f1c5784 --- /dev/null +++ b/server508/lists/interfaces/401.txt @@ -0,0 +1,24 @@ +Child: 0, type: 6, width: 15271, height: 939 +Child: 1, type: 6, width: 15271, height: 939 +Child: 2, type: 6, width: 15271, height: 1625 +Child: 3, message: PLAYER +Child: 4, message: SHOTS +Child: 5, message: SCORE +Child: 6, message: - +Child: 7, message: - +Child: 8, message: - +Child: 9, message: - +Child: 10, message: - +Child: 11, message: - +Child: 12, message: - +Child: 13, message: - +Child: 14, message: - +Child: 15, message: - +Child: 16, message: - +Child: 17, message: - +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/402.txt b/server508/lists/interfaces/402.txt new file mode 100644 index 0000000..233f5f1 --- /dev/null +++ b/server508/lists/interfaces/402.txt @@ -0,0 +1,190 @@ +Child: 0, type: 3, width: 562, height: 362 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 25, height: 30 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 25, height: 30 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, message: Room Creation Menu +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 88, height: 60 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 332, height: 222 +Child: 80, type: 6, width: 49, height: 34 +Child: 81, type: 6, width: 49, height: 34 +Child: 82, type: 6, width: 49, height: 34 +Child: 83, type: 6, width: 33, height: 32 +Child: 84, type: 6, width: 34, height: 31 +Child: 85, type: 6, width: 32, height: 32 +Child: 86, type: 6, width: 32, height: 32 +Child: 87, type: 6, width: 32, height: 32 +Child: 88, type: 6, width: 58, height: 4 +Child: 89, type: 6, width: 38, height: 41 +Child: 90, type: 6, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, type: 6, width: 32, height: 32 +Child: 100, type: 6, width: 32, height: 32 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, type: 6, width: 32, height: 32 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, type: 3, width: 349, height: 222 +Child: 108, message: Parlour: Lvl 1 +Child: 109, message: Garden: Lvl 1 +Child: 110, message: Kitchen: Lvl 5 +Child: 111, message: Dining room: Lvl 10 +Child: 112, message: Workshop: Lvl 15 +Child: 113, message: Bedroom: Lvl 20 +Child: 114, message: Hall - Skill trophies: Lvl 25 +Child: 115, message: Games room: Lvl 30 +Child: 116, message: Combat room: Lvl 32 +Child: 117, message: Hall - Quest trophies: Lvl 35 +Child: 118, message: Study: Lvl 40 +Child: 119, message: Costume room: Lvl 42 +Child: 120, message: Chapel: Lvl 45 +Child: 121, message: Portal chamber: Lvl 50 +Child: 122, message: Formal garden: Lvl 55 +Child: 123, message: Throne room: Lvl 60 +Child: 124, message: Oubliette: Lvl 65 +Child: 125, message: Dungeon - Corridor: Lvl 70 +Child: 126, message: Dungeon - Junction: Lvl 70 +Child: 127, message: Dungeon - Stairs: Lvl 70 +Child: 128, type: 5, width: 88, height: 60 +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 5, width: 36, height: 36 +Child: 131, type: 5, width: 36, height: 36 +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 5, width: 36, height: 36 +Child: 134, type: 5, width: 36, height: 36 +Child: 135, type: 5, width: 25, height: 30 +Child: 136, type: 3, width: 374, height: 47 +Child: 137, message: Select a room to build +Child: 138, message: 1000 coins +Child: 139, message: 1000 coins +Child: 140, message: 5000 coins +Child: 141, message: 5000 coins +Child: 142, message: 10000 coins +Child: 143, message: 10000 coins +Child: 144, message: 15000 coins +Child: 145, message: 25000 coins +Child: 146, message: 25000 coins +Child: 147, message: 25000 coins +Child: 148, message: 50000 coins +Child: 149, message: 50000 coins +Child: 150, message: 50000 coins +Child: 151, message: 100000 coins +Child: 152, message: 75000 coins +Child: 153, message: 150000 coins +Child: 154, message: 150000 coins +Child: 155, message: 7500 coins +Child: 156, message: 7500 coins +Child: 157, message: 7500 coins +Child: 158, message: Treasure room: Lvl 75 +Child: 159, message: 250000 coins +Child: 160, type: 3, width: 238, height: 61 +Child: 161, type: 3, width: 238, height: 61 +Child: 162, type: 3, width: 238, height: 61 +Child: 163, type: 3, width: 238, height: 56 +Child: 164, type: 3, width: 238, height: 61 +Child: 165, type: 3, width: 238, height: 58 +Child: 166, type: 3, width: 238, height: 61 +Child: 167, type: 3, width: 238, height: 56 +Child: 168, type: 3, width: 238, height: 59 +Child: 169, type: 3, width: 238, height: 59 +Child: 170, type: 3, width: 238, height: 61 +Child: 171, type: 3, width: 238, height: 58 +Child: 172, type: 3, width: 238, height: 58 +Child: 173, type: 3, width: 238, height: 57 +Child: 174, type: 3, width: 238, height: 60 +Child: 175, type: 3, width: 238, height: 61 +Child: 176, type: 3, width: 238, height: 58 +Child: 177, type: 3, width: 238, height: 60 +Child: 178, type: 3, width: 238, height: 60 +Child: 179, type: 3, width: 238, height: 60 +Child: 180, type: 3, width: 238, height: 59 +Child: 181, type: 5, width: 150, height: 10 +Child: 182, type: 5, width: 25, height: 30 +Child: 183, type: 5, width: 36, height: 36 +Child: 184, type: 5, width: 36, height: 36 +Child: 185, type: 5, width: 36, height: 36 +Child: 186, type: 3, width: 123, height: 32 +Child: 187, type: 5, width: 26, height: 23 +Child: 188, type: 5, width: 26, height: 23 +Child: 189, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/403.txt b/server508/lists/interfaces/403.txt new file mode 100644 index 0000000..eab91ff --- /dev/null +++ b/server508/lists/interfaces/403.txt @@ -0,0 +1,128 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: What wood do you want converting to planks? +Child: 89, type: 0, width: 96, height: 128 +Child: 90, type: 0, width: 96, height: 128 +Child: 91, type: 0, width: 96, height: 128 +Child: 92, type: 0, width: 96, height: 128 +Child: 93, type: 6, width: 96, height: 90 +Child: 94, type: 6, width: 96, height: 90 +Child: 95, type: 6, width: 96, height: 90 +Child: 96, type: 6, width: 96, height: 90 +Child: 97, message: Wood
Cost = 100 +Child: 98, message: Oak
Cost = 250 +Child: 99, message: Teak
Cost = 500 +Child: 100, message: Mahogany
Cost = 1500 +Child: 101, type: 0, width: 96, height: 90 +Child: 102, message: +Child: 103, message: +Child: 104, message: +Child: 105, message: +Child: 106, type: 5, width: 26, height: 23 +Child: 107, message: +Child: 108, type: 0, width: 96, height: 90 +Child: 109, message: +Child: 110, message: +Child: 111, message: +Child: 112, message: +Child: 113, message: +Child: 114, type: 0, width: 96, height: 90 +Child: 115, message: +Child: 116, message: +Child: 117, message: +Child: 118, message: +Child: 119, message: +Child: 120, type: 0, width: 96, height: 90 +Child: 121, message: +Child: 122, message: +Child: 123, message: +Child: 124, message: +Child: 125, message: +Child: 126, type: 5, width: 26, height: 23 +Child: 127, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/404.txt b/server508/lists/interfaces/404.txt new file mode 100644 index 0000000..ca6bba7 --- /dev/null +++ b/server508/lists/interfaces/404.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 26983, height: 41359 diff --git a/server508/lists/interfaces/405.txt b/server508/lists/interfaces/405.txt new file mode 100644 index 0000000..efa4f51 --- /dev/null +++ b/server508/lists/interfaces/405.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/406.txt b/server508/lists/interfaces/406.txt new file mode 100644 index 0000000..b132aac --- /dev/null +++ b/server508/lists/interfaces/406.txt @@ -0,0 +1,8 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, message: Cancel +Child: 7, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/407.txt b/server508/lists/interfaces/407.txt new file mode 100644 index 0000000..be08904 --- /dev/null +++ b/server508/lists/interfaces/407.txt @@ -0,0 +1,18 @@ +Child: 0, type: 3, width: 10, height: 14 +Child: 1, type: 6, width: 45, height: 107 +Child: 2, type: 0, width: 517, height: 332 +Child: 3, message: eeeeeeeeeeeeee +Child: 4, type: 3, width: 10, height: 14 +Child: 5, type: 3, width: 10, height: 14 +Child: 6, type: 3, width: 10, height: 14 +Child: 7, type: 3, width: 10, height: 14 +Child: 8, type: 3, width: 10, height: 14 +Child: 9, type: 3, width: 10, height: 14 +Child: 10, type: 3, width: 10, height: 14 +Child: 11, type: 3, width: 10, height: 14 +Child: 12, type: 3, width: 10, height: 14 +Child: 13, message: Next Departure: 5 min +Child: 14, message: Players Ready: 5 +Child: 15, message: (Need 5 to 25 players) +Child: 16, message: Points:pest_points +Child: 17, type: 0, width: 119, height: 292 diff --git a/server508/lists/interfaces/408.txt b/server508/lists/interfaces/408.txt new file mode 100644 index 0000000..f3d16d4 --- /dev/null +++ b/server508/lists/interfaces/408.txt @@ -0,0 +1,29 @@ +Child: 0, message: %1 Min +Child: 1, message: %100 +Child: 2, type: 6, width: 27, height: 28 +Child: 3, type: 6, width: 27, height: 28 +Child: 4, type: 6, width: 27, height: 28 +Child: 5, type: 6, width: 27, height: 28 +Child: 6, type: 6, width: 25, height: 26 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, message: 0 +Child: 12, type: 6, width: 26, height: 31 +Child: 13, message: 100 +Child: 14, message: 100 +Child: 15, message: 100 +Child: 16, message: 100 +Child: 17, type: 6, width: 39, height: 39 +Child: 18, type: 0, width: 32, height: 32 +Child: 19, type: 6, width: 39, height: 39 +Child: 20, type: 0, width: 32, height: 32 +Child: 21, type: 6, width: 39, height: 39 +Child: 22, type: 0, width: 32, height: 32 +Child: 23, type: 6, width: 39, height: 39 +Child: 24, type: 0, width: 32, height: 32 +Child: 25, message: W +Child: 26, message: E +Child: 27, message: SE +Child: 28, message: SW diff --git a/server508/lists/interfaces/409.txt b/server508/lists/interfaces/409.txt new file mode 100644 index 0000000..589dfe4 --- /dev/null +++ b/server508/lists/interfaces/409.txt @@ -0,0 +1,31 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 49, height: 238 +Child: 2, type: 6, width: 66, height: 226 +Child: 3, type: 6, width: 40, height: 228 +Child: 4, type: 6, width: 154, height: 238 +Child: 5, type: 6, width: 213, height: 275 +Child: 6, message: Choose a tool to use on each of the moving parts. +Child: 7, type: 6, width: 80, height: 83 +Child: 8, type: 6, width: 35, height: 120 +Child: 9, type: 6, width: 66, height: 72 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 512, height: 334 +Child: 12, type: 0, width: 16391, height: 16391 +Child: 13, type: 0, width: 16391, height: 16391 +Child: 14, type: 5, width: 32, height: 334 +Child: 15, type: 5, width: 462, height: 32 +Child: 16, type: 5, width: 512, height: 32 +Child: 17, type: 5, width: 32, height: 334 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 0, width: 8192, height: 16391 +Child: 23, type: 0, width: 8188, height: 16391 +Child: 24, type: 0, width: 16391, height: 8192 +Child: 25, type: 0, width: 16391, height: 8182 +Child: 26, type: 0, width: 512, height: 334 +Child: 27, type: 5, width: 256, height: 16384 +Child: 28, type: 5, width: 256, height: 16391 +Child: 29, type: 5, width: 16391, height: 167 +Child: 30, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/41.txt b/server508/lists/interfaces/41.txt new file mode 100644 index 0000000..7071a95 --- /dev/null +++ b/server508/lists/interfaces/41.txt @@ -0,0 +1,118 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 25, height: 30 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 25, height: 30 +Child: 52, type: 5, width: 25, height: 30 +Child: 53, type: 5, width: 25, height: 30 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 0, width: 100, height: 43 +Child: 66, message: Runesquares: Options +Child: 67, type: 3, width: 88, height: 31 +Child: 68, message: Challenge +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 25, height: 30 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: 30 seconds +Child: 76, type: 5, width: 14, height: 15 +Child: 77, type: 0, width: 113, height: 94 +Child: 78, type: 5, width: 14, height: 15 +Child: 79, type: 5, width: 14, height: 15 +Child: 80, type: 5, width: 14, height: 15 +Child: 81, message: 1 minute +Child: 82, message: 2 minutes +Child: 83, message: 15 seconds +Child: 84, message: Time per move: +Child: 85, type: 0, width: 191, height: 179 +Child: 86, type: 5, width: 14, height: 15 +Child: 87, type: 6, width: 34, height: 32 +Child: 88, message: Choose piece: +Child: 89, type: 6, width: 34, height: 32 +Child: 90, type: 6, width: 34, height: 32 +Child: 91, type: 6, width: 34, height: 32 +Child: 92, type: 6, width: 34, height: 32 +Child: 93, type: 6, width: 34, height: 32 +Child: 94, type: 6, width: 34, height: 32 +Child: 95, type: 6, width: 34, height: 32 +Child: 96, type: 6, width: 34, height: 32 +Child: 97, type: 6, width: 34, height: 31 +Child: 98, type: 6, width: 34, height: 32 +Child: 99, type: 6, width: 34, height: 32 +Child: 100, type: 5, width: 14, height: 15 +Child: 101, type: 5, width: 14, height: 15 +Child: 102, type: 5, width: 14, height: 15 +Child: 103, type: 5, width: 14, height: 15 +Child: 104, type: 5, width: 14, height: 15 +Child: 105, type: 5, width: 14, height: 15 +Child: 106, type: 5, width: 14, height: 15 +Child: 107, type: 5, width: 14, height: 15 +Child: 108, type: 5, width: 14, height: 15 +Child: 109, type: 5, width: 15, height: 15 +Child: 110, type: 5, width: 14, height: 15 +Child: 111, message: Ranked +Child: 112, type: 5, width: 14, height: 15 +Child: 113, type: 5, width: 26, height: 23 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 0, width: 32, height: 32 +Child: 116, type: 5, width: 36, height: 36 +Child: 117, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/410.txt b/server508/lists/interfaces/410.txt new file mode 100644 index 0000000..baf5b59 --- /dev/null +++ b/server508/lists/interfaces/410.txt @@ -0,0 +1,13 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, message: Spiky ball. Use stab defence. +Child: 6, message: Anvil. Use blunt defence. +Child: 7, message: Slashing blades. Use slash defence. +Child: 8, message: Magic missile. Use magic defence. +Child: 9, message: Catapult Defence Game Key +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 5, width: 26, height: 23 +Child: 12, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/411.txt b/server508/lists/interfaces/411.txt new file mode 100644 index 0000000..eadc9c2 --- /dev/null +++ b/server508/lists/interfaces/411.txt @@ -0,0 +1,14 @@ +Child: 0, type: 3, width: 165, height: 232 +Child: 1, type: 3, width: 155, height: 53 +Child: 2, type: 3, width: 155, height: 53 +Child: 3, type: 3, width: 155, height: 53 +Child: 4, type: 3, width: 155, height: 53 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, message: Use stab defence +Child: 10, message: Use blunt defence +Child: 11, message: Use slash defence +Child: 12, message: Use magic defence +Child: 13, message: Defence style. diff --git a/server508/lists/interfaces/412.txt b/server508/lists/interfaces/412.txt new file mode 100644 index 0000000..bf43e46 --- /dev/null +++ b/server508/lists/interfaces/412.txt @@ -0,0 +1,19 @@ +Child: 0, type: 6, width: 511, height: 350 +Child: 1, message: Attack Dummy Key +Child: 2, type: 6, width: 65, height: 68 +Child: 3, type: 6, width: 93, height: 73 +Child: 4, type: 6, width: 80, height: 90 +Child: 5, type: 6, width: 64, height: 62 +Child: 6, type: 6, width: 71, height: 85 +Child: 7, type: 6, width: 67, height: 62 +Child: 8, type: 6, width: 70, height: 61 +Child: 9, message: Accurate +Child: 10, message: Slash +Child: 11, message: Aggressive +Child: 12, message: Controlled +Child: 13, message: Crush +Child: 14, message: Stab +Child: 15, message: Defensive +Child: 16, message:

These are the types
of attack to use on
each of the dummies
that pop up from
the floor.

You will find that you
need more than one
weapon to be
successful. +Child: 17, type: 5, width: 26, height: 23 +Child: 18, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/413.txt b/server508/lists/interfaces/413.txt new file mode 100644 index 0000000..31317fd --- /dev/null +++ b/server508/lists/interfaces/413.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/414.txt b/server508/lists/interfaces/414.txt new file mode 100644 index 0000000..a36571b --- /dev/null +++ b/server508/lists/interfaces/414.txt @@ -0,0 +1,28 @@ +Child: 0, type: 6, width: 480, height: 301 +Child: 1, type: 6, width: 136, height: 156 +Child: 2, type: 6, width: 136, height: 156 +Child: 3, type: 6, width: 26, height: 26 +Child: 4, type: 6, width: 46, height: 26 +Child: 5, type: 6, width: 46, height: 35 +Child: 6, type: 6, width: 26, height: 26 +Child: 7, type: 6, width: 46, height: 26 +Child: 8, type: 6, width: 46, height: 35 +Child: 9, type: 6, width: 26, height: 26 +Child: 10, type: 6, width: 46, height: 26 +Child: 11, type: 6, width: 46, height: 35 +Child: 12, type: 6, width: 18, height: 17 +Child: 13, type: 6, width: 46, height: 26 +Child: 14, type: 6, width: 48, height: 30 +Child: 15, type: 6, width: 46, height: 26 +Child: 16, type: 6, width: 47, height: 31 +Child: 17, type: 6, width: 18, height: 17 +Child: 18, type: 6, width: 18, height: 17 +Child: 19, message: Congratulations! Your team won! +Child: 20, message: The final score was: +Child: 21, message: You were awarded 999 Pieces of Eight! +Child: 22, message: 99 +Child: 23, message: 99 +Child: 24, message: : +Child: 25, message: +Child: 26, type: 5, width: 26, height: 23 +Child: 27, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/415.txt b/server508/lists/interfaces/415.txt new file mode 100644 index 0000000..8d4b603 --- /dev/null +++ b/server508/lists/interfaces/415.txt @@ -0,0 +1,68 @@ +Child: 0, type: 0, width: 76, height: 113 +Child: 1, type: 6, width: 39, height: 37 +Child: 2, type: 6, width: 38, height: 28 +Child: 3, type: 6, width: 47, height: 23 +Child: 4, message: 0 +Child: 5, message: 0 +Child: 6, message: 0 +Child: 7, type: 0, width: 33, height: 35 +Child: 8, type: 6, width: 36, height: 15 +Child: 9, type: 0, width: 36, height: 28 +Child: 10, type: 6, width: 36, height: 15 +Child: 11, type: 0, width: 39, height: 31 +Child: 12, type: 6, width: 36, height: 15 +Child: 13, type: 0, width: 498, height: 52 +Child: 14, type: 6, width: 32, height: 26 +Child: 15, type: 6, width: 30, height: 24 +Child: 16, type: 6, width: 25, height: 30 +Child: 17, type: 6, width: 41, height: 24 +Child: 18, type: 6, width: 35, height: 25 +Child: 19, type: 6, width: 29, height: 29 +Child: 20, type: 6, width: 29, height: 29 +Child: 21, type: 6, width: 29, height: 29 +Child: 22, type: 0, width: 56, height: 56 +Child: 23, type: 6, width: 32, height: 26 +Child: 24, type: 0, width: 53, height: 50 +Child: 25, type: 6, width: 30, height: 24 +Child: 26, type: 0, width: 54, height: 50 +Child: 27, type: 6, width: 41, height: 24 +Child: 28, type: 0, width: 52, height: 48 +Child: 29, type: 6, width: 35, height: 25 +Child: 30, type: 0, width: 52, height: 54 +Child: 31, type: 6, width: 29, height: 29 +Child: 32, type: 0, width: 63, height: 55 +Child: 33, type: 6, width: 29, height: 29 +Child: 34, type: 0, width: 57, height: 55 +Child: 35, type: 6, width: 29, height: 29 +Child: 36, type: 0, width: 54, height: 53 +Child: 37, type: 6, width: 25, height: 30 +Child: 38, type: 0, width: 52, height: 50 +Child: 39, type: 6, width: 41, height: 24 +Child: 40, type: 0, width: 54, height: 50 +Child: 41, type: 6, width: 41, height: 24 +Child: 42, type: 0, width: 184, height: 73 +Child: 43, type: 6, width: 175, height: 49 +Child: 44, message: 0 +Child: 45, message: 0 +Child: 46, type: 0, width: 69, height: 68 +Child: 47, type: 6, width: 23, height: 48 +Child: 48, type: 0, width: 69, height: 68 +Child: 49, type: 6, width: 23, height: 48 +Child: 50, type: 0, width: 69, height: 68 +Child: 51, type: 6, width: 23, height: 48 +Child: 52, type: 0, width: 69, height: 68 +Child: 53, type: 6, width: 23, height: 48 +Child: 54, type: 0, width: 69, height: 68 +Child: 55, type: 6, width: 23, height: 48 +Child: 56, type: 0, width: 69, height: 68 +Child: 57, type: 6, width: 29, height: 61 +Child: 58, message: 0 +Child: 59, message: 0 +Child: 60, message: 0 +Child: 61, message: 0 +Child: 62, message: 0 +Child: 63, message: 0 +Child: 64, message: 0 +Child: 65, message: 0 +Child: 66, message: Current Score +Child: 67, message: Time Left : 20 Mins diff --git a/server508/lists/interfaces/416.txt b/server508/lists/interfaces/416.txt new file mode 100644 index 0000000..8afe016 --- /dev/null +++ b/server508/lists/interfaces/416.txt @@ -0,0 +1,39 @@ +Child: 0, type: 6, width: 533, height: 378 +Child: 1, type: 0, width: 513, height: 208 +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, type: 0, width: 204, height: 70 +Child: 6, type: 0, width: 204, height: 70 +Child: 7, type: 0, width: 204, height: 70 +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 6, width: 201, height: 60 +Child: 10, message: Bridge Section +Child: 11, type: 6, width: 200, height: 58 +Child: 12, message: Pipe Section +Child: 13, type: 6, width: 201, height: 57 +Child: 14, message: Wooden Planks +Child: 15, type: 0, width: 512, height: 334 +Child: 16, type: 6, width: 775, height: 332 +Child: 17, type: 6, width: 169, height: 101 +Child: 18, type: 6, width: 120, height: 96 +Child: 19, type: 6, width: 78, height: 105 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 0, width: 16391, height: 16391 +Child: 22, type: 0, width: 8192, height: 16391 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 0, width: 8188, height: 16391 +Child: 25, type: 5, width: 256, height: 16384 +Child: 26, type: 0, width: 16391, height: 8192 +Child: 27, type: 5, width: 16391, height: 167 +Child: 28, type: 0, width: 16391, height: 8182 +Child: 29, type: 5, width: 16391, height: 166 +Child: 30, type: 0, width: 512, height: 334 +Child: 31, type: 5, width: 32, height: 334 +Child: 32, type: 5, width: 462, height: 32 +Child: 33, type: 5, width: 512, height: 32 +Child: 34, type: 5, width: 32, height: 334 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 diff --git a/server508/lists/interfaces/417.txt b/server508/lists/interfaces/417.txt new file mode 100644 index 0000000..33fbd30 --- /dev/null +++ b/server508/lists/interfaces/417.txt @@ -0,0 +1,51 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 527, height: 381 +Child: 2, type: 6, width: 465, height: 227 +Child: 3, type: 6, width: 43, height: 74 +Child: 4, type: 6, width: 69, height: 68 +Child: 5, type: 6, width: 61, height: 57 +Child: 6, type: 6, width: 70, height: 14 +Child: 7, type: 6, width: 67, height: 77 +Child: 8, type: 6, width: 40, height: 50 +Child: 9, type: 6, width: 49, height: 49 +Child: 10, type: 6, width: 51, height: 50 +Child: 11, type: 6, width: 31, height: 51 +Child: 12, type: 6, width: 14, height: 49 +Child: 13, type: 6, width: 64, height: 62 +Child: 14, type: 6, width: 50, height: 57 +Child: 15, message: Bamboo pipe +Child: 16, message: Bridge section +Child: 17, message: Bucket +Child: 18, message: Torch +Child: 19, message: Lumber patch +Child: 20, message: Jar +Child: 21, message: Bowl +Child: 22, message: Tinderbox +Child: 23, message: Meat +Child: 24, message: Knife +Child: 25, message: Net +Child: 26, message: Axe +Child: 27, message: 0 +Child: 28, message: 0 +Child: 29, message: 0 +Child: 30, type: 5, width: 26, height: 23 +Child: 31, type: 0, width: 512, height: 334 +Child: 32, type: 0, width: 16391, height: 16391 +Child: 33, type: 0, width: 16391, height: 16391 +Child: 34, type: 5, width: 32, height: 334 +Child: 35, type: 5, width: 462, height: 32 +Child: 36, type: 5, width: 512, height: 32 +Child: 37, type: 5, width: 32, height: 334 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 0, width: 8192, height: 16391 +Child: 43, type: 0, width: 8188, height: 16391 +Child: 44, type: 0, width: 16391, height: 8192 +Child: 45, type: 0, width: 16391, height: 8182 +Child: 46, type: 0, width: 512, height: 334 +Child: 47, type: 5, width: 256, height: 16384 +Child: 48, type: 5, width: 256, height: 16391 +Child: 49, type: 5, width: 16391, height: 167 +Child: 50, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/418.txt b/server508/lists/interfaces/418.txt new file mode 100644 index 0000000..5ca4ffd --- /dev/null +++ b/server508/lists/interfaces/418.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 183, height: 66 +Child: 1, type: 6, width: 203, height: 54 +Child: 2, message: 0 +Child: 3, message: 0 +Child: 4, message: Next Game In : +Child: 5, message: Players waiting +Child: 6, type: 0, width: 223, height: 80 diff --git a/server508/lists/interfaces/419.txt b/server508/lists/interfaces/419.txt new file mode 100644 index 0000000..ce48a1a --- /dev/null +++ b/server508/lists/interfaces/419.txt @@ -0,0 +1,94 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 6, width: 502, height: 320 +Child: 3, message: Ahoy! What would ye like to be sewn together, matey? +Child: 4, type: 0, width: 67, height: 61 +Child: 5, type: 0, width: 61, height: 63 +Child: 6, type: 0, width: 62, height: 62 +Child: 7, type: 0, width: 61, height: 63 +Child: 8, type: 0, width: 56, height: 61 +Child: 9, type: 0, width: 59, height: 62 +Child: 10, type: 0, width: 55, height: 60 +Child: 11, type: 0, width: 55, height: 60 +Child: 12, type: 0, width: 55, height: 60 +Child: 13, type: 0, width: 55, height: 60 +Child: 14, type: 0, width: 59, height: 84 +Child: 15, type: 0, width: 55, height: 60 +Child: 16, type: 0, width: 55, height: 60 +Child: 17, type: 0, width: 55, height: 60 +Child: 18, type: 0, width: 55, height: 60 +Child: 19, type: 0, width: 55, height: 71 +Child: 20, type: 0, width: 55, height: 71 +Child: 21, type: 0, width: 55, height: 71 +Child: 22, type: 0, width: 55, height: 71 +Child: 23, type: 0, width: 55, height: 71 +Child: 24, type: 0, width: 55, height: 71 +Child: 25, type: 0, width: 55, height: 71 +Child: 26, type: 0, width: 65, height: 55 +Child: 27, type: 0, width: 71, height: 85 +Child: 28, type: 0, width: 46, height: 78 +Child: 29, type: 0, width: 76, height: 58 +Child: 30, type: 0, width: 83, height: 84 +Child: 31, type: 0, width: 85, height: 75 +Child: 32, type: 3, width: 343, height: 2 +Child: 33, type: 3, width: 343, height: 2 +Child: 34, type: 3, width: 343, height: 2 +Child: 35, type: 0, width: 504, height: 263 +Child: 36, type: 0, width: 16, height: 240 +Child: 37, type: 5, width: 26, height: 23 +Child: 38, type: 6, width: 47, height: 38 +Child: 39, message: White
bandana +Child: 40, type: 6, width: 47, height: 38 +Child: 41, message: Red
bandana +Child: 42, type: 6, width: 47, height: 38 +Child: 43, message: Blue
bandana +Child: 44, type: 6, width: 47, height: 38 +Child: 45, message: Brown
bandana +Child: 46, type: 6, width: 47, height: 38 +Child: 47, message: Grey
bandana +Child: 48, type: 6, width: 47, height: 38 +Child: 49, message: Purple
bandana +Child: 50, type: 6, width: 51, height: 41 +Child: 51, message: Orange
bandana +Child: 52, type: 6, width: 62, height: 41 +Child: 53, message: Grey
bandana +Child: 54, type: 6, width: 62, height: 41 +Child: 55, message: Purple
bandana +Child: 56, type: 6, width: 62, height: 41 +Child: 57, message: Orange
bandana +Child: 58, type: 6, width: 62, height: 48 +Child: 59, message: Hat & double patches +Child: 60, type: 6, width: 62, height: 41 +Child: 61, message: Red
bandana +Child: 62, type: 6, width: 62, height: 41 +Child: 63, message: Brown
bandana +Child: 64, type: 6, width: 62, height: 41 +Child: 65, message: Blue
bandana +Child: 66, type: 6, width: 62, height: 41 +Child: 67, message: White
bandana +Child: 68, type: 6, width: 60, height: 41 +Child: 69, message: White
bandana
left eye +Child: 70, type: 6, width: 60, height: 41 +Child: 71, message: Red
bandana
left eye +Child: 72, type: 6, width: 60, height: 41 +Child: 73, message: Blue
bandana
left eye +Child: 74, type: 6, width: 60, height: 41 +Child: 75, message: Brown
bandana
left eye +Child: 76, type: 6, width: 60, height: 41 +Child: 77, message: Grey
bandana
left eye +Child: 78, type: 6, width: 60, height: 41 +Child: 79, message: Purple
bandana
left eye +Child: 80, type: 6, width: 60, height: 41 +Child: 81, message: Orange
bandana
left eye +Child: 82, type: 6, width: 53, height: 38 +Child: 83, message: Hat & patch +Child: 84, type: 6, width: 64, height: 51 +Child: 85, message: Hat & patch
left +Child: 86, type: 6, width: 37, height: 66 +Child: 87, message: Double
patch +Child: 88, type: 6, width: 41, height: 44 +Child: 89, message: Hook & claw +Child: 90, type: 6, width: 58, height: 48 +Child: 91, message: Cavalier & highwayman mask +Child: 92, type: 6, width: 42, height: 49 +Child: 93, message: Beret & mime mask diff --git a/server508/lists/interfaces/42.txt b/server508/lists/interfaces/42.txt new file mode 100644 index 0000000..79b5305 --- /dev/null +++ b/server508/lists/interfaces/42.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 119, height: 118 +Child: 1, message: Runesquares +Child: 2, message: Rank: %1 +Child: 3, type: 0, width: 98, height: 110 diff --git a/server508/lists/interfaces/420.txt b/server508/lists/interfaces/420.txt new file mode 100644 index 0000000..0a948e3 --- /dev/null +++ b/server508/lists/interfaces/420.txt @@ -0,0 +1,27 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 0, width: 48, height: 48 +Child: 7, type: 0, width: 55, height: 48 +Child: 8, type: 0, width: 48, height: 50 +Child: 9, type: 0, width: 48, height: 46 +Child: 10, type: 6, width: 120, height: 96 +Child: 11, type: 6, width: 126, height: 112 +Child: 12, type: 6, width: 122, height: 128 +Child: 13, type: 6, width: 114, height: 112 +Child: 14, type: 0, width: 522, height: 351 +Child: 15, type: 0, width: 524, height: 365 +Child: 16, type: 0, width: 530, height: 351 +Child: 17, type: 0, width: 518, height: 351 +Child: 18, type: 0, width: 70, height: 127 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, message: EXAMPLE +Child: 24, type: 5, width: 26, height: 23 +Child: 25, type: 5, width: 26, height: 23 +Child: 26, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/421.txt b/server508/lists/interfaces/421.txt new file mode 100644 index 0000000..ffd7ec6 --- /dev/null +++ b/server508/lists/interfaces/421.txt @@ -0,0 +1,13 @@ +Child: 0, type: 0, width: 447, height: 81 +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 +Child: 5, message: Line5 +Child: 6, message: Line6 +Child: 7, message: Line7 +Child: 8, message: Line8 +Child: 9, message: Line9 +Child: 10, message: Line10 +Child: 11, message: Line11 +Child: 12, message: Line12 diff --git a/server508/lists/interfaces/422.txt b/server508/lists/interfaces/422.txt new file mode 100644 index 0000000..5305d41 --- /dev/null +++ b/server508/lists/interfaces/422.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/423.txt b/server508/lists/interfaces/423.txt new file mode 100644 index 0000000..4998e57 --- /dev/null +++ b/server508/lists/interfaces/423.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: Certificate of Advanced Healing +Child: 2, message: From PoxStead College. +Child: 3, message: Signed Dr Foster-MMD, PRD
Head of
Magical Healing. +Child: 4, type: 5, width: 23, height: 23 +Child: 5, type: 5, width: 23, height: 23 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/424.txt b/server508/lists/interfaces/424.txt new file mode 100644 index 0000000..dc6a744 --- /dev/null +++ b/server508/lists/interfaces/424.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 45, height: 16 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 32, height: 32 +Child: 4, message: THE GODFATHER
ATTACKED US.
WE HAVE
FLED TO SAFETY.
IF YOU ARE LOYAL TO
HER MAJESTY, FIND
US BY USING
COORDINATES
AIR DLR DJQ AJS diff --git a/server508/lists/interfaces/425.txt b/server508/lists/interfaces/425.txt new file mode 100644 index 0000000..ac44dfb --- /dev/null +++ b/server508/lists/interfaces/425.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: COSMIC
RUNEe
ALTAR +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/426.txt b/server508/lists/interfaces/426.txt new file mode 100644 index 0000000..4611156 --- /dev/null +++ b/server508/lists/interfaces/426.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 31047, height: 42781 +Child: 2, type: 6, width: 17959, height: 16832 diff --git a/server508/lists/interfaces/427.txt b/server508/lists/interfaces/427.txt new file mode 100644 index 0000000..ef62471 --- /dev/null +++ b/server508/lists/interfaces/427.txt @@ -0,0 +1,12 @@ +Child: 0, type: 6, width: 46, height: 32 +Child: 1, message: I (insert full name here) do hereby swear fealty +Child: 2, message: and indebtedness to the Fairy Godfather until +Child: 3, message: such time as he releases me from my bond. +Child: 4, message: +Child: 5, message: Signed +Child: 6, message: +Child: 7, message: (insert full name and date here) +Child: 8, message: +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/428.txt b/server508/lists/interfaces/428.txt new file mode 100644 index 0000000..efa1841 --- /dev/null +++ b/server508/lists/interfaces/428.txt @@ -0,0 +1,33 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 261, height: 383 +Child: 2, type: 6, width: 88, height: 37 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 95, height: 118 +Child: 5, type: 6, width: 249, height: 74 +Child: 6, message: Room %1 of 8
Thieving level required: %2 +Child: 7, type: 3, width: 7, height: 7 +Child: 8, type: 3, width: 7, height: 7 +Child: 9, type: 3, width: 7, height: 7 +Child: 10, type: 3, width: 7, height: 7 +Child: 11, type: 3, width: 7, height: 7 +Child: 12, type: 3, width: 7, height: 7 +Child: 13, type: 3, width: 7, height: 7 +Child: 14, type: 3, width: 7, height: 7 +Child: 15, type: 3, width: 7, height: 7 +Child: 16, type: 3, width: 7, height: 7 +Child: 17, type: 3, width: 7, height: 7 +Child: 18, type: 3, width: 7, height: 7 +Child: 19, type: 3, width: 7, height: 7 +Child: 20, type: 3, width: 7, height: 7 +Child: 21, type: 3, width: 7, height: 7 +Child: 22, type: 3, width: 7, height: 7 +Child: 23, type: 3, width: 7, height: 7 +Child: 24, type: 3, width: 7, height: 7 +Child: 25, type: 3, width: 7, height: 7 +Child: 26, type: 3, width: 7, height: 7 +Child: 27, type: 3, width: 7, height: 7 +Child: 28, type: 3, width: 7, height: 7 +Child: 29, type: 3, width: 7, height: 7 +Child: 30, type: 3, width: 7, height: 7 +Child: 31, type: 3, width: 7, height: 7 +Child: 32, type: 3, width: 7, height: 7 diff --git a/server508/lists/interfaces/429.txt b/server508/lists/interfaces/429.txt new file mode 100644 index 0000000..ee04827 --- /dev/null +++ b/server508/lists/interfaces/429.txt @@ -0,0 +1,39 @@ +Child: 0, type: 3, width: 521, height: 344 +Child: 1, type: 5, width: 488, height: 302 +Child: 2, type: 5, width: 25, height: 244 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 33, height: 242 +Child: 5, type: 5, width: 433, height: 35 +Child: 6, type: 5, width: 434, height: 33 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 6, width: 84, height: 124 +Child: 11, type: 6, width: 62, height: 91 +Child: 12, type: 6, width: 55, height: 117 +Child: 13, type: 6, width: 87, height: 97 +Child: 14, type: 6, width: 60, height: 121 +Child: 15, type: 6, width: 66, height: 87 +Child: 16, type: 6, width: 85, height: 164 +Child: 17, type: 6, width: 59, height: 89 +Child: 18, type: 6, width: 60, height: 111 +Child: 19, type: 6, width: 65, height: 94 +Child: 20, type: 6, width: 73, height: 89 +Child: 21, type: 6, width: 51, height: 68 +Child: 22, type: 6, width: 62, height: 86 +Child: 23, type: 6, width: 34, height: 60 +Child: 24, message: Honest
Jimmy +Child: 25, message: Bert the
Sandman +Child: 26, message: Advisor
Ghrim +Child: 27, message: Turael +Child: 28, message: Sumona +Child: 29, message: Lanthus +Child: 30, message: Mazchna +Child: 31, message: Duradel +Child: 32, message: Vannaka +Child: 33, message: Murphy +Child: 34, message: Chaeldar +Child: 35, message: Cyrisus +Child: 36, message: Random +Child: 37, type: 5, width: 23, height: 23 +Child: 38, message: Choose a character diff --git a/server508/lists/interfaces/43.txt b/server508/lists/interfaces/43.txt new file mode 100644 index 0000000..ff18bfc --- /dev/null +++ b/server508/lists/interfaces/43.txt @@ -0,0 +1,272 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, message: Insert a very long name here! +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: vs +Child: 76, message: Insert a very long name here! +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Blah blah blah blah blah blah blah! +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 +Child: 92, message: Blah blah blah blah blah blah blah! +Child: 93, message: Blah blah blah blah blah! +Child: 94, type: 0, width: 78, height: 42 +Child: 95, type: 3, width: 66, height: 31 +Child: 96, message: Close +Child: 97, type: 5, width: 36, height: 36 +Child: 98, type: 5, width: 25, height: 30 +Child: 99, type: 5, width: 25, height: 30 +Child: 100, type: 5, width: 25, height: 30 +Child: 101, type: 5, width: 25, height: 30 +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 6, width: 20, height: 20 +Child: 104, type: 6, width: 20, height: 20 +inventory type: 64 slots, width: 8, height: 8, 105 +Child: 106, type: 3, width: 2, height: 32 +Child: 107, type: 3, width: 2, height: 32 +Child: 108, type: 3, width: 2, height: 32 +Child: 109, type: 3, width: 2, height: 32 +Child: 110, type: 3, width: 2, height: 32 +Child: 111, type: 3, width: 2, height: 32 +Child: 112, type: 3, width: 2, height: 32 +Child: 113, type: 3, width: 2, height: 32 +Child: 114, type: 3, width: 2, height: 32 +Child: 115, type: 3, width: 2, height: 32 +Child: 116, type: 3, width: 2, height: 32 +Child: 117, type: 3, width: 2, height: 32 +Child: 118, type: 3, width: 2, height: 32 +Child: 119, type: 3, width: 2, height: 32 +Child: 120, type: 3, width: 2, height: 32 +Child: 121, type: 3, width: 2, height: 32 +Child: 122, type: 3, width: 2, height: 32 +Child: 123, type: 3, width: 2, height: 32 +Child: 124, type: 3, width: 2, height: 32 +Child: 125, type: 3, width: 2, height: 32 +Child: 126, type: 3, width: 2, height: 32 +Child: 127, type: 3, width: 2, height: 32 +Child: 128, type: 3, width: 2, height: 32 +Child: 129, type: 3, width: 2, height: 32 +Child: 130, type: 3, width: 2, height: 32 +Child: 131, type: 3, width: 2, height: 32 +Child: 132, type: 3, width: 2, height: 32 +Child: 133, type: 3, width: 2, height: 32 +Child: 134, type: 3, width: 2, height: 32 +Child: 135, type: 3, width: 2, height: 32 +Child: 136, type: 3, width: 2, height: 32 +Child: 137, type: 3, width: 2, height: 32 +Child: 138, type: 3, width: 2, height: 32 +Child: 139, type: 3, width: 2, height: 32 +Child: 140, type: 3, width: 2, height: 32 +Child: 141, type: 3, width: 2, height: 32 +Child: 142, type: 3, width: 2, height: 32 +Child: 143, type: 3, width: 2, height: 32 +Child: 144, type: 3, width: 2, height: 32 +Child: 145, type: 3, width: 2, height: 32 +Child: 146, type: 3, width: 2, height: 32 +Child: 147, type: 3, width: 2, height: 32 +Child: 148, type: 3, width: 2, height: 32 +Child: 149, type: 3, width: 2, height: 32 +Child: 150, type: 3, width: 2, height: 32 +Child: 151, type: 3, width: 2, height: 32 +Child: 152, type: 3, width: 2, height: 32 +Child: 153, type: 3, width: 2, height: 32 +Child: 154, type: 3, width: 2, height: 32 +Child: 155, type: 3, width: 2, height: 32 +Child: 156, type: 3, width: 2, height: 32 +Child: 157, type: 3, width: 2, height: 32 +Child: 158, type: 3, width: 2, height: 32 +Child: 159, type: 3, width: 2, height: 32 +Child: 160, type: 3, width: 2, height: 32 +Child: 161, type: 3, width: 2, height: 32 +Child: 162, type: 3, width: 32, height: 2 +Child: 163, type: 3, width: 32, height: 2 +Child: 164, type: 3, width: 32, height: 2 +Child: 165, type: 3, width: 32, height: 2 +Child: 166, type: 3, width: 32, height: 2 +Child: 167, type: 3, width: 32, height: 2 +Child: 168, type: 3, width: 32, height: 2 +Child: 169, type: 3, width: 32, height: 2 +Child: 170, type: 3, width: 32, height: 2 +Child: 171, type: 3, width: 32, height: 2 +Child: 172, type: 3, width: 32, height: 2 +Child: 173, type: 3, width: 32, height: 2 +Child: 174, type: 3, width: 32, height: 2 +Child: 175, type: 3, width: 32, height: 2 +Child: 176, type: 3, width: 32, height: 2 +Child: 177, type: 3, width: 32, height: 2 +Child: 178, type: 3, width: 32, height: 2 +Child: 179, type: 3, width: 32, height: 2 +Child: 180, type: 3, width: 32, height: 2 +Child: 181, type: 3, width: 32, height: 2 +Child: 182, type: 3, width: 32, height: 2 +Child: 183, type: 3, width: 32, height: 2 +Child: 184, type: 3, width: 32, height: 2 +Child: 185, type: 3, width: 32, height: 2 +Child: 186, type: 3, width: 32, height: 2 +Child: 187, type: 3, width: 32, height: 2 +Child: 188, type: 3, width: 32, height: 2 +Child: 189, type: 3, width: 32, height: 2 +Child: 190, type: 3, width: 32, height: 2 +Child: 191, type: 3, width: 32, height: 2 +Child: 192, type: 3, width: 32, height: 2 +Child: 193, type: 3, width: 32, height: 2 +Child: 194, type: 3, width: 32, height: 2 +Child: 195, type: 3, width: 32, height: 2 +Child: 196, type: 3, width: 32, height: 2 +Child: 197, type: 3, width: 32, height: 2 +Child: 198, type: 3, width: 32, height: 2 +Child: 199, type: 3, width: 32, height: 2 +Child: 200, type: 3, width: 32, height: 2 +Child: 201, type: 3, width: 32, height: 2 +Child: 202, type: 3, width: 32, height: 2 +Child: 203, type: 3, width: 32, height: 2 +Child: 204, type: 3, width: 32, height: 2 +Child: 205, type: 3, width: 32, height: 2 +Child: 206, type: 3, width: 32, height: 2 +Child: 207, type: 3, width: 32, height: 2 +Child: 208, type: 3, width: 32, height: 2 +Child: 209, type: 3, width: 32, height: 2 +Child: 210, type: 3, width: 32, height: 2 +Child: 211, type: 3, width: 32, height: 2 +Child: 212, type: 3, width: 32, height: 2 +Child: 213, type: 3, width: 32, height: 2 +Child: 214, type: 3, width: 32, height: 2 +Child: 215, type: 3, width: 32, height: 2 +Child: 216, type: 3, width: 32, height: 2 +Child: 217, type: 3, width: 32, height: 2 +Child: 218, type: 3, width: 272, height: 2 +Child: 219, type: 3, width: 272, height: 2 +Child: 220, type: 3, width: 2, height: 272 +Child: 221, type: 3, width: 2, height: 272 +Child: 222, type: 3, width: 2, height: 2 +Child: 223, type: 3, width: 2, height: 2 +Child: 224, type: 3, width: 2, height: 2 +Child: 225, type: 3, width: 2, height: 2 +Child: 226, type: 3, width: 2, height: 2 +Child: 227, type: 3, width: 2, height: 2 +Child: 228, type: 3, width: 2, height: 2 +Child: 229, type: 3, width: 2, height: 2 +Child: 230, type: 3, width: 2, height: 2 +Child: 231, type: 3, width: 2, height: 2 +Child: 232, type: 3, width: 2, height: 2 +Child: 233, type: 3, width: 2, height: 2 +Child: 234, type: 3, width: 2, height: 2 +Child: 235, type: 3, width: 2, height: 2 +Child: 236, type: 3, width: 2, height: 2 +Child: 237, type: 3, width: 2, height: 2 +Child: 238, type: 3, width: 2, height: 2 +Child: 239, type: 3, width: 2, height: 2 +Child: 240, type: 3, width: 2, height: 2 +Child: 241, type: 3, width: 2, height: 2 +Child: 242, type: 3, width: 2, height: 2 +Child: 243, type: 3, width: 2, height: 2 +Child: 244, type: 3, width: 2, height: 2 +Child: 245, type: 3, width: 2, height: 2 +Child: 246, type: 3, width: 2, height: 2 +Child: 247, type: 3, width: 2, height: 2 +Child: 248, type: 3, width: 2, height: 2 +Child: 249, type: 3, width: 2, height: 2 +Child: 250, type: 3, width: 2, height: 2 +Child: 251, type: 3, width: 2, height: 2 +Child: 252, type: 3, width: 2, height: 2 +Child: 253, type: 3, width: 2, height: 2 +Child: 254, type: 3, width: 2, height: 2 +Child: 255, type: 3, width: 2, height: 2 +Child: 256, type: 3, width: 2, height: 2 +Child: 257, type: 3, width: 2, height: 2 +Child: 258, type: 3, width: 2, height: 2 +Child: 259, type: 3, width: 2, height: 2 +Child: 260, type: 3, width: 2, height: 2 +Child: 261, type: 3, width: 2, height: 2 +Child: 262, type: 3, width: 2, height: 2 +Child: 263, type: 3, width: 2, height: 2 +Child: 264, type: 3, width: 2, height: 2 +Child: 265, type: 3, width: 2, height: 2 +Child: 266, type: 3, width: 2, height: 2 +Child: 267, type: 3, width: 2, height: 2 +Child: 268, type: 3, width: 2, height: 2 +Child: 269, type: 3, width: 2, height: 2 +Child: 270, type: 3, width: 2, height: 2 +Child: 271, message: Runesquares diff --git a/server508/lists/interfaces/430.txt b/server508/lists/interfaces/430.txt new file mode 100644 index 0000000..c2d67a5 --- /dev/null +++ b/server508/lists/interfaces/430.txt @@ -0,0 +1,41 @@ +Child: 0, type: 5, width: 24, height: 24 +Child: 1, type: 5, width: 24, height: 24 +Child: 2, type: 5, width: 24, height: 24 +Child: 3, type: 5, width: 24, height: 24 +Child: 4, type: 5, width: 24, height: 24 +Child: 5, type: 5, width: 24, height: 24 +Child: 6, type: 5, width: 24, height: 24 +Child: 7, type: 5, width: 24, height: 24 +Child: 8, type: 5, width: 24, height: 24 +Child: 9, type: 5, width: 24, height: 24 +Child: 10, type: 5, width: 24, height: 24 +Child: 11, type: 5, width: 24, height: 24 +Child: 12, type: 5, width: 24, height: 24 +Child: 13, type: 5, width: 24, height: 24 +Child: 14, type: 5, width: 24, height: 24 +Child: 15, type: 5, width: 24, height: 24 +Child: 16, type: 5, width: 24, height: 24 +Child: 17, type: 5, width: 24, height: 24 +Child: 18, type: 5, width: 24, height: 24 +Child: 19, type: 5, width: 24, height: 24 +Child: 20, type: 5, width: 24, height: 24 +Child: 21, type: 5, width: 24, height: 24 +Child: 22, type: 5, width: 24, height: 24 +Child: 23, type: 5, width: 24, height: 24 +Child: 24, type: 5, width: 24, height: 24 +Child: 25, type: 5, width: 24, height: 24 +Child: 26, type: 5, width: 24, height: 24 +Child: 27, type: 5, width: 24, height: 24 +Child: 28, type: 5, width: 24, height: 24 +Child: 29, type: 5, width: 24, height: 24 +Child: 30, type: 5, width: 24, height: 24 +Child: 31, type: 5, width: 24, height: 24 +Child: 32, type: 5, width: 24, height: 24 +Child: 33, type: 5, width: 24, height: 24 +Child: 34, type: 5, width: 24, height: 24 +Child: 35, type: 5, width: 24, height: 24 +Child: 36, type: 5, width: 24, height: 24 +Child: 37, type: 5, width: 24, height: 24 +Child: 38, type: 5, width: 24, height: 24 +Child: 39, type: 5, width: 24, height: 24 +Child: 40, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/431.txt b/server508/lists/interfaces/431.txt new file mode 100644 index 0000000..ef142cf --- /dev/null +++ b/server508/lists/interfaces/431.txt @@ -0,0 +1,34 @@ +Child: 0, type: 3, width: 512, height: 400 +Child: 1, type: 6, width: 495, height: 317 +Child: 2, message: Pirates'
Cove +Child: 3, message: Moonclan
Island +Child: 4, type: 6, width: 250, height: 196 +Child: 5, type: 6, width: 48, height: 29 +Child: 6, type: 6, width: 41, height: 37 +Child: 7, type: 6, width: 47, height: 24 +Child: 8, type: 6, width: 45, height: 30 +Child: 9, type: 6, width: 48, height: 29 +Child: 10, type: 6, width: 41, height: 37 +Child: 11, type: 6, width: 36, height: 18 +Child: 12, type: 6, width: 28, height: 18 +Child: 13, type: 6, width: 221, height: 213 +Child: 14, type: 0, width: 512, height: 334 +Child: 15, type: 0, width: 16391, height: 16391 +Child: 16, type: 0, width: 16391, height: 16391 +Child: 17, type: 5, width: 32, height: 334 +Child: 18, type: 5, width: 462, height: 32 +Child: 19, type: 5, width: 512, height: 32 +Child: 20, type: 5, width: 32, height: 334 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 0, width: 8192, height: 16391 +Child: 26, type: 0, width: 8188, height: 16391 +Child: 27, type: 0, width: 16391, height: 8192 +Child: 28, type: 0, width: 16391, height: 8182 +Child: 29, type: 0, width: 512, height: 334 +Child: 30, type: 5, width: 256, height: 16384 +Child: 31, type: 5, width: 256, height: 16391 +Child: 32, type: 5, width: 16391, height: 167 +Child: 33, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/432.txt b/server508/lists/interfaces/432.txt new file mode 100644 index 0000000..54b12f9 --- /dev/null +++ b/server508/lists/interfaces/432.txt @@ -0,0 +1,108 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 484, height: 315 +Child: 2, type: 5, width: 30, height: 309 +Child: 3, type: 5, width: 32, height: 309 +Child: 4, type: 5, width: 483, height: 29 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 478, height: 31 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Enchant Crossbow Bolt +Child: 14, type: 0, width: 40, height: 40 +Child: 15, message: Magic 4 +Child: 16, message: Opal +Child: 17, type: 6, width: 40, height: 43 +Child: 18, type: 0, width: 40, height: 40 +Child: 19, message: Jade +Child: 20, message: Magic 14 +Child: 21, type: 6, width: 40, height: 43 +Child: 22, type: 0, width: 40, height: 40 +Child: 23, message: Pearl +Child: 24, message: Magic 24 +Child: 25, type: 6, width: 40, height: 43 +Child: 26, type: 0, width: 40, height: 40 +Child: 27, message: Magic 29 +Child: 28, type: 6, width: 40, height: 43 +Child: 29, type: 0, width: 40, height: 40 +Child: 30, message: Magic 7 +Child: 31, type: 6, width: 40, height: 43 +Child: 32, type: 0, width: 40, height: 40 +Child: 33, message: Magic 27 +Child: 34, type: 6, width: 40, height: 43 +Child: 35, type: 0, width: 40, height: 40 +Child: 36, message: Magic 49 +Child: 37, type: 6, width: 40, height: 43 +Child: 38, type: 0, width: 40, height: 40 +Child: 39, message: Magic 57 +Child: 40, type: 6, width: 40, height: 43 +Child: 41, type: 0, width: 40, height: 40 +Child: 42, message: Magic 68 +Child: 43, type: 6, width: 40, height: 43 +Child: 44, type: 0, width: 40, height: 40 +Child: 45, message: Magic 87 +Child: 46, type: 6, width: 40, height: 43 +Child: 47, message: %1/1 +Child: 48, type: 6, width: 22, height: 21 +Child: 49, message: %1/1 +Child: 50, type: 6, width: 22, height: 21 +Child: 51, message: %1/1 +Child: 52, type: 6, width: 22, height: 21 +Child: 53, message: %1/1 +Child: 54, type: 6, width: 22, height: 21 +Child: 55, message: %1/1 +Child: 56, type: 6, width: 22, height: 21 +Child: 57, message: %1/1 +Child: 58, type: 6, width: 22, height: 21 +Child: 59, message: %1/1 +Child: 60, type: 6, width: 22, height: 21 +Child: 61, message: %1/1 +Child: 62, type: 6, width: 22, height: 21 +Child: 63, message: %1/1 +Child: 64, type: 6, width: 20, height: 19 +Child: 65, message: %1/1 +Child: 66, type: 6, width: 22, height: 21 +Child: 67, type: 6, width: 22, height: 21 +Child: 68, message: %1/2 +Child: 69, type: 6, width: 22, height: 21 +Child: 70, message: %1/15 +Child: 71, type: 6, width: 22, height: 21 +Child: 72, message: %1/2 +Child: 73, type: 6, width: 22, height: 21 +Child: 74, message: %1/2 +Child: 75, type: 6, width: 22, height: 21 +Child: 76, message: %1/2 +Child: 77, type: 6, width: 22, height: 21 +Child: 78, message: %1/1 +Child: 79, type: 6, width: 22, height: 21 +Child: 80, message: %1/1 +Child: 81, type: 6, width: 22, height: 21 +Child: 82, message: %1/1 +Child: 83, type: 6, width: 22, height: 21 +Child: 84, message: %1/5 +Child: 85, type: 6, width: 22, height: 21 +Child: 86, message: %1/3 +Child: 87, type: 6, width: 22, height: 21 +Child: 88, message: %1/2 +Child: 89, type: 6, width: 22, height: 22 +Child: 90, message: %1/1 +Child: 91, type: 6, width: 22, height: 21 +Child: 92, message: %1/1 +Child: 93, type: 6, width: 22, height: 21 +Child: 94, message: %1/1 +Child: 95, message: Click on the bolts to enchant a maximum of 10. +Child: 96, message: Red Topaz +Child: 97, message: Sapphire +Child: 98, message: Emerald +Child: 99, message: Ruby +Child: 100, message: Diamond +Child: 101, message: Dragonstone +Child: 102, message: Onyx +Child: 103, type: 6, width: 22, height: 21 +Child: 104, message: %1/10 +Child: 105, type: 6, width: 22, height: 21 +Child: 106, message: %1/20 +Child: 107, type: 5, width: 422, height: 32 diff --git a/server508/lists/interfaces/433.txt b/server508/lists/interfaces/433.txt new file mode 100644 index 0000000..0a3d40b --- /dev/null +++ b/server508/lists/interfaces/433.txt @@ -0,0 +1,35 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: +Child: 4, message: +Child: 5, type: 5, width: 36, height: 36 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, message: +Child: 8, message: +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, message: +Child: 12, message: +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, message: +Child: 16, message: +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, message: +Child: 20, message: %1 +Child: 21, message: %1 +Child: 22, message: %1 +Child: 23, message: %1 +Child: 24, message: 0 +Child: 25, message: Text +Child: 26, message: Text +Child: 27, message: Text +Child: 28, message: Text +Child: 29, message: Text +Child: 30, message: Crossbow Bolt Pouch +Child: 31, message: Current Ammo +Child: 32, type: 5, width: 26, height: 23 +Child: 33, type: 5, width: 26, height: 23 +Child: 34, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/434.txt b/server508/lists/interfaces/434.txt new file mode 100644 index 0000000..58ce2b9 --- /dev/null +++ b/server508/lists/interfaces/434.txt @@ -0,0 +1,155 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 3, width: 315, height: 82 +Child: 89, type: 3, width: 317, height: 83 +Child: 90, message: Gnome Battas +Child: 91, type: 6, width: 50, height: 51 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, message: %1/4 +Child: 97, message: %1/1 +Child: 98, message: %1/1 +Child: 99, message: %1/1 +Child: 100, message: Fruit Batta +Child: 101, type: 0, width: 318, height: 82 +Child: 102, type: 6, width: 50, height: 50 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, type: 6, width: 32, height: 32 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, message: %1/1 +Child: 108, message: %1/1 +Child: 109, message: %1/1 +Child: 110, message: %1/1 +Child: 111, message: Toad Batta +Child: 112, type: 0, width: 322, height: 82 +Child: 113, type: 6, width: 50, height: 50 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, type: 6, width: 32, height: 32 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, message: %1/1 +Child: 118, message: %1/1 +Child: 119, message: %1/1 +Child: 120, message: Worm Batta +Child: 121, type: 0, width: 323, height: 83 +Child: 122, type: 6, width: 50, height: 50 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, message: %1/2 +Child: 129, message: %1/1 +Child: 130, message: %1/1 +Child: 131, message: %1/1 +Child: 132, message: %1/1 +Child: 133, message: Vegetable Batta +Child: 134, type: 0, width: 318, height: 83 +Child: 135, type: 6, width: 50, height: 50 +Child: 136, type: 6, width: 32, height: 32 +Child: 137, type: 6, width: 32, height: 32 +Child: 138, message: %1/1 +Child: 139, message: %1/1 +Child: 140, message: Cheese And Tomato Batta +Child: 141, type: 0, width: 320, height: 83 +Child: 142, message: level 25 +Child: 143, message: level 26 +Child: 144, message: level 27 +Child: 145, message: level 29 +Child: 146, message: level 28 +Child: 147, message: Fruit Batta +Child: 148, message: Toad Batta +Child: 149, message: Worm Batta +Child: 150, message: Vegetable Batta +Child: 151, message: Cheese & tomato Batta +Child: 152, type: 5, width: 26, height: 23 +Child: 153, type: 5, width: 26, height: 23 +Child: 154, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/435.txt b/server508/lists/interfaces/435.txt new file mode 100644 index 0000000..80a48df --- /dev/null +++ b/server508/lists/interfaces/435.txt @@ -0,0 +1,140 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 3, width: 315, height: 82 +Child: 89, type: 3, width: 317, height: 83 +Child: 90, message: Gnome Bowls +Child: 91, type: 6, width: 50, height: 50 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, message: %1/4 +Child: 96, message: %1/2 +Child: 97, message: %1/1 +Child: 98, message: Worm Hole +Child: 99, type: 0, width: 318, height: 82 +Child: 100, type: 6, width: 50, height: 50 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, message: %1/2 +Child: 105, message: %1/2 +Child: 106, message: %1/1 +Child: 107, message: Vegetable Ball +Child: 108, type: 0, width: 322, height: 82 +Child: 109, type: 6, width: 50, height: 50 +Child: 110, type: 6, width: 32, height: 32 +Child: 111, type: 6, width: 32, height: 32 +Child: 112, type: 6, width: 32, height: 32 +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, message: %1/4 +Child: 116, message: %1/2 +Child: 117, message: %1/2 +Child: 118, message: %1/1 +Child: 119, message: %1/1 +Child: 120, message: Tangled Toads Legs +Child: 121, type: 0, width: 323, height: 83 +Child: 122, type: 6, width: 50, height: 50 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, type: 6, width: 32, height: 32 +Child: 125, message: %1/4 +Child: 126, message: %1/1 +Child: 127, message: Chocolate Bomb +Child: 128, type: 0, width: 318, height: 83 +Child: 129, message: level 30 +Child: 130, message: level 35 +Child: 131, message: level 40 +Child: 132, message: level 42 +Child: 133, message: Worm hole +Child: 134, message: Vegetable ball +Child: 135, message: Tangled Toads Legs +Child: 136, message: Chocolate Bomb +Child: 137, type: 5, width: 26, height: 23 +Child: 138, type: 5, width: 26, height: 23 +Child: 139, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/436.txt b/server508/lists/interfaces/436.txt new file mode 100644 index 0000000..316c9bf --- /dev/null +++ b/server508/lists/interfaces/436.txt @@ -0,0 +1,179 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 3, width: 318, height: 82 +Child: 89, type: 3, width: 319, height: 83 +Child: 90, message: Gnome Cocktails +Child: 91, type: 6, width: 72, height: 72 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, type: 6, width: 32, height: 32 +Child: 95, type: 6, width: 32, height: 32 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, message: %1/2 +Child: 98, message: %1/1 +Child: 99, message: %1/1 +Child: 100, message: %1/1 +Child: 101, message: %1/1 +Child: 102, message: Wizard Blizzard +Child: 103, type: 0, width: 318, height: 82 +Child: 104, type: 6, width: 65, height: 76 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, message: %1/1 +Child: 108, message: %1/3 +Child: 109, message: Short Green Guy +Child: 110, type: 0, width: 318, height: 82 +Child: 111, type: 6, width: 73, height: 75 +Child: 112, type: 6, width: 32, height: 32 +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, message: %1/1 +Child: 116, message: %1/1 +Child: 117, message: %1/1 +Child: 118, message: Fruit Blast +Child: 119, type: 0, width: 318, height: 82 +Child: 120, type: 6, width: 63, height: 72 +Child: 121, type: 6, width: 32, height: 32 +Child: 122, type: 6, width: 32, height: 32 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, message: %1/2 +Child: 125, message: %1/1 +Child: 126, message: %1/1 +Child: 127, message: Pineapple Punch +Child: 128, type: 0, width: 318, height: 82 +Child: 129, type: 6, width: 63, height: 72 +Child: 130, type: 6, width: 32, height: 32 +Child: 131, type: 6, width: 32, height: 32 +Child: 132, type: 6, width: 32, height: 32 +Child: 133, message: %1/1 +Child: 134, message: %1/1 +Child: 135, message: %1/1 +Child: 136, message: Drunk Dragon +Child: 137, type: 0, width: 318, height: 82 +Child: 138, type: 6, width: 77, height: 74 +Child: 139, type: 6, width: 32, height: 32 +Child: 140, type: 6, width: 32, height: 32 +Child: 141, type: 6, width: 32, height: 32 +Child: 142, type: 6, width: 32, height: 32 +Child: 143, message: %1/1 +Child: 144, message: %1/1 +Child: 145, message: %1/1 +Child: 146, message: %1/1 +Child: 147, message: Chocolate Saturday +Child: 148, type: 0, width: 318, height: 82 +Child: 149, type: 6, width: 61, height: 71 +Child: 150, type: 6, width: 32, height: 32 +Child: 151, type: 6, width: 32, height: 32 +Child: 152, type: 6, width: 32, height: 32 +Child: 153, type: 6, width: 32, height: 32 +Child: 154, type: 6, width: 32, height: 32 +Child: 155, message: %1/1 +Child: 156, message: %1/1 +Child: 157, message: %1/1 +Child: 158, message: %1/1 +Child: 159, message: Blurberry Special +Child: 160, message: %1/2 +Child: 161, type: 0, width: 318, height: 82 +Child: 162, message: level 6 +Child: 163, message: level 8 +Child: 164, message: level 18 +Child: 165, message: level 20 +Child: 166, message: level 33 +Child: 167, message: level 37 +Child: 168, message: level 32 +Child: 169, message: Wizard Blizzard +Child: 170, message: Short Green Guy +Child: 171, message: Fruit Blast +Child: 172, message: Pineapple Punch +Child: 173, message: Drunk Dragon +Child: 174, message: Chocolate Saturday +Child: 175, message: Blurberry Special +Child: 176, type: 5, width: 26, height: 23 +Child: 177, type: 5, width: 26, height: 23 +Child: 178, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/437.txt b/server508/lists/interfaces/437.txt new file mode 100644 index 0000000..b0f9ad3 --- /dev/null +++ b/server508/lists/interfaces/437.txt @@ -0,0 +1,132 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 25, height: 30 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 3, width: 315, height: 82 +Child: 89, type: 3, width: 317, height: 83 +Child: 90, message: Gnome Crunchies +Child: 91, type: 6, width: 50, height: 50 +Child: 92, type: 6, width: 32, height: 32 +Child: 93, type: 6, width: 32, height: 32 +Child: 94, message: %1/2 +Child: 95, message: %1/1 +Child: 96, message: Toad Crunchies +Child: 97, type: 0, width: 318, height: 82 +Child: 98, type: 6, width: 50, height: 50 +Child: 99, type: 6, width: 32, height: 32 +Child: 100, type: 6, width: 32, height: 32 +Child: 101, message: %1/1 +Child: 102, message: %1/2 +Child: 103, message: Spice Crunchies +Child: 104, type: 0, width: 322, height: 82 +Child: 105, type: 6, width: 50, height: 50 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, type: 6, width: 32, height: 32 +Child: 108, type: 6, width: 32, height: 32 +Child: 109, message: %1/1 +Child: 110, message: %1/2 +Child: 111, message: %1/1 +Child: 112, message: Worm Crunchies +Child: 113, type: 0, width: 323, height: 83 +Child: 114, type: 6, width: 50, height: 50 +Child: 115, type: 6, width: 32, height: 32 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, message: %1/2 +Child: 118, message: %1/1 +Child: 119, message: Chocolate Chip Crunchies +Child: 120, type: 0, width: 318, height: 83 +Child: 121, message: level 10 +Child: 122, message: level 12 +Child: 123, message: level 14 +Child: 124, message: level 16 +Child: 125, message: Toad crunchies +Child: 126, message: Spice crunchies +Child: 127, message: Worm crunchies +Child: 128, message: Choc chip crunchies +Child: 129, type: 5, width: 26, height: 23 +Child: 130, type: 5, width: 26, height: 23 +Child: 131, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/438.txt b/server508/lists/interfaces/438.txt new file mode 100644 index 0000000..ad29699 --- /dev/null +++ b/server508/lists/interfaces/438.txt @@ -0,0 +1,87 @@ +Child: 0, type: 5, width: 478, height: 295 +Child: 1, type: 5, width: 33, height: 295 +Child: 2, type: 5, width: 32, height: 295 +Child: 3, type: 5, width: 479, height: 40 +Child: 4, type: 5, width: 482, height: 39 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 479, height: 38 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Silver Casting +Child: 14, type: 0, width: 441, height: 241 +Child: 15, type: 0, width: 85, height: 115 +Child: 16, message: +Child: 17, type: 6, width: 32, height: 32 +Child: 18, message: Make
Saradomin
Symbol +Child: 19, type: 0, width: 85, height: 115 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, message: You need a Holy Symbol mould to make this item. +Child: 22, type: 0, width: 85, height: 113 +Child: 23, message: +Child: 24, type: 6, width: 32, height: 32 +Child: 25, message: Make
Zamorak
Symbol +Child: 26, type: 0, width: 85, height: 113 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, message: You need an Unholy Symbol mould to make this item. +Child: 29, type: 0, width: 84, height: 115 +Child: 30, message: +Child: 31, type: 6, width: 32, height: 32 +Child: 32, message: Make
Silver
Sickle +Child: 33, type: 0, width: 84, height: 115 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, message: You need a
sickle mould
to make
this item. +Child: 36, type: 0, width: 84, height: 112 +Child: 37, message: +Child: 38, type: 6, width: 32, height: 32 +Child: 39, message: Make
Lightning
Rod +Child: 40, type: 0, width: 84, height: 112 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, message: You need a lightning rod mould to make this item. +Child: 43, type: 0, width: 84, height: 115 +Child: 44, message: +Child: 45, type: 6, width: 32, height: 32 +Child: 46, message: Make
Tiara +Child: 47, type: 0, width: 84, height: 115 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, message: You need a
tiara mould
to make
a tiara. +Child: 50, type: 0, width: 84, height: 112 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, message: +Child: 53, type: 6, width: 32, height: 32 +Child: 54, message: Make
Silvthril
Rod +Child: 55, type: 0, width: 84, height: 112 +Child: 56, type: 6, width: 32, height: 32 +Child: 57, message: You need a
rod mould
to make this
item. +Child: 58, type: 0, width: 84, height: 115 +Child: 59, message: +Child: 60, type: 6, width: 32, height: 32 +Child: 61, message: Make
Demonic
Sigil +Child: 62, type: 0, width: 84, height: 115 +Child: 63, type: 6, width: 32, height: 32 +Child: 64, message: You need a
demonic sigil
mould to make
this item. +Child: 65, type: 0, width: 84, height: 112 +Child: 66, message: +Child: 67, type: 6, width: 32, height: 32 +Child: 68, message: Make
Silver
Crossbow
Bolts +Child: 69, type: 0, width: 84, height: 112 +Child: 70, type: 6, width: 32, height: 32 +Child: 71, message: You need a
crossbow bolt
mould to make
this item. +Child: 72, type: 0, width: 84, height: 115 +Child: 73, message: +Child: 74, type: 6, width: 32, height: 32 +Child: 75, message: Make
Silvthril
Chain +Child: 76, type: 6, width: 32, height: 32 +Child: 77, type: 0, width: 84, height: 115 +Child: 78, type: 6, width: 32, height: 32 +Child: 79, message: You need a chain mould to make this item. +Child: 80, type: 0, width: 84, height: 112 +Child: 81, message: +Child: 82, type: 6, width: 32, height: 32 +Child: 83, message: +Child: 84, type: 0, width: 84, height: 112 +Child: 85, type: 6, width: 32, height: 32 +Child: 86, message: diff --git a/server508/lists/interfaces/439.txt b/server508/lists/interfaces/439.txt new file mode 100644 index 0000000..fb3004f --- /dev/null +++ b/server508/lists/interfaces/439.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 6, width: 7783, height: 9817 +Child: 2, type: 6, width: 16583, height: 12466 +Child: 3, type: 6, width: 10855, height: 13496 +Child: 4, type: 6, width: 9031, height: 19088 +Child: 5, type: 6, width: 4199, height: 7659 diff --git a/server508/lists/interfaces/44.txt b/server508/lists/interfaces/44.txt new file mode 100644 index 0000000..40304f6 --- /dev/null +++ b/server508/lists/interfaces/44.txt @@ -0,0 +1,149 @@ +Child: 0, type: 5, width: 485, height: 298 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 25, height: 30 +Child: 3, type: 5, width: 29, height: 253 +Child: 4, type: 5, width: 43, height: 247 +Child: 5, message: Insert a very long name here! +Child: 6, type: 5, width: 442, height: 48 +Child: 7, type: 5, width: 441, height: 43 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 25, height: 30 +Child: 10, type: 5, width: 25, height: 30 +Child: 11, message: vs +Child: 12, message: Insert a very long name here! +Child: 13, type: 5, width: 30, height: 288 +Child: 14, type: 5, width: 181, height: 41 +Child: 15, message: Turn: +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 0, width: 122, height: 37 +Child: 18, type: 0, width: 256, height: 256 +Child: 19, type: 0, width: 123, height: 38 +Child: 20, message: Runeversi +Child: 21, type: 3, width: 112, height: 24 +Child: 22, message: Resign +Child: 23, type: 3, width: 111, height: 29 +Child: 24, message: Offer draw +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, message: A very long name +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 6, width: 32, height: 32 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, type: 6, width: 32, height: 32 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 6, width: 32, height: 32 +Child: 55, type: 6, width: 32, height: 32 +Child: 56, type: 6, width: 32, height: 32 +Child: 57, type: 6, width: 32, height: 32 +Child: 58, type: 6, width: 32, height: 32 +Child: 59, type: 6, width: 32, height: 32 +Child: 60, type: 6, width: 32, height: 32 +Child: 61, type: 5, width: 25, height: 30 +Child: 62, type: 5, width: 25, height: 30 +Child: 63, type: 5, width: 25, height: 30 +Child: 64, type: 5, width: 25, height: 30 +Child: 65, type: 5, width: 25, height: 30 +Child: 66, type: 5, width: 25, height: 30 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 25, height: 30 +Child: 69, message: Blah blah blah blah blah blah blah! +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, message: Blah blah blah blah blah blah blah! +Child: 73, message: Blah blah blah blah blah! +Child: 74, type: 0, width: 78, height: 42 +Child: 75, type: 3, width: 66, height: 31 +Child: 76, message: Close +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 25, height: 30 +Child: 79, type: 5, width: 25, height: 30 +Child: 80, type: 5, width: 25, height: 30 +Child: 81, type: 5, width: 25, height: 30 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 6, width: 20, height: 20 +Child: 84, type: 6, width: 20, height: 20 +Child: 85, type: 3, width: 32, height: 32 +Child: 86, type: 3, width: 32, height: 32 +Child: 87, type: 3, width: 32, height: 32 +Child: 88, type: 3, width: 32, height: 32 +Child: 89, type: 3, width: 32, height: 32 +Child: 90, type: 3, width: 32, height: 32 +Child: 91, type: 3, width: 32, height: 32 +Child: 92, type: 3, width: 32, height: 32 +Child: 93, type: 3, width: 32, height: 32 +Child: 94, type: 3, width: 32, height: 32 +Child: 95, type: 3, width: 32, height: 32 +Child: 96, type: 3, width: 32, height: 32 +Child: 97, type: 3, width: 32, height: 32 +Child: 98, type: 3, width: 32, height: 32 +Child: 99, type: 3, width: 32, height: 32 +Child: 100, type: 3, width: 32, height: 32 +Child: 101, type: 3, width: 32, height: 32 +Child: 102, type: 3, width: 32, height: 32 +Child: 103, type: 3, width: 32, height: 32 +Child: 104, type: 3, width: 32, height: 32 +Child: 105, type: 3, width: 32, height: 32 +Child: 106, type: 3, width: 32, height: 32 +Child: 107, type: 3, width: 32, height: 32 +Child: 108, type: 3, width: 32, height: 32 +Child: 109, type: 3, width: 32, height: 32 +Child: 110, type: 3, width: 32, height: 32 +Child: 111, type: 3, width: 32, height: 32 +Child: 112, type: 3, width: 32, height: 32 +Child: 113, type: 3, width: 32, height: 32 +Child: 114, type: 3, width: 32, height: 32 +Child: 115, type: 3, width: 32, height: 32 +Child: 116, type: 3, width: 32, height: 32 +Child: 117, type: 3, width: 32, height: 32 +Child: 118, type: 3, width: 32, height: 32 +Child: 119, type: 3, width: 32, height: 32 +Child: 120, type: 3, width: 32, height: 32 +Child: 121, type: 3, width: 32, height: 32 +Child: 122, type: 3, width: 32, height: 32 +Child: 123, type: 3, width: 32, height: 32 +Child: 124, type: 3, width: 32, height: 32 +Child: 125, type: 3, width: 32, height: 32 +Child: 126, type: 3, width: 32, height: 32 +Child: 127, type: 3, width: 32, height: 32 +Child: 128, type: 3, width: 32, height: 32 +Child: 129, type: 3, width: 32, height: 32 +Child: 130, type: 3, width: 32, height: 32 +Child: 131, type: 3, width: 32, height: 32 +Child: 132, type: 3, width: 32, height: 32 +Child: 133, type: 3, width: 32, height: 32 +Child: 134, type: 3, width: 32, height: 32 +Child: 135, type: 3, width: 32, height: 32 +Child: 136, type: 3, width: 32, height: 32 +Child: 137, type: 3, width: 32, height: 32 +Child: 138, type: 3, width: 32, height: 32 +Child: 139, type: 3, width: 32, height: 32 +Child: 140, type: 3, width: 32, height: 32 +Child: 141, type: 3, width: 32, height: 32 +Child: 142, type: 3, width: 32, height: 32 +Child: 143, type: 3, width: 32, height: 32 +Child: 144, type: 3, width: 32, height: 32 +Child: 145, type: 3, width: 32, height: 32 +Child: 146, type: 3, width: 32, height: 32 +Child: 147, type: 3, width: 32, height: 32 +Child: 148, type: 3, width: 32, height: 32 diff --git a/server508/lists/interfaces/440.txt b/server508/lists/interfaces/440.txt new file mode 100644 index 0000000..de4867d --- /dev/null +++ b/server508/lists/interfaces/440.txt @@ -0,0 +1,9 @@ +Child: 0, type: 3, width: 16647, height: 19628 +Child: 1, type: 6, width: 243, height: 299 +Child: 2, type: 6, width: 71, height: 117 +Child: 3, message: Certificate of Qualification +Child: 4, message: Earth Sciences Level 1
This is to certify that +Child: 5, message: +Child: 6, message: has passed the Level 1
Earth Sciences exam. +Child: 7, type: 5, width: 26, height: 23 +Child: 8, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/441.txt b/server508/lists/interfaces/441.txt new file mode 100644 index 0000000..f933a3d --- /dev/null +++ b/server508/lists/interfaces/441.txt @@ -0,0 +1,9 @@ +Child: 0, type: 3, width: 16647, height: 19628 +Child: 1, type: 6, width: 243, height: 299 +Child: 2, type: 6, width: 71, height: 117 +Child: 3, message: Certificate of Qualification +Child: 4, message: Earth Sciences Level 2
This is to certify that +Child: 5, message: +Child: 6, message: has passed the Level 2
Earth Sciences exam. +Child: 7, type: 5, width: 26, height: 23 +Child: 8, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/442.txt b/server508/lists/interfaces/442.txt new file mode 100644 index 0000000..34be3bb --- /dev/null +++ b/server508/lists/interfaces/442.txt @@ -0,0 +1,44 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 16391, height: 16391 +Child: 2, type: 6, width: 385, height: 317 +Child: 3, type: 6, width: 144, height: 144 +Child: 4, type: 6, width: 33, height: 67 +Child: 5, type: 6, width: 61, height: 51 +Child: 6, type: 6, width: 56, height: 45 +Child: 7, type: 6, width: 98, height: 106 +Child: 8, type: 6, width: 224, height: 153 +Child: 9, type: 6, width: 40, height: 40 +Child: 10, type: 6, width: 55, height: 23 +Child: 11, type: 3, width: 32, height: 32 +Child: 12, type: 3, width: 32, height: 32 +Child: 13, type: 3, width: 16391, height: 16391 +Child: 14, type: 0, width: 36, height: 159 +Child: 15, type: 5, width: 36, height: 32 +Child: 16, type: 5, width: 36, height: 32 +Child: 17, type: 5, width: 36, height: 32 +Child: 18, type: 0, width: 99, height: 99 +Child: 19, type: 5, width: 36, height: 32 +Child: 20, type: 5, width: 36, height: 32 +Child: 21, type: 5, width: 36, height: 32 +Child: 22, type: 5, width: 36, height: 32 +Child: 23, type: 5, width: 26, height: 23 +Child: 24, type: 0, width: 512, height: 334 +Child: 25, type: 0, width: 16391, height: 16391 +Child: 26, type: 0, width: 16391, height: 16391 +Child: 27, type: 5, width: 32, height: 334 +Child: 28, type: 5, width: 462, height: 32 +Child: 29, type: 5, width: 512, height: 32 +Child: 30, type: 5, width: 32, height: 334 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 0, width: 8192, height: 16391 +Child: 36, type: 0, width: 8188, height: 16391 +Child: 37, type: 0, width: 16391, height: 8192 +Child: 38, type: 0, width: 16391, height: 8182 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 5, width: 256, height: 16384 +Child: 41, type: 5, width: 256, height: 16391 +Child: 42, type: 5, width: 16391, height: 167 +Child: 43, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/443.txt b/server508/lists/interfaces/443.txt new file mode 100644 index 0000000..d84b988 --- /dev/null +++ b/server508/lists/interfaces/443.txt @@ -0,0 +1,26 @@ +Child: 0, type: 3, width: 16455, height: 16440 +Child: 1, type: 6, width: 395, height: 647 +Child: 2, type: 6, width: 111, height: 137 +Child: 3, type: 6, width: 139, height: 96 +Child: 4, type: 6, width: 158, height: 199 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 462, height: 32 +Child: 11, type: 5, width: 512, height: 32 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 0, width: 8192, height: 16391 +Child: 18, type: 0, width: 8188, height: 16391 +Child: 19, type: 0, width: 16391, height: 8192 +Child: 20, type: 0, width: 16391, height: 8182 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 5, width: 256, height: 16384 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 5, width: 16391, height: 167 +Child: 25, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/444.txt b/server508/lists/interfaces/444.txt new file mode 100644 index 0000000..6037168 --- /dev/null +++ b/server508/lists/interfaces/444.txt @@ -0,0 +1,9 @@ +Child: 0, type: 3, width: 16647, height: 19628 +Child: 1, type: 6, width: 243, height: 299 +Child: 2, type: 6, width: 71, height: 117 +Child: 3, message: Certificate of Qualification +Child: 4, message: Earth Sciences Level 3
This is to certify that +Child: 5, message: +Child: 6, message: has passed the Level 3
Earth Sciences exam. +Child: 7, type: 5, width: 26, height: 23 +Child: 8, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/445.txt b/server508/lists/interfaces/445.txt new file mode 100644 index 0000000..2db59f2 --- /dev/null +++ b/server508/lists/interfaces/445.txt @@ -0,0 +1,3 @@ +Child: 0, message: +Child: 1, message: Click here to continue +Child: 2, message: Visit the Website diff --git a/server508/lists/interfaces/446.txt b/server508/lists/interfaces/446.txt new file mode 100644 index 0000000..b7ba01b --- /dev/null +++ b/server508/lists/interfaces/446.txt @@ -0,0 +1,93 @@ +Child: 0, type: 5, width: 480, height: 293 +Child: 1, type: 5, width: 37, height: 276 +Child: 2, type: 5, width: 22, height: 281 +Child: 3, type: 5, width: 468, height: 23 +Child: 4, type: 5, width: 478, height: 38 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 477, height: 35 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: What would you like to make? +Child: 14, type: 0, width: 450, height: 60 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, message: You need a ring mould to craft rings. +Child: 17, message: Rings +Child: 18, type: 0, width: 394, height: 60 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 0, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 0, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 0, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 0, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 0, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 0, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 0, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 0, width: 32, height: 32 +Child: 36, type: 0, width: 450, height: 60 +Child: 37, type: 6, width: 43, height: 38 +Child: 38, message: You need a necklace mould to craft necklaces. +Child: 39, message: Necklaces +Child: 40, type: 0, width: 394, height: 60 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 0, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 0, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 0, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 0, width: 32, height: 32 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 0, width: 32, height: 32 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, type: 0, width: 32, height: 32 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 0, width: 32, height: 32 +Child: 55, type: 0, width: 450, height: 60 +Child: 56, type: 6, width: 32, height: 32 +Child: 57, message: You need an amulet mould to craft amulets. +Child: 58, message: Amulets +Child: 59, type: 0, width: 394, height: 60 +Child: 60, type: 6, width: 32, height: 32 +Child: 61, type: 0, width: 32, height: 32 +Child: 62, type: 6, width: 32, height: 32 +Child: 63, type: 0, width: 32, height: 32 +Child: 64, type: 6, width: 32, height: 32 +Child: 65, type: 0, width: 32, height: 32 +Child: 66, type: 6, width: 32, height: 32 +Child: 67, type: 0, width: 32, height: 32 +Child: 68, type: 6, width: 32, height: 32 +Child: 69, type: 0, width: 32, height: 32 +Child: 70, type: 6, width: 32, height: 32 +Child: 71, type: 0, width: 32, height: 32 +Child: 72, type: 6, width: 32, height: 32 +Child: 73, type: 0, width: 32, height: 32 +Child: 74, type: 0, width: 450, height: 60 +Child: 75, type: 6, width: 32, height: 32 +Child: 76, message: You need a bracelet mould to craft bracelets. +Child: 77, message: Bracelets +Child: 78, type: 0, width: 394, height: 60 +Child: 79, type: 6, width: 32, height: 32 +Child: 80, type: 0, width: 32, height: 32 +Child: 81, type: 6, width: 32, height: 32 +Child: 82, type: 0, width: 32, height: 32 +Child: 83, type: 6, width: 32, height: 32 +Child: 84, type: 0, width: 32, height: 32 +Child: 85, type: 6, width: 32, height: 32 +Child: 86, type: 0, width: 32, height: 32 +Child: 87, type: 6, width: 32, height: 32 +Child: 88, type: 0, width: 32, height: 32 +Child: 89, type: 6, width: 32, height: 32 +Child: 90, type: 0, width: 32, height: 32 +Child: 91, type: 6, width: 32, height: 32 +Child: 92, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/447.txt b/server508/lists/interfaces/447.txt new file mode 100644 index 0000000..6e8113f --- /dev/null +++ b/server508/lists/interfaces/447.txt @@ -0,0 +1,6 @@ +Child: 0, message: Message of the Week +Child: 1, message: +Child: 2, message: +Child: 3, type: 6, width: 141, height: 149 +Child: 4, type: 6, width: 114, height: 161 +Child: 5, type: 0, width: 765, height: 503 diff --git a/server508/lists/interfaces/448.txt b/server508/lists/interfaces/448.txt new file mode 100644 index 0000000..e00f9fd --- /dev/null +++ b/server508/lists/interfaces/448.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 16391, height: 25122 +Child: 1, type: 6, width: 39, height: 27280 diff --git a/server508/lists/interfaces/449.txt b/server508/lists/interfaces/449.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/449.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/45.txt b/server508/lists/interfaces/45.txt new file mode 100644 index 0000000..6cdc071 --- /dev/null +++ b/server508/lists/interfaces/45.txt @@ -0,0 +1,118 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 25, height: 30 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 25, height: 30 +Child: 52, type: 5, width: 25, height: 30 +Child: 53, type: 5, width: 25, height: 30 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 0, width: 100, height: 43 +Child: 66, message: Runeversi: Options +Child: 67, type: 3, width: 89, height: 31 +Child: 68, message: Challenge +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 25, height: 30 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: 30 seconds +Child: 76, type: 5, width: 14, height: 15 +Child: 77, type: 0, width: 114, height: 95 +Child: 78, type: 5, width: 14, height: 15 +Child: 79, type: 5, width: 14, height: 15 +Child: 80, type: 5, width: 14, height: 15 +Child: 81, message: 1 minute +Child: 82, message: 2 minutes +Child: 83, message: 15 seconds +Child: 84, message: Time per move: +Child: 85, type: 0, width: 191, height: 179 +Child: 86, type: 5, width: 14, height: 15 +Child: 87, type: 6, width: 34, height: 32 +Child: 88, message: Choose piece: +Child: 89, type: 6, width: 34, height: 32 +Child: 90, type: 6, width: 34, height: 32 +Child: 91, type: 6, width: 34, height: 32 +Child: 92, type: 6, width: 34, height: 32 +Child: 93, type: 6, width: 34, height: 32 +Child: 94, type: 6, width: 34, height: 32 +Child: 95, type: 6, width: 34, height: 32 +Child: 96, type: 6, width: 34, height: 32 +Child: 97, type: 6, width: 34, height: 31 +Child: 98, type: 6, width: 34, height: 32 +Child: 99, type: 6, width: 34, height: 32 +Child: 100, type: 5, width: 14, height: 15 +Child: 101, type: 5, width: 14, height: 15 +Child: 102, type: 5, width: 14, height: 15 +Child: 103, type: 5, width: 14, height: 15 +Child: 104, type: 5, width: 14, height: 15 +Child: 105, type: 5, width: 14, height: 15 +Child: 106, type: 5, width: 14, height: 15 +Child: 107, type: 5, width: 14, height: 15 +Child: 108, type: 5, width: 14, height: 15 +Child: 109, type: 5, width: 15, height: 15 +Child: 110, type: 5, width: 14, height: 15 +Child: 111, message: Ranked +Child: 112, type: 5, width: 14, height: 15 +Child: 113, type: 5, width: 26, height: 23 +Child: 114, type: 5, width: 26, height: 23 +Child: 115, type: 0, width: 32, height: 32 +Child: 116, type: 5, width: 36, height: 36 +Child: 117, type: 5, width: 36, height: 36 diff --git a/server508/lists/interfaces/450.txt b/server508/lists/interfaces/450.txt new file mode 100644 index 0000000..d5ce4c6 --- /dev/null +++ b/server508/lists/interfaces/450.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 53863, height: 37729 +Child: 1, type: 6, width: 56615, height: 33756 diff --git a/server508/lists/interfaces/451.txt b/server508/lists/interfaces/451.txt new file mode 100644 index 0000000..48f627b --- /dev/null +++ b/server508/lists/interfaces/451.txt @@ -0,0 +1,10 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, message: option3 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 0, width: 337, height: 13 +Child: 7, type: 0, width: 476, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/452.txt b/server508/lists/interfaces/452.txt new file mode 100644 index 0000000..c57c8f1 --- /dev/null +++ b/server508/lists/interfaces/452.txt @@ -0,0 +1,26 @@ +Child: 0, type: 6, width: 863, height: 542 +Child: 1, type: 0, width: 550, height: 400 +Child: 2, type: 6, width: 177, height: 316 +Child: 3, type: 6, width: 152, height: 276 +Child: 4, type: 6, width: 21, height: 93 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 462, height: 32 +Child: 11, type: 5, width: 512, height: 32 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 0, width: 8192, height: 16391 +Child: 18, type: 0, width: 8188, height: 16391 +Child: 19, type: 0, width: 16391, height: 8192 +Child: 20, type: 0, width: 16391, height: 8182 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 5, width: 256, height: 16384 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 5, width: 16391, height: 167 +Child: 25, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/453.txt b/server508/lists/interfaces/453.txt new file mode 100644 index 0000000..0aae6e3 --- /dev/null +++ b/server508/lists/interfaces/453.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 16384, height: 16384 +Child: 1, type: 6, width: 18279, height: 16685 +Child: 2, type: 3, width: 17607, height: 19628 diff --git a/server508/lists/interfaces/454.txt b/server508/lists/interfaces/454.txt new file mode 100644 index 0000000..477e076 --- /dev/null +++ b/server508/lists/interfaces/454.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 436, height: 321 +Child: 2, type: 6, width: 35, height: 39 diff --git a/server508/lists/interfaces/455.txt b/server508/lists/interfaces/455.txt new file mode 100644 index 0000000..19d3514 --- /dev/null +++ b/server508/lists/interfaces/455.txt @@ -0,0 +1,8 @@ +Child: 0, type: 6, width: 413, height: 323 +Child: 1, type: 6, width: 240, height: 208 +Child: 2, type: 6, width: 205, height: 250 +Child: 3, type: 6, width: 221, height: 250 +Child: 4, type: 6, width: 230, height: 268 +Child: 5, type: 6, width: 235, height: 293 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/456.txt b/server508/lists/interfaces/456.txt new file mode 100644 index 0000000..dbd25a9 --- /dev/null +++ b/server508/lists/interfaces/456.txt @@ -0,0 +1,8 @@ +Child: 0, type: 6, width: 414, height: 323 +Child: 1, type: 6, width: 175, height: 224 +Child: 2, type: 6, width: 194, height: 232 +Child: 3, type: 6, width: 199, height: 250 +Child: 4, type: 6, width: 176, height: 277 +Child: 5, type: 6, width: 189, height: 293 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/457.txt b/server508/lists/interfaces/457.txt new file mode 100644 index 0000000..a98d881 --- /dev/null +++ b/server508/lists/interfaces/457.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 413, height: 323 +Child: 2, type: 6, width: 372, height: 204 +Child: 3, type: 6, width: 243, height: 255 +Child: 4, type: 6, width: 175, height: 280 +Child: 5, type: 6, width: 257, height: 312 +Child: 6, type: 6, width: 257, height: 312 +Child: 7, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/458.txt b/server508/lists/interfaces/458.txt new file mode 100644 index 0000000..a017ed9 --- /dev/null +++ b/server508/lists/interfaces/458.txt @@ -0,0 +1,10 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, message: option3 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 0, width: 337, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/459.txt b/server508/lists/interfaces/459.txt new file mode 100644 index 0000000..35804e4 --- /dev/null +++ b/server508/lists/interfaces/459.txt @@ -0,0 +1,38 @@ +Child: 0, type: 5, width: 480, height: 294 +Child: 1, type: 5, width: 36, height: 276 +Child: 2, type: 5, width: 24, height: 272 +Child: 3, type: 5, width: 466, height: 25 +Child: 4, type: 5, width: 475, height: 38 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 479, height: 33 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: What would you like to spin? +Child: 14, type: 6, width: 38, height: 39 +Child: 15, message: Bow String
(Flax) +Child: 16, type: 0, width: 64, height: 80 +Child: 17, message: +Child: 18, type: 0, width: 64, height: 80 +Child: 19, message: +Child: 20, type: 6, width: 32, height: 35 +Child: 21, message: Ball of Wool
(Wool) +Child: 22, type: 0, width: 64, height: 80 +Child: 23, message: +Child: 24, type: 6, width: 38, height: 39 +Child: 25, message: Magic Amulet
String
(Magic Roots) +Child: 26, type: 0, width: 64, height: 80 +Child: 27, message: +Child: 28, type: 6, width: 56, height: 49 +Child: 29, message: C'Bow String
(Sinew) +Child: 30, type: 0, width: 64, height: 80 +Child: 31, message: +Child: 32, type: 6, width: 56, height: 48 +Child: 33, message: C'Bow String
(Tree Roots) +Child: 34, type: 0, width: 64, height: 80 +Child: 35, message: +Child: 36, type: 6, width: 59, height: 39 +Child: 37, message: Rope
(Yak Hair) diff --git a/server508/lists/interfaces/46.txt b/server508/lists/interfaces/46.txt new file mode 100644 index 0000000..8c01e45 --- /dev/null +++ b/server508/lists/interfaces/46.txt @@ -0,0 +1,4 @@ +Child: 0, type: 0, width: 95, height: 109 +Child: 1, type: 6, width: 111, height: 110 +Child: 2, message: Runeversi +Child: 3, message: Rank: %1 diff --git a/server508/lists/interfaces/460.txt b/server508/lists/interfaces/460.txt new file mode 100644 index 0000000..8f1934b --- /dev/null +++ b/server508/lists/interfaces/460.txt @@ -0,0 +1,20 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 0, width: 512, height: 334 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, type: 0, width: 33, height: 28 +Child: 12, type: 0, width: 512, height: 334 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 0, width: 512, height: 334 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 0, width: 512, height: 27 +Child: 19, message: That's it, it all makes sense now! diff --git a/server508/lists/interfaces/461.txt b/server508/lists/interfaces/461.txt new file mode 100644 index 0000000..40d5965 --- /dev/null +++ b/server508/lists/interfaces/461.txt @@ -0,0 +1,15 @@ +Child: 0, type: 3, width: 581, height: 402 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, message: Island +Child: 8, message: Witchaven +Child: 9, message: Fishing Platform +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 0, width: 512, height: 334 +Child: 12, type: 0, width: 512, height: 334 +Child: 13, type: 0, width: 512, height: 334 +Child: 14, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/462.txt b/server508/lists/interfaces/462.txt new file mode 100644 index 0000000..20b106c --- /dev/null +++ b/server508/lists/interfaces/462.txt @@ -0,0 +1,39 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 25, height: 30 +Child: 5, type: 5, width: 25, height: 30 +Child: 6, type: 5, width: 36, height: 36 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 36, height: 36 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 25, height: 30 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, message: Piece 1 +Child: 19, message: Piece 2 +Child: 20, message: Piece 3 +Child: 21, message: Show/Select +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 0, width: 150, height: 17 +Child: 35, type: 0, width: 150, height: 17 +Child: 36, type: 0, width: 150, height: 17 +Child: 37, type: 0, width: 200, height: 334 +Child: 38, type: 0, width: 30, height: 34 diff --git a/server508/lists/interfaces/463.txt b/server508/lists/interfaces/463.txt new file mode 100644 index 0000000..7704068 --- /dev/null +++ b/server508/lists/interfaces/463.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 35, height: 35 +Child: 1, message: +Child: 2, message: +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/464.txt b/server508/lists/interfaces/464.txt new file mode 100644 index 0000000..fc25f18 --- /dev/null +++ b/server508/lists/interfaces/464.txt @@ -0,0 +1,44 @@ +Child: 0, type: 0, width: 16, height: 260 +Child: 1, type: 0, width: 173, height: 260 +Child: 2, type: 5, width: 48, height: 48 +Child: 3, type: 5, width: 48, height: 48 +Child: 4, type: 5, width: 48, height: 48 +Child: 5, type: 5, width: 48, height: 48 +Child: 6, type: 5, width: 48, height: 48 +Child: 7, type: 5, width: 48, height: 48 +Child: 8, type: 5, width: 48, height: 48 +Child: 9, type: 5, width: 48, height: 48 +Child: 10, type: 5, width: 48, height: 48 +Child: 11, type: 5, width: 48, height: 48 +Child: 12, type: 5, width: 48, height: 48 +Child: 13, type: 5, width: 48, height: 48 +Child: 14, type: 5, width: 48, height: 48 +Child: 15, type: 5, width: 48, height: 48 +Child: 16, type: 5, width: 48, height: 48 +Child: 17, type: 5, width: 48, height: 48 +Child: 18, type: 5, width: 48, height: 48 +Child: 19, type: 5, width: 48, height: 48 +Child: 20, type: 5, width: 48, height: 48 +Child: 21, type: 5, width: 48, height: 48 +Child: 22, type: 5, width: 48, height: 48 +Child: 23, type: 5, width: 48, height: 48 +Child: 24, type: 5, width: 48, height: 48 +Child: 25, type: 5, width: 48, height: 48 +Child: 26, type: 5, width: 48, height: 48 +Child: 27, type: 5, width: 48, height: 48 +Child: 28, type: 5, width: 48, height: 48 +Child: 29, type: 5, width: 48, height: 48 +Child: 30, type: 5, width: 48, height: 48 +Child: 31, type: 5, width: 48, height: 48 +Child: 32, type: 5, width: 48, height: 48 +Child: 33, type: 5, width: 48, height: 48 +Child: 34, type: 5, width: 48, height: 48 +Child: 35, type: 5, width: 48, height: 48 +Child: 36, type: 5, width: 48, height: 48 +Child: 37, type: 5, width: 48, height: 48 +Child: 38, type: 5, width: 48, height: 48 +Child: 39, type: 5, width: 48, height: 48 +Child: 40, type: 5, width: 48, height: 48 +Child: 41, type: 5, width: 48, height: 48 +Child: 42, type: 5, width: 48, height: 48 +Child: 43, type: 0, width: 100, height: 50 diff --git a/server508/lists/interfaces/465.txt b/server508/lists/interfaces/465.txt new file mode 100644 index 0000000..16394b4 --- /dev/null +++ b/server508/lists/interfaces/465.txt @@ -0,0 +1,7 @@ +Child: 0, type: 3, width: 538, height: 341 +Child: 1, type: 6, width: 888, height: 898 +Child: 2, message: Varrock Herald +Child: 3, message: Covering all of Misthalin and beyond. +Child: 4, message: 1 gp +Child: 5, message: Oo'glog Ogresses Open Health Spa! +Child: 6, type: 6, width: 337, height: 355 diff --git a/server508/lists/interfaces/466.txt b/server508/lists/interfaces/466.txt new file mode 100644 index 0000000..712c465 --- /dev/null +++ b/server508/lists/interfaces/466.txt @@ -0,0 +1,4 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 203, height: 308 +Child: 2, type: 6, width: 79, height: 217 +Child: 3, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/467.txt b/server508/lists/interfaces/467.txt new file mode 100644 index 0000000..ccc3cd1 --- /dev/null +++ b/server508/lists/interfaces/467.txt @@ -0,0 +1,236 @@ +Child: 0, type: 3, width: 562, height: 362 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 25, height: 30 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 25, height: 30 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 88, height: 60 +Child: 53, type: 0, width: 431, height: 222 +Child: 54, type: 3, width: 448, height: 222 +Child: 55, message: +Child: 56, type: 3, width: 427, height: 61 +Child: 57, message: +Child: 58, type: 3, width: 427, height: 61 +Child: 59, message: +Child: 60, type: 3, width: 427, height: 61 +Child: 61, message: +Child: 62, type: 3, width: 427, height: 61 +Child: 63, message: +Child: 64, type: 3, width: 427, height: 61 +Child: 65, message: +Child: 66, type: 3, width: 427, height: 61 +Child: 67, message: +Child: 68, type: 3, width: 427, height: 61 +Child: 69, message: +Child: 70, type: 3, width: 427, height: 61 +Child: 71, message: +Child: 72, type: 3, width: 427, height: 61 +Child: 73, message: +Child: 74, type: 3, width: 427, height: 61 +Child: 75, message: +Child: 76, type: 3, width: 427, height: 61 +Child: 77, message: +Child: 78, type: 3, width: 427, height: 61 +Child: 79, message: +Child: 80, type: 3, width: 427, height: 61 +Child: 81, message: +Child: 82, type: 3, width: 427, height: 61 +Child: 83, message: +Child: 84, type: 3, width: 427, height: 61 +Child: 85, message: +Child: 86, type: 3, width: 427, height: 61 +Child: 87, message: +Child: 88, type: 3, width: 427, height: 61 +Child: 89, message: +Child: 90, type: 3, width: 427, height: 61 +Child: 91, message: +Child: 92, type: 3, width: 427, height: 61 +Child: 93, message: +Child: 94, type: 3, width: 427, height: 61 +Child: 95, message: +Child: 96, type: 3, width: 427, height: 61 +Child: 97, message: +Child: 98, type: 3, width: 427, height: 61 +Child: 99, message: +Child: 100, type: 3, width: 427, height: 61 +Child: 101, message: +Child: 102, type: 3, width: 427, height: 61 +Child: 103, message: +Child: 104, type: 3, width: 427, height: 61 +Child: 105, message: +Child: 106, type: 3, width: 427, height: 61 +Child: 107, message: +Child: 108, type: 3, width: 427, height: 61 +Child: 109, message: +Child: 110, type: 3, width: 427, height: 61 +Child: 111, message: +Child: 112, type: 3, width: 427, height: 61 +Child: 113, message: +Child: 114, type: 3, width: 427, height: 61 +Child: 115, type: 5, width: 88, height: 60 +Child: 116, type: 5, width: 88, height: 60 +Child: 117, type: 5, width: 88, height: 60 +Child: 118, type: 5, width: 88, height: 60 +Child: 119, type: 5, width: 88, height: 60 +Child: 120, type: 5, width: 88, height: 60 +Child: 121, type: 5, width: 88, height: 60 +Child: 122, type: 5, width: 88, height: 60 +Child: 123, type: 5, width: 88, height: 60 +Child: 124, type: 5, width: 36, height: 36 +Child: 125, type: 5, width: 88, height: 60 +Child: 126, type: 5, width: 36, height: 36 +Child: 127, type: 5, width: 36, height: 36 +Child: 128, type: 5, width: 36, height: 36 +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 5, width: 36, height: 36 +Child: 131, type: 5, width: 36, height: 36 +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 5, width: 36, height: 36 +Child: 134, type: 5, width: 36, height: 36 +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 5, width: 36, height: 36 +Child: 137, type: 5, width: 36, height: 36 +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 5, width: 36, height: 36 +Child: 140, type: 5, width: 36, height: 36 +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 5, width: 25, height: 30 +Child: 143, type: 5, width: 36, height: 36 +Child: 144, type: 3, width: 374, height: 47 +Child: 145, type: 5, width: 36, height: 36 +Child: 146, type: 5, width: 36, height: 36 +Child: 147, type: 5, width: 150, height: 10 +Child: 148, type: 5, width: 36, height: 36 +Child: 149, type: 5, width: 25, height: 30 +Child: 150, type: 5, width: 36, height: 36 +Child: 151, type: 5, width: 36, height: 36 +Child: 152, type: 5, width: 36, height: 36 +Child: 153, type: 5, width: 36, height: 36 +Child: 154, type: 5, width: 36, height: 36 +Child: 155, type: 5, width: 36, height: 36 +Child: 156, type: 3, width: 123, height: 32 +Child: 157, type: 5, width: 26, height: 23 +Child: 158, type: 5, width: 36, height: 36 +Child: 159, type: 5, width: 26, height: 23 +Child: 160, type: 5, width: 36, height: 36 +Child: 161, type: 5, width: 36, height: 36 +Child: 162, type: 5, width: 36, height: 36 +Child: 163, type: 0, width: 32, height: 32 +inventory type: 30 slots, width: 1, height: 30, 164 +Child: 165, type: 3, width: 425, height: 59 +Child: 166, type: 0, width: 432, height: 3200 +Child: 167, type: 3, width: 425, height: 59 +Child: 168, type: 0, width: 432, height: 3200 +Child: 169, type: 3, width: 425, height: 59 +Child: 170, type: 0, width: 432, height: 3200 +Child: 171, type: 3, width: 425, height: 59 +Child: 172, type: 0, width: 432, height: 3200 +Child: 173, type: 3, width: 425, height: 59 +Child: 174, type: 0, width: 432, height: 3200 +Child: 175, type: 3, width: 425, height: 59 +Child: 176, type: 0, width: 432, height: 3200 +Child: 177, type: 3, width: 425, height: 59 +Child: 178, type: 0, width: 432, height: 3200 +Child: 179, type: 3, width: 425, height: 59 +Child: 180, type: 0, width: 432, height: 3200 +Child: 181, type: 3, width: 425, height: 59 +Child: 182, type: 0, width: 432, height: 3200 +Child: 183, type: 3, width: 425, height: 59 +Child: 184, type: 0, width: 432, height: 3200 +Child: 185, type: 3, width: 425, height: 59 +Child: 186, type: 0, width: 432, height: 3200 +Child: 187, type: 3, width: 425, height: 59 +Child: 188, type: 0, width: 432, height: 3200 +Child: 189, type: 3, width: 425, height: 59 +Child: 190, type: 0, width: 432, height: 3200 +Child: 191, type: 3, width: 425, height: 59 +Child: 192, type: 0, width: 432, height: 3200 +Child: 193, type: 3, width: 425, height: 59 +Child: 194, type: 0, width: 432, height: 3200 +Child: 195, type: 3, width: 425, height: 59 +Child: 196, type: 0, width: 432, height: 3200 +Child: 197, type: 3, width: 425, height: 59 +Child: 198, type: 0, width: 432, height: 3200 +Child: 199, type: 3, width: 425, height: 59 +Child: 200, type: 0, width: 432, height: 3200 +Child: 201, type: 3, width: 425, height: 59 +Child: 202, type: 0, width: 432, height: 3200 +Child: 203, type: 3, width: 425, height: 59 +Child: 204, type: 0, width: 432, height: 3200 +Child: 205, type: 3, width: 425, height: 59 +Child: 206, type: 0, width: 432, height: 3200 +Child: 207, type: 3, width: 425, height: 59 +Child: 208, type: 0, width: 432, height: 3200 +Child: 209, type: 3, width: 425, height: 59 +Child: 210, type: 0, width: 432, height: 3200 +Child: 211, type: 3, width: 425, height: 59 +Child: 212, type: 0, width: 432, height: 3200 +Child: 213, type: 3, width: 425, height: 59 +Child: 214, type: 0, width: 432, height: 3200 +Child: 215, type: 3, width: 425, height: 59 +Child: 216, type: 0, width: 432, height: 3200 +Child: 217, type: 3, width: 425, height: 59 +Child: 218, type: 0, width: 432, height: 3200 +Child: 219, type: 3, width: 425, height: 59 +Child: 220, type: 0, width: 432, height: 3200 +Child: 221, type: 3, width: 425, height: 59 +Child: 222, type: 0, width: 432, height: 3200 +Child: 223, type: 3, width: 425, height: 59 +Child: 224, type: 0, width: 432, height: 3200 +Child: 225, message: +Child: 226, type: 5, width: 36, height: 36 +Child: 227, type: 5, width: 36, height: 36 +Child: 228, type: 5, width: 36, height: 36 +Child: 229, type: 5, width: 36, height: 36 +Child: 230, type: 5, width: 36, height: 36 +Child: 231, type: 5, width: 36, height: 36 +Child: 232, type: 5, width: 36, height: 36 +Child: 233, type: 5, width: 36, height: 36 +Child: 234, type: 5, width: 36, height: 36 +Child: 235, type: 3, width: 500, height: 32 diff --git a/server508/lists/interfaces/468.txt b/server508/lists/interfaces/468.txt new file mode 100644 index 0000000..803faf0 --- /dev/null +++ b/server508/lists/interfaces/468.txt @@ -0,0 +1,9 @@ +Child: 0, type: 3, width: 514, height: 340 +Child: 1, type: 6, width: 55, height: 81 +Child: 2, type: 0, width: 358, height: 225 +Child: 3, type: 0, width: 430, height: 192 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 32, height: 32 +Child: 7, message: Diango Item Return +inventory type: 30 slots, width: 10, height: 3, 8 diff --git a/server508/lists/interfaces/469.txt b/server508/lists/interfaces/469.txt new file mode 100644 index 0000000..12db82c --- /dev/null +++ b/server508/lists/interfaces/469.txt @@ -0,0 +1,26 @@ +Child: 0, type: 3, width: 511, height: 335 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Castle +Child: 4, message: Wars +Child: 5, message: Grand +Child: 6, message: Tree +Child: 7, message: Varrock +Child: 8, message: Entrana +Child: 9, message: Taverley +Child: 10, message: Crafting +Child: 11, message: Guild +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 5, width: 99, height: 53 +Child: 15, type: 5, width: 99, height: 53 +Child: 16, type: 5, width: 116, height: 53 +Child: 17, type: 5, width: 77, height: 34 +Child: 18, type: 5, width: 81, height: 35 +Child: 19, type: 5, width: 83, height: 35 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/47.txt b/server508/lists/interfaces/47.txt new file mode 100644 index 0000000..3b32cf1 --- /dev/null +++ b/server508/lists/interfaces/47.txt @@ -0,0 +1,203 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, message: Insert a very long name here! +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: vs +Child: 76, message: Insert a very long name here! +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, message: Runeversi +Child: 89, message: Blah blah blah blah blah blah blah! +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 +Child: 92, type: 5, width: 36, height: 36 +Child: 93, message: Blah blah blah blah blah blah blah! +Child: 94, message: Blah blah blah blah blah! +Child: 95, type: 0, width: 78, height: 42 +Child: 96, type: 6, width: 32, height: 32 +Child: 97, type: 6, width: 32, height: 32 +Child: 98, type: 6, width: 32, height: 32 +Child: 99, type: 6, width: 32, height: 32 +Child: 100, type: 6, width: 32, height: 32 +Child: 101, type: 6, width: 32, height: 32 +Child: 102, type: 6, width: 32, height: 32 +Child: 103, type: 6, width: 32, height: 32 +Child: 104, type: 6, width: 32, height: 32 +Child: 105, type: 6, width: 32, height: 32 +Child: 106, type: 6, width: 32, height: 32 +Child: 107, type: 6, width: 32, height: 32 +Child: 108, type: 6, width: 32, height: 32 +Child: 109, type: 6, width: 32, height: 32 +Child: 110, type: 6, width: 32, height: 32 +Child: 111, type: 6, width: 32, height: 32 +Child: 112, type: 6, width: 32, height: 32 +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 6, width: 32, height: 32 +Child: 115, type: 6, width: 32, height: 32 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, type: 6, width: 32, height: 32 +Child: 118, type: 6, width: 32, height: 32 +Child: 119, type: 6, width: 32, height: 32 +Child: 120, type: 6, width: 32, height: 32 +Child: 121, type: 6, width: 32, height: 32 +Child: 122, type: 6, width: 32, height: 32 +Child: 123, type: 6, width: 32, height: 32 +Child: 124, type: 6, width: 32, height: 32 +Child: 125, type: 6, width: 32, height: 32 +Child: 126, type: 6, width: 32, height: 32 +Child: 127, type: 6, width: 32, height: 32 +Child: 128, type: 3, width: 66, height: 31 +Child: 129, message: Close +Child: 130, type: 5, width: 36, height: 36 +Child: 131, type: 5, width: 25, height: 30 +Child: 132, type: 5, width: 25, height: 30 +Child: 133, type: 5, width: 25, height: 30 +Child: 134, type: 5, width: 25, height: 30 +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 6, width: 20, height: 20 +Child: 137, type: 6, width: 20, height: 20 +inventory type: 64 slots, width: 8, height: 8, 138 +Child: 139, type: 3, width: 32, height: 32 +Child: 140, type: 3, width: 32, height: 32 +Child: 141, type: 3, width: 32, height: 32 +Child: 142, type: 3, width: 32, height: 32 +Child: 143, type: 3, width: 32, height: 32 +Child: 144, type: 3, width: 32, height: 32 +Child: 145, type: 3, width: 32, height: 32 +Child: 146, type: 3, width: 32, height: 32 +Child: 147, type: 3, width: 32, height: 32 +Child: 148, type: 3, width: 32, height: 32 +Child: 149, type: 3, width: 32, height: 32 +Child: 150, type: 3, width: 32, height: 32 +Child: 151, type: 3, width: 32, height: 32 +Child: 152, type: 3, width: 32, height: 32 +Child: 153, type: 3, width: 32, height: 32 +Child: 154, type: 3, width: 32, height: 32 +Child: 155, type: 3, width: 32, height: 32 +Child: 156, type: 3, width: 32, height: 32 +Child: 157, type: 3, width: 32, height: 32 +Child: 158, type: 3, width: 32, height: 32 +Child: 159, type: 3, width: 32, height: 32 +Child: 160, type: 3, width: 32, height: 32 +Child: 161, type: 3, width: 32, height: 32 +Child: 162, type: 3, width: 32, height: 32 +Child: 163, type: 3, width: 32, height: 32 +Child: 164, type: 3, width: 32, height: 32 +Child: 165, type: 3, width: 32, height: 32 +Child: 166, type: 3, width: 32, height: 32 +Child: 167, type: 3, width: 32, height: 32 +Child: 168, type: 3, width: 32, height: 32 +Child: 169, type: 3, width: 32, height: 32 +Child: 170, type: 3, width: 32, height: 32 +Child: 171, type: 3, width: 32, height: 32 +Child: 172, type: 3, width: 32, height: 32 +Child: 173, type: 3, width: 32, height: 32 +Child: 174, type: 3, width: 32, height: 32 +Child: 175, type: 3, width: 32, height: 32 +Child: 176, type: 3, width: 32, height: 32 +Child: 177, type: 3, width: 32, height: 32 +Child: 178, type: 3, width: 32, height: 32 +Child: 179, type: 3, width: 32, height: 32 +Child: 180, type: 3, width: 32, height: 32 +Child: 181, type: 3, width: 32, height: 32 +Child: 182, type: 3, width: 32, height: 32 +Child: 183, type: 3, width: 32, height: 32 +Child: 184, type: 3, width: 32, height: 32 +Child: 185, type: 3, width: 32, height: 32 +Child: 186, type: 3, width: 32, height: 32 +Child: 187, type: 3, width: 32, height: 32 +Child: 188, type: 3, width: 32, height: 32 +Child: 189, type: 3, width: 32, height: 32 +Child: 190, type: 3, width: 32, height: 32 +Child: 191, type: 3, width: 32, height: 32 +Child: 192, type: 3, width: 32, height: 32 +Child: 193, type: 3, width: 32, height: 32 +Child: 194, type: 3, width: 32, height: 32 +Child: 195, type: 3, width: 32, height: 32 +Child: 196, type: 3, width: 32, height: 32 +Child: 197, type: 3, width: 32, height: 32 +Child: 198, type: 3, width: 32, height: 32 +Child: 199, type: 3, width: 32, height: 32 +Child: 200, type: 3, width: 32, height: 32 +Child: 201, type: 3, width: 32, height: 32 +Child: 202, type: 3, width: 32, height: 32 diff --git a/server508/lists/interfaces/470.txt b/server508/lists/interfaces/470.txt new file mode 100644 index 0000000..60f0e32 --- /dev/null +++ b/server508/lists/interfaces/470.txt @@ -0,0 +1,287 @@ +Child: 0, type: 3, width: 480, height: 192 +Child: 1, type: 3, width: 480, height: 48 +Child: 2, type: 3, width: 480, height: 72 +Child: 3, type: 3, width: 480, height: 15 +Child: 4, type: 3, width: 480, height: 15 +Child: 5, type: 3, width: 480, height: 15 +Child: 6, type: 3, width: 480, height: 15 +Child: 7, type: 3, width: 480, height: 15 +Child: 8, type: 3, width: 480, height: 15 +Child: 9, type: 3, width: 480, height: 15 +Child: 10, type: 3, width: 480, height: 15 +Child: 11, type: 3, width: 480, height: 15 +Child: 12, type: 3, width: 480, height: 15 +Child: 13, type: 3, width: 480, height: 15 +Child: 14, type: 3, width: 480, height: 15 +Child: 15, type: 3, width: 480, height: 15 +Child: 16, type: 3, width: 480, height: 15 +Child: 17, type: 6, width: 24, height: 24 +Child: 18, type: 6, width: 24, height: 24 +Child: 19, type: 6, width: 24, height: 24 +Child: 20, type: 6, width: 24, height: 24 +Child: 21, type: 6, width: 24, height: 24 +Child: 22, type: 6, width: 24, height: 24 +Child: 23, type: 6, width: 24, height: 24 +Child: 24, type: 6, width: 24, height: 24 +Child: 25, type: 6, width: 24, height: 24 +Child: 26, type: 6, width: 24, height: 24 +Child: 27, type: 6, width: 24, height: 24 +Child: 28, type: 6, width: 24, height: 24 +Child: 29, type: 6, width: 24, height: 24 +Child: 30, type: 6, width: 24, height: 24 +Child: 31, type: 6, width: 24, height: 24 +Child: 32, type: 6, width: 24, height: 24 +Child: 33, type: 6, width: 24, height: 24 +Child: 34, type: 6, width: 24, height: 24 +Child: 35, type: 6, width: 24, height: 24 +Child: 36, type: 6, width: 24, height: 24 +Child: 37, type: 6, width: 24, height: 24 +Child: 38, type: 6, width: 24, height: 24 +Child: 39, type: 6, width: 24, height: 24 +Child: 40, type: 6, width: 24, height: 24 +Child: 41, type: 6, width: 24, height: 24 +Child: 42, type: 6, width: 24, height: 24 +Child: 43, type: 6, width: 24, height: 24 +Child: 44, type: 6, width: 24, height: 24 +Child: 45, type: 6, width: 24, height: 24 +Child: 46, type: 6, width: 24, height: 24 +Child: 47, type: 6, width: 24, height: 24 +Child: 48, type: 6, width: 24, height: 24 +Child: 49, type: 6, width: 24, height: 24 +Child: 50, type: 6, width: 24, height: 24 +Child: 51, type: 6, width: 24, height: 24 +Child: 52, type: 6, width: 24, height: 24 +Child: 53, type: 6, width: 24, height: 24 +Child: 54, type: 6, width: 24, height: 24 +Child: 55, type: 6, width: 24, height: 24 +Child: 56, type: 6, width: 24, height: 24 +Child: 57, type: 6, width: 24, height: 24 +Child: 58, type: 6, width: 24, height: 24 +Child: 59, type: 6, width: 24, height: 24 +Child: 60, type: 6, width: 24, height: 24 +Child: 61, type: 6, width: 24, height: 24 +Child: 62, type: 6, width: 24, height: 24 +Child: 63, type: 6, width: 24, height: 24 +Child: 64, type: 6, width: 24, height: 24 +Child: 65, type: 6, width: 24, height: 24 +Child: 66, type: 6, width: 24, height: 24 +Child: 67, type: 6, width: 24, height: 24 +Child: 68, type: 6, width: 24, height: 24 +Child: 69, type: 6, width: 24, height: 24 +Child: 70, type: 6, width: 24, height: 24 +Child: 71, type: 6, width: 24, height: 24 +Child: 72, type: 6, width: 24, height: 24 +Child: 73, type: 6, width: 24, height: 24 +Child: 74, type: 6, width: 24, height: 24 +Child: 75, type: 6, width: 24, height: 24 +Child: 76, type: 6, width: 24, height: 24 +Child: 77, type: 6, width: 24, height: 24 +Child: 78, type: 6, width: 24, height: 24 +Child: 79, type: 6, width: 24, height: 24 +Child: 80, type: 6, width: 24, height: 24 +Child: 81, type: 6, width: 24, height: 24 +Child: 82, type: 6, width: 24, height: 24 +Child: 83, type: 6, width: 24, height: 24 +Child: 84, type: 6, width: 24, height: 24 +Child: 85, type: 6, width: 24, height: 24 +Child: 86, type: 6, width: 24, height: 24 +Child: 87, type: 6, width: 24, height: 24 +Child: 88, type: 6, width: 24, height: 24 +Child: 89, type: 6, width: 24, height: 24 +Child: 90, type: 6, width: 24, height: 24 +Child: 91, type: 6, width: 24, height: 24 +Child: 92, type: 6, width: 24, height: 24 +Child: 93, type: 6, width: 24, height: 24 +Child: 94, type: 6, width: 24, height: 24 +Child: 95, type: 6, width: 24, height: 24 +Child: 96, type: 6, width: 24, height: 24 +Child: 97, type: 6, width: 24, height: 24 +Child: 98, type: 6, width: 24, height: 24 +Child: 99, type: 6, width: 24, height: 24 +Child: 100, type: 6, width: 24, height: 24 +Child: 101, type: 6, width: 24, height: 24 +Child: 102, type: 6, width: 24, height: 24 +Child: 103, type: 6, width: 24, height: 24 +Child: 104, type: 6, width: 24, height: 24 +Child: 105, type: 6, width: 24, height: 24 +Child: 106, type: 6, width: 24, height: 24 +Child: 107, type: 6, width: 24, height: 24 +Child: 108, type: 6, width: 24, height: 24 +Child: 109, type: 6, width: 24, height: 24 +Child: 110, type: 6, width: 24, height: 24 +Child: 111, type: 6, width: 24, height: 24 +Child: 112, type: 6, width: 24, height: 24 +Child: 113, type: 6, width: 24, height: 24 +Child: 114, type: 6, width: 24, height: 24 +Child: 115, type: 6, width: 24, height: 24 +Child: 116, type: 6, width: 24, height: 24 +Child: 117, type: 6, width: 24, height: 24 +Child: 118, type: 6, width: 24, height: 24 +Child: 119, type: 6, width: 24, height: 24 +Child: 120, type: 6, width: 24, height: 24 +Child: 121, type: 6, width: 24, height: 24 +Child: 122, type: 6, width: 24, height: 24 +Child: 123, type: 6, width: 24, height: 24 +Child: 124, type: 6, width: 24, height: 24 +Child: 125, type: 6, width: 24, height: 24 +Child: 126, type: 6, width: 24, height: 24 +Child: 127, type: 6, width: 24, height: 24 +Child: 128, type: 6, width: 24, height: 24 +Child: 129, type: 6, width: 24, height: 24 +Child: 130, type: 6, width: 24, height: 24 +Child: 131, type: 6, width: 24, height: 24 +Child: 132, type: 6, width: 24, height: 24 +Child: 133, type: 6, width: 24, height: 24 +Child: 134, type: 6, width: 24, height: 24 +Child: 135, type: 6, width: 24, height: 24 +Child: 136, type: 6, width: 24, height: 24 +Child: 137, type: 6, width: 24, height: 24 +Child: 138, type: 6, width: 24, height: 24 +Child: 139, type: 6, width: 24, height: 24 +Child: 140, type: 6, width: 24, height: 24 +Child: 141, type: 6, width: 24, height: 24 +Child: 142, type: 6, width: 24, height: 24 +Child: 143, type: 6, width: 24, height: 24 +Child: 144, type: 6, width: 24, height: 24 +Child: 145, type: 6, width: 24, height: 24 +Child: 146, type: 6, width: 24, height: 24 +Child: 147, type: 6, width: 24, height: 24 +Child: 148, type: 6, width: 24, height: 24 +Child: 149, type: 6, width: 24, height: 24 +Child: 150, type: 6, width: 24, height: 24 +Child: 151, type: 6, width: 24, height: 24 +Child: 152, type: 6, width: 24, height: 24 +Child: 153, type: 6, width: 24, height: 24 +Child: 154, type: 6, width: 24, height: 24 +Child: 155, type: 6, width: 24, height: 24 +Child: 156, type: 6, width: 24, height: 24 +Child: 157, type: 6, width: 24, height: 24 +Child: 158, type: 6, width: 24, height: 24 +Child: 159, type: 6, width: 24, height: 24 +Child: 160, type: 6, width: 24, height: 24 +Child: 161, type: 6, width: 24, height: 24 +Child: 162, type: 6, width: 24, height: 24 +Child: 163, type: 6, width: 24, height: 24 +Child: 164, type: 6, width: 24, height: 24 +Child: 165, type: 6, width: 24, height: 24 +Child: 166, type: 6, width: 24, height: 24 +Child: 167, type: 6, width: 24, height: 24 +Child: 168, type: 6, width: 24, height: 24 +Child: 169, type: 6, width: 24, height: 24 +Child: 170, type: 6, width: 24, height: 24 +Child: 171, type: 6, width: 24, height: 24 +Child: 172, type: 6, width: 24, height: 24 +Child: 173, type: 6, width: 24, height: 24 +Child: 174, type: 6, width: 24, height: 24 +Child: 175, type: 6, width: 24, height: 24 +Child: 176, type: 6, width: 24, height: 24 +Child: 177, type: 6, width: 24, height: 24 +Child: 178, type: 6, width: 24, height: 24 +Child: 179, type: 6, width: 24, height: 24 +Child: 180, type: 6, width: 24, height: 24 +Child: 181, type: 6, width: 24, height: 24 +Child: 182, type: 6, width: 24, height: 24 +Child: 183, type: 6, width: 24, height: 24 +Child: 184, type: 6, width: 24, height: 24 +Child: 185, type: 6, width: 24, height: 24 +Child: 186, type: 6, width: 24, height: 24 +Child: 187, type: 6, width: 24, height: 24 +Child: 188, type: 6, width: 24, height: 24 +Child: 189, type: 6, width: 24, height: 24 +Child: 190, type: 6, width: 24, height: 24 +Child: 191, type: 6, width: 24, height: 24 +Child: 192, type: 6, width: 24, height: 24 +Child: 193, type: 6, width: 24, height: 24 +Child: 194, type: 6, width: 24, height: 24 +Child: 195, type: 6, width: 24, height: 24 +Child: 196, type: 6, width: 24, height: 24 +Child: 197, type: 6, width: 24, height: 24 +Child: 198, type: 6, width: 24, height: 24 +Child: 199, type: 6, width: 24, height: 24 +Child: 200, type: 6, width: 24, height: 24 +Child: 201, type: 6, width: 24, height: 24 +Child: 202, type: 6, width: 24, height: 24 +Child: 203, type: 6, width: 24, height: 24 +Child: 204, type: 6, width: 24, height: 24 +Child: 205, type: 6, width: 24, height: 24 +Child: 206, type: 6, width: 24, height: 24 +Child: 207, type: 6, width: 24, height: 24 +Child: 208, type: 6, width: 24, height: 24 +Child: 209, type: 6, width: 24, height: 24 +Child: 210, type: 6, width: 24, height: 24 +Child: 211, type: 6, width: 24, height: 24 +Child: 212, type: 6, width: 24, height: 24 +Child: 213, type: 6, width: 24, height: 24 +Child: 214, type: 6, width: 24, height: 24 +Child: 215, type: 6, width: 24, height: 24 +Child: 216, type: 6, width: 24, height: 24 +Child: 217, type: 6, width: 24, height: 24 +Child: 218, type: 6, width: 24, height: 24 +Child: 219, type: 6, width: 24, height: 24 +Child: 220, type: 6, width: 24, height: 24 +Child: 221, type: 6, width: 24, height: 24 +Child: 222, type: 6, width: 24, height: 24 +Child: 223, type: 6, width: 24, height: 24 +Child: 224, type: 6, width: 24, height: 24 +Child: 225, type: 6, width: 24, height: 24 +Child: 226, type: 6, width: 24, height: 24 +Child: 227, type: 6, width: 24, height: 24 +Child: 228, type: 6, width: 24, height: 24 +Child: 229, type: 6, width: 24, height: 24 +Child: 230, type: 6, width: 24, height: 24 +Child: 231, type: 6, width: 24, height: 24 +Child: 232, type: 6, width: 24, height: 24 +Child: 233, type: 6, width: 24, height: 24 +Child: 234, type: 6, width: 24, height: 24 +Child: 235, type: 6, width: 24, height: 24 +Child: 236, type: 6, width: 24, height: 24 +Child: 237, type: 6, width: 24, height: 24 +Child: 238, type: 6, width: 24, height: 24 +Child: 239, type: 6, width: 24, height: 24 +Child: 240, type: 6, width: 24, height: 24 +Child: 241, type: 6, width: 24, height: 24 +Child: 242, type: 6, width: 24, height: 24 +Child: 243, type: 6, width: 24, height: 24 +Child: 244, type: 6, width: 24, height: 24 +Child: 245, type: 6, width: 24, height: 24 +Child: 246, type: 6, width: 24, height: 24 +Child: 247, type: 6, width: 24, height: 24 +Child: 248, type: 6, width: 24, height: 24 +Child: 249, type: 6, width: 24, height: 24 +Child: 250, type: 6, width: 24, height: 24 +Child: 251, type: 6, width: 24, height: 24 +Child: 252, type: 6, width: 24, height: 24 +Child: 253, type: 6, width: 24, height: 24 +Child: 254, type: 6, width: 24, height: 24 +Child: 255, type: 6, width: 24, height: 24 +Child: 256, type: 6, width: 24, height: 24 +Child: 257, type: 6, width: 24, height: 24 +Child: 258, type: 6, width: 24, height: 24 +Child: 259, type: 6, width: 24, height: 24 +Child: 260, type: 6, width: 24, height: 24 +Child: 261, type: 6, width: 24, height: 24 +Child: 262, type: 6, width: 24, height: 24 +Child: 263, type: 6, width: 24, height: 24 +Child: 264, type: 6, width: 24, height: 24 +Child: 265, type: 6, width: 24, height: 24 +Child: 266, type: 6, width: 24, height: 24 +Child: 267, type: 6, width: 24, height: 24 +Child: 268, type: 6, width: 24, height: 24 +Child: 269, type: 6, width: 24, height: 24 +Child: 270, type: 6, width: 24, height: 24 +Child: 271, type: 6, width: 24, height: 24 +Child: 272, type: 6, width: 24, height: 24 +Child: 273, type: 6, width: 24, height: 24 +Child: 274, type: 6, width: 24, height: 24 +Child: 275, type: 6, width: 24, height: 24 +Child: 276, type: 6, width: 24, height: 24 +Child: 277, type: 6, width: 24, height: 24 +Child: 278, type: 6, width: 24, height: 24 +Child: 279, type: 3, width: 13, height: 334 +Child: 280, type: 3, width: 480, height: 15 +Child: 281, type: 3, width: 480, height: 15 +Child: 282, type: 6, width: 120, height: 48 +Child: 283, type: 6, width: 120, height: 48 +Child: 284, type: 6, width: 120, height: 48 +Child: 285, type: 6, width: 120, height: 48 +Child: 286, type: 3, width: 20, height: 334 diff --git a/server508/lists/interfaces/471.txt b/server508/lists/interfaces/471.txt new file mode 100644 index 0000000..2f7f621 --- /dev/null +++ b/server508/lists/interfaces/471.txt @@ -0,0 +1,29 @@ +Child: 0, message: X +Child: 1, message: X +Child: 2, message: %1 +Child: 3, message: %1 +Child: 4, message: +Child: 5, message: Relax +Child: 6, message: +Child: 7, message: Balloon Controls +Child: 8, message: Bail +Child: 9, message: +Child: 10, message: +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 0, width: 74, height: 53 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 0, width: 70, height: 91 +Child: 27, type: 0, width: 190, height: 261 +Child: 28, type: 0, width: 115, height: 43 diff --git a/server508/lists/interfaces/472.txt b/server508/lists/interfaces/472.txt new file mode 100644 index 0000000..4ea10b4 --- /dev/null +++ b/server508/lists/interfaces/472.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 441, height: 295 +Child: 2, type: 6, width: 307, height: 234 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/473.txt b/server508/lists/interfaces/473.txt new file mode 100644 index 0000000..702cbfe --- /dev/null +++ b/server508/lists/interfaces/473.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Auto Retaliate
(Off) +Child: 26, message: Short fuse +Child: 27, message: Medium fuse +Child: 28, message: Long fuse +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/474.txt b/server508/lists/interfaces/474.txt new file mode 100644 index 0000000..7c761ea --- /dev/null +++ b/server508/lists/interfaces/474.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Scorch +Child: 26, message: Flare +Child: 27, message: Blaze +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/475.txt b/server508/lists/interfaces/475.txt new file mode 100644 index 0000000..b53094c --- /dev/null +++ b/server508/lists/interfaces/475.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Short fuse +Child: 26, message: Medium fuse +Child: 27, message: Long fuse +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/476.txt b/server508/lists/interfaces/476.txt new file mode 100644 index 0000000..c1d3c12 --- /dev/null +++ b/server508/lists/interfaces/476.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Melee +Child: 26, message: Ranged +Child: 27, message: Magic +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/477.txt b/server508/lists/interfaces/477.txt new file mode 100644 index 0000000..e57d07e --- /dev/null +++ b/server508/lists/interfaces/477.txt @@ -0,0 +1,27 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, message: Custom Fur Clothing +Child: 14, message: Right-click an item in the shop to have it made for you. +Child: 15, message: Larupia +Child: 16, message: Graahk +Child: 17, message: Kyatt +Child: 18, message: Polar kebbit +Child: 19, message: Common kebbit +Child: 20, message: Feldip weasel +Child: 21, message: Desert devil +Child: 22, message: Dark kebbit +Child: 23, message: Spotted kebbit +Child: 24, message: Dashing kebbit +Child: 25, type: 5, width: 16, height: 16 +Child: 26, type: 0, width: 458, height: 215 diff --git a/server508/lists/interfaces/478.txt b/server508/lists/interfaces/478.txt new file mode 100644 index 0000000..2cb21df --- /dev/null +++ b/server508/lists/interfaces/478.txt @@ -0,0 +1,66 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 25, height: 30 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, type: 5, width: 36, height: 36 +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, type: 5, width: 36, height: 36 +Child: 25, type: 5, width: 36, height: 36 +Child: 26, type: 5, width: 36, height: 36 +Child: 27, type: 5, width: 36, height: 36 +Child: 28, type: 5, width: 36, height: 36 +Child: 29, type: 5, width: 36, height: 36 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 25, height: 30 +Child: 49, type: 5, width: 25, height: 30 +Child: 50, type: 5, width: 25, height: 30 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, message: Imp Release Negotiation Form +inventory type: 28 slots, width: 7, height: 4, 61 +Child: 62, message: Select an item or stack of items to deposit.
You can deposit up to 2 items or stacks. +Child: 63, type: 5, width: 26, height: 23 +Child: 64, type: 5, width: 26, height: 23 +Child: 65, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/479.txt b/server508/lists/interfaces/479.txt new file mode 100644 index 0000000..5095187 --- /dev/null +++ b/server508/lists/interfaces/479.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 520, height: 340 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/48.txt b/server508/lists/interfaces/48.txt new file mode 100644 index 0000000..062b44e --- /dev/null +++ b/server508/lists/interfaces/48.txt @@ -0,0 +1,32 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 16384, height: 16384 +Child: 2, type: 3, width: 16391, height: 16391 +Child: 3, type: 6, width: 294, height: 529 +Child: 4, type: 6, width: 209, height: 182 +Child: 5, type: 6, width: 40, height: 69 +Child: 6, type: 6, width: 37, height: 68 +Child: 7, type: 6, width: 94, height: 58 +Child: 8, type: 5, width: 66, height: 40 +Child: 9, type: 5, width: 66, height: 40 +Child: 10, type: 6, width: 56, height: 36 +Child: 11, type: 6, width: 57, height: 36 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 0, width: 16391, height: 16391 +Child: 14, type: 0, width: 16391, height: 16391 +Child: 15, type: 5, width: 32, height: 334 +Child: 16, type: 5, width: 462, height: 32 +Child: 17, type: 5, width: 512, height: 32 +Child: 18, type: 5, width: 32, height: 334 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 0, width: 8192, height: 16391 +Child: 24, type: 0, width: 8188, height: 16391 +Child: 25, type: 0, width: 16391, height: 8192 +Child: 26, type: 0, width: 16391, height: 8182 +Child: 27, type: 0, width: 512, height: 334 +Child: 28, type: 5, width: 256, height: 16384 +Child: 29, type: 5, width: 256, height: 16391 +Child: 30, type: 5, width: 16391, height: 167 +Child: 31, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/480.txt b/server508/lists/interfaces/480.txt new file mode 100644 index 0000000..bf261e8 --- /dev/null +++ b/server508/lists/interfaces/480.txt @@ -0,0 +1,78 @@ +Child: 0, type: 3, width: 513, height: 334 +Child: 1, type: 3, width: 361, height: 276 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 356, height: 271 +Child: 4, type: 0, width: 356, height: 271 +Child: 5, type: 0, width: 356, height: 271 +Child: 6, type: 0, width: 356, height: 271 +Child: 7, type: 0, width: 356, height: 271 +Child: 8, type: 0, width: 356, height: 271 +Child: 9, type: 0, width: 356, height: 271 +Child: 10, type: 0, width: 356, height: 271 +Child: 11, type: 0, width: 356, height: 271 +Child: 12, type: 0, width: 32, height: 32 +Child: 13, type: 0, width: 32, height: 32 +Child: 14, type: 0, width: 32, height: 32 +Child: 15, type: 0, width: 32, height: 32 +Child: 16, type: 0, width: 32, height: 32 +Child: 17, type: 0, width: 32, height: 32 +Child: 18, type: 0, width: 32, height: 32 +Child: 19, type: 0, width: 32, height: 32 +Child: 20, type: 0, width: 32, height: 32 +Child: 21, type: 0, width: 32, height: 32 +Child: 22, type: 0, width: 32, height: 32 +Child: 23, type: 0, width: 32, height: 32 +Child: 24, type: 0, width: 32, height: 32 +Child: 25, type: 0, width: 32, height: 32 +Child: 26, type: 0, width: 32, height: 32 +Child: 27, type: 0, width: 32, height: 32 +Child: 28, type: 0, width: 32, height: 32 +Child: 29, type: 0, width: 32, height: 32 +Child: 30, type: 6, width: 356, height: 273 +Child: 31, type: 6, width: 356, height: 273 +Child: 32, type: 6, width: 356, height: 273 +Child: 33, type: 6, width: 356, height: 273 +Child: 34, type: 6, width: 356, height: 273 +Child: 35, type: 6, width: 356, height: 273 +Child: 36, type: 6, width: 356, height: 273 +Child: 37, type: 6, width: 356, height: 273 +Child: 38, type: 6, width: 356, height: 273 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 33, height: 33 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 33, height: 33 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 33, height: 33 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 33, height: 33 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 6, width: 33, height: 33 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 6, width: 33, height: 33 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, type: 6, width: 33, height: 33 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 6, width: 33, height: 33 +Child: 55, type: 6, width: 32, height: 32 +Child: 56, type: 6, width: 33, height: 33 +Child: 57, type: 0, width: 512, height: 334 +Child: 58, type: 0, width: 512, height: 334 +Child: 59, type: 0, width: 16391, height: 16391 +Child: 60, type: 0, width: 16391, height: 16391 +Child: 61, type: 5, width: 32, height: 334 +Child: 62, type: 5, width: 462, height: 32 +Child: 63, type: 5, width: 512, height: 32 +Child: 64, type: 5, width: 32, height: 334 +Child: 65, type: 5, width: 32, height: 32 +Child: 66, type: 5, width: 32, height: 32 +Child: 67, type: 5, width: 32, height: 32 +Child: 68, type: 5, width: 32, height: 32 +Child: 69, type: 0, width: 8192, height: 16391 +Child: 70, type: 0, width: 8188, height: 16391 +Child: 71, type: 0, width: 16391, height: 8192 +Child: 72, type: 0, width: 16391, height: 8182 +Child: 73, type: 0, width: 512, height: 334 +Child: 74, type: 5, width: 256, height: 16384 +Child: 75, type: 5, width: 256, height: 16391 +Child: 76, type: 5, width: 16391, height: 167 +Child: 77, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/481.txt b/server508/lists/interfaces/481.txt new file mode 100644 index 0000000..a1c0169 --- /dev/null +++ b/server508/lists/interfaces/481.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 57543, height: 33707 +Child: 1, type: 3, width: 17607, height: 19628 diff --git a/server508/lists/interfaces/482.txt b/server508/lists/interfaces/482.txt new file mode 100644 index 0000000..c4967fc --- /dev/null +++ b/server508/lists/interfaces/482.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 64647, height: 44400 +Child: 1, type: 3, width: 17607, height: 19628 diff --git a/server508/lists/interfaces/483.txt b/server508/lists/interfaces/483.txt new file mode 100644 index 0000000..3bbda3b --- /dev/null +++ b/server508/lists/interfaces/483.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 17607, height: 19628 diff --git a/server508/lists/interfaces/484.txt b/server508/lists/interfaces/484.txt new file mode 100644 index 0000000..756ef21 --- /dev/null +++ b/server508/lists/interfaces/484.txt @@ -0,0 +1,31 @@ +Child: 0, type: 3, width: 520, height: 335 +Child: 1, message: Attacker : +Child: 2, message: Defender : +Child: 3, message: Collector : +Child: 4, message: Healer : +Child: 5, message: ---------------------- +Child: 6, message: ---------------------- +Child: 7, message: ---------------------- +Child: 8, message: ---------------------- +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, message: Red +Child: 14, message: Green +Child: 15, message: Blue +Child: 16, message: Controlled/Bronze/Wind +Child: 17, message: Accurate/Iron/Water +Child: 18, message: Aggressive/Steel/Earth +Child: 19, message: Defensive/Mithril/Fire +Child: 20, message: Tofu +Child: 21, message: Worms +Child: 22, message: Crackers +Child: 23, message: Poison tofu +Child: 24, message: Poison worms +Child: 25, message: Poison meat +Child: 26, message: Horn of Glory +Child: 27, type: 5, width: 26, height: 23 +Child: 28, type: 5, width: 26, height: 23 +Child: 29, type: 0, width: 32, height: 32 +Child: 30, message: Call out : diff --git a/server508/lists/interfaces/485.txt b/server508/lists/interfaces/485.txt new file mode 100644 index 0000000..eedce20 --- /dev/null +++ b/server508/lists/interfaces/485.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 17, height: 13 +Child: 2, message: Wave 1 +Child: 3, type: 5, width: 17, height: 13 +Child: 4, message: Controlled/ +Child: 5, message: Bronze/Wind +Child: 6, type: 5, width: 17, height: 13 +Child: 7, message: Green eggs +Child: 8, type: 5, width: 17, height: 13 +Child: 9, message: Collector diff --git a/server508/lists/interfaces/486.txt b/server508/lists/interfaces/486.txt new file mode 100644 index 0000000..d404e97 --- /dev/null +++ b/server508/lists/interfaces/486.txt @@ -0,0 +1,9 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 17, height: 13 +Child: 2, message: Wave 1 +Child: 3, type: 5, width: 17, height: 13 +Child: 4, message: Red eggs +Child: 5, type: 5, width: 17, height: 13 +Child: 6, message: Style 1 +Child: 7, type: 5, width: 17, height: 13 +Child: 8, message: Attacker diff --git a/server508/lists/interfaces/487.txt b/server508/lists/interfaces/487.txt new file mode 100644 index 0000000..3db2690 --- /dev/null +++ b/server508/lists/interfaces/487.txt @@ -0,0 +1,9 @@ +Child: 0, type: 5, width: 17, height: 13 +Child: 1, message: Wave 1 +Child: 2, type: 5, width: 17, height: 13 +Child: 3, message: Tofu +Child: 4, type: 5, width: 17, height: 13 +Child: 5, message: Poison meat +Child: 6, type: 5, width: 17, height: 13 +Child: 7, message: Healer +Child: 8, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/488.txt b/server508/lists/interfaces/488.txt new file mode 100644 index 0000000..be83b77 --- /dev/null +++ b/server508/lists/interfaces/488.txt @@ -0,0 +1,40 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 465, height: 21 +Child: 2, type: 3, width: 465, height: 22 +Child: 3, message: Alex +Child: 4, message: HP 50/78 +Child: 5, type: 0, width: 125, height: 40 +Child: 6, type: 3, width: 117, height: 22 +Child: 7, type: 3, width: 117, height: 22 +Child: 8, type: 0, width: 125, height: 40 +Child: 9, message: Tim +Child: 10, message: HP 88/88 +Child: 11, type: 3, width: 117, height: 22 +Child: 12, type: 3, width: 117, height: 22 +Child: 13, type: 0, width: 125, height: 40 +Child: 14, message: Matt +Child: 15, message: HP 24/54 +Child: 16, type: 3, width: 117, height: 22 +Child: 17, type: 3, width: 117, height: 22 +Child: 18, type: 0, width: 125, height: 40 +Child: 19, message: Martin +Child: 20, message: HP 61/62 +Child: 21, type: 3, width: 117, height: 22 +Child: 22, type: 3, width: 117, height: 22 +Child: 23, type: 6, width: 30, height: 30 +Child: 24, type: 6, width: 30, height: 30 +Child: 25, type: 6, width: 30, height: 30 +Child: 26, type: 6, width: 30, height: 30 +Child: 27, type: 0, width: 512, height: 334 +Child: 28, type: 5, width: 17, height: 13 +Child: 29, message: Wave 1 +Child: 30, type: 5, width: 17, height: 13 +Child: 31, message: Poison tofu +Child: 32, type: 5, width: 17, height: 13 +Child: 33, message: Tofu +Child: 34, type: 5, width: 17, height: 13 +Child: 35, message: Defender +Child: 36, type: 6, width: 17, height: 17 +Child: 37, type: 6, width: 17, height: 17 +Child: 38, type: 6, width: 17, height: 17 +Child: 39, type: 6, width: 17, height: 17 diff --git a/server508/lists/interfaces/489.txt b/server508/lists/interfaces/489.txt new file mode 100644 index 0000000..217de44 --- /dev/null +++ b/server508/lists/interfaces/489.txt @@ -0,0 +1,21 @@ +Child: 0, message: # Players in room: +Child: 1, message: Attackers: +Child: 2, message: Defenders: +Child: 3, message: Collectors: +Child: 4, message: Healers: +Child: 5, message: Any: +Child: 6, message: 0 +Child: 7, message: 0 +Child: 8, message: 0 +Child: 9, message: 0 +Child: 10, message: 0 +Child: 11, type: 5, width: 17, height: 13 +Child: 12, type: 5, width: 17, height: 13 +Child: 13, type: 5, width: 17, height: 13 +Child: 14, type: 5, width: 17, height: 13 +Child: 15, type: 5, width: 17, height: 13 +Child: 16, type: 0, width: 20, height: 20 +Child: 17, type: 0, width: 20, height: 20 +Child: 18, type: 0, width: 20, height: 20 +Child: 19, type: 0, width: 20, height: 20 +Child: 20, type: 0, width: 20, height: 20 diff --git a/server508/lists/interfaces/49.txt b/server508/lists/interfaces/49.txt new file mode 100644 index 0000000..44f48d9 --- /dev/null +++ b/server508/lists/interfaces/49.txt @@ -0,0 +1,79 @@ +Child: 0, type: 6, width: 35, height: 35 +Child: 1, type: 5, width: 39, height: 39 +Child: 2, type: 5, width: 351, height: 39 +Child: 3, type: 5, width: 39, height: 39 +Child: 4, type: 0, width: 487, height: 45 +Child: 5, type: 5, width: 21, height: 21 +Child: 6, message: Book Title +Child: 7, type: 0, width: 197, height: 210 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 0, width: 197, height: 210 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 0, width: 197, height: 210 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 0, width: 197, height: 210 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 0, width: 197, height: 210 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 0, width: 197, height: 210 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 0, width: 197, height: 210 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 0, width: 197, height: 210 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 0, width: 197, height: 210 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 0, width: 197, height: 210 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 0, width: 197, height: 210 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 0, width: 197, height: 210 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 0, width: 197, height: 210 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 0, width: 197, height: 210 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 0, width: 197, height: 210 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 0, width: 197, height: 210 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 0, width: 197, height: 210 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 0, width: 197, height: 210 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 0, width: 197, height: 210 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 0, width: 197, height: 210 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 0, width: 197, height: 210 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, type: 0, width: 197, height: 210 +Child: 50, type: 6, width: 32, height: 32 +Child: 51, type: 5, width: 39, height: 39 +Child: 52, type: 0, width: 45, height: 36 +Child: 53, type: 5, width: 39, height: 39 +Child: 54, type: 0, width: 45, height: 36 +Child: 55, message: line1 +Child: 56, message: line2 +Child: 57, message: line3 +Child: 58, message: line4 +Child: 59, message: line5 +Child: 60, message: line6 +Child: 61, message: line7 +Child: 62, message: line8 +Child: 63, message: line9 +Child: 64, message: line10 +Child: 65, message: line11 +Child: 66, message: line12 +Child: 67, message: line13 +Child: 68, message: line14 +Child: 69, message: line15 +Child: 70, message: line16 +Child: 71, message: line17 +Child: 72, message: line18 +Child: 73, message: line19 +Child: 74, message: line20 +Child: 75, message: line21 +Child: 76, message: line22 +Child: 77, message: Page%1 +Child: 78, message: Page%2 diff --git a/server508/lists/interfaces/490.txt b/server508/lists/interfaces/490.txt new file mode 100644 index 0000000..cea8e50 --- /dev/null +++ b/server508/lists/interfaces/490.txt @@ -0,0 +1,32 @@ +Child: 0, type: 3, width: 16391, height: 19628 +Child: 1, type: 6, width: 561, height: 340 +Child: 2, message: Player status for: +Child: 3, message: Role +Child: 4, message: Current honour points +Child: 5, message: Attacker +Child: 6, message: Healer +Child: 7, message: Defender +Child: 8, message: Collector +Child: 9, message: Points for next level +Child: 10, message: 0 +Child: 11, message: 0 +Child: 12, message: 0 +Child: 13, message: 0 +Child: 14, message: Level +Child: 15, message: 0 +Child: 16, message: 0 +Child: 17, message: 0 +Child: 18, message: 0 +Child: 19, message: null +Child: 20, message: 0 +Child: 21, message: 0 +Child: 22, message: 0 +Child: 23, message: 0 +Child: 24, message: Current wave : +Child: 25, message: 0 +Child: 26, message: Reward next level +Child: 27, message: ----------- +Child: 28, message: ----------- +Child: 29, message: ----------- +Child: 30, message: ----------- +Child: 31, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/491.txt b/server508/lists/interfaces/491.txt new file mode 100644 index 0000000..8978bc4 --- /dev/null +++ b/server508/lists/interfaces/491.txt @@ -0,0 +1,231 @@ +Child: 0, type: 3, width: 562, height: 362 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 25, height: 30 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 25, height: 30 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 88, height: 60 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, message: Barbarian Assault Reward Shop +Child: 79, type: 0, width: 435, height: 195 +Child: 80, type: 6, width: 49, height: 34 +Child: 81, type: 3, width: 238, height: 46 +Child: 82, message: Attacker level up to 2 +Child: 83, message: 100 Attacker points +Child: 84, type: 3, width: 90, height: 46 +Child: 85, message: +2 bonus damage +Child: 86, type: 3, width: 90, height: 46 +Child: 87, type: 5, width: 88, height: 60 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 6, width: 49, height: 34 +Child: 90, type: 3, width: 238, height: 46 +Child: 91, message: Collector level up to 2 +Child: 92, message: 100 Collector points +Child: 93, type: 3, width: 90, height: 46 +Child: 94, message: Bag stores 4 +Child: 95, type: 3, width: 90, height: 46 +Child: 96, type: 6, width: 49, height: 34 +Child: 97, type: 3, width: 238, height: 46 +Child: 98, message: Defender level up to 2 +Child: 99, message: 100 Defender points +Child: 100, type: 3, width: 90, height: 46 +Child: 101, message: Lure range 5 +Child: 102, type: 3, width: 90, height: 46 +Child: 103, type: 6, width: 49, height: 34 +Child: 104, type: 3, width: 238, height: 46 +Child: 105, message: Defender level up to 2 +Child: 106, message: 100 Healer points +Child: 107, type: 3, width: 90, height: 46 +Child: 108, message: Class 2 healing +Child: 109, type: 3, width: 90, height: 46 +Child: 110, type: 6, width: 49, height: 34 +Child: 111, type: 3, width: 238, height: 46 +Child: 112, message: Penance Fighter hat +Child: 113, message: 275 points in each role +Child: 114, type: 3, width: 90, height: 46 +Child: 115, message: Requires Defence 45 +Child: 116, type: 3, width: 90, height: 46 +Child: 117, type: 6, width: 49, height: 34 +Child: 118, type: 3, width: 238, height: 46 +Child: 119, message: Penance Ranger hat +Child: 120, message: 275 points in each role +Child: 121, type: 3, width: 90, height: 46 +Child: 122, message: Requires Defence 45 +Child: 123, type: 3, width: 90, height: 46 +Child: 124, type: 6, width: 49, height: 34 +Child: 125, type: 3, width: 238, height: 46 +Child: 126, message: Penance Runner hat +Child: 127, message: 275 points in each role +Child: 128, type: 3, width: 90, height: 46 +Child: 129, message: Requires Defence 45 +Child: 130, type: 3, width: 90, height: 46 +Child: 131, type: 6, width: 49, height: 34 +Child: 132, type: 3, width: 238, height: 46 +Child: 133, message: Penance Healer hat +Child: 134, message: 275 points in each role +Child: 135, type: 3, width: 90, height: 46 +Child: 136, message: Requires Defence 45 +Child: 137, type: 3, width: 90, height: 46 +Child: 138, type: 6, width: 49, height: 34 +Child: 139, type: 3, width: 238, height: 46 +Child: 140, message: Penance torso +Child: 141, message: 375 points in each role +Child: 142, type: 3, width: 90, height: 46 +Child: 143, message: Requires Defence 40 +Child: 144, type: 3, width: 90, height: 46 +Child: 145, type: 6, width: 49, height: 34 +Child: 146, type: 3, width: 238, height: 46 +Child: 147, message: Penance skirt +Child: 148, message: 375 points in each role +Child: 149, type: 3, width: 90, height: 46 +Child: 150, message: Requires Defence 40 +Child: 151, type: 3, width: 90, height: 46 +Child: 152, type: 6, width: 49, height: 34 +Child: 153, type: 3, width: 238, height: 46 +Child: 154, message: Penance boots +Child: 155, message: 100 points in each role +Child: 156, type: 3, width: 90, height: 46 +Child: 157, message: Requires Defence 40 +Child: 158, type: 3, width: 90, height: 46 +Child: 159, type: 6, width: 49, height: 34 +Child: 160, type: 3, width: 238, height: 46 +Child: 161, message: Penance gloves +Child: 162, message: 150 points in each role +Child: 163, type: 3, width: 90, height: 46 +Child: 164, message: Requires Defence 40 +Child: 165, type: 3, width: 90, height: 46 +Child: 166, type: 6, width: 49, height: 34 +Child: 167, type: 3, width: 238, height: 46 +Child: 168, message: Granite body +Child: 169, message: 95,000 coins +Child: 170, type: 3, width: 90, height: 46 +Child: 171, message: Requires Defence 50 +Child: 172, type: 3, width: 90, height: 46 +Child: 173, type: 6, width: 49, height: 34 +Child: 174, type: 3, width: 238, height: 46 +Child: 175, message: Gamble points - low items +Child: 176, message: 200 points (any role) +Child: 177, type: 3, width: 90, height: 46 +Child: 178, message: Receive a random item +Child: 179, type: 3, width: 90, height: 46 +Child: 180, type: 6, width: 49, height: 34 +Child: 181, type: 3, width: 238, height: 46 +Child: 182, message: Gamble points - medium items +Child: 183, message: 400 points (any role) +Child: 184, type: 3, width: 90, height: 46 +Child: 185, message: Receive a random item +Child: 186, type: 3, width: 90, height: 46 +Child: 187, type: 6, width: 49, height: 34 +Child: 188, type: 3, width: 238, height: 46 +Child: 189, message: Gamble points - high items +Child: 190, message: 500 points (any role) +Child: 191, type: 3, width: 90, height: 46 +Child: 192, message: Receive a random item +Child: 193, type: 3, width: 90, height: 46 +Child: 194, type: 5, width: 36, height: 36 +Child: 195, type: 5, width: 36, height: 36 +Child: 196, type: 5, width: 36, height: 36 +Child: 197, type: 5, width: 36, height: 36 +Child: 198, type: 5, width: 36, height: 36 +Child: 199, type: 5, width: 25, height: 30 +Child: 200, type: 3, width: 374, height: 47 +Child: 201, type: 5, width: 150, height: 35 +Child: 202, type: 5, width: 25, height: 30 +Child: 203, type: 5, width: 36, height: 36 +Child: 204, type: 5, width: 36, height: 36 +Child: 205, type: 5, width: 36, height: 36 +Child: 206, type: 3, width: 123, height: 32 +Child: 207, type: 5, width: 26, height: 23 +Child: 208, type: 5, width: 26, height: 23 +Child: 209, type: 0, width: 32, height: 32 +Child: 210, message: Select your reward +Child: 211, type: 3, width: 435, height: 196 +Child: 212, type: 6, width: 32, height: 32 +Child: 213, message: Accept +Child: 214, type: 3, width: 93, height: 34 +Child: 215, message: Attacker Honour Points: +Child: 216, message: Defender Honour Points: +Child: 217, message: Collector Honour Points: +Child: 218, message: Healer Honour Points: +Child: 219, message: 999 +Child: 220, message: 999 +Child: 221, message: 999 +Child: 222, message: 999 +Child: 223, message: Kill Queen +Child: 224, message: Kill Queen +Child: 225, message: Kill Queen +Child: 226, message: Kill Queen +Child: 227, message: Kill Queen +Child: 228, message: Kill Queen +Child: 229, message: Kill Queen +Child: 230, message: Kill Queen diff --git a/server508/lists/interfaces/492.txt b/server508/lists/interfaces/492.txt new file mode 100644 index 0000000..0decd14 --- /dev/null +++ b/server508/lists/interfaces/492.txt @@ -0,0 +1,50 @@ +Child: 0, type: 3, width: 16391, height: 19628 +Child: 1, type: 6, width: 501, height: 284 +Child: 2, message: Player 1 Interface Screen +Child: 3, message: Decline +Child: 4, type: 6, width: 47, height: 49 +Child: 5, message: Accept +Child: 6, message: Player 2 selected role: +Child: 7, message: Waiting ... +Child: 8, message: The team: +Child: 9, message: Name +Child: 10, message: Role +Child: 11, message: 1 +Child: 12, message: 2 +Child: 13, message: 3 +Child: 14, message: 4 +Child: 15, message: 5 +Child: 16, message: none set +Child: 17, message: none set +Child: 18, message: none set +Child: 19, message: none set +Child: 20, message: none set +Child: 21, message: none set +Child: 22, message: none set +Child: 23, message: none set +Child: 24, message: none set +Child: 25, message: none set +Child: 26, message: Wave +Child: 27, message: 0 +Child: 28, type: 6, width: 22, height: 23 +Child: 29, type: 6, width: 22, height: 23 +Child: 30, type: 6, width: 22, height: 23 +Child: 31, message: Remove? +Child: 32, message: 0 +Child: 33, message: 0 +Child: 34, message: 0 +Child: 35, message: 0 +Child: 36, type: 6, width: 46, height: 51 +Child: 37, type: 3, width: 5, height: 187 +Child: 38, type: 3, width: 5, height: 187 +Child: 39, type: 3, width: 5, height: 187 +Child: 40, type: 3, width: 5, height: 187 +Child: 41, type: 3, width: 285, height: 5 +Child: 42, type: 3, width: 285, height: 5 +Child: 43, type: 3, width: 285, height: 5 +Child: 44, type: 3, width: 285, height: 5 +Child: 45, type: 3, width: 285, height: 5 +Child: 46, message: Level in role: +Child: 47, message: Waiting ... +Child: 48, type: 6, width: 22, height: 23 +Child: 49, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/493.txt b/server508/lists/interfaces/493.txt new file mode 100644 index 0000000..6bce75d --- /dev/null +++ b/server508/lists/interfaces/493.txt @@ -0,0 +1,48 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 510, height: 289 +Child: 2, message: Player 2 Interface Screen +Child: 3, message: Decline +Child: 4, type: 6, width: 60, height: 58 +Child: 5, message: Attacker +Child: 6, type: 6, width: 47, height: 56 +Child: 7, message: Defender +Child: 8, message: Collector +Child: 9, type: 6, width: 41, height: 53 +Child: 10, type: 6, width: 51, height: 51 +Child: 11, message: Healer +Child: 12, type: 6, width: 43, height: 45 +Child: 13, message: Accept +Child: 14, type: 6, width: 43, height: 45 +Child: 15, message: None +Child: 16, type: 0, width: 191, height: 32 +Child: 17, message: Waiting for player 1 to accept... +Child: 18, message: The team: +Child: 19, message: Name +Child: 20, message: Role +Child: 21, message: --- Leader --- +Child: 22, message: --- Followers --- +Child: 23, message: none set +Child: 24, message: none set +Child: 25, message: none set +Child: 26, message: none set +Child: 27, message: none set +Child: 28, message: none set +Child: 29, message: none set +Child: 30, message: none set +Child: 31, message: none set +Child: 32, message: none set +Child: 33, message: Wave +Child: 34, message: 0 +Child: 35, message: 0 +Child: 36, message: 0 +Child: 37, message: 0 +Child: 38, message: 0 +Child: 39, message: Please select a role!
Current Role: +Child: 40, message: Name +Child: 41, message: Role +Child: 42, message: Name +Child: 43, message: Role +Child: 44, message: Name +Child: 45, message: Role +Child: 46, message: Name +Child: 47, message: Role diff --git a/server508/lists/interfaces/494.txt b/server508/lists/interfaces/494.txt new file mode 100644 index 0000000..ed3fed1 --- /dev/null +++ b/server508/lists/interfaces/494.txt @@ -0,0 +1,3 @@ +Child: 0, message: XX +Child: 1, message: Time until next wave: +Child: 2, message: (exit room to cancel) diff --git a/server508/lists/interfaces/495.txt b/server508/lists/interfaces/495.txt new file mode 100644 index 0000000..89f9e43 --- /dev/null +++ b/server508/lists/interfaces/495.txt @@ -0,0 +1,73 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 0, width: 32, height: 32 +Child: 9, type: 0, width: 32, height: 32 +Child: 10, type: 0, width: 32, height: 32 +Child: 11, message: Poison +Child: 12, message: Explosive +Child: 13, message: Stun +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 0, width: 32, height: 32 +Child: 22, type: 0, width: 32, height: 32 +Child: 23, type: 0, width: 32, height: 32 +Child: 24, message: Poison +Child: 25, message: Explosive +Child: 26, message: Stun +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 0, width: 32, height: 32 +Child: 35, type: 0, width: 32, height: 32 +Child: 36, type: 0, width: 32, height: 32 +Child: 37, message: Poison +Child: 38, message: Explosive +Child: 39, message: Stun +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 0, width: 32, height: 32 +Child: 48, type: 0, width: 32, height: 32 +Child: 49, type: 0, width: 32, height: 32 +Child: 50, message: Poison +Child: 51, message: Explosive +Child: 52, message: Stun +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 6, width: 32, height: 32 +Child: 55, type: 0, width: 32, height: 32 +Child: 56, message: Omega +Child: 57, message: ## +Child: 58, message: ## +Child: 59, message: ## +Child: 60, message: ## +Child: 61, message: ## +Child: 62, message: ## +Child: 63, message: ## +Child: 64, message: ## +Child: 65, message: ## +Child: 66, message: ## +Child: 67, message: ## +Child: 68, message: ## +Child: 69, message: ## +Child: 70, type: 5, width: 16, height: 16 +Child: 71, type: 5, width: 16, height: 16 +Child: 72, type: 0, width: 16, height: 16 diff --git a/server508/lists/interfaces/496.txt b/server508/lists/interfaces/496.txt new file mode 100644 index 0000000..9e21a50 --- /dev/null +++ b/server508/lists/interfaces/496.txt @@ -0,0 +1,18 @@ +Child: 0, type: 3, width: 512, height: 400 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, message: Tutorial Progress +Child: 3, message: Introduction to the Arena +Child: 4, message: Getting Started +Child: 5, message: Playing the Game +Child: 6, message: The Attacker Role +Child: 7, message: The Defender Role +Child: 8, message: The Collector Role +Child: 9, message: The Healer Role +Child: 10, message: Extra Information +Child: 11, message: The Final Battle +Child: 12, message: Rewards +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 5, width: 26, height: 23 +Child: 15, type: 0, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/497.txt b/server508/lists/interfaces/497.txt new file mode 100644 index 0000000..c5f1dc5 --- /dev/null +++ b/server508/lists/interfaces/497.txt @@ -0,0 +1,80 @@ +Child: 0, type: 3, width: 16391, height: 19628 +Child: 1, type: 6, width: 503, height: 286 +Child: 2, type: 6, width: 402, height: 247 +Child: 3, type: 6, width: 117, height: 62 +Child: 4, message: Wave Complete! +Child: 5, message: Reward: +Child: 6, message: Runners that got past +Child: 7, message: Rangers killed +Child: 8, message: Fighters killed +Child: 9, message: Healers killed +Child: 10, message: Runners killed +Child: 11, message: Player hitpoints replenished +Child: 12, message: Wrong poison packs used +Child: 13, message: Eggs collected (min. exploded) +Child: 14, message: Failed Attacker attacks +Child: 15, message: 0 +Child: 16, message: 0 +Child: 17, message: 0 +Child: 18, message: 0 +Child: 19, message: 0 +Child: 20, message: 0 +Child: 21, message: 0 +Child: 22, message: 0 +Child: 23, message: 0 +Child: 24, message: Total +Child: 25, message: 0 +Child: 26, message: 0 +Child: 27, message: 0 +Child: 28, message: 0 +Child: 29, message: 0 +Child: 30, message: 0 +Child: 31, message: 0 +Child: 32, message: 0 +Child: 33, message: 0 +Child: 34, message: 0 +Child: 35, message: # +Child: 36, message: Team Honour Points +Child: 37, message: Role: +Child: 38, message: None +Child: 39, message: 0 +Child: 40, message: 0 +Child: 41, message: 0 +Child: 42, message: 0 +Child: 43, message: 0 +Child: 44, message: 0 +Child: 45, message: 0 +Child: 46, message: 0 +Child: 47, message: 0 +Child: 48, message: 0 +Child: 49, message: Honour Points reward : +Child: 50, message: 0 +Child: 51, message: - +Child: 52, message: - +Child: 53, message: - +Child: 54, message: - +Child: 55, message: - +Child: 56, message: - +Child: 57, message: Total Honour Points in role: +Child: 58, message: 0 +Child: 59, message: Individual Honour Points +Child: 60, type: 0, width: 428, height: 250 +Child: 61, type: 0, width: 420, height: 230 +Child: 62, message: The Queen is dead! +Child: 63, message: Reward: +Child: 64, message: --Points output-- +Child: 65, message: -Role- +Child: 66, message: Simple breakdown +Child: 67, message: Honour Points Reward: +Child: 68, message: 0 +Child: 69, message: 0 +Child: 70, type: 0, width: 419, height: 230 +Child: 71, message: Advanced Breakdown +Child: 72, message: Total Honour Points in role: +Child: 73, type: 5, width: 26, height: 23 +Child: 74, type: 6, width: 59, height: 59 +Child: 75, message: Level
up +Child: 76, type: 0, width: 72, height: 65 +Child: 77, type: 6, width: 59, height: 59 +Child: 78, message: Level
up +Child: 79, type: 0, width: 72, height: 65 diff --git a/server508/lists/interfaces/498.txt b/server508/lists/interfaces/498.txt new file mode 100644 index 0000000..bc1ead6 --- /dev/null +++ b/server508/lists/interfaces/498.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 485, height: 282 +Child: 1, message: Kaleef

Your mission is to contact our agent inside Menaphos.
Use the tunnels beneath the temple of lesser gods.
Be vigilant of traps and the hostile natives.
They're about as welcoming as the Menaphites only slightly better looking.

Os +Child: 2, type: 6, width: 315, height: 195 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 32, height: 32 +Child: 5, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/499.txt b/server508/lists/interfaces/499.txt new file mode 100644 index 0000000..df0635b --- /dev/null +++ b/server508/lists/interfaces/499.txt @@ -0,0 +1,26 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 334, height: 51 +Child: 2, type: 6, width: 372, height: 264 +Child: 3, type: 6, width: 143, height: 253 +Child: 4, type: 6, width: 154, height: 12 +Child: 5, type: 6, width: 154, height: 12 +Child: 6, message: Skill +Child: 7, type: 0, width: 296, height: 239 +Child: 8, type: 0, width: 16, height: 239 +Child: 9, message: Description +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, type: 5, width: 26, height: 23 +Child: 25, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/5.txt b/server508/lists/interfaces/5.txt new file mode 100644 index 0000000..3bcfe55 --- /dev/null +++ b/server508/lists/interfaces/5.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 22, height: 22 +Child: 1, type: 3, width: 22, height: 22 +Child: 2, type: 3, width: 20, height: 20 +Child: 3, type: 3, width: 20, height: 20 +Child: 4, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/50.txt b/server508/lists/interfaces/50.txt new file mode 100644 index 0000000..24af2ab --- /dev/null +++ b/server508/lists/interfaces/50.txt @@ -0,0 +1,93 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 6, width: 152, height: 109 +Child: 76, message: Brooch +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 26, height: 23 +Child: 91, type: 5, width: 26, height: 23 +Child: 92, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/500.txt b/server508/lists/interfaces/500.txt new file mode 100644 index 0000000..9769377 --- /dev/null +++ b/server508/lists/interfaces/500.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/501.txt b/server508/lists/interfaces/501.txt new file mode 100644 index 0000000..c7aa8cd --- /dev/null +++ b/server508/lists/interfaces/501.txt @@ -0,0 +1,50 @@ +Child: 0, type: 6, width: 693, height: 445 +Child: 1, type: 6, width: 245, height: 180 +Child: 2, type: 0, width: 425, height: 110 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, type: 0, width: 149, height: 52 +Child: 9, type: 0, width: 148, height: 48 +Child: 10, type: 0, width: 150, height: 47 +Child: 11, type: 0, width: 150, height: 49 +Child: 12, type: 0, width: 150, height: 51 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 6, width: 58, height: 80 +Child: 15, type: 6, width: 63, height: 43 +Child: 16, type: 6, width: 73, height: 40 +Child: 17, type: 6, width: 40, height: 39 +Child: 18, type: 6, width: 30, height: 67 +Child: 19, type: 6, width: 147, height: 43 +Child: 20, message: Cannon barrel +Child: 21, type: 6, width: 147, height: 43 +Child: 22, message: Fuse +Child: 23, type: 6, width: 147, height: 43 +Child: 24, message: Ramrod +Child: 25, type: 6, width: 147, height: 43 +Child: 26, message: Cannonball +Child: 27, type: 6, width: 147, height: 43 +Child: 28, message: Cannon cannister +Child: 29, type: 0, width: 512, height: 334 +Child: 30, type: 0, width: 512, height: 334 +Child: 31, type: 0, width: 16391, height: 16391 +Child: 32, type: 0, width: 16391, height: 16391 +Child: 33, type: 5, width: 32, height: 334 +Child: 34, type: 5, width: 462, height: 32 +Child: 35, type: 5, width: 512, height: 32 +Child: 36, type: 5, width: 32, height: 334 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 0, width: 8192, height: 16391 +Child: 42, type: 0, width: 8188, height: 16391 +Child: 43, type: 0, width: 16391, height: 8192 +Child: 44, type: 0, width: 16391, height: 8182 +Child: 45, type: 0, width: 512, height: 334 +Child: 46, type: 5, width: 256, height: 16384 +Child: 47, type: 5, width: 256, height: 16391 +Child: 48, type: 5, width: 16391, height: 167 +Child: 49, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/502.txt b/server508/lists/interfaces/502.txt new file mode 100644 index 0000000..a5b3132 --- /dev/null +++ b/server508/lists/interfaces/502.txt @@ -0,0 +1,50 @@ +Child: 0, type: 6, width: 693, height: 445 +Child: 1, type: 6, width: 245, height: 180 +Child: 2, type: 0, width: 388, height: 69 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, type: 0, width: 149, height: 52 +Child: 9, type: 0, width: 148, height: 48 +Child: 10, type: 0, width: 150, height: 47 +Child: 11, type: 0, width: 150, height: 49 +Child: 12, type: 0, width: 150, height: 51 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 6, width: 68, height: 43 +Child: 15, type: 6, width: 31, height: 56 +Child: 16, type: 6, width: 27, height: 27 +Child: 17, type: 6, width: 85, height: 57 +Child: 18, type: 6, width: 54, height: 39 +Child: 19, type: 6, width: 147, height: 43 +Child: 20, message: Rope +Child: 21, type: 6, width: 147, height: 43 +Child: 22, message: Hammer +Child: 23, type: 6, width: 147, height: 43 +Child: 24, message: Tack +Child: 25, type: 6, width: 147, height: 43 +Child: 26, message: Plank +Child: 27, type: 6, width: 147, height: 43 +Child: 28, message: Swamp paste +Child: 29, type: 0, width: 512, height: 334 +Child: 30, type: 0, width: 512, height: 334 +Child: 31, type: 0, width: 16391, height: 16391 +Child: 32, type: 0, width: 16391, height: 16391 +Child: 33, type: 5, width: 32, height: 334 +Child: 34, type: 5, width: 462, height: 32 +Child: 35, type: 5, width: 512, height: 32 +Child: 36, type: 5, width: 32, height: 334 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 0, width: 8192, height: 16391 +Child: 42, type: 0, width: 8188, height: 16391 +Child: 43, type: 0, width: 16391, height: 8192 +Child: 44, type: 0, width: 16391, height: 8182 +Child: 45, type: 0, width: 512, height: 334 +Child: 46, type: 5, width: 256, height: 16384 +Child: 47, type: 5, width: 256, height: 16391 +Child: 48, type: 5, width: 16391, height: 167 +Child: 49, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/503.txt b/server508/lists/interfaces/503.txt new file mode 100644 index 0000000..c81f953 --- /dev/null +++ b/server508/lists/interfaces/503.txt @@ -0,0 +1,16 @@ +Child: 0, type: 6, width: 467, height: 252 +Child: 1, type: 0, width: 488, height: 36 +Child: 2, type: 6, width: 49, height: 110 +Child: 3, message: Clockwork Toys - A Clockwork Mechanism, Chapter 1.0 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, message: Making a clockwork toy is very simple and a good place to start for new crafters. Simply create a clockwork mechanism on your Crafting table, then use it and a wood plank to make a toy soldier or a doll. Wind them up and watch them go! +Child: 6, message: Multi-rotation head for lifelike simulation +Child: 7, message: A well-hidden clockwork system +Child: 8, type: 6, width: 104, height: 104 +Child: 9, message: The clockwork mechanism. +Child: 10, type: 6, width: 204, height: 143 +Child: 11, message: It would be simple to alter the design by adding a piece of silk to the wooden frame and clockwork mechanism. You could make a suit that could be controlled from the inside. +Child: 12, type: 6, width: 64, height: 79 +Child: 13, type: 3, width: 25, height: 4 +Child: 14, type: 3, width: 29, height: 4 +Child: 15, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/504.txt b/server508/lists/interfaces/504.txt new file mode 100644 index 0000000..e0e8176 --- /dev/null +++ b/server508/lists/interfaces/504.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 16711, height: 16881 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, type: 3, width: 16384, height: 16384 diff --git a/server508/lists/interfaces/505.txt b/server508/lists/interfaces/505.txt new file mode 100644 index 0000000..134ae8f --- /dev/null +++ b/server508/lists/interfaces/505.txt @@ -0,0 +1,30 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 449, height: 331 +Child: 2, type: 6, width: 356, height: 268 +Child: 3, message: Waterbirth
Island +Child: 4, message: Miscellania +Child: 5, message: Etceteria +Child: 6, message: Rellekka +Child: 7, message: Neitiznot & Jatizso +Child: 8, message: Keldagrim
entrance +Child: 9, type: 0, width: 512, height: 334 +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 0, width: 16391, height: 16391 +Child: 13, type: 5, width: 32, height: 334 +Child: 14, type: 5, width: 462, height: 32 +Child: 15, type: 5, width: 512, height: 32 +Child: 16, type: 5, width: 32, height: 334 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 0, width: 8192, height: 16391 +Child: 22, type: 0, width: 8188, height: 16391 +Child: 23, type: 0, width: 16391, height: 8192 +Child: 24, type: 0, width: 16391, height: 8182 +Child: 25, type: 0, width: 512, height: 334 +Child: 26, type: 5, width: 256, height: 16384 +Child: 27, type: 5, width: 256, height: 16391 +Child: 28, type: 5, width: 16391, height: 167 +Child: 29, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/506.txt b/server508/lists/interfaces/506.txt new file mode 100644 index 0000000..797f515 --- /dev/null +++ b/server508/lists/interfaces/506.txt @@ -0,0 +1,25 @@ +Child: 0, type: 5, width: 36, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, message: Talk to puppet +Child: 6, message: Jester Controls +Child: 7, type: 5, width: 36, height: 36 +Child: 8, type: 5, width: 36, height: 36 +Child: 9, message: Dance +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, message: Juggle +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, message: Skip +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, message: Pie +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 5, width: 36, height: 36 +Child: 21, message: Jig +Child: 22, type: 5, width: 36, height: 36 +Child: 23, type: 5, width: 36, height: 36 +Child: 24, message: Bow diff --git a/server508/lists/interfaces/507.txt b/server508/lists/interfaces/507.txt new file mode 100644 index 0000000..c913edb --- /dev/null +++ b/server508/lists/interfaces/507.txt @@ -0,0 +1,36 @@ +Child: 0, message: A +Child: 1, message: B +Child: 2, message: C +Child: 3, message: D +Child: 4, message: E +Child: 5, message: F +Child: 6, message: G +Child: 7, message: H +Child: 8, message: I +Child: 9, message: J +Child: 10, message: K +Child: 11, message: L +Child: 12, message: M +Child: 13, message: N +Child: 14, message: O +Child: 15, message: P +Child: 16, message: Q +Child: 17, message: R +Child: 18, message: S +Child: 19, message: T +Child: 20, message: U +Child: 21, message: V +Child: 22, message: W +Child: 23, message: X +Child: 24, message: Y +Child: 25, message: Z +Child: 26, message: Ä +Child: 27, message: Ü +Child: 28, message: Ö +Child: 29, message: ß +Child: 30, type: 5, width: 72, height: 36 +Child: 31, message: GUESS +Child: 32, message: +Child: 33, message: __________ +Child: 34, message: Enter up to five letters in any order then click 'guess' again. +Child: 35, type: 0, width: 406, height: 24 diff --git a/server508/lists/interfaces/508.txt b/server508/lists/interfaces/508.txt new file mode 100644 index 0000000..fe6968f --- /dev/null +++ b/server508/lists/interfaces/508.txt @@ -0,0 +1,38 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 0, width: 164, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 0, width: 164, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 0, width: 18, height: 32 +Child: 6, type: 6, width: 18, height: 32 +Child: 7, message: The World of Magic +Child: 8, message: The World of Logic +Child: 9, type: 0, width: 18, height: 32 +Child: 10, type: 6, width: 18, height: 32 +Child: 11, type: 0, width: 18, height: 32 +Child: 12, type: 6, width: 18, height: 32 +Child: 13, type: 0, width: 18, height: 32 +Child: 14, type: 6, width: 18, height: 32 +Child: 15, type: 0, width: 18, height: 32 +Child: 16, type: 6, width: 18, height: 32 +Child: 17, type: 0, width: 18, height: 32 +Child: 18, type: 6, width: 18, height: 32 +Child: 19, type: 0, width: 18, height: 32 +Child: 20, type: 6, width: 18, height: 32 +Child: 21, type: 0, width: 18, height: 32 +Child: 22, type: 6, width: 18, height: 32 +Child: 23, type: 0, width: 18, height: 32 +Child: 24, type: 6, width: 18, height: 32 +Child: 25, type: 0, width: 18, height: 32 +Child: 26, type: 6, width: 18, height: 32 +Child: 27, type: 0, width: 18, height: 32 +Child: 28, type: 6, width: 18, height: 32 +Child: 29, type: 0, width: 18, height: 32 +Child: 30, type: 6, width: 18, height: 32 +Child: 31, type: 0, width: 18, height: 32 +Child: 32, type: 6, width: 18, height: 32 +Child: 33, type: 0, width: 18, height: 32 +Child: 34, type: 6, width: 18, height: 32 +Child: 35, type: 0, width: 18, height: 32 +Child: 36, type: 6, width: 18, height: 32 +Child: 37, message: The Mind of the Homunculus! diff --git a/server508/lists/interfaces/509.txt b/server508/lists/interfaces/509.txt new file mode 100644 index 0000000..18e81a1 --- /dev/null +++ b/server508/lists/interfaces/509.txt @@ -0,0 +1,79 @@ +Child: 0, type: 3, width: 535, height: 343 +Child: 1, type: 6, width: 222, height: 92 +Child: 2, type: 6, width: 271, height: 115 +Child: 3, type: 0, width: 32, height: 32 +Child: 4, type: 0, width: 476, height: 332 +Child: 5, type: 0, width: 476, height: 332 +Child: 6, type: 0, width: 476, height: 332 +Child: 7, type: 0, width: 476, height: 332 +Child: 8, type: 6, width: 295, height: 126 +Child: 9, type: 6, width: 38, height: 29 +Child: 10, type: 0, width: 49, height: 43 +Child: 11, type: 6, width: 38, height: 29 +Child: 12, type: 0, width: 51, height: 40 +Child: 13, type: 6, width: 27, height: 26 +Child: 14, type: 0, width: 39, height: 37 +Child: 15, type: 6, width: 205, height: 254 +Child: 16, message: Place bar +Child: 17, type: 0, width: 150, height: 31 +Child: 18, type: 0, width: 33, height: 167 +Child: 19, type: 6, width: 27, height: 26 +Child: 20, type: 0, width: 39, height: 36 +Child: 21, type: 6, width: 27, height: 26 +Child: 22, type: 0, width: 39, height: 36 +Child: 23, message: Horizontal +Child: 24, message: Vertical +Child: 25, type: 6, width: 25, height: 9 +Child: 26, type: 0, width: 39, height: 36 +Child: 27, type: 6, width: 25, height: 25 +Child: 28, type: 0, width: 39, height: 36 +Child: 29, type: 3, width: 23, height: 20 +Child: 30, message: 1 +Child: 31, type: 5, width: 26, height: 23 +Child: 32, type: 0, width: 512, height: 334 +Child: 33, type: 6, width: 27, height: 27 +Child: 34, type: 6, width: 179, height: 308 +Child: 35, type: 6, width: 189, height: 320 +Child: 36, type: 6, width: 72, height: 20 +Child: 37, type: 6, width: 56, height: 31 +Child: 38, type: 6, width: 13, height: 62 +Child: 39, type: 6, width: 192, height: 327 +Child: 40, type: 6, width: 28, height: 84 +Child: 41, type: 6, width: 116, height: 26 +Child: 42, type: 6, width: 56, height: 31 +Child: 43, type: 6, width: 196, height: 328 +Child: 44, type: 6, width: 32, height: 86 +Child: 45, type: 6, width: 19, height: 169 +Child: 46, type: 6, width: 61, height: 34 +Child: 47, type: 6, width: 190, height: 327 +Child: 48, type: 6, width: 126, height: 26 +Child: 49, type: 6, width: 17, height: 60 +Child: 50, type: 6, width: 19, height: 103 +Child: 51, type: 6, width: 43, height: 37 +Child: 52, type: 6, width: 43, height: 37 +Child: 53, type: 6, width: 35, height: 34 +Child: 54, type: 6, width: 44, height: 14 +Child: 55, type: 6, width: 16, height: 47 +Child: 56, type: 6, width: 35, height: 34 +Child: 57, type: 6, width: 35, height: 34 +Child: 58, type: 6, width: 27, height: 11 +Child: 59, type: 0, width: 512, height: 334 +Child: 60, type: 0, width: 16391, height: 16391 +Child: 61, type: 0, width: 16391, height: 16391 +Child: 62, type: 5, width: 32, height: 334 +Child: 63, type: 5, width: 462, height: 32 +Child: 64, type: 5, width: 512, height: 32 +Child: 65, type: 5, width: 32, height: 334 +Child: 66, type: 5, width: 32, height: 32 +Child: 67, type: 5, width: 32, height: 32 +Child: 68, type: 5, width: 32, height: 32 +Child: 69, type: 5, width: 32, height: 32 +Child: 70, type: 0, width: 8192, height: 16391 +Child: 71, type: 0, width: 8188, height: 16391 +Child: 72, type: 0, width: 16391, height: 8192 +Child: 73, type: 0, width: 16391, height: 8182 +Child: 74, type: 0, width: 512, height: 334 +Child: 75, type: 5, width: 256, height: 16384 +Child: 76, type: 5, width: 256, height: 16391 +Child: 77, type: 5, width: 16391, height: 167 +Child: 78, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/51.txt b/server508/lists/interfaces/51.txt new file mode 100644 index 0000000..e3dab9d --- /dev/null +++ b/server508/lists/interfaces/51.txt @@ -0,0 +1,34 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, message: Canifis +Child: 12, message: Mort Myre
Swamp +Child: 13, message: Hollows +Child: 14, message: Mort'ton +Child: 15, message: Graveyard +Child: 16, message: Temple +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 131, height: 45 +Child: 20, message: Route 1 +Child: 21, message: Route 1 +Child: 22, type: 6, width: 128, height: 45 +Child: 23, message: Route 2 +Child: 24, message: Route 2 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, message: Route 1:

Take the route through
Canifis.

Shorter but potentially
more dangerous. +Child: 27, message: Route 2:

Take the route through
Mort Myre Swamp.

Longer but less likely
to be attacked. +Child: 28, type: 0, width: 487, height: 319 +Child: 29, type: 0, width: 487, height: 319 +Child: 30, type: 6, width: 128, height: 45 +Child: 31, message: Burgh de
Rott +Child: 32, message: Choose your path +Child: 33, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/510.txt b/server508/lists/interfaces/510.txt new file mode 100644 index 0000000..096422b --- /dev/null +++ b/server508/lists/interfaces/510.txt @@ -0,0 +1,182 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 323, height: 412 +Child: 2, type: 6, width: 47, height: 48 +Child: 3, type: 6, width: 47, height: 48 +Child: 4, type: 6, width: 47, height: 48 +Child: 5, type: 6, width: 47, height: 48 +Child: 6, type: 0, width: 305, height: 326 +Child: 7, type: 6, width: 186, height: 210 +Child: 8, type: 6, width: 109, height: 207 +Child: 9, type: 6, width: 202, height: 220 +Child: 10, type: 6, width: 40, height: 39 +Child: 11, type: 0, width: 305, height: 327 +Child: 12, type: 0, width: 305, height: 326 +Child: 13, type: 6, width: 179, height: 231 +Child: 14, type: 6, width: 26, height: 24 +Child: 15, type: 0, width: 305, height: 327 +Child: 16, type: 0, width: 305, height: 326 +Child: 17, type: 0, width: 305, height: 326 +Child: 18, type: 0, width: 305, height: 326 +Child: 19, type: 0, width: 305, height: 326 +Child: 20, type: 0, width: 305, height: 326 +Child: 21, type: 0, width: 305, height: 326 +Child: 22, type: 6, width: 72, height: 68 +Child: 23, type: 0, width: 305, height: 326 +Child: 24, type: 0, width: 305, height: 326 +Child: 25, type: 0, width: 305, height: 326 +Child: 26, type: 6, width: 25, height: 26 +Child: 27, type: 0, width: 305, height: 326 +Child: 28, type: 6, width: 23, height: 25 +Child: 29, type: 0, width: 305, height: 326 +Child: 30, type: 6, width: 25, height: 23 +Child: 31, type: 0, width: 305, height: 326 +Child: 32, type: 6, width: 38, height: 37 +Child: 33, type: 0, width: 305, height: 326 +Child: 34, type: 6, width: 26, height: 28 +Child: 35, type: 0, width: 305, height: 326 +Child: 36, type: 6, width: 24, height: 21 +Child: 37, type: 0, width: 305, height: 327 +Child: 38, type: 0, width: 305, height: 326 +Child: 39, type: 6, width: 38, height: 40 +Child: 40, type: 0, width: 305, height: 327 +Child: 41, type: 0, width: 305, height: 326 +Child: 42, type: 6, width: 27, height: 26 +Child: 43, type: 0, width: 305, height: 327 +Child: 44, type: 0, width: 305, height: 326 +Child: 45, type: 6, width: 41, height: 42 +Child: 46, type: 0, width: 305, height: 327 +Child: 47, type: 0, width: 305, height: 326 +Child: 48, type: 6, width: 26, height: 26 +Child: 49, type: 0, width: 305, height: 327 +Child: 50, type: 0, width: 305, height: 326 +Child: 51, type: 6, width: 25, height: 22 +Child: 52, type: 0, width: 305, height: 327 +Child: 53, type: 0, width: 305, height: 326 +Child: 54, type: 6, width: 23, height: 24 +Child: 55, type: 0, width: 305, height: 326 +Child: 56, type: 6, width: 34, height: 34 +Child: 57, type: 0, width: 305, height: 327 +Child: 58, type: 0, width: 305, height: 326 +Child: 59, type: 6, width: 27, height: 22 +Child: 60, type: 0, width: 305, height: 327 +Child: 61, type: 0, width: 305, height: 326 +Child: 62, type: 6, width: 33, height: 31 +Child: 63, type: 0, width: 305, height: 327 +Child: 64, type: 0, width: 305, height: 326 +Child: 65, type: 6, width: 32, height: 32 +Child: 66, type: 0, width: 305, height: 326 +Child: 67, type: 0, width: 305, height: 327 +Child: 68, type: 0, width: 305, height: 326 +Child: 69, type: 6, width: 24, height: 22 +Child: 70, type: 0, width: 305, height: 327 +Child: 71, type: 0, width: 305, height: 326 +Child: 72, type: 6, width: 24, height: 23 +Child: 73, type: 0, width: 305, height: 327 +Child: 74, type: 0, width: 305, height: 326 +Child: 75, type: 0, width: 305, height: 331 +Child: 76, type: 0, width: 305, height: 331 +Child: 77, type: 0, width: 305, height: 326 +Child: 78, type: 0, width: 305, height: 326 +Child: 79, type: 6, width: 169, height: 303 +Child: 80, type: 5, width: 26, height: 23 +Child: 81, type: 0, width: 32, height: 32 +Child: 82, type: 3, width: 25, height: 52 +Child: 83, type: 3, width: 25, height: 52 +Child: 84, type: 3, width: 25, height: 52 +Child: 85, type: 3, width: 25, height: 52 +Child: 86, type: 3, width: 25, height: 52 +Child: 87, type: 3, width: 25, height: 52 +Child: 88, type: 3, width: 25, height: 52 +Child: 89, type: 3, width: 25, height: 52 +Child: 90, type: 0, width: 305, height: 327 +Child: 91, type: 0, width: 305, height: 327 +Child: 92, type: 0, width: 305, height: 327 +Child: 93, type: 0, width: 305, height: 327 +Child: 94, type: 0, width: 305, height: 326 +Child: 95, type: 0, width: 305, height: 326 +Child: 96, message: 1 +Child: 97, message: 2 +Child: 98, message: 3 +Child: 99, message: 4 +Child: 100, message: Use the valves +Child: 101, message: and the levers to +Child: 102, message: get the balls in +Child: 103, message: the holes, and +Child: 104, message: then increase the +Child: 105, message: pressure to fill +Child: 106, message: the pipes! +Child: 107, type: 6, width: 5, height: 87 +Child: 108, type: 6, width: 40, height: 39 +Child: 109, type: 6, width: 40, height: 39 +Child: 110, type: 6, width: 26, height: 24 +Child: 111, type: 6, width: 26, height: 24 +Child: 112, type: 6, width: 5, height: 57 +Child: 113, type: 6, width: 4, height: 41 +Child: 114, type: 6, width: 49, height: 50 +Child: 115, type: 6, width: 49, height: 50 +Child: 116, type: 6, width: 49, height: 50 +Child: 117, type: 6, width: 49, height: 50 +Child: 118, type: 6, width: 22, height: 44 +Child: 119, type: 6, width: 22, height: 44 +Child: 120, type: 6, width: 25, height: 26 +Child: 121, type: 6, width: 23, height: 25 +Child: 122, type: 6, width: 25, height: 23 +Child: 123, type: 6, width: 38, height: 37 +Child: 124, type: 6, width: 26, height: 28 +Child: 125, type: 6, width: 24, height: 21 +Child: 126, type: 6, width: 24, height: 21 +Child: 127, type: 6, width: 38, height: 40 +Child: 128, type: 6, width: 38, height: 40 +Child: 129, type: 6, width: 27, height: 26 +Child: 130, type: 6, width: 27, height: 26 +Child: 131, type: 6, width: 41, height: 42 +Child: 132, type: 6, width: 41, height: 42 +Child: 133, type: 6, width: 26, height: 26 +Child: 134, type: 6, width: 26, height: 26 +Child: 135, type: 6, width: 25, height: 22 +Child: 136, type: 6, width: 25, height: 22 +Child: 137, type: 6, width: 23, height: 24 +Child: 138, type: 6, width: 34, height: 34 +Child: 139, type: 6, width: 34, height: 34 +Child: 140, type: 6, width: 27, height: 22 +Child: 141, type: 6, width: 27, height: 22 +Child: 142, type: 6, width: 36, height: 36 +Child: 143, type: 6, width: 36, height: 36 +Child: 144, type: 6, width: 5, height: 120 +Child: 145, type: 6, width: 35, height: 35 +Child: 146, type: 6, width: 35, height: 35 +Child: 147, type: 6, width: 27, height: 24 +Child: 148, type: 6, width: 27, height: 24 +Child: 149, type: 6, width: 26, height: 27 +Child: 150, type: 6, width: 26, height: 27 +Child: 151, type: 6, width: 9, height: 9 +Child: 152, type: 6, width: 9, height: 9 +Child: 153, type: 6, width: 11, height: 10 +Child: 154, type: 6, width: 10, height: 10 +Child: 155, type: 5, width: 26, height: 23 +Child: 156, type: 6, width: 7, height: 7 +Child: 157, type: 6, width: 9, height: 8 +Child: 158, type: 6, width: 7, height: 7 +Child: 159, type: 6, width: 8, height: 8 +Child: 160, type: 6, width: 21, height: 48 +Child: 161, type: 6, width: 21, height: 48 +Child: 162, type: 0, width: 512, height: 334 +Child: 163, type: 0, width: 16391, height: 16391 +Child: 164, type: 0, width: 16391, height: 16391 +Child: 165, type: 5, width: 32, height: 334 +Child: 166, type: 5, width: 462, height: 32 +Child: 167, type: 5, width: 512, height: 32 +Child: 168, type: 5, width: 32, height: 334 +Child: 169, type: 5, width: 32, height: 32 +Child: 170, type: 5, width: 32, height: 32 +Child: 171, type: 5, width: 32, height: 32 +Child: 172, type: 5, width: 32, height: 32 +Child: 173, type: 0, width: 8192, height: 16391 +Child: 174, type: 0, width: 8188, height: 16391 +Child: 175, type: 0, width: 16391, height: 8192 +Child: 176, type: 0, width: 16391, height: 8182 +Child: 177, type: 0, width: 512, height: 334 +Child: 178, type: 5, width: 256, height: 16384 +Child: 179, type: 5, width: 256, height: 16391 +Child: 180, type: 5, width: 16391, height: 167 +Child: 181, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/511.txt b/server508/lists/interfaces/511.txt new file mode 100644 index 0000000..ff02f85 --- /dev/null +++ b/server508/lists/interfaces/511.txt @@ -0,0 +1,56 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 6, width: 306, height: 401 +Child: 3, type: 0, width: 256, height: 261 +Child: 4, type: 6, width: 124, height: 175 +Child: 5, type: 6, width: 49, height: 107 +Child: 6, type: 6, width: 50, height: 93 +Child: 7, type: 6, width: 70, height: 70 +Child: 8, type: 6, width: 54, height: 59 +Child: 9, type: 0, width: 42, height: 45 +Child: 10, type: 6, width: 48, height: 48 +Child: 11, type: 0, width: 42, height: 45 +Child: 12, type: 5, width: 26, height: 23 +Child: 13, type: 3, width: 32, height: 32 +Child: 14, type: 3, width: 32, height: 32 +Child: 15, type: 0, width: 56, height: 34 +Child: 16, type: 0, width: 56, height: 33 +Child: 17, type: 0, width: 56, height: 29 +Child: 18, type: 0, width: 56, height: 30 +Child: 19, type: 0, width: 30, height: 55 +Child: 20, type: 0, width: 29, height: 56 +Child: 21, type: 0, width: 29, height: 56 +Child: 22, type: 0, width: 29, height: 56 +Child: 23, type: 6, width: 55, height: 43 +Child: 24, type: 6, width: 55, height: 43 +Child: 25, type: 6, width: 55, height: 43 +Child: 26, type: 6, width: 55, height: 43 +Child: 27, type: 6, width: 56, height: 46 +Child: 28, type: 6, width: 48, height: 48 +Child: 29, type: 6, width: 53, height: 30 +Child: 30, type: 6, width: 53, height: 30 +Child: 31, type: 6, width: 54, height: 30 +Child: 32, type: 6, width: 54, height: 30 +Child: 33, type: 6, width: 30, height: 53 +Child: 34, type: 6, width: 30, height: 53 +Child: 35, type: 6, width: 30, height: 53 +Child: 36, type: 6, width: 30, height: 53 +Child: 37, type: 0, width: 16391, height: 16391 +Child: 38, type: 0, width: 16391, height: 16391 +Child: 39, type: 5, width: 32, height: 334 +Child: 40, type: 5, width: 462, height: 32 +Child: 41, type: 5, width: 512, height: 32 +Child: 42, type: 5, width: 32, height: 334 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, type: 0, width: 8192, height: 16391 +Child: 48, type: 0, width: 8188, height: 16391 +Child: 49, type: 0, width: 16391, height: 8192 +Child: 50, type: 0, width: 16391, height: 8182 +Child: 51, type: 0, width: 512, height: 334 +Child: 52, type: 5, width: 256, height: 16384 +Child: 53, type: 5, width: 256, height: 16391 +Child: 54, type: 5, width: 16391, height: 167 +Child: 55, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/512.txt b/server508/lists/interfaces/512.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/512.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/513.txt b/server508/lists/interfaces/513.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/513.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/514.txt b/server508/lists/interfaces/514.txt new file mode 100644 index 0000000..69584ae --- /dev/null +++ b/server508/lists/interfaces/514.txt @@ -0,0 +1,22 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 545, height: 349 +Child: 2, type: 6, width: 313, height: 358 +Child: 3, type: 0, width: 16391, height: 16391 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 5, width: 32, height: 334 +Child: 6, type: 5, width: 462, height: 32 +Child: 7, type: 5, width: 512, height: 32 +Child: 8, type: 5, width: 32, height: 334 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 0, width: 8192, height: 16391 +Child: 14, type: 0, width: 8188, height: 16391 +Child: 15, type: 0, width: 16391, height: 8192 +Child: 16, type: 0, width: 16391, height: 8182 +Child: 17, type: 0, width: 512, height: 334 +Child: 18, type: 5, width: 256, height: 16384 +Child: 19, type: 5, width: 256, height: 16391 +Child: 20, type: 5, width: 16391, height: 167 +Child: 21, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/515.txt b/server508/lists/interfaces/515.txt new file mode 100644 index 0000000..328c0d9 --- /dev/null +++ b/server508/lists/interfaces/515.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 39, height: 27280 +Child: 2, type: 3, width: 16391, height: 16384 diff --git a/server508/lists/interfaces/516.txt b/server508/lists/interfaces/516.txt new file mode 100644 index 0000000..b12c13e --- /dev/null +++ b/server508/lists/interfaces/516.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/517.txt b/server508/lists/interfaces/517.txt new file mode 100644 index 0000000..354d50a --- /dev/null +++ b/server508/lists/interfaces/517.txt @@ -0,0 +1 @@ +inventory type: 28 slots, width: 4, height: 7, 0 diff --git a/server508/lists/interfaces/518.txt b/server508/lists/interfaces/518.txt new file mode 100644 index 0000000..389a4ed --- /dev/null +++ b/server508/lists/interfaces/518.txt @@ -0,0 +1,120 @@ +Child: 0, type: 3, width: 562, height: 362 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 36, height: 36 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 25, height: 30 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 25, height: 30 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 88, height: 60 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +inventory type: 20 slots, width: 5, height: 4, 78 +Child: 79, message: Follower Inv +Child: 80, message: %1 +Child: 81, message: Npc spaces left. +Child: 82, message: %1 +Child: 83, message: %1 +Child: 84, message: %1 +Child: 85, type: 5, width: 88, height: 60 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, message: %1 +Child: 88, message: %1 +Child: 89, message: %1 +Child: 90, message: %1 +Child: 91, message: %1 +Child: 92, message: %1 +Child: 93, message: %1 +Child: 94, message: %1 +Child: 95, message: %1 +Child: 96, message: %1 +Child: 97, message: %1 +Child: 98, message: %1 +Child: 99, message: %1 +Child: 100, message: %1 +Child: 101, message: %1 +Child: 102, message: %1 +Child: 103, type: 5, width: 36, height: 36 +Child: 104, type: 5, width: 36, height: 36 +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 5, width: 36, height: 36 +Child: 107, type: 5, width: 36, height: 36 +Child: 108, type: 5, width: 25, height: 30 +Child: 109, type: 3, width: 374, height: 47 +Child: 110, type: 5, width: 150, height: 35 +Child: 111, type: 5, width: 25, height: 30 +Child: 112, type: 5, width: 36, height: 36 +Child: 113, type: 5, width: 36, height: 36 +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 3, width: 123, height: 32 +Child: 116, type: 5, width: 26, height: 23 +Child: 117, type: 5, width: 26, height: 23 +Child: 118, message: Right click on items in your inventory to add them here, then click close. +Child: 119, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/519.txt b/server508/lists/interfaces/519.txt new file mode 100644 index 0000000..3157af8 --- /dev/null +++ b/server508/lists/interfaces/519.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 64, height: 64 +Child: 1, message: +Child: 2, message: Click here to continue diff --git a/server508/lists/interfaces/52.txt b/server508/lists/interfaces/52.txt new file mode 100644 index 0000000..51c792d --- /dev/null +++ b/server508/lists/interfaces/52.txt @@ -0,0 +1,62 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 527, height: 340 +Child: 2, type: 0, width: 329, height: 104 +Child: 3, type: 0, width: 230, height: 170 +Child: 4, type: 0, width: 131, height: 224 +Child: 5, type: 0, width: 458, height: 103 +Child: 6, type: 0, width: 80, height: 16 +Child: 7, message: WHAT SORT OF CANOE WOULD YOU LIKE TO MAKE ? +Child: 8, type: 0, width: 462, height: 110 +Child: 9, type: 0, width: 234, height: 164 +Child: 10, type: 0, width: 336, height: 108 +Child: 11, type: 5, width: 26, height: 23 +Child: 12, type: 0, width: 32, height: 32 +Child: 13, type: 6, width: 710, height: 366 +Child: 14, type: 6, width: 164, height: 38 +Child: 15, type: 6, width: 179, height: 79 +Child: 16, type: 6, width: 114, height: 42 +Child: 17, type: 6, width: 118, height: 122 +Child: 18, type: 6, width: 74, height: 53 +Child: 19, type: 6, width: 931, height: 282 +Child: 20, type: 6, width: 71, height: 130 +Child: 21, type: 6, width: 227, height: 56 +Child: 22, type: 6, width: 288, height: 91 +Child: 23, message: A Stable Dugout. +Child: 24, message: A Waka. +Child: 25, message: A Dugout. +Child: 26, message: A Log. +Child: 27, type: 6, width: 871, height: 358 +Child: 28, type: 6, width: 939, height: 211 +Child: 29, type: 6, width: 1095, height: 829 +Child: 30, message: +Child: 31, message: +Child: 32, message: +Child: 33, message: +Child: 34, type: 6, width: 227, height: 56 +Child: 35, type: 6, width: 294, height: 91 +Child: 36, type: 6, width: 114, height: 42 +Child: 37, type: 6, width: 119, height: 121 +Child: 38, type: 6, width: 164, height: 38 +Child: 39, type: 6, width: 189, height: 76 +Child: 40, message: +Child: 41, message: +Child: 42, message: +Child: 43, type: 0, width: 16391, height: 16391 +Child: 44, type: 0, width: 16391, height: 16391 +Child: 45, type: 5, width: 32, height: 334 +Child: 46, type: 5, width: 462, height: 32 +Child: 47, type: 5, width: 512, height: 32 +Child: 48, type: 5, width: 32, height: 334 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 5, width: 32, height: 32 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 0, width: 8192, height: 16391 +Child: 54, type: 0, width: 8188, height: 16391 +Child: 55, type: 0, width: 16391, height: 8192 +Child: 56, type: 0, width: 16391, height: 8182 +Child: 57, type: 0, width: 512, height: 334 +Child: 58, type: 5, width: 256, height: 16384 +Child: 59, type: 5, width: 256, height: 16391 +Child: 60, type: 5, width: 16391, height: 167 +Child: 61, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/520.txt b/server508/lists/interfaces/520.txt new file mode 100644 index 0000000..c7e6dc6 --- /dev/null +++ b/server508/lists/interfaces/520.txt @@ -0,0 +1,25 @@ +Child: 0, type: 0, width: 35, height: 14 +Child: 1, type: 3, width: 41, height: 41 +Child: 2, type: 0, width: 40, height: 14 +Child: 3, type: 3, width: 41, height: 41 +Child: 4, type: 0, width: 41, height: 14 +Child: 5, type: 3, width: 41, height: 41 +Child: 6, type: 0, width: 41, height: 14 +Child: 7, type: 3, width: 41, height: 41 +Child: 8, type: 0, width: 41, height: 14 +Child: 9, type: 3, width: 41, height: 41 +Child: 10, type: 0, width: 41, height: 14 +Child: 11, type: 3, width: 41, height: 41 +Child: 12, type: 0, width: 40, height: 14 +Child: 13, type: 3, width: 41, height: 41 +Child: 14, type: 0, width: 41, height: 14 +Child: 15, type: 3, width: 41, height: 41 +Child: 16, type: 0, width: 40, height: 14 +Child: 17, type: 3, width: 41, height: 41 +Child: 18, type: 0, width: 36, height: 14 +Child: 19, type: 3, width: 41, height: 41 +Child: 20, type: 3, width: 11, height: 14 +Child: 21, type: 3, width: 409, height: 11 +Child: 22, type: 3, width: 10, height: 14 +Child: 23, type: 3, width: 409, height: 9 +Child: 24, message: Cyrisus's Courage diff --git a/server508/lists/interfaces/521.txt b/server508/lists/interfaces/521.txt new file mode 100644 index 0000000..a4c4ef6 --- /dev/null +++ b/server508/lists/interfaces/521.txt @@ -0,0 +1,90 @@ +Child: 0, type: 3, width: 491, height: 307 +Child: 1, type: 5, width: 482, height: 295 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 37, height: 243 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 21, height: 246 +Child: 7, type: 5, width: 442, height: 20 +Child: 8, type: 5, width: 447, height: 28 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 477, height: 33 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Guidance System +Child: 15, type: 0, width: 32, height: 32 +Child: 16, type: 0, width: 210, height: 43 +Child: 17, type: 3, width: 200, height: 32 +Child: 18, type: 3, width: 51, height: 40 +Child: 19, type: 3, width: 51, height: 40 +Child: 20, type: 3, width: 51, height: 40 +Child: 21, type: 3, width: 51, height: 40 +Child: 22, type: 0, width: 16, height: 44 +Child: 23, type: 6, width: 7, height: 42 +Child: 24, type: 0, width: 16, height: 40 +Child: 25, type: 6, width: 7, height: 42 +Child: 26, type: 0, width: 16, height: 40 +Child: 27, type: 6, width: 7, height: 42 +Child: 28, type: 0, width: 16, height: 40 +Child: 29, type: 6, width: 7, height: 42 +Child: 30, type: 6, width: 230, height: 60 +Child: 31, message: 100% +Child: 32, message: Health - +Child: 33, type: 0, width: 210, height: 43 +Child: 34, type: 3, width: 200, height: 32 +Child: 35, type: 3, width: 51, height: 40 +Child: 36, type: 3, width: 51, height: 40 +Child: 37, type: 3, width: 51, height: 40 +Child: 38, type: 3, width: 51, height: 40 +Child: 39, type: 0, width: 16, height: 44 +Child: 40, type: 6, width: 7, height: 42 +Child: 41, type: 0, width: 16, height: 44 +Child: 42, type: 6, width: 7, height: 42 +Child: 43, type: 0, width: 16, height: 40 +Child: 44, type: 6, width: 7, height: 42 +Child: 45, type: 6, width: 230, height: 60 +Child: 46, message: 100% +Child: 47, message: Spirit - +Child: 48, type: 0, width: 210, height: 43 +Child: 49, type: 3, width: 200, height: 32 +Child: 50, type: 3, width: 51, height: 40 +Child: 51, type: 3, width: 51, height: 40 +Child: 52, type: 3, width: 51, height: 40 +Child: 53, type: 3, width: 51, height: 40 +Child: 54, type: 0, width: 16, height: 40 +Child: 55, type: 6, width: 7, height: 42 +Child: 56, type: 6, width: 230, height: 60 +Child: 57, message: 100% +Child: 58, message: Armament - +Child: 59, type: 3, width: 201, height: 10 +Child: 60, type: 3, width: 201, height: 10 +Child: 61, type: 3, width: 201, height: 10 +Child: 62, type: 3, width: 201, height: 10 +Child: 63, type: 3, width: 201, height: 10 +Child: 64, type: 3, width: 201, height: 10 +Child: 65, type: 3, width: 201, height: 10 +Child: 66, type: 3, width: 201, height: 10 +Child: 67, type: 3, width: 201, height: 10 +Child: 68, type: 3, width: 201, height: 10 +Child: 69, type: 3, width: 201, height: 9 +Child: 70, type: 0, width: 125, height: 107 +Child: 71, type: 6, width: 106, height: 114 +Child: 72, type: 0, width: 125, height: 107 +Child: 73, type: 6, width: 92, height: 115 +Child: 74, type: 0, width: 125, height: 107 +Child: 75, type: 6, width: 95, height: 120 +Child: 76, type: 0, width: 125, height: 107 +Child: 77, type: 6, width: 78, height: 102 +Child: 78, type: 3, width: 201, height: 131 +Child: 79, message: --- Stat --- +Child: 80, message: Information... +Child: 81, type: 3, width: 203, height: 109 +Child: 82, type: 3, width: 201, height: 107 +Child: 83, type: 3, width: 202, height: 108 +Child: 84, type: 3, width: 202, height: 131 +Child: 85, type: 3, width: 200, height: 129 +Child: 86, type: 3, width: 201, height: 130 +Child: 87, type: 3, width: 203, height: 109 +Child: 88, type: 3, width: 201, height: 107 +Child: 89, type: 3, width: 202, height: 108 diff --git a/server508/lists/interfaces/522.txt b/server508/lists/interfaces/522.txt new file mode 100644 index 0000000..31e73fb --- /dev/null +++ b/server508/lists/interfaces/522.txt @@ -0,0 +1,8 @@ +Child: 0, message: Monster name +Child: 1, message: Line1 +Child: 2, message: Line2 +Child: 3, message: Line3 +Child: 4, message: Line4 +Child: 5, type: 5, width: 50, height: 50 +Child: 6, type: 5, width: 16, height: 16 +Child: 7, type: 0, width: 30, height: 27 diff --git a/server508/lists/interfaces/523.txt b/server508/lists/interfaces/523.txt new file mode 100644 index 0000000..7417fa0 --- /dev/null +++ b/server508/lists/interfaces/523.txt @@ -0,0 +1,103 @@ +Child: 0, type: 5, width: 25, height: 25 +Child: 1, message: 00 +Child: 2, message: 00 +Child: 3, message: / +Child: 4, type: 5, width: 25, height: 25 +Child: 5, message: 00 +Child: 6, message: 00 +Child: 7, message: / +Child: 8, type: 5, width: 25, height: 25 +Child: 9, message: 00 +Child: 10, message: 00 +Child: 11, message: / +Child: 12, type: 5, width: 25, height: 25 +Child: 13, message: 00 +Child: 14, message: 00 +Child: 15, message: / +Child: 16, type: 5, width: 25, height: 25 +Child: 17, message: 00 +Child: 18, message: 00 +Child: 19, message: / +Child: 20, type: 5, width: 25, height: 25 +Child: 21, message: 00 +Child: 22, message: 00 +Child: 23, message: / +Child: 24, type: 5, width: 25, height: 25 +Child: 25, message: 00 +Child: 26, message: 00 +Child: 27, message: / +Child: 28, type: 5, width: 25, height: 25 +Child: 29, message: 00 +Child: 30, message: 00 +Child: 31, message: / +Child: 32, type: 5, width: 25, height: 25 +Child: 33, message: 00 +Child: 34, message: 00 +Child: 35, message: / +Child: 36, type: 5, width: 25, height: 25 +Child: 37, message: 00 +Child: 38, message: 00 +Child: 39, message: / +Child: 40, type: 5, width: 25, height: 25 +Child: 41, message: 00 +Child: 42, message: 00 +Child: 43, message: / +Child: 44, type: 5, width: 25, height: 25 +Child: 45, message: 00 +Child: 46, message: 00 +Child: 47, message: / +Child: 48, type: 5, width: 25, height: 25 +Child: 49, message: 00 +Child: 50, message: 00 +Child: 51, message: / +Child: 52, type: 5, width: 25, height: 25 +Child: 53, message: 00 +Child: 54, message: 00 +Child: 55, message: / +Child: 56, type: 5, width: 25, height: 25 +Child: 57, message: 00 +Child: 58, message: 00 +Child: 59, message: / +Child: 60, type: 5, width: 25, height: 25 +Child: 61, message: 00 +Child: 62, message: 00 +Child: 63, message: / +Child: 64, type: 5, width: 25, height: 25 +Child: 65, message: 00 +Child: 66, message: 00 +Child: 67, message: / +Child: 68, type: 5, width: 25, height: 25 +Child: 69, message: 00 +Child: 70, message: 00 +Child: 71, message: / +Child: 72, type: 5, width: 25, height: 25 +Child: 73, message: 00 +Child: 74, message: 00 +Child: 75, message: / +Child: 76, type: 5, width: 25, height: 25 +Child: 77, message: 00 +Child: 78, message: 00 +Child: 79, message: / +Child: 80, type: 5, width: 25, height: 25 +Child: 81, message: 00 +Child: 82, message: 00 +Child: 83, message: / +Child: 84, type: 5, width: 25, height: 25 +Child: 85, message: 00 +Child: 86, message: 00 +Child: 87, message: / +Child: 88, type: 5, width: 25, height: 25 +Child: 89, message: 00 +Child: 90, message: 00 +Child: 91, message: / +Child: 92, type: 5, width: 25, height: 25 +Child: 93, message: 00 +Child: 94, message: 00 +Child: 95, message: / +Child: 96, type: 0, width: 168, height: 207 +Child: 97, type: 0, width: 16, height: 206 +Child: 98, message: Player : +Child: 99, message: Player ~ Name +Child: 100, type: 5, width: 16, height: 16 +Child: 101, type: 0, width: 26, height: 23 +Child: 102, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/524.txt b/server508/lists/interfaces/524.txt new file mode 100644 index 0000000..c74c603 --- /dev/null +++ b/server508/lists/interfaces/524.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 465, height: 68 +Child: 1, message: Text +Child: 2, message: Text diff --git a/server508/lists/interfaces/525.txt b/server508/lists/interfaces/525.txt new file mode 100644 index 0000000..336cb2e --- /dev/null +++ b/server508/lists/interfaces/525.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 19047, height: 20413 +Child: 1, type: 6, width: 497, height: 363 +Child: 2, message: This is an interface type test. +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 312, height: 416 +Child: 5, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/526.txt b/server508/lists/interfaces/526.txt new file mode 100644 index 0000000..005f709 --- /dev/null +++ b/server508/lists/interfaces/526.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 19047, height: 20413 +Child: 1, type: 6, width: 497, height: 363 +Child: 2, message: This is an interface type test. +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/527.txt b/server508/lists/interfaces/527.txt new file mode 100644 index 0000000..bd3c1b8 --- /dev/null +++ b/server508/lists/interfaces/527.txt @@ -0,0 +1,223 @@ +Child: 0, type: 6, width: 338, height: 325 +Child: 1, type: 6, width: 550, height: 537 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, message: 1st Age +Child: 5, type: 0, width: 512, height: 334 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 6, width: 38, height: 48 +Child: 9, type: 0, width: 90, height: 48 +Child: 10, message: Arrowheads display +Child: 11, type: 6, width: 38, height: 48 +Child: 12, type: 0, width: 92, height: 48 +Child: 13, message: Saranthium coin display +Child: 14, type: 6, width: 38, height: 48 +Child: 15, type: 0, width: 92, height: 48 +Child: 16, message: Senntisten coin display +Child: 17, type: 6, width: 38, height: 48 +Child: 18, type: 0, width: 102, height: 48 +Child: 19, message: Jewellery display +Child: 20, type: 6, width: 38, height: 48 +Child: 21, type: 0, width: 92, height: 48 +Child: 22, message: Pottery display +Child: 23, type: 6, width: 38, height: 48 +Child: 24, type: 0, width: 92, height: 60 +Child: 25, message: Ancient Saradomin symbol display +Child: 26, type: 6, width: 38, height: 48 +Child: 27, type: 0, width: 92, height: 60 +Child: 28, message: Old Saradomin symbol display +Child: 29, type: 6, width: 38, height: 48 +Child: 30, type: 0, width: 92, height: 50 +Child: 31, message: Zaros tablet display +Child: 32, type: 6, width: 38, height: 48 +Child: 33, type: 0, width: 92, height: 50 +Child: 34, message: Ancient talisman display +Child: 35, type: 6, width: 38, height: 48 +Child: 36, type: 0, width: 92, height: 50 +Child: 37, message: Vase display +Child: 38, type: 6, width: 38, height: 48 +Child: 39, type: 0, width: 92, height: 50 +Child: 40, message: Soil layers display +Child: 41, message: Stairs to
Natural History
exhibit +Child: 42, message: Stairs to
Timeline
exhibit +Child: 43, message: Dig Site cleaning area +Child: 44, message: Level up +Child: 45, type: 6, width: 338, height: 325 +Child: 46, type: 6, width: 33, height: 41 +Child: 47, type: 6, width: 33, height: 41 +Child: 48, type: 6, width: 33, height: 41 +Child: 49, type: 6, width: 33, height: 41 +Child: 50, type: 6, width: 33, height: 41 +Child: 51, type: 6, width: 33, height: 41 +Child: 52, type: 6, width: 33, height: 41 +Child: 53, type: 6, width: 33, height: 41 +Child: 54, type: 6, width: 33, height: 41 +Child: 55, type: 6, width: 33, height: 41 +Child: 56, type: 6, width: 33, height: 41 +Child: 57, type: 6, width: 33, height: 41 +Child: 58, type: 6, width: 33, height: 41 +Child: 59, type: 6, width: 33, height: 41 +Child: 60, type: 6, width: 33, height: 41 +Child: 61, type: 6, width: 33, height: 41 +Child: 62, type: 6, width: 33, height: 41 +Child: 63, type: 6, width: 33, height: 41 +Child: 64, type: 6, width: 35, height: 43 +Child: 65, type: 6, width: 35, height: 43 +Child: 66, type: 6, width: 35, height: 43 +Child: 67, type: 6, width: 35, height: 43 +Child: 68, type: 6, width: 35, height: 43 +Child: 69, type: 6, width: 35, height: 44 +Child: 70, type: 0, width: 92, height: 50 +Child: 71, type: 0, width: 52, height: 54 +Child: 72, message: 1st-2nd Ages +Child: 73, type: 0, width: 92, height: 50 +Child: 74, message: End of
2nd Age +Child: 75, type: 0, width: 92, height: 50 +Child: 76, message: 3rd Age
4000 years long +Child: 77, type: 0, width: 92, height: 50 +Child: 78, message: 3rd Age
yr 3000-4000 +Child: 79, type: 0, width: 92, height: 50 +Child: 80, message: 4th Age
2000 yrs long +Child: 81, type: 0, width: 92, height: 50 +Child: 82, message: 4th Age
yr 1-200 +Child: 83, type: 0, width: 92, height: 50 +Child: 84, message: 4th Age
yr 500-900 +Child: 85, type: 0, width: 92, height: 50 +Child: 86, message: 4th Age
yr 1-100 +Child: 87, type: 0, width: 92, height: 50 +Child: 88, message: 4th Age
yr 31-60 +Child: 89, type: 0, width: 92, height: 50 +Child: 90, message: 4th Age
yr 1100-1200 +Child: 91, type: 0, width: 92, height: 50 +Child: 92, message: 4th Age
yr 700-800 +Child: 93, type: 0, width: 92, height: 50 +Child: 94, message: 4th Age
yr 1777 +Child: 95, type: 0, width: 92, height: 50 +Child: 96, message: 4th Age
yr 1937 +Child: 97, type: 0, width: 92, height: 50 +Child: 98, message: 5th Age
currently 169 years old +Child: 99, type: 0, width: 92, height: 50 +Child: 100, message: 5th Age
yr 8 +Child: 101, type: 0, width: 92, height: 50 +Child: 102, message: 5th Age
yr 9 +Child: 103, type: 0, width: 92, height: 50 +Child: 104, message: 5th Age
yr 12 +Child: 105, type: 0, width: 92, height: 50 +Child: 106, message: 5th Age
yr 20 +Child: 107, type: 0, width: 92, height: 50 +Child: 108, message: 5th Age
yr 23 +Child: 109, type: 0, width: 92, height: 50 +Child: 110, message: 5th Age
yr 42-62 +Child: 111, type: 0, width: 92, height: 50 +Child: 112, message: 5th Age
yr 47 +Child: 113, type: 0, width: 92, height: 50 +Child: 114, type: 0, width: 92, height: 50 +Child: 115, message: 5th Age
yr 7 +Child: 116, message: 5th Age
yr 62 +Child: 117, message: Stairs to
Dig Site
exhibit +Child: 118, message: Stairs to
Timeline
exhibit +Child: 119, message: Level up +Child: 120, message: Level down +Child: 121, type: 6, width: 338, height: 325 +Child: 122, type: 6, width: 35, height: 44 +Child: 123, type: 0, width: 92, height: 50 +Child: 124, message: 5th Age
yr 136 +Child: 125, type: 6, width: 35, height: 44 +Child: 126, type: 0, width: 92, height: 50 +Child: 127, message: 5th Age
yr 70 +Child: 128, type: 6, width: 35, height: 44 +Child: 129, type: 0, width: 92, height: 50 +Child: 130, message: 5th Age
yr 132 +Child: 131, type: 6, width: 35, height: 44 +Child: 132, type: 0, width: 92, height: 50 +Child: 133, message: 5th Age
yr 154 +Child: 134, type: 6, width: 35, height: 44 +Child: 135, type: 0, width: 92, height: 50 +Child: 136, message: 5th Age
yr 169 +Child: 137, type: 6, width: 35, height: 44 +Child: 138, type: 0, width: 92, height: 50 +Child: 139, message: 5th Age
yr 169 +Child: 140, type: 6, width: 35, height: 44 +Child: 141, type: 0, width: 92, height: 50 +Child: 142, message: 5th Age
yr 143 +Child: 143, type: 6, width: 35, height: 44 +Child: 144, type: 0, width: 92, height: 50 +Child: 145, message: 5th Age
yr 162-163 +Child: 146, type: 6, width: 94, height: 42 +Child: 147, type: 0, width: 78, height: 94 +Child: 148, message: 5th Age
yr 20 +Child: 149, type: 6, width: 1031, height: 2459 +Child: 150, type: 0, width: 78, height: 50 +Child: 151, message: 5th Age
yr 98 +Child: 152, message: Level down +Child: 153, message: Stairs to
Timeline
exhibit +Child: 154, type: 6, width: 35, height: 44 +Child: 155, type: 0, width: 92, height: 50 +Child: 156, message: 5th Age
yr 70 +Child: 157, type: 6, width: 395, height: 316 +Child: 158, type: 6, width: 35, height: 44 +Child: 159, type: 0, width: 92, height: 48 +Child: 160, message: Terrorbird display +Child: 161, type: 6, width: 35, height: 44 +Child: 162, type: 0, width: 92, height: 48 +Child: 163, message: Kalphite Queen
display +Child: 164, type: 6, width: 35, height: 44 +Child: 165, type: 0, width: 82, height: 48 +Child: 166, message: Mole
display +Child: 167, type: 6, width: 35, height: 44 +Child: 168, type: 0, width: 82, height: 48 +Child: 169, message: Penguin
display +Child: 170, type: 6, width: 35, height: 44 +Child: 171, type: 0, width: 82, height: 48 +Child: 172, message: Camel
display +Child: 173, type: 6, width: 35, height: 44 +Child: 174, type: 0, width: 81, height: 48 +Child: 175, message: Leech
display +Child: 176, type: 6, width: 35, height: 44 +Child: 177, type: 0, width: 82, height: 48 +Child: 178, message: Monkey
display +Child: 179, type: 6, width: 35, height: 44 +Child: 180, type: 0, width: 120, height: 48 +Child: 181, message: Sea slug
display +Child: 182, type: 6, width: 35, height: 44 +Child: 183, type: 0, width: 82, height: 48 +Child: 184, message: Snail
display +Child: 185, type: 6, width: 35, height: 44 +Child: 186, type: 0, width: 82, height: 48 +Child: 187, message: Snake
display +Child: 188, type: 6, width: 35, height: 44 +Child: 189, type: 0, width: 92, height: 48 +Child: 190, message: Lizard
display +Child: 191, type: 6, width: 35, height: 44 +Child: 192, type: 0, width: 92, height: 48 +Child: 193, message: Battle tortoise
display +Child: 194, type: 6, width: 35, height: 44 +Child: 195, type: 0, width: 92, height: 48 +Child: 196, message: Dragon
display +Child: 197, type: 6, width: 35, height: 44 +Child: 198, type: 0, width: 92, height: 48 +Child: 199, message: Wyvern
display +Child: 200, message: Level down +Child: 201, message: Level up +Child: 202, message: Stairs to
Dig Site
exhibit +Child: 203, type: 0, width: 512, height: 334 +Child: 204, type: 0, width: 16391, height: 16391 +Child: 205, type: 0, width: 16391, height: 16391 +Child: 206, type: 5, width: 32, height: 334 +Child: 207, type: 5, width: 462, height: 32 +Child: 208, type: 5, width: 512, height: 32 +Child: 209, type: 5, width: 32, height: 334 +Child: 210, type: 5, width: 32, height: 32 +Child: 211, type: 5, width: 32, height: 32 +Child: 212, type: 5, width: 32, height: 32 +Child: 213, type: 5, width: 32, height: 32 +Child: 214, type: 0, width: 8192, height: 16391 +Child: 215, type: 0, width: 8188, height: 16391 +Child: 216, type: 0, width: 16391, height: 8192 +Child: 217, type: 0, width: 16391, height: 8182 +Child: 218, type: 0, width: 512, height: 334 +Child: 219, type: 5, width: 256, height: 16384 +Child: 220, type: 5, width: 256, height: 16391 +Child: 221, type: 5, width: 16391, height: 167 +Child: 222, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/528.txt b/server508/lists/interfaces/528.txt new file mode 100644 index 0000000..2f10d72 --- /dev/null +++ b/server508/lists/interfaces/528.txt @@ -0,0 +1,17 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, message: Text +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, message: Display number +Child: 16, message: 03 diff --git a/server508/lists/interfaces/529.txt b/server508/lists/interfaces/529.txt new file mode 100644 index 0000000..3ca5743 --- /dev/null +++ b/server508/lists/interfaces/529.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 19047, height: 20413 +Child: 1, type: 6, width: 497, height: 363 +Child: 2, message: This is an interface type test. +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 298, height: 416 +Child: 5, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/53.txt b/server508/lists/interfaces/53.txt new file mode 100644 index 0000000..97aeb55 --- /dev/null +++ b/server508/lists/interfaces/53.txt @@ -0,0 +1,83 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 49, height: 17 +Child: 2, message: Barbarian
Village +Child: 3, message: +Child: 4, type: 6, width: 43, height: 27 +Child: 5, message: Edgeville +Child: 6, message: +Child: 7, type: 0, width: 527, height: 340 +Child: 8, type: 0, width: 32, height: 32 +Child: 9, type: 6, width: 374, height: 330 +Child: 10, type: 0, width: 248, height: 36 +Child: 11, type: 0, width: 249, height: 42 +Child: 12, type: 0, width: 227, height: 42 +Child: 13, type: 0, width: 32, height: 32 +Child: 14, type: 0, width: 55, height: 46 +Child: 15, type: 0, width: 65, height: 44 +Child: 16, type: 0, width: 75, height: 29 +Child: 17, type: 0, width: 80, height: 30 +Child: 18, type: 0, width: 254, height: 53 +Child: 19, type: 0, width: 124, height: 34 +Child: 20, type: 0, width: 232, height: 52 +Child: 21, type: 0, width: 79, height: 38 +Child: 22, type: 0, width: 254, height: 53 +Child: 23, type: 0, width: 145, height: 32 +Child: 24, type: 0, width: 145, height: 32 +Child: 25, type: 0, width: 145, height: 32 +Child: 26, type: 0, width: 203, height: 36 +Child: 27, type: 6, width: 239, height: 54 +Child: 28, message: Please Select
Your Destination +Child: 29, type: 5, width: 26, height: 23 +Child: 30, type: 0, width: 32, height: 32 +Child: 31, type: 6, width: 710, height: 366 +Child: 32, type: 6, width: 871, height: 358 +Child: 33, type: 6, width: 931, height: 282 +Child: 34, type: 6, width: 939, height: 211 +Child: 35, type: 6, width: 31, height: 11 +Child: 36, type: 6, width: 36, height: 11 +Child: 37, type: 6, width: 34, height: 9 +Child: 38, type: 6, width: 28, height: 17 +Child: 39, type: 6, width: 50, height: 14 +Child: 40, type: 6, width: 50, height: 15 +Child: 41, type: 6, width: 2137, height: 1340 +Child: 42, type: 6, width: 22, height: 18 +Child: 43, message: Lumbridge +Child: 44, message: Champions'
Guild +Child: 45, message: Wilderness Pond -
No canoe trees here. +Child: 46, type: 6, width: 23, height: 21 +Child: 47, message: +Child: 48, message: +Child: 49, message: +Child: 50, message: You are here +Child: 51, message: Wilderness Pond -
No canoe trees here. +Child: 52, type: 6, width: 26, height: 20 +Child: 53, type: 6, width: 26, height: 20 +Child: 54, message: You are here +Child: 55, type: 6, width: 26, height: 20 +Child: 56, message: You are here +Child: 57, type: 6, width: 26, height: 20 +Child: 58, message: You are here +Child: 59, message: +Child: 60, message: +Child: 61, message: +Child: 62, message: +Child: 63, type: 0, width: 512, height: 334 +Child: 64, type: 0, width: 16391, height: 16391 +Child: 65, type: 0, width: 16391, height: 16391 +Child: 66, type: 5, width: 32, height: 334 +Child: 67, type: 5, width: 462, height: 32 +Child: 68, type: 5, width: 512, height: 32 +Child: 69, type: 5, width: 32, height: 334 +Child: 70, type: 5, width: 32, height: 32 +Child: 71, type: 5, width: 32, height: 32 +Child: 72, type: 5, width: 32, height: 32 +Child: 73, type: 5, width: 32, height: 32 +Child: 74, type: 0, width: 8192, height: 16391 +Child: 75, type: 0, width: 8188, height: 16391 +Child: 76, type: 0, width: 16391, height: 8192 +Child: 77, type: 0, width: 16391, height: 8182 +Child: 78, type: 0, width: 512, height: 334 +Child: 79, type: 5, width: 256, height: 16384 +Child: 80, type: 5, width: 256, height: 16391 +Child: 81, type: 5, width: 16391, height: 167 +Child: 82, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/530.txt b/server508/lists/interfaces/530.txt new file mode 100644 index 0000000..f7c3ecb --- /dev/null +++ b/server508/lists/interfaces/530.txt @@ -0,0 +1,12 @@ +Child: 0, type: 6, width: 513, height: 346 +Child: 1, type: 0, width: 151, height: 199 +Child: 2, type: 0, width: 16, height: 199 +Child: 3, type: 0, width: 16, height: 199 +Child: 4, type: 0, width: 151, height: 199 +Child: 5, type: 0, width: 462, height: 252 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, message: Text +Child: 8, message: Text +Child: 9, message: This is an interface type test. +Child: 10, message: This is an interface type test. +Child: 11, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/531.txt b/server508/lists/interfaces/531.txt new file mode 100644 index 0000000..d80a727 --- /dev/null +++ b/server508/lists/interfaces/531.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 38, height: 41 diff --git a/server508/lists/interfaces/532.txt b/server508/lists/interfaces/532.txt new file mode 100644 index 0000000..0a1aee5 --- /dev/null +++ b/server508/lists/interfaces/532.txt @@ -0,0 +1,2 @@ +Child: 0, message: Museum Kudos: +Child: 1, message: diff --git a/server508/lists/interfaces/533.txt b/server508/lists/interfaces/533.txt new file mode 100644 index 0000000..338b515 --- /dev/null +++ b/server508/lists/interfaces/533.txt @@ -0,0 +1,33 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, message: Text +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, message: Display number +Child: 25, message: 03 +Child: 26, type: 0, width: 270, height: 304 +Child: 27, type: 0, width: 270, height: 304 +Child: 28, message: Text +Child: 29, message: Text +Child: 30, message: Text +Child: 31, message: Text +Child: 32, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/534.txt b/server508/lists/interfaces/534.txt new file mode 100644 index 0000000..8454569 --- /dev/null +++ b/server508/lists/interfaces/534.txt @@ -0,0 +1,86 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 5, width: 26, height: 23 +Child: 2, message: Text +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 6, width: 186, height: 248 +Child: 43, type: 6, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 6, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 6, width: 32, height: 32 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, type: 6, width: 32, height: 32 +Child: 50, type: 6, width: 32, height: 32 +Child: 51, type: 6, width: 32, height: 32 +Child: 52, type: 6, width: 32, height: 32 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, type: 6, width: 32, height: 32 +Child: 55, type: 6, width: 32, height: 32 +Child: 56, type: 6, width: 32, height: 32 +Child: 57, type: 6, width: 32, height: 32 +Child: 58, type: 6, width: 32, height: 32 +Child: 59, message: Asgarnia +Child: 60, message: Misthalin +Child: 61, message: Avarrocka +Child: 62, message: Ghost Town +Child: 63, message: Karamja +Child: 64, message: Entrana +Child: 65, type: 0, width: 236, height: 300 +Child: 66, type: 6, width: 32, height: 32 +Child: 67, type: 6, width: 223, height: 314 +Child: 68, type: 6, width: 180, height: 127 +Child: 69, type: 6, width: 187, height: 179 +Child: 70, type: 6, width: 183, height: 218 +Child: 71, type: 6, width: 180, height: 213 +Child: 72, type: 6, width: 185, height: 212 +Child: 73, type: 6, width: 185, height: 151 +Child: 74, type: 6, width: 180, height: 126 +Child: 75, type: 6, width: 32, height: 32 +Child: 76, type: 6, width: 32, height: 32 +Child: 77, type: 6, width: 32, height: 32 +Child: 78, type: 6, width: 32, height: 32 +Child: 79, type: 6, width: 32, height: 32 +Child: 80, type: 6, width: 32, height: 32 +Child: 81, type: 6, width: 32, height: 32 +Child: 82, type: 6, width: 32, height: 32 +Child: 83, type: 6, width: 32, height: 32 +Child: 84, message: Display number +Child: 85, message: 03 diff --git a/server508/lists/interfaces/535.txt b/server508/lists/interfaces/535.txt new file mode 100644 index 0000000..ef2d90a --- /dev/null +++ b/server508/lists/interfaces/535.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 520, height: 336 +Child: 2, type: 6, width: 443, height: 384 +Child: 3, type: 0, width: 515, height: 336 +Child: 4, type: 0, width: 400, height: 120 +Child: 5, type: 6, width: 32, height: 41 +Child: 6, type: 6, width: 37, height: 44 +Child: 7, type: 6, width: 29, height: 41 +Child: 8, type: 6, width: 31, height: 44 +Child: 9, type: 6, width: 24, height: 41 +Child: 10, type: 6, width: 25, height: 44 +Child: 11, type: 6, width: 32, height: 44 +Child: 12, type: 6, width: 23, height: 41 +Child: 13, type: 6, width: 19, height: 41 +Child: 14, type: 6, width: 36, height: 41 +Child: 15, type: 6, width: 33, height: 44 +Child: 16, type: 6, width: 38, height: 44 +Child: 17, type: 6, width: 32, height: 41 +Child: 18, type: 6, width: 25, height: 41 +Child: 19, type: 6, width: 23, height: 14 +Child: 20, type: 5, width: 26, height: 23 +Child: 21, type: 3, width: 20, height: 20 +Child: 22, type: 0, width: 130, height: 80 +Child: 23, type: 0, width: 130, height: 80 +Child: 24, type: 3, width: 20, height: 20 +Child: 25, type: 3, width: 20, height: 20 +Child: 26, type: 3, width: 20, height: 20 +Child: 27, type: 3, width: 20, height: 20 +Child: 28, type: 3, width: 20, height: 20 +Child: 29, type: 3, width: 20, height: 20 +Child: 30, type: 3, width: 20, height: 20 +Child: 31, type: 3, width: 20, height: 20 +Child: 32, type: 3, width: 20, height: 20 +Child: 33, type: 3, width: 20, height: 20 +Child: 34, type: 3, width: 20, height: 20 +Child: 35, type: 3, width: 20, height: 20 +Child: 36, type: 3, width: 20, height: 20 +Child: 37, type: 3, width: 20, height: 20 +Child: 38, type: 6, width: 443, height: 384 +Child: 39, type: 3, width: 91, height: 41 +Child: 40, type: 3, width: 91, height: 41 +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/536.txt b/server508/lists/interfaces/536.txt new file mode 100644 index 0000000..fec058a --- /dev/null +++ b/server508/lists/interfaces/536.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 300, height: 300 +Child: 1, type: 0, width: 300, height: 250 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 6, width: 66, height: 87 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, type: 6, width: 327, height: 329 +Child: 6, message: Shrink-Me-Quick Recipe +Child: 7, message: 1x leaf of tarromin, 1x shrunken ogleroot. Mix the tarromin in a vial of water, then add the shrunken ogleroot. Drink when standing within an area prepared with glyphs for this potion to have full effect. Take one dose only, for a new perspective on the world... diff --git a/server508/lists/interfaces/537.txt b/server508/lists/interfaces/537.txt new file mode 100644 index 0000000..a4bc45f --- /dev/null +++ b/server508/lists/interfaces/537.txt @@ -0,0 +1,41 @@ +Child: 0, type: 6, width: 430, height: 383 +Child: 1, type: 3, width: 357, height: 2 +Child: 2, type: 3, width: 357, height: 2 +Child: 3, type: 3, width: 357, height: 2 +Child: 4, type: 3, width: 357, height: 2 +Child: 5, type: 3, width: 357, height: 2 +Child: 6, type: 5, width: 29, height: 66 +Child: 7, type: 5, width: 45, height: 36 +Child: 8, type: 5, width: 45, height: 36 +Child: 9, type: 5, width: 45, height: 36 +Child: 10, type: 5, width: 45, height: 36 +Child: 11, type: 5, width: 45, height: 36 +Child: 12, type: 5, width: 45, height: 36 +Child: 13, message: E +Child: 14, message: F +Child: 15, message: E +Child: 16, message: D +Child: 17, message: C +Child: 18, message: A +Child: 19, message: E +Child: 20, message: G +Child: 21, message: A +Child: 22, type: 6, width: 405, height: 82 +Child: 23, message: C +Child: 24, message: D +Child: 25, message: E +Child: 26, message: F +Child: 27, message: G +Child: 28, message: A +Child: 29, message: B +Child: 30, message: D +Child: 31, message: C +Child: 32, message: E +Child: 33, message: F +Child: 34, message: G +Child: 35, message: A +Child: 36, message: B +Child: 37, message: UPPER +Child: 38, message: LOWER +Child: 39, type: 5, width: 26, height: 23 +Child: 40, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/538.txt b/server508/lists/interfaces/538.txt new file mode 100644 index 0000000..1b2bd9d --- /dev/null +++ b/server508/lists/interfaces/538.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 300, height: 300 +Child: 1, type: 6, width: 327, height: 329 +Child: 2, type: 0, width: 300, height: 250 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, message: Things to do: +Child: 6, message: Take out the rubbish
Buy a new record for the gramophone
Check shrunken ogleroot supply
Feed ogleroots to my darlings
Wash the bedsheets
Hang out the washing
Practise the piano
Terrorise the little brat with the ball again
Trim hedges in the garden
Floss warts
Plot revenge on Fritz's murderer diff --git a/server508/lists/interfaces/539.txt b/server508/lists/interfaces/539.txt new file mode 100644 index 0000000..9df2d3c --- /dev/null +++ b/server508/lists/interfaces/539.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 520, height: 330 diff --git a/server508/lists/interfaces/54.txt b/server508/lists/interfaces/54.txt new file mode 100644 index 0000000..f591af8 --- /dev/null +++ b/server508/lists/interfaces/54.txt @@ -0,0 +1,70 @@ +Child: 0, type: 3, width: 487, height: 298 +Child: 1, type: 5, width: 485, height: 297 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 426, height: 32 +Child: 7, type: 5, width: 426, height: 32 +Child: 8, type: 5, width: 32, height: 235 +Child: 9, type: 5, width: 32, height: 235 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 468, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 176 +Child: 18, type: 5, width: 32, height: 176 +Child: 19, type: 5, width: 177, height: 32 +Child: 20, type: 5, width: 177, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 50 +Child: 34, type: 5, width: 32, height: 51 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 32, height: 32 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 32, height: 32 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, message: Catapult Controls +Child: 48, type: 6, width: 231, height: 229 +Child: 49, type: 0, width: 149, height: 99 +Child: 50, type: 0, width: 146, height: 111 +Child: 51, type: 5, width: 90, height: 56 +Child: 52, message: Fire Catapult +Child: 53, type: 6, width: 19, height: 16 +Child: 54, type: 6, width: 19, height: 16 +Child: 55, type: 6, width: 21, height: 23 +Child: 56, type: 5, width: 26, height: 23 +Child: 57, type: 6, width: 45, height: 61 +Child: 58, type: 6, width: 45, height: 61 +Child: 59, type: 6, width: 45, height: 61 +Child: 60, type: 6, width: 45, height: 61 +Child: 61, type: 6, width: 29, height: 38 +Child: 62, type: 6, width: 29, height: 38 +Child: 63, type: 6, width: 27, height: 41 +Child: 64, type: 6, width: 30, height: 42 +Child: 65, type: 6, width: 23, height: 31 +Child: 66, type: 6, width: 23, height: 31 +Child: 67, type: 6, width: 31, height: 23 +Child: 68, type: 6, width: 31, height: 23 +Child: 69, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/540.txt b/server508/lists/interfaces/540.txt new file mode 100644 index 0000000..369a155 --- /dev/null +++ b/server508/lists/interfaces/540.txt @@ -0,0 +1,142 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, message: Elnock's Exchange +Child: 76, message: Make your selection and press confirm +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 26, height: 23 +Child: 91, type: 5, width: 26, height: 23 +Child: 92, type: 0, width: 32, height: 32 +Child: 93, type: 5, width: 50, height: 50 +Child: 94, message: x3 +Child: 95, type: 5, width: 50, height: 50 +Child: 96, message: x2 +Child: 97, type: 5, width: 50, height: 50 +Child: 98, message: x1 +Child: 99, type: 5, width: 50, height: 50 +Child: 100, message: x3 +Child: 101, type: 5, width: 50, height: 50 +Child: 102, message: x2 +Child: 103, type: 5, width: 50, height: 50 +Child: 104, message: x1 +Child: 105, type: 5, width: 50, height: 50 +Child: 106, message: x3 +Child: 107, type: 5, width: 50, height: 50 +Child: 108, message: x2 +Child: 109, type: 5, width: 50, height: 50 +Child: 110, message: x1 +Child: 111, type: 5, width: 50, height: 50 +Child: 112, message: x1 of any impling type +Child: 113, type: 6, width: 32, height: 32 +Child: 114, type: 5, width: 17, height: 18 +Child: 115, message: x1 +Child: 116, type: 6, width: 32, height: 32 +Child: 117, type: 5, width: 17, height: 18 +Child: 118, message: x1 +Child: 119, type: 6, width: 32, height: 32 +Child: 120, type: 5, width: 18, height: 18 +Child: 121, message: x1 +Child: 122, type: 6, width: 32, height: 32 +Child: 123, type: 5, width: 18, height: 18 +Child: 124, message: x3 +Child: 125, type: 5, width: 29, height: 29 +Child: 126, type: 5, width: 29, height: 29 +Child: 127, type: 0, width: 40, height: 40 +Child: 128, type: 8, width: 32, height: 32 +Child: 129, type: 8, width: 50, height: 50 +Child: 130, type: 8, width: 50, height: 50 +Child: 131, type: 8, width: 50, height: 50 +Child: 132, type: 8, width: 50, height: 50 +Child: 133, type: 8, width: 50, height: 50 +Child: 134, type: 8, width: 50, height: 50 +Child: 135, type: 8, width: 50, height: 50 +Child: 136, type: 8, width: 50, height: 50 +Child: 137, type: 8, width: 50, height: 50 +Child: 138, type: 8, width: 32, height: 32 +Child: 139, type: 8, width: 32, height: 32 +Child: 140, type: 8, width: 32, height: 32 +Child: 141, type: 8, width: 32, height: 32 diff --git a/server508/lists/interfaces/541.txt b/server508/lists/interfaces/541.txt new file mode 100644 index 0000000..fb8f914 --- /dev/null +++ b/server508/lists/interfaces/541.txt @@ -0,0 +1,2 @@ +Child: 0, type: 6, width: 16551, height: 18990 +Child: 1, message: diff --git a/server508/lists/interfaces/542.txt b/server508/lists/interfaces/542.txt new file mode 100644 index 0000000..e43b182 --- /dev/null +++ b/server508/lists/interfaces/542.txt @@ -0,0 +1,46 @@ +Child: 0, type: 5, width: 480, height: 293 +Child: 1, type: 5, width: 28, height: 290 +Child: 2, type: 5, width: 47, height: 285 +Child: 3, type: 5, width: 462, height: 26 +Child: 4, type: 5, width: 464, height: 34 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 478, height: 35 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: What would you like to make? +Child: 14, type: 0, width: 75, height: 94 +Child: 15, type: 0, width: 75, height: 96 +Child: 16, type: 0, width: 75, height: 96 +Child: 17, type: 0, width: 77, height: 90 +Child: 18, type: 0, width: 75, height: 92 +Child: 19, type: 0, width: 72, height: 92 +Child: 20, type: 0, width: 76, height: 101 +Child: 21, type: 0, width: 76, height: 96 +Child: 22, message: Vial +Child: 23, message: Orb +Child: 24, message: Beer Glass +Child: 25, message: Candle Lantern +Child: 26, message: Oil lamp +Child: 27, message: Lantern Lens +Child: 28, message: Fish Bowl +Child: 29, message: Dorgeshuun Light Orb +Child: 30, type: 6, width: 70, height: 92 +Child: 31, type: 6, width: 64, height: 96 +Child: 32, type: 6, width: 64, height: 96 +Child: 33, type: 6, width: 64, height: 96 +Child: 34, type: 6, width: 64, height: 96 +Child: 35, type: 6, width: 64, height: 96 +Child: 36, type: 6, width: 59, height: 79 +Child: 37, type: 6, width: 70, height: 92 +Child: 38, message: +Child: 39, message: +Child: 40, message: +Child: 41, message: +Child: 42, message: +Child: 43, message: +Child: 44, message: +Child: 45, message: diff --git a/server508/lists/interfaces/543.txt b/server508/lists/interfaces/543.txt new file mode 100644 index 0000000..1ae72d0 --- /dev/null +++ b/server508/lists/interfaces/543.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 16711, height: 16636 +Child: 1, type: 6, width: 18535, height: 9523 +Child: 2, type: 6, width: 15399, height: 7904 +Child: 3, type: 6, width: 13191, height: 6776 +Child: 4, type: 6, width: 11431, height: 17273 diff --git a/server508/lists/interfaces/544.txt b/server508/lists/interfaces/544.txt new file mode 100644 index 0000000..20594f5 --- /dev/null +++ b/server508/lists/interfaces/544.txt @@ -0,0 +1,26 @@ +Child: 0, type: 6, width: 525, height: 401 +Child: 1, type: 0, width: 32, height: 32 +Child: 2, type: 6, width: 420, height: 317 +Child: 3, type: 6, width: 288, height: 225 +Child: 4, type: 6, width: 383, height: 279 +Child: 5, type: 6, width: 145, height: 177 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 462, height: 32 +Child: 11, type: 5, width: 512, height: 32 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 0, width: 8192, height: 16391 +Child: 18, type: 0, width: 8188, height: 16391 +Child: 19, type: 0, width: 16391, height: 8192 +Child: 20, type: 0, width: 16391, height: 8182 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 5, width: 256, height: 16384 +Child: 23, type: 5, width: 256, height: 16391 +Child: 24, type: 5, width: 16391, height: 167 +Child: 25, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/545.txt b/server508/lists/interfaces/545.txt new file mode 100644 index 0000000..596d168 --- /dev/null +++ b/server508/lists/interfaces/545.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 47751, height: 32480 diff --git a/server508/lists/interfaces/546.txt b/server508/lists/interfaces/546.txt new file mode 100644 index 0000000..1752958 --- /dev/null +++ b/server508/lists/interfaces/546.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 16583, height: 16538 +Child: 1, type: 6, width: 15399, height: 12319 +Child: 2, type: 6, width: 15399, height: 12319 +Child: 3, type: 6, width: 12423, height: 9523 +Child: 4, type: 6, width: 18439, height: 19236 diff --git a/server508/lists/interfaces/547.txt b/server508/lists/interfaces/547.txt new file mode 100644 index 0000000..6c1bcd8 --- /dev/null +++ b/server508/lists/interfaces/547.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 450, height: 336 +Child: 2, type: 6, width: 306, height: 240 +Child: 3, type: 6, width: 408, height: 297 +Child: 4, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/548.txt b/server508/lists/interfaces/548.txt new file mode 100644 index 0000000..8bfdc84 --- /dev/null +++ b/server508/lists/interfaces/548.txt @@ -0,0 +1,88 @@ +Child: 0, type: 0, width: 519, height: 23 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 0, width: 145, height: 90 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 0, width: 100, height: 25 +Child: 7, type: 0, width: 512, height: 69 +Child: 8, type: 0, width: 512, height: 334 +Child: 9, type: 0, width: 249, height: 168 +Child: 10, type: 5, width: 519, height: 23 +Child: 11, type: 0, width: 519, height: 23 +Child: 12, type: 0, width: 246, height: 37 +Child: 13, type: 5, width: 246, height: 37 +Child: 14, type: 0, width: 269, height: 37 +Child: 15, type: 5, width: 38, height: 36 +Child: 16, type: 5, width: 38, height: 36 +Child: 17, type: 5, width: 33, height: 36 +Child: 18, type: 5, width: 33, height: 36 +Child: 19, type: 5, width: 33, height: 36 +Child: 20, type: 5, width: 33, height: 36 +Child: 21, type: 5, width: 38, height: 36 +Child: 22, type: 5, width: 32, height: 36 +Child: 23, type: 5, width: 32, height: 36 +Child: 24, type: 5, width: 32, height: 36 +Child: 25, type: 5, width: 32, height: 36 +Child: 26, type: 5, width: 32, height: 36 +Child: 27, type: 5, width: 32, height: 36 +Child: 28, type: 5, width: 32, height: 36 +Child: 29, type: 0, width: 249, height: 37 +Child: 30, type: 5, width: 249, height: 37 +Child: 31, type: 0, width: 249, height: 37 +Child: 32, type: 5, width: 38, height: 36 +Child: 33, type: 5, width: 33, height: 36 +Child: 34, type: 5, width: 33, height: 36 +Child: 35, type: 5, width: 33, height: 36 +Child: 36, type: 5, width: 33, height: 36 +Child: 37, type: 5, width: 33, height: 36 +Child: 38, type: 5, width: 38, height: 36 +Child: 39, type: 5, width: 32, height: 36 +Child: 40, type: 5, width: 32, height: 36 +Child: 41, type: 5, width: 32, height: 36 +Child: 42, type: 5, width: 32, height: 36 +Child: 43, type: 5, width: 32, height: 36 +Child: 44, type: 5, width: 32, height: 36 +Child: 45, type: 5, width: 32, height: 36 +Child: 46, type: 0, width: 4, height: 334 +Child: 47, type: 5, width: 16391, height: 16391 +Child: 48, type: 0, width: 28, height: 261 +Child: 49, type: 5, width: 28, height: 261 +Child: 50, type: 0, width: 516, height: 4 +Child: 51, type: 0, width: 3, height: 133 +Child: 52, type: 5, width: 16391, height: 16391 +Child: 53, type: 5, width: 516, height: 4 +Child: 54, type: 0, width: 28, height: 261 +Child: 55, type: 5, width: 28, height: 133 +Child: 56, type: 5, width: 28, height: 128 +Child: 57, type: 5, width: 249, height: 4 +Child: 58, type: 5, width: 152, height: 152 +Child: 59, type: 5, width: 33, height: 33 +Child: 60, type: 5, width: 34, height: 34 +Child: 61, type: 5, width: 249, height: 157 +Child: 62, type: 5, width: 249, height: 7 +Child: 63, type: 5, width: 22, height: 21 +Child: 64, type: 0, width: 57, height: 34 +Child: 65, type: 0, width: 57, height: 34 +Child: 66, type: 0, width: 57, height: 34 +Child: 67, type: 0, width: 57, height: 34 +Child: 68, type: 0, width: 519, height: 142 +Child: 69, type: 0, width: 190, height: 261 +Child: 70, type: 5, width: 190, height: 261 +Child: 71, type: 0, width: 190, height: 261 +Child: 72, type: 0, width: 190, height: 261 +Child: 73, type: 0, width: 190, height: 261 +Child: 74, type: 0, width: 190, height: 261 +Child: 75, type: 0, width: 190, height: 261 +Child: 76, type: 0, width: 190, height: 261 +Child: 77, type: 0, width: 190, height: 261 +Child: 78, type: 0, width: 190, height: 261 +Child: 79, type: 0, width: 190, height: 261 +Child: 80, type: 0, width: 190, height: 261 +Child: 81, type: 0, width: 190, height: 261 +Child: 82, type: 0, width: 190, height: 261 +Child: 83, type: 0, width: 190, height: 261 +Child: 84, type: 0, width: 190, height: 261 +Child: 85, type: 0, width: 190, height: 261 +Child: 86, type: 0, width: 190, height: 261 +Child: 87, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/549.txt b/server508/lists/interfaces/549.txt new file mode 100644 index 0000000..524baeb --- /dev/null +++ b/server508/lists/interfaces/549.txt @@ -0,0 +1,4 @@ +Child: 0, type: 0, width: 16384, height: 16384 +Child: 1, type: 3, width: 16384, height: 16384 +Child: 2, type: 0, width: 765, height: 503 +Child: 3, type: 0, width: 765, height: 503 diff --git a/server508/lists/interfaces/55.txt b/server508/lists/interfaces/55.txt new file mode 100644 index 0000000..952c86d --- /dev/null +++ b/server508/lists/interfaces/55.txt @@ -0,0 +1,10 @@ +Child: 0, message: Total Wins This Season! +Child: 1, message: Saradomin: 0 +Child: 2, message: Zamorak: 0 +Child: 3, type: 6, width: 21, height: 28 +Child: 4, type: 6, width: 21, height: 28 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 6, width: 21, height: 28 +Child: 8, type: 6, width: 21, height: 28 +Child: 9, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/550.txt b/server508/lists/interfaces/550.txt new file mode 100644 index 0000000..42e6159 --- /dev/null +++ b/server508/lists/interfaces/550.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 190, height: 195 +Child: 1, type: 0, width: 16, height: 196 +Child: 2, type: 0, width: 158, height: 196 +Child: 3, message: Friends List - RuneScape XXX +Child: 4, message: Add Friend +Child: 5, message: Del Friend +Child: 6, type: 5, width: 190, height: 32 +Child: 7, type: 5, width: 190, height: 32 +Child: 8, message: +Child: 9, type: 0, width: 72, height: 32 +Child: 10, type: 0, width: 72, height: 32 diff --git a/server508/lists/interfaces/551.txt b/server508/lists/interfaces/551.txt new file mode 100644 index 0000000..803f3fa --- /dev/null +++ b/server508/lists/interfaces/551.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 190, height: 195 +Child: 1, type: 0, width: 158, height: 196 +Child: 2, type: 0, width: 16, height: 196 +Child: 3, message: Ignore List +Child: 4, message: Add Name +Child: 5, message: Del Name +Child: 6, type: 5, width: 190, height: 32 +Child: 7, type: 5, width: 190, height: 32 +Child: 8, message: +Child: 9, type: 0, width: 72, height: 32 +Child: 10, type: 0, width: 72, height: 32 diff --git a/server508/lists/interfaces/552.txt b/server508/lists/interfaces/552.txt new file mode 100644 index 0000000..79ab090 --- /dev/null +++ b/server508/lists/interfaces/552.txt @@ -0,0 +1,29 @@ +Child: 0, type: 3, width: 529, height: 366 +Child: 1, type: 3, width: 231, height: 75 +Child: 2, type: 3, width: 287, height: 43 +Child: 3, type: 3, width: 284, height: 53 +Child: 4, type: 3, width: 281, height: 56 +Child: 5, type: 3, width: 279, height: 90 +Child: 6, type: 6, width: 607, height: 613 +Child: 7, type: 6, width: 189, height: 193 +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 0, width: 512, height: 334 +Child: 10, type: 0, width: 16391, height: 16391 +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 5, width: 32, height: 334 +Child: 13, type: 5, width: 462, height: 32 +Child: 14, type: 5, width: 512, height: 32 +Child: 15, type: 5, width: 32, height: 334 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 0, width: 8192, height: 16391 +Child: 21, type: 0, width: 8188, height: 16391 +Child: 22, type: 0, width: 16391, height: 8192 +Child: 23, type: 0, width: 16391, height: 8182 +Child: 24, type: 0, width: 512, height: 334 +Child: 25, type: 5, width: 256, height: 16384 +Child: 26, type: 5, width: 256, height: 16391 +Child: 27, type: 5, width: 16391, height: 167 +Child: 28, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/553.txt b/server508/lists/interfaces/553.txt new file mode 100644 index 0000000..4dc5a90 --- /dev/null +++ b/server508/lists/interfaces/553.txt @@ -0,0 +1,33 @@ +Child: 0, type: 5, width: 488, height: 305 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 25, height: 30 +Child: 3, type: 5, width: 25, height: 30 +Child: 4, type: 5, width: 25, height: 30 +Child: 5, type: 5, width: 440, height: 23 +Child: 6, type: 5, width: 482, height: 32 +Child: 7, type: 5, width: 442, height: 31 +Child: 8, type: 5, width: 35, height: 245 +Child: 9, type: 5, width: 38, height: 261 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, message: Report abuse +Child: 12, message: This form is for reporting players who are breaking our rules.
Using it sends a snapshot of the last 60 secs of activity to us. +Child: 13, message: If you misuse this form, you will be banned. +Child: 14, message: First please enter the name of the offending player below: +Child: 15, message: * +Child: 16, message: Moderator option: Mute player for 48 hours: OFF +Child: 17, message: Then click below to indicate which of our 13 rules is being broken.
For a detailed explanation of each rule please read the manual on our website. +Child: 18, message: 1: Offensive language +Child: 19, message: 2: Item scamming +Child: 20, message: 3: Password scamming +Child: 21, message: 4: Bug abuse +Child: 22, message: 5: Jagex staff impersonation +Child: 23, message: 6: Account sharing/trading +Child: 24, message: 7: Macroing +Child: 25, message: 8: Multiple logging in +Child: 26, message: 9: Encouraging others to break rules +Child: 27, message: 10: Misuse of customer support +Child: 28, message: 11: Advertising / website +Child: 29, message: 12: Real world item trading +Child: 30, message: 13: Asking for personal details +Child: 31, type: 6, width: 31, height: 34 +Child: 32, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/554.txt b/server508/lists/interfaces/554.txt new file mode 100644 index 0000000..991e43c --- /dev/null +++ b/server508/lists/interfaces/554.txt @@ -0,0 +1,11 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 50 +Child: 3, type: 6, width: 64, height: 50 +Child: 4, type: 6, width: 64, height: 50 +Child: 5, type: 6, width: 64, height: 50 +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: Select an Option diff --git a/server508/lists/interfaces/555.txt b/server508/lists/interfaces/555.txt new file mode 100644 index 0000000..477ee6c --- /dev/null +++ b/server508/lists/interfaces/555.txt @@ -0,0 +1,15 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 50 +Child: 3, type: 6, width: 64, height: 50 +Child: 4, type: 6, width: 64, height: 50 +Child: 5, type: 6, width: 64, height: 50 +Child: 6, type: 6, width: 64, height: 50 +Child: 7, type: 6, width: 64, height: 50 +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: Select an option. diff --git a/server508/lists/interfaces/556.txt b/server508/lists/interfaces/556.txt new file mode 100644 index 0000000..a935346 --- /dev/null +++ b/server508/lists/interfaces/556.txt @@ -0,0 +1,17 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 55 +Child: 3, type: 6, width: 64, height: 55 +Child: 4, type: 6, width: 64, height: 55 +Child: 5, type: 6, width: 64, height: 55 +Child: 6, type: 6, width: 64, height: 55 +Child: 7, type: 6, width: 64, height: 55 +Child: 8, type: 6, width: 64, height: 55 +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: Select an option. diff --git a/server508/lists/interfaces/557.txt b/server508/lists/interfaces/557.txt new file mode 100644 index 0000000..9845a99 --- /dev/null +++ b/server508/lists/interfaces/557.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, message: Select an Option +Child: 2, message: option1 +Child: 3, message: option2 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 +Child: 6, type: 0, width: 337, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 5, width: 57, height: 13 +Child: 9, type: 0, width: 476, height: 13 diff --git a/server508/lists/interfaces/558.txt b/server508/lists/interfaces/558.txt new file mode 100644 index 0000000..df587ad --- /dev/null +++ b/server508/lists/interfaces/558.txt @@ -0,0 +1,33 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 63, height: 80 +Child: 3, type: 6, width: 63, height: 80 +Child: 4, type: 6, width: 63, height: 80 +Child: 5, type: 6, width: 63, height: 80 +Child: 6, type: 6, width: 63, height: 80 +Child: 7, type: 6, width: 63, height: 80 +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, message: +Child: 25, message: +Child: 26, message: +Child: 27, message: +Child: 28, message: What would you like to make? +Child: 29, message: +Child: 30, message: +Child: 31, message: +Child: 32, message: diff --git a/server508/lists/interfaces/559.txt b/server508/lists/interfaces/559.txt new file mode 100644 index 0000000..c7dfc36 --- /dev/null +++ b/server508/lists/interfaces/559.txt @@ -0,0 +1,88 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 3, width: 486, height: 4 +Child: 2, type: 3, width: 4, height: 15 +Child: 3, type: 3, width: 4, height: 305 +Child: 4, type: 6, width: 492, height: 322 +Child: 5, type: 6, width: 32, height: 29 +Child: 6, type: 0, width: 412, height: 332 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 0, width: 412, height: 332 +Child: 9, type: 5, width: 64, height: 88 +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 5, width: 64, height: 88 +Child: 12, type: 5, width: 64, height: 88 +Child: 13, type: 5, width: 64, height: 88 +Child: 14, type: 5, width: 64, height: 88 +Child: 15, type: 5, width: 64, height: 88 +Child: 16, type: 5, width: 64, height: 88 +Child: 17, type: 5, width: 64, height: 88 +Child: 18, type: 5, width: 64, height: 88 +Child: 19, type: 5, width: 64, height: 88 +Child: 20, type: 5, width: 64, height: 88 +Child: 21, type: 5, width: 64, height: 88 +Child: 22, type: 5, width: 64, height: 88 +Child: 23, type: 5, width: 64, height: 88 +Child: 24, type: 5, width: 64, height: 88 +Child: 25, message: Text for testing, remove at will. Text for testing, remove at will. Text for testing, remove at will. Text for testing, remove at will. Text for testing, remove at will. Text for testing, remove at will. +Child: 26, type: 5, width: 29, height: 29 +Child: 27, type: 6, width: 65, height: 89 +Child: 28, type: 6, width: 65, height: 89 +Child: 29, type: 6, width: 65, height: 89 +Child: 30, type: 6, width: 65, height: 89 +Child: 31, type: 6, width: 65, height: 89 +Child: 32, type: 6, width: 65, height: 89 +Child: 33, type: 6, width: 65, height: 89 +Child: 34, type: 6, width: 65, height: 89 +Child: 35, type: 6, width: 65, height: 89 +Child: 36, type: 6, width: 65, height: 89 +Child: 37, type: 6, width: 65, height: 89 +Child: 38, type: 6, width: 65, height: 89 +Child: 39, type: 6, width: 65, height: 89 +Child: 40, type: 6, width: 65, height: 89 +Child: 41, type: 6, width: 65, height: 89 +Child: 42, type: 6, width: 41, height: 34 +Child: 43, type: 6, width: 41, height: 34 +Child: 44, type: 6, width: 41, height: 34 +Child: 45, type: 6, width: 41, height: 34 +Child: 46, type: 6, width: 41, height: 34 +Child: 47, type: 6, width: 41, height: 34 +Child: 48, type: 6, width: 41, height: 34 +Child: 49, type: 6, width: 41, height: 34 +Child: 50, type: 6, width: 41, height: 34 +Child: 51, type: 6, width: 41, height: 34 +Child: 52, type: 6, width: 41, height: 34 +Child: 53, type: 6, width: 41, height: 34 +Child: 54, type: 6, width: 41, height: 34 +Child: 55, type: 6, width: 41, height: 34 +Child: 56, type: 6, width: 41, height: 34 +Child: 57, type: 6, width: 60, height: 89 +Child: 58, type: 6, width: 60, height: 89 +Child: 59, type: 6, width: 60, height: 89 +Child: 60, type: 6, width: 60, height: 89 +Child: 61, type: 6, width: 60, height: 89 +Child: 62, type: 6, width: 60, height: 89 +Child: 63, type: 6, width: 60, height: 89 +Child: 64, type: 6, width: 60, height: 89 +Child: 65, type: 6, width: 60, height: 89 +Child: 66, type: 6, width: 60, height: 89 +Child: 67, type: 6, width: 60, height: 89 +Child: 68, type: 6, width: 60, height: 89 +Child: 69, type: 6, width: 60, height: 89 +Child: 70, type: 6, width: 60, height: 89 +Child: 71, type: 6, width: 60, height: 89 +Child: 72, type: 5, width: 25, height: 25 +Child: 73, type: 5, width: 25, height: 25 +Child: 74, type: 5, width: 25, height: 25 +Child: 75, type: 5, width: 25, height: 25 +Child: 76, type: 5, width: 25, height: 25 +Child: 77, type: 5, width: 25, height: 25 +Child: 78, type: 5, width: 25, height: 25 +Child: 79, type: 5, width: 25, height: 25 +Child: 80, type: 5, width: 25, height: 25 +Child: 81, type: 5, width: 25, height: 25 +Child: 82, type: 5, width: 25, height: 25 +Child: 83, type: 5, width: 25, height: 25 +Child: 84, type: 5, width: 25, height: 25 +Child: 85, type: 5, width: 25, height: 25 +Child: 86, type: 5, width: 25, height: 25 +Child: 87, type: 0, width: 518, height: 339 diff --git a/server508/lists/interfaces/56.txt b/server508/lists/interfaces/56.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/56.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/560.txt b/server508/lists/interfaces/560.txt new file mode 100644 index 0000000..221bc6d --- /dev/null +++ b/server508/lists/interfaces/560.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Warning! Low level players beware. Goblins have taken over and there are poisonous spiders! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/561.txt b/server508/lists/interfaces/561.txt new file mode 100644 index 0000000..3e6d873 --- /dev/null +++ b/server508/lists/interfaces/561.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: If you climb down this rope you will be attacked by
the Kalphite Queen, one of the most deadly creatures in RuneScape. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: That's what I came here for +Child: 18, message: I think I'll stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/562.txt b/server508/lists/interfaces/562.txt new file mode 100644 index 0000000..94fd02a --- /dev/null +++ b/server508/lists/interfaces/562.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is very dark. Do not extinguish your light source! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/563.txt b/server508/lists/interfaces/563.txt new file mode 100644 index 0000000..2aa6789 --- /dev/null +++ b/server508/lists/interfaces/563.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Entering building mode will destroy
any items that are on the ground. Do you want to continue? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes, I do not mind losing any items that are on the ground. +Child: 18, message: No, I want to look around and pick things up first. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 312, height: 22 diff --git a/server508/lists/interfaces/564.txt b/server508/lists/interfaces/564.txt new file mode 100644 index 0000000..bb3997e --- /dev/null +++ b/server508/lists/interfaces/564.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Warning! At the top of this tower you will be attacked
by archers, who will shoot you without mercy! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: I'll be okay - they can't hurt me +Child: 18, message: I'll stay down here +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/565.txt b/server508/lists/interfaces/565.txt new file mode 100644 index 0000000..92d461e --- /dev/null +++ b/server508/lists/interfaces/565.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 252 +Child: 1, type: 5, width: 32, height: 200 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 200 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: The desert is a VERY dangerous place. Do not
enter if you are afraid of dying. Beware of high temperatures, sandstorms, robbers and slavers.
No responsibility is taken by Shantay if anything
bad should happen to you, in any circumstances whatsoever. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/566.txt b/server508/lists/interfaces/566.txt new file mode 100644 index 0000000..a347e32 --- /dev/null +++ b/server508/lists/interfaces/566.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Do you need to collect any dropped
items? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes - I need to collect some stuff
before I leave +Child: 18, message: No - I haven't left any valuables on the floor +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/567.txt b/server508/lists/interfaces/567.txt new file mode 100644 index 0000000..2c26851 --- /dev/null +++ b/server508/lists/interfaces/567.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: It's very dark in there. Are you sure you want to
go in without a light source? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes I am sure. +Child: 18, message: No, I am not properly equipped. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/568.txt b/server508/lists/interfaces/568.txt new file mode 100644 index 0000000..a5ea68f --- /dev/null +++ b/server508/lists/interfaces/568.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is very dark. Do not extinquish your light source! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/569.txt b/server508/lists/interfaces/569.txt new file mode 100644 index 0000000..b2fdb2e --- /dev/null +++ b/server508/lists/interfaces/569.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: It's very dark in there. Are you sure you want to go in without a light source? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes I am sure. +Child: 18, message: No, I am not properly equipped.. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/57.txt b/server508/lists/interfaces/57.txt new file mode 100644 index 0000000..4052caf --- /dev/null +++ b/server508/lists/interfaces/57.txt @@ -0,0 +1 @@ +Child: 0, message: Waiting for players to join the other team. diff --git a/server508/lists/interfaces/570.txt b/server508/lists/interfaces/570.txt new file mode 100644 index 0000000..c5db581 --- /dev/null +++ b/server508/lists/interfaces/570.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: The cave is very dark and you don't have a light
source. Are you sure you want to go down? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: I'm NOT scared of the dark +Child: 18, message: I AM scared of the dark +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/571.txt b/server508/lists/interfaces/571.txt new file mode 100644 index 0000000..1abdcdc --- /dev/null +++ b/server508/lists/interfaces/571.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: The tunnel is very dark. Are you sure you want
to go down without a light source? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes I am sure. +Child: 18, message: No, I am not properly equipped. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/572.txt b/server508/lists/interfaces/572.txt new file mode 100644 index 0000000..9f624c3 --- /dev/null +++ b/server508/lists/interfaces/572.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: If your light source goes out down there you'll
be in trouble! Are you sure you want to go in without
a tinderbox? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: I'm NOT scared of the dark +Child: 18, message: I AM scared of the dark +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/573.txt b/server508/lists/interfaces/573.txt new file mode 100644 index 0000000..3b991c0 --- /dev/null +++ b/server508/lists/interfaces/573.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: You can run past, but keep in mind that a
dangerous area follows! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: I'm not scared +Child: 18, message: I think I'll stay here +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/574.txt b/server508/lists/interfaces/574.txt new file mode 100644 index 0000000..c4d59c6 --- /dev/null +++ b/server508/lists/interfaces/574.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is very dangerous, are you sure you want to continue? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Go in - I don't mind dying +Child: 18, message: No - I'm holding too much stuff +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/575.txt b/server508/lists/interfaces/575.txt new file mode 100644 index 0000000..ce27704 --- /dev/null +++ b/server508/lists/interfaces/575.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: If you pull this lever you will be attacked by the King Black Dragon, one of the most deadly creatures in RuneScape. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: That's what I came here for +Child: 18, message: I think I'll stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/576.txt b/server508/lists/interfaces/576.txt new file mode 100644 index 0000000..2bc3dce --- /dev/null +++ b/server508/lists/interfaces/576.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This way leads into the Wilderness and is only
one way! Are you sure you want to go down here? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes - I'm fearless +Child: 18, message: No - That doesn't seem like a sensible
thing to do +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/577.txt b/server508/lists/interfaces/577.txt new file mode 100644 index 0000000..2ecc9d8 --- /dev/null +++ b/server508/lists/interfaces/577.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: The tunnel is very dark. Are you sure you want to
go down without a light source? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes I am sure. +Child: 18, message: No, I am not properly equipped. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/578.txt b/server508/lists/interfaces/578.txt new file mode 100644 index 0000000..d33c336 --- /dev/null +++ b/server508/lists/interfaces/578.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This fairy ring code leads to a dark area. Are you
sure you want to go there without a light source? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes I am sure. +Child: 18, message: No, I am not properly equipped. +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/579.txt b/server508/lists/interfaces/579.txt new file mode 100644 index 0000000..75c8598 --- /dev/null +++ b/server508/lists/interfaces/579.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Are you sure you want to climb down? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes - I know that it may be
dangerous down there +Child: 18, message: No thanks - I don't want to die +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/58.txt b/server508/lists/interfaces/58.txt new file mode 100644 index 0000000..4ec7d43 --- /dev/null +++ b/server508/lists/interfaces/58.txt @@ -0,0 +1,19 @@ +Child: 0, message: Zamorak = %1 +Child: 1, message: %1 = Saradomin +Child: 2, type: 6, width: 25, height: 32 +Child: 3, type: 6, width: 25, height: 32 +Child: 4, message: +Child: 5, message: +Child: 6, type: 0, width: 106, height: 148 +Child: 7, message: Health %1% +Child: 8, message: %1 Min +Child: 9, type: 6, width: 24, height: 29 +Child: 10, type: 6, width: 15, height: 23 +Child: 11, message: Locked +Child: 12, type: 6, width: 26, height: 18 +Child: 13, message: Collapsed +Child: 14, type: 6, width: 26, height: 18 +Child: 15, message: Collapsed +Child: 16, type: 6, width: 26, height: 20 +Child: 17, message: Operational +Child: 18, message: diff --git a/server508/lists/interfaces/580.txt b/server508/lists/interfaces/580.txt new file mode 100644 index 0000000..db9c584 --- /dev/null +++ b/server508/lists/interfaces/580.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Mort Myre is a dangerous ghast-infested swamp.
Do not enter if you value your life. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Enter the swamp. +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/581.txt b/server508/lists/interfaces/581.txt new file mode 100644 index 0000000..f62f626 --- /dev/null +++ b/server508/lists/interfaces/581.txt @@ -0,0 +1,20 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Danger! Death Plateau is not named that for
a joke! If you continue down this path you will
be assailed by trolls! If you are not prepared
for that you should turn back now! +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Don't show me this again +Child: 18, type: 5, width: 19, height: 19 +Child: 19, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/582.txt b/server508/lists/interfaces/582.txt new file mode 100644 index 0000000..4818c98 --- /dev/null +++ b/server508/lists/interfaces/582.txt @@ -0,0 +1,7 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 62, height: 83 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: How many would you like to make? diff --git a/server508/lists/interfaces/583.txt b/server508/lists/interfaces/583.txt new file mode 100644 index 0000000..4a193f3 --- /dev/null +++ b/server508/lists/interfaces/583.txt @@ -0,0 +1,74 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Reset Warning Messages +Child: 15, message: Body Text +Child: 16, type: 0, width: 449, height: 265 +Child: 17, type: 0, width: 16, height: 258 +Child: 18, type: 5, width: 90, height: 56 +Child: 19, type: 5, width: 90, height: 56 +Child: 20, type: 5, width: 90, height: 56 +Child: 21, type: 5, width: 90, height: 56 +Child: 22, type: 5, width: 90, height: 56 +Child: 23, type: 5, width: 90, height: 56 +Child: 24, type: 5, width: 90, height: 56 +Child: 25, type: 5, width: 90, height: 56 +Child: 26, type: 5, width: 90, height: 56 +Child: 27, type: 5, width: 90, height: 56 +Child: 28, type: 5, width: 90, height: 56 +Child: 29, type: 5, width: 90, height: 56 +Child: 30, type: 5, width: 90, height: 56 +Child: 31, type: 5, width: 90, height: 56 +Child: 32, type: 5, width: 90, height: 56 +Child: 33, type: 5, width: 90, height: 56 +Child: 34, type: 5, width: 90, height: 56 +Child: 35, type: 5, width: 90, height: 56 +Child: 36, type: 5, width: 90, height: 56 +Child: 37, type: 5, width: 90, height: 56 +Child: 38, type: 5, width: 90, height: 56 +Child: 39, type: 5, width: 90, height: 56 +Child: 40, type: 5, width: 90, height: 56 +Child: 41, type: 5, width: 90, height: 56 +Child: 42, type: 5, width: 90, height: 56 +Child: 43, type: 5, width: 90, height: 56 +Child: 44, type: 5, width: 90, height: 56 +Child: 45, type: 5, width: 90, height: 56 +Child: 46, message: Dagannoth Kings' Ladder +Child: 47, message: Lumbridge Swamp Cave Rope +Child: 48, message: Stronghold of Security Ladders +Child: 49, message: Falador Mole Lair +Child: 50, message: Dropped Items in Random Events +Child: 51, message: Player-Owned Houses +Child: 52, message: Contact Dungeon Ladder +Child: 53, message: Icy Path Area +Child: 54, message: H.A.M. Tunnel from Mill +Child: 55, message: Fairy Ring to Dorgesh-Kaan +Child: 56, message: Lumbridge Cellar +Child: 57, message: Mort Myre +Child: 58, message: Observatory Stairs +Child: 59, message: Shantay Pass +Child: 60, message: Elid Genie Cave +Child: 61, message: Watchtower Shaman Cave +Child: 62, message: Trollheim Wilderness Entrance +Child: 63, message: Wilderness Ditch +Child: 64, message: Dorgesh-Kaan City Exit +Child: 65, message: Dorgesh-Kaan Tunnel to Kalphites +Child: 66, message: Ranging Guild Tower +Child: 67, message: Death Plateau +Child: 68, message: God Wars Wilderness Agility Route +Child: 69, message: Duel Arena +Child: 70, message: Bounty Hunter +Child: 71, message: Chaos Tunnels (East) +Child: 72, message: Chaos Tunnels (Central) +Child: 73, message: Chaos Tunnels (West) diff --git a/server508/lists/interfaces/584.txt b/server508/lists/interfaces/584.txt new file mode 100644 index 0000000..5b8c9fa --- /dev/null +++ b/server508/lists/interfaces/584.txt @@ -0,0 +1,3 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 1194, height: 620 +Child: 2, type: 6, width: 193, height: 1151 diff --git a/server508/lists/interfaces/585.txt b/server508/lists/interfaces/585.txt new file mode 100644 index 0000000..38d8c1a --- /dev/null +++ b/server508/lists/interfaces/585.txt @@ -0,0 +1,24 @@ +Child: 0, type: 6, width: 725, height: 350 +Child: 1, type: 6, width: 203, height: 125 +Child: 2, type: 6, width: 194, height: 154 +Child: 3, type: 6, width: 83, height: 214 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 0, width: 16391, height: 16391 +Child: 7, type: 5, width: 32, height: 334 +Child: 8, type: 5, width: 462, height: 32 +Child: 9, type: 5, width: 512, height: 32 +Child: 10, type: 5, width: 32, height: 334 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 0, width: 8192, height: 16391 +Child: 16, type: 0, width: 8188, height: 16391 +Child: 17, type: 0, width: 16391, height: 8192 +Child: 18, type: 0, width: 16391, height: 8182 +Child: 19, type: 0, width: 512, height: 334 +Child: 20, type: 5, width: 256, height: 16384 +Child: 21, type: 5, width: 256, height: 16391 +Child: 22, type: 5, width: 16391, height: 167 +Child: 23, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/586.txt b/server508/lists/interfaces/586.txt new file mode 100644 index 0000000..f7affd2 --- /dev/null +++ b/server508/lists/interfaces/586.txt @@ -0,0 +1,8 @@ +Child: 0, type: 6, width: 243, height: 322 +Child: 1, message: Change of address form for the citizens of Seers' Village. +Child: 2, type: 3, width: 168, height: 4 +Child: 3, type: 3, width: 168, height: 4 +Child: 4, type: 3, width: 168, height: 4 +Child: 5, type: 3, width: 72, height: 4 +Child: 6, type: 5, width: 26, height: 23 +Child: 7, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/587.txt b/server508/lists/interfaces/587.txt new file mode 100644 index 0000000..6547fa5 --- /dev/null +++ b/server508/lists/interfaces/587.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 249, height: 288 +Child: 1, message: Meet at Camel We'll storm She'll ensure w The servants silence. +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/588.txt b/server508/lists/interfaces/588.txt new file mode 100644 index 0000000..9e6ddbe --- /dev/null +++ b/server508/lists/interfaces/588.txt @@ -0,0 +1,87 @@ +Child: 0, type: 3, width: 513, height: 336 +Child: 1, type: 6, width: 489, height: 625 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, message: Correct tumbler and height +Child: 4, message: Correct height, wrong tumbler +Child: 5, message: Wrong height, wrong tumbler +Child: 6, message: Selected tumbler height +Child: 7, message: 0/5 +Child: 8, message: Tumbler +Child: 9, message: Guess +Child: 10, type: 3, width: 125, height: 175 +Child: 11, type: 3, width: 174, height: 62 +Child: 12, type: 6, width: 43, height: 81 +Child: 13, type: 6, width: 42, height: 80 +Child: 14, message: Try Lock +Child: 15, message: 1 +Child: 16, message: 2 +Child: 17, message: 3 +Child: 18, message: 4 +Child: 19, message: Select a tumbler +Child: 20, message: 1 +Child: 21, message: 2 +Child: 22, message: 3 +Child: 23, message: 4 +Child: 24, type: 6, width: 16, height: 16 +Child: 25, type: 6, width: 16, height: 16 +Child: 26, type: 6, width: 16, height: 16 +Child: 27, type: 6, width: 16, height: 16 +Child: 28, type: 6, width: 16, height: 16 +Child: 29, type: 6, width: 16, height: 16 +Child: 30, type: 6, width: 16, height: 16 +Child: 31, type: 6, width: 16, height: 16 +Child: 32, type: 6, width: 16, height: 16 +Child: 33, type: 6, width: 16, height: 16 +Child: 34, type: 6, width: 16, height: 16 +Child: 35, type: 6, width: 16, height: 16 +Child: 36, type: 6, width: 16, height: 16 +Child: 37, type: 6, width: 16, height: 16 +Child: 38, type: 6, width: 16, height: 16 +Child: 39, type: 6, width: 16, height: 16 +Child: 40, type: 6, width: 16, height: 16 +Child: 41, type: 6, width: 16, height: 16 +Child: 42, type: 6, width: 16, height: 16 +Child: 43, type: 6, width: 16, height: 16 +Child: 44, type: 6, width: 16, height: 16 +Child: 45, type: 6, width: 16, height: 16 +Child: 46, type: 6, width: 16, height: 16 +Child: 47, type: 6, width: 16, height: 16 +Child: 48, type: 6, width: 16, height: 16 +Child: 49, type: 6, width: 16, height: 16 +Child: 50, type: 6, width: 16, height: 16 +Child: 51, type: 6, width: 16, height: 16 +Child: 52, type: 6, width: 16, height: 16 +Child: 53, type: 6, width: 16, height: 16 +Child: 54, type: 6, width: 16, height: 16 +Child: 55, type: 6, width: 16, height: 16 +Child: 56, type: 6, width: 16, height: 16 +Child: 57, type: 6, width: 16, height: 16 +Child: 58, type: 6, width: 16, height: 16 +Child: 59, type: 6, width: 16, height: 16 +Child: 60, type: 6, width: 16, height: 16 +Child: 61, type: 6, width: 16, height: 16 +Child: 62, type: 6, width: 16, height: 16 +Child: 63, type: 6, width: 16, height: 16 +Child: 64, type: 6, width: 17, height: 17 +Child: 65, type: 6, width: 17, height: 17 +Child: 66, type: 6, width: 17, height: 17 +Child: 67, type: 0, width: 512, height: 334 +Child: 68, type: 0, width: 16391, height: 16391 +Child: 69, type: 0, width: 16391, height: 16391 +Child: 70, type: 5, width: 32, height: 334 +Child: 71, type: 5, width: 462, height: 32 +Child: 72, type: 5, width: 512, height: 32 +Child: 73, type: 5, width: 32, height: 334 +Child: 74, type: 5, width: 32, height: 32 +Child: 75, type: 5, width: 32, height: 32 +Child: 76, type: 5, width: 32, height: 32 +Child: 77, type: 5, width: 32, height: 32 +Child: 78, type: 0, width: 8192, height: 16391 +Child: 79, type: 0, width: 8188, height: 16391 +Child: 80, type: 0, width: 16391, height: 8192 +Child: 81, type: 0, width: 16391, height: 8182 +Child: 82, type: 0, width: 512, height: 334 +Child: 83, type: 5, width: 256, height: 16384 +Child: 84, type: 5, width: 256, height: 16391 +Child: 85, type: 5, width: 16391, height: 167 +Child: 86, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/589.txt b/server508/lists/interfaces/589.txt new file mode 100644 index 0000000..123a956 --- /dev/null +++ b/server508/lists/interfaces/589.txt @@ -0,0 +1,15 @@ +Child: 0, message: Talking in: Not in chat +Child: 1, message: Owner: None +Child: 2, type: 0, width: 72, height: 32 +Child: 3, type: 0, width: 72, height: 32 +Child: 4, type: 3, width: 190, height: 158 +Child: 5, type: 0, width: 160, height: 159 +Child: 6, type: 0, width: 16, height: 159 +Child: 7, message: Clan Chat +Child: 8, message: Join Chat +Child: 9, message: Clan Setup +Child: 10, type: 5, width: 190, height: 32 +Child: 11, type: 5, width: 190, height: 32 +Child: 12, type: 0, width: 13, height: 13 +Child: 13, type: 0, width: 177, height: 111 +Child: 14, type: 5, width: 26, height: 26 diff --git a/server508/lists/interfaces/59.txt b/server508/lists/interfaces/59.txt new file mode 100644 index 0000000..afab167 --- /dev/null +++ b/server508/lists/interfaces/59.txt @@ -0,0 +1,19 @@ +Child: 0, message: Zamorak = %1 +Child: 1, message: %1 = Saradomin +Child: 2, type: 6, width: 25, height: 32 +Child: 3, type: 6, width: 25, height: 32 +Child: 4, message: +Child: 5, message: +Child: 6, type: 0, width: 106, height: 148 +Child: 7, message: Health %1% +Child: 8, message: %1 Min +Child: 9, type: 6, width: 24, height: 29 +Child: 10, type: 6, width: 15, height: 23 +Child: 11, message: Locked +Child: 12, type: 6, width: 26, height: 18 +Child: 13, message: Collapsed +Child: 14, message: Collapsed +Child: 15, type: 6, width: 26, height: 20 +Child: 16, type: 6, width: 26, height: 18 +Child: 17, message: Operational +Child: 18, message: diff --git a/server508/lists/interfaces/590.txt b/server508/lists/interfaces/590.txt new file mode 100644 index 0000000..f5562fe --- /dev/null +++ b/server508/lists/interfaces/590.txt @@ -0,0 +1,34 @@ +Child: 0, type: 3, width: 485, height: 300 +Child: 1, type: 0, width: 485, height: 300 +Child: 2, type: 5, width: 16384, height: 16384 +Child: 3, type: 5, width: 16, height: 16 +Child: 4, type: 5, width: 476, height: 32 +Child: 5, type: 5, width: 32, height: 268 +Child: 6, type: 3, width: 16391, height: 20 +Child: 7, type: 5, width: 32, height: 2 +Child: 8, message: Name: +Child: 9, message: Rank: +Child: 10, type: 5, width: 26, height: 26 +Child: 11, message: Clan Chat Setup +Child: 12, type: 0, width: 279, height: 234 +Child: 13, type: 0, width: 269, height: 208 +Child: 14, type: 0, width: 16, height: 208 +Child: 15, message: Friends List +Child: 16, message: CoinShare +Child: 17, type: 0, width: 150, height: 35 +Child: 18, type: 0, width: 150, height: 35 +Child: 19, type: 0, width: 150, height: 35 +Child: 20, type: 0, width: 150, height: 35 +Child: 21, type: 0, width: 150, height: 35 +Child: 22, message: Chat disabled +Child: 23, message: Any friends +Child: 24, message: Anyone +Child: 25, message: Only me +Child: 26, message: No-one +Child: 27, message: Clan name: +Child: 28, message: Who can enter chat? +Child: 29, message: Who can talk on chat? +Child: 30, message: Who can kick on chat? +Child: 31, message: Who can share loot? +Child: 32, message: Right-click on white text to change options. +Child: 33, type: 5, width: 15, height: 15 diff --git a/server508/lists/interfaces/591.txt b/server508/lists/interfaces/591.txt new file mode 100644 index 0000000..e908f32 --- /dev/null +++ b/server508/lists/interfaces/591.txt @@ -0,0 +1,300 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 130, height: 10 +Child: 14, type: 3, width: 130, height: 10 +Child: 15, type: 3, width: 130, height: 10 +Child: 16, type: 3, width: 130, height: 10 +Child: 17, type: 3, width: 130, height: 10 +Child: 18, type: 3, width: 130, height: 10 +Child: 19, type: 3, width: 130, height: 10 +Child: 20, type: 3, width: 130, height: 10 +Child: 21, type: 3, width: 130, height: 10 +Child: 22, type: 3, width: 130, height: 10 +Child: 23, type: 3, width: 130, height: 10 +Child: 24, type: 3, width: 130, height: 10 +Child: 25, type: 3, width: 130, height: 10 +Child: 26, type: 3, width: 130, height: 10 +Child: 27, type: 3, width: 130, height: 10 +Child: 28, type: 3, width: 130, height: 10 +Child: 29, type: 3, width: 130, height: 10 +Child: 30, type: 3, width: 130, height: 10 +Child: 31, type: 3, width: 130, height: 10 +Child: 32, type: 3, width: 130, height: 10 +Child: 33, type: 3, width: 130, height: 10 +Child: 34, type: 3, width: 130, height: 10 +Child: 35, type: 3, width: 130, height: 10 +Child: 36, type: 3, width: 130, height: 10 +Child: 37, type: 3, width: 130, height: 10 +Child: 38, type: 0, width: 130, height: 238 +Child: 39, type: 3, width: 173, height: 7 +Child: 40, type: 3, width: 173, height: 10 +Child: 41, type: 3, width: 173, height: 10 +Child: 42, type: 3, width: 173, height: 10 +Child: 43, type: 3, width: 173, height: 10 +Child: 44, type: 3, width: 173, height: 10 +Child: 45, type: 3, width: 173, height: 10 +Child: 46, type: 3, width: 173, height: 10 +Child: 47, type: 3, width: 173, height: 10 +Child: 48, type: 3, width: 173, height: 10 +Child: 49, type: 3, width: 173, height: 10 +Child: 50, type: 3, width: 173, height: 10 +Child: 51, type: 3, width: 173, height: 10 +Child: 52, type: 3, width: 173, height: 10 +Child: 53, type: 3, width: 173, height: 10 +Child: 54, type: 3, width: 173, height: 10 +Child: 55, type: 3, width: 173, height: 10 +Child: 56, type: 3, width: 173, height: 10 +Child: 57, type: 3, width: 173, height: 9 +Child: 58, type: 0, width: 173, height: 236 +Child: 59, type: 0, width: 130, height: 238 +Child: 60, type: 6, width: 105, height: 197 +Child: 61, message: Thessalia's Makeovers +Child: 62, message: Striped sweater +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 0, width: 147, height: 21 +Child: 65, message: Woollen vest +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 0, width: 147, height: 21 +Child: 68, message: Princely vest +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 0, width: 147, height: 21 +Child: 71, message: Tattered waistcoat +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 0, width: 147, height: 21 +Child: 74, message: Fine shirt +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 0, width: 147, height: 21 +Child: 77, message: Waistcoat +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 147, height: 21 +Child: 80, message: Plain top +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 0, width: 147, height: 21 +Child: 83, message: Light buttons +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 0, width: 147, height: 21 +Child: 86, message: Dark buttons +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 0, width: 147, height: 21 +Child: 89, message: Jacket +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 0, width: 147, height: 21 +Child: 92, message: Shirt +Child: 93, type: 5, width: 36, height: 36 +Child: 94, type: 0, width: 147, height: 21 +Child: 95, message: Stitching +Child: 96, type: 5, width: 36, height: 36 +Child: 97, type: 0, width: 147, height: 21 +Child: 98, message: Ragged top +Child: 99, type: 5, width: 36, height: 36 +Child: 100, type: 0, width: 147, height: 21 +Child: 101, message: Two-toned +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 0, width: 147, height: 21 +Child: 104, message: Striped arms +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 0, width: 147, height: 21 +Child: 107, message: Princely sleeves +Child: 108, type: 5, width: 36, height: 36 +Child: 109, type: 0, width: 147, height: 21 +Child: 110, message: Fine cuffs +Child: 111, type: 5, width: 36, height: 36 +Child: 112, type: 0, width: 147, height: 21 +Child: 113, message: Woollen sleeves +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 0, width: 147, height: 21 +Child: 116, message: Ragged arms +Child: 117, type: 5, width: 36, height: 36 +Child: 118, type: 0, width: 147, height: 21 +Child: 119, message: Tattered sleeves +Child: 120, type: 5, width: 36, height: 36 +Child: 121, type: 0, width: 147, height: 21 +Child: 122, message: Loose sleeved +Child: 123, type: 5, width: 36, height: 36 +Child: 124, type: 0, width: 147, height: 21 +Child: 125, message: Regular +Child: 126, type: 5, width: 36, height: 36 +Child: 127, type: 0, width: 147, height: 21 +Child: 128, message: Musclebound +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 0, width: 147, height: 21 +Child: 131, message: Large cuffed +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 0, width: 147, height: 21 +Child: 134, message: Thin sleeved +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 0, width: 147, height: 21 +Child: 137, message: Shoulder pads +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 0, width: 147, height: 21 +Child: 140, message: Plain trousers +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 0, width: 147, height: 21 +Child: 143, message: Princely breeches +Child: 144, type: 5, width: 36, height: 36 +Child: 145, type: 0, width: 147, height: 21 +Child: 146, message: Shorts +Child: 147, type: 5, width: 36, height: 36 +Child: 148, type: 0, width: 147, height: 21 +Child: 149, message: Ragged breeches +Child: 150, type: 5, width: 36, height: 36 +Child: 151, type: 0, width: 147, height: 21 +Child: 152, message: Tattered breeches +Child: 153, type: 5, width: 36, height: 36 +Child: 154, type: 0, width: 147, height: 21 +Child: 155, message: Torn trousers +Child: 156, type: 5, width: 36, height: 36 +Child: 157, type: 0, width: 147, height: 21 +Child: 158, message: Breeches +Child: 159, type: 5, width: 36, height: 36 +Child: 160, type: 0, width: 147, height: 21 +Child: 161, message: Striped trousers +Child: 162, type: 5, width: 36, height: 36 +Child: 163, type: 0, width: 147, height: 21 +Child: 164, message: Turn-ups +Child: 165, type: 5, width: 36, height: 36 +Child: 166, type: 0, width: 147, height: 21 +Child: 167, message: Flares +Child: 168, type: 5, width: 36, height: 36 +Child: 169, type: 0, width: 147, height: 21 +Child: 170, message: Fine breeches +Child: 171, type: 5, width: 36, height: 36 +Child: 172, type: 0, width: 147, height: 21 +Child: 173, type: 0, width: 173, height: 183 +Child: 174, type: 0, width: 16, height: 187 +Child: 175, type: 0, width: 173, height: 186 +Child: 176, type: 0, width: 16, height: 187 +Child: 177, type: 0, width: 173, height: 186 +Child: 178, type: 0, width: 16, height: 187 +Child: 179, message: 1,000 Coins +Child: 180, type: 5, width: 42, height: 42 +Child: 181, type: 0, width: 84, height: 66 +Child: 182, type: 5, width: 42, height: 42 +Child: 183, type: 5, width: 42, height: 42 +Child: 184, type: 5, width: 42, height: 42 +Child: 185, type: 3, width: 20, height: 20 +Child: 186, type: 3, width: 20, height: 20 +Child: 187, type: 3, width: 20, height: 20 +Child: 188, type: 3, width: 20, height: 20 +Child: 189, type: 3, width: 20, height: 20 +Child: 190, type: 3, width: 20, height: 20 +Child: 191, type: 3, width: 20, height: 20 +Child: 192, type: 3, width: 20, height: 20 +Child: 193, type: 3, width: 20, height: 20 +Child: 194, type: 3, width: 20, height: 20 +Child: 195, type: 3, width: 20, height: 20 +Child: 196, type: 3, width: 20, height: 20 +Child: 197, type: 3, width: 20, height: 20 +Child: 198, type: 3, width: 20, height: 20 +Child: 199, type: 3, width: 20, height: 20 +Child: 200, type: 3, width: 20, height: 20 +Child: 201, type: 3, width: 20, height: 20 +Child: 202, type: 3, width: 20, height: 20 +Child: 203, type: 3, width: 20, height: 20 +Child: 204, type: 3, width: 20, height: 20 +Child: 205, type: 3, width: 20, height: 20 +Child: 206, type: 3, width: 20, height: 20 +Child: 207, type: 3, width: 20, height: 20 +Child: 208, type: 3, width: 20, height: 20 +Child: 209, type: 3, width: 20, height: 20 +Child: 210, type: 3, width: 20, height: 20 +Child: 211, type: 3, width: 20, height: 20 +Child: 212, type: 3, width: 20, height: 20 +Child: 213, type: 3, width: 20, height: 20 +Child: 214, type: 3, width: 20, height: 20 +Child: 215, type: 3, width: 20, height: 20 +Child: 216, type: 3, width: 20, height: 20 +Child: 217, type: 3, width: 20, height: 20 +Child: 218, type: 3, width: 20, height: 20 +Child: 219, type: 3, width: 20, height: 20 +Child: 220, type: 3, width: 20, height: 20 +Child: 221, type: 3, width: 20, height: 20 +Child: 222, type: 0, width: 95, height: 195 +Child: 223, type: 3, width: 21, height: 21 +Child: 224, type: 3, width: 21, height: 21 +Child: 225, type: 3, width: 21, height: 21 +Child: 226, type: 3, width: 21, height: 21 +Child: 227, type: 3, width: 21, height: 21 +Child: 228, type: 3, width: 21, height: 21 +Child: 229, type: 3, width: 21, height: 21 +Child: 230, type: 3, width: 21, height: 21 +Child: 231, type: 3, width: 21, height: 21 +Child: 232, type: 3, width: 21, height: 21 +Child: 233, type: 3, width: 21, height: 21 +Child: 234, type: 3, width: 21, height: 21 +Child: 235, type: 3, width: 21, height: 21 +Child: 236, type: 3, width: 21, height: 21 +Child: 237, type: 3, width: 21, height: 21 +Child: 238, type: 3, width: 21, height: 21 +Child: 239, type: 3, width: 21, height: 21 +Child: 240, type: 3, width: 21, height: 21 +Child: 241, type: 3, width: 21, height: 21 +Child: 242, type: 3, width: 21, height: 21 +Child: 243, type: 3, width: 21, height: 21 +Child: 244, type: 3, width: 21, height: 21 +Child: 245, type: 3, width: 21, height: 21 +Child: 246, type: 3, width: 21, height: 21 +Child: 247, type: 3, width: 21, height: 21 +Child: 248, type: 3, width: 21, height: 21 +Child: 249, type: 3, width: 21, height: 21 +Child: 250, type: 3, width: 21, height: 21 +Child: 251, type: 3, width: 21, height: 21 +Child: 252, type: 5, width: 21, height: 21 +Child: 253, type: 5, width: 21, height: 21 +Child: 254, type: 5, width: 21, height: 21 +Child: 255, type: 5, width: 21, height: 21 +Child: 256, type: 5, width: 21, height: 21 +Child: 257, type: 5, width: 21, height: 21 +Child: 258, type: 5, width: 21, height: 21 +Child: 259, type: 5, width: 21, height: 21 +Child: 260, type: 5, width: 21, height: 21 +Child: 261, type: 5, width: 21, height: 21 +Child: 262, type: 5, width: 21, height: 21 +Child: 263, type: 5, width: 21, height: 21 +Child: 264, type: 5, width: 21, height: 21 +Child: 265, type: 5, width: 21, height: 21 +Child: 266, type: 5, width: 21, height: 21 +Child: 267, type: 5, width: 21, height: 21 +Child: 268, type: 5, width: 21, height: 21 +Child: 269, type: 5, width: 21, height: 21 +Child: 270, type: 5, width: 21, height: 21 +Child: 271, type: 5, width: 21, height: 21 +Child: 272, type: 5, width: 21, height: 21 +Child: 273, type: 5, width: 21, height: 21 +Child: 274, type: 5, width: 21, height: 21 +Child: 275, type: 5, width: 21, height: 21 +Child: 276, type: 5, width: 21, height: 21 +Child: 277, type: 5, width: 21, height: 21 +Child: 278, type: 5, width: 21, height: 21 +Child: 279, type: 5, width: 21, height: 21 +Child: 280, type: 5, width: 21, height: 21 +Child: 281, type: 5, width: 16, height: 16 +Child: 282, type: 0, width: 512, height: 334 +Child: 283, type: 9, width: 176, height: 0 +Child: 284, type: 9, width: 0, height: 187 +Child: 285, type: 9, width: 0, height: 187 +Child: 286, type: 9, width: 176, height: 0 +Child: 287, type: 9, width: 93, height: 0 +Child: 288, type: 9, width: 0, height: 183 +Child: 289, type: 9, width: 0, height: 160 +Child: 290, type: 9, width: 24, height: 0 +Child: 291, type: 9, width: 133, height: 0 +Child: 292, type: 9, width: 0, height: 239 +Child: 293, type: 9, width: 0, height: 239 +Child: 294, type: 9, width: 133, height: 0 +Child: 295, type: 9, width: 69, height: 0 +Child: 296, type: 9, width: 0, height: 21 +Child: 297, type: 5, width: 23, height: 23 +Child: 298, type: 0, width: 512, height: 334 +Child: 299, type: 0, width: 200, height: 200 diff --git a/server508/lists/interfaces/592.txt b/server508/lists/interfaces/592.txt new file mode 100644 index 0000000..557f96a --- /dev/null +++ b/server508/lists/interfaces/592.txt @@ -0,0 +1,234 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 488, height: 305 +Child: 2, type: 5, width: 485, height: 300 +Child: 3, type: 5, width: 32, height: 243 +Child: 4, type: 5, width: 32, height: 241 +Child: 5, type: 5, width: 465, height: 32 +Child: 6, type: 5, width: 424, height: 34 +Child: 7, type: 5, width: 423, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 130, height: 246 +Child: 15, type: 0, width: 173, height: 120 +Child: 16, type: 0, width: 512, height: 334 +Child: 17, type: 0, width: 190, height: 110 +Child: 18, type: 0, width: 129, height: 244 +Child: 19, message: Hairdresser's Salon +Child: 20, type: 0, width: 173, height: 80 +Child: 21, type: 5, width: 42, height: 42 +Child: 22, type: 0, width: 71, height: 71 +Child: 23, type: 5, width: 42, height: 42 +Child: 24, type: 0, width: 16, height: 80 +Child: 25, type: 0, width: 95, height: 195 +Child: 26, type: 5, width: 21, height: 21 +Child: 27, type: 5, width: 21, height: 21 +Child: 28, type: 5, width: 21, height: 21 +Child: 29, type: 5, width: 21, height: 21 +Child: 30, type: 5, width: 21, height: 21 +Child: 31, type: 5, width: 21, height: 21 +Child: 32, type: 5, width: 21, height: 21 +Child: 33, type: 5, width: 21, height: 21 +Child: 34, type: 5, width: 21, height: 21 +Child: 35, type: 5, width: 21, height: 21 +Child: 36, type: 5, width: 21, height: 21 +Child: 37, type: 5, width: 21, height: 21 +Child: 38, type: 5, width: 21, height: 21 +Child: 39, type: 5, width: 21, height: 21 +Child: 40, type: 5, width: 21, height: 21 +Child: 41, type: 5, width: 21, height: 21 +Child: 42, type: 5, width: 21, height: 21 +Child: 43, type: 5, width: 21, height: 21 +Child: 44, type: 5, width: 21, height: 21 +Child: 45, type: 5, width: 21, height: 21 +Child: 46, type: 5, width: 21, height: 21 +Child: 47, type: 5, width: 21, height: 21 +Child: 48, type: 5, width: 21, height: 21 +Child: 49, type: 5, width: 21, height: 21 +Child: 50, type: 5, width: 21, height: 21 +Child: 51, type: 5, width: 16, height: 16 +Child: 52, type: 0, width: 512, height: 334 +Child: 53, type: 5, width: 23, height: 23 +Child: 54, type: 0, width: 512, height: 334 +Child: 55, type: 3, width: 130, height: 10 +Child: 56, type: 3, width: 130, height: 10 +Child: 57, type: 3, width: 130, height: 10 +Child: 58, type: 3, width: 130, height: 10 +Child: 59, type: 3, width: 130, height: 10 +Child: 60, type: 3, width: 130, height: 10 +Child: 61, type: 3, width: 130, height: 10 +Child: 62, type: 3, width: 130, height: 10 +Child: 63, type: 3, width: 130, height: 10 +Child: 64, type: 3, width: 130, height: 10 +Child: 65, type: 3, width: 130, height: 10 +Child: 66, type: 3, width: 130, height: 10 +Child: 67, type: 3, width: 130, height: 10 +Child: 68, type: 3, width: 130, height: 10 +Child: 69, type: 3, width: 130, height: 10 +Child: 70, type: 3, width: 130, height: 10 +Child: 71, type: 3, width: 130, height: 10 +Child: 72, type: 3, width: 130, height: 10 +Child: 73, type: 3, width: 130, height: 10 +Child: 74, type: 3, width: 130, height: 10 +Child: 75, type: 3, width: 130, height: 10 +Child: 76, type: 3, width: 130, height: 10 +Child: 77, type: 3, width: 130, height: 10 +Child: 78, type: 3, width: 130, height: 10 +Child: 79, type: 3, width: 130, height: 10 +Child: 80, type: 3, width: 173, height: 7 +Child: 81, type: 3, width: 173, height: 10 +Child: 82, type: 3, width: 173, height: 10 +Child: 83, type: 3, width: 173, height: 10 +Child: 84, type: 3, width: 173, height: 10 +Child: 85, type: 3, width: 173, height: 10 +Child: 86, type: 3, width: 173, height: 10 +Child: 87, type: 3, width: 173, height: 13 +Child: 88, type: 3, width: 189, height: 10 +Child: 89, type: 3, width: 189, height: 10 +Child: 90, type: 3, width: 189, height: 10 +Child: 91, type: 3, width: 189, height: 10 +Child: 92, type: 3, width: 189, height: 10 +Child: 93, type: 3, width: 189, height: 10 +Child: 94, type: 3, width: 189, height: 10 +Child: 95, type: 3, width: 189, height: 10 +Child: 96, type: 3, width: 189, height: 10 +Child: 97, type: 3, width: 189, height: 10 +Child: 98, type: 3, width: 189, height: 9 +Child: 99, type: 6, width: 49, height: 21 +Child: 100, type: 6, width: 107, height: 197 +Child: 101, message: Bald +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 0, width: 147, height: 21 +Child: 104, message: Bun +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 0, width: 147, height: 21 +Child: 107, message: Dreadlocks +Child: 108, type: 5, width: 36, height: 36 +Child: 109, type: 0, width: 147, height: 21 +Child: 110, message: Long +Child: 111, type: 5, width: 36, height: 36 +Child: 112, type: 0, width: 147, height: 21 +Child: 113, message: Short +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 0, width: 147, height: 21 +Child: 116, message: Pigtails +Child: 117, type: 5, width: 36, height: 36 +Child: 118, type: 0, width: 147, height: 21 +Child: 119, message: Crew cut +Child: 120, type: 5, width: 36, height: 36 +Child: 121, type: 0, width: 147, height: 21 +Child: 122, message: Close-cropped +Child: 123, type: 5, width: 36, height: 36 +Child: 124, type: 0, width: 147, height: 21 +Child: 125, message: Wild spikes +Child: 126, type: 5, width: 36, height: 36 +Child: 127, type: 0, width: 147, height: 21 +Child: 128, message: Spikes +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 0, width: 147, height: 21 +Child: 131, message: Side ponytail +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 0, width: 147, height: 21 +Child: 134, message: Curls +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 0, width: 147, height: 21 +Child: 137, message: Wind braids +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 0, width: 147, height: 21 +Child: 140, message: Ponytail +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 0, width: 147, height: 21 +Child: 143, message: Braids +Child: 144, type: 5, width: 36, height: 36 +Child: 145, type: 0, width: 147, height: 21 +Child: 146, message: Four ponies +Child: 147, type: 5, width: 36, height: 36 +Child: 148, type: 0, width: 147, height: 21 +Child: 149, message: Bob +Child: 150, type: 5, width: 36, height: 36 +Child: 151, type: 0, width: 147, height: 21 +Child: 152, message: Layered +Child: 153, type: 5, width: 36, height: 36 +Child: 154, type: 0, width: 147, height: 21 +Child: 155, message: Straight +Child: 156, type: 5, width: 36, height: 36 +Child: 157, type: 0, width: 147, height: 21 +Child: 158, message: Long braids +Child: 159, type: 5, width: 36, height: 36 +Child: 160, type: 0, width: 147, height: 21 +Child: 161, message: Curtains +Child: 162, type: 5, width: 36, height: 36 +Child: 163, type: 0, width: 147, height: 21 +Child: 164, message: Earmuffs +Child: 165, type: 5, width: 36, height: 36 +Child: 166, type: 0, width: 147, height: 21 +Child: 167, message: 2,000 Coins +Child: 168, type: 3, width: 20, height: 20 +Child: 169, type: 3, width: 20, height: 20 +Child: 170, type: 3, width: 20, height: 20 +Child: 171, type: 3, width: 20, height: 20 +Child: 172, type: 3, width: 20, height: 20 +Child: 173, type: 3, width: 20, height: 20 +Child: 174, type: 3, width: 20, height: 20 +Child: 175, type: 3, width: 20, height: 20 +Child: 176, type: 3, width: 20, height: 20 +Child: 177, type: 3, width: 20, height: 20 +Child: 178, type: 3, width: 20, height: 20 +Child: 179, type: 3, width: 20, height: 20 +Child: 180, type: 3, width: 20, height: 20 +Child: 181, type: 3, width: 20, height: 20 +Child: 182, type: 3, width: 20, height: 20 +Child: 183, type: 3, width: 20, height: 20 +Child: 184, type: 3, width: 20, height: 20 +Child: 185, type: 3, width: 20, height: 20 +Child: 186, type: 3, width: 20, height: 20 +Child: 187, type: 3, width: 20, height: 20 +Child: 188, type: 3, width: 20, height: 20 +Child: 189, type: 3, width: 20, height: 20 +Child: 190, type: 3, width: 21, height: 21 +Child: 191, type: 3, width: 21, height: 21 +Child: 192, type: 3, width: 21, height: 21 +Child: 193, type: 3, width: 21, height: 21 +Child: 194, type: 3, width: 21, height: 21 +Child: 195, type: 3, width: 21, height: 21 +Child: 196, type: 3, width: 21, height: 21 +Child: 197, type: 3, width: 21, height: 21 +Child: 198, type: 3, width: 21, height: 21 +Child: 199, type: 3, width: 21, height: 21 +Child: 200, type: 3, width: 21, height: 21 +Child: 201, type: 3, width: 21, height: 21 +Child: 202, type: 3, width: 21, height: 21 +Child: 203, type: 3, width: 21, height: 21 +Child: 204, type: 3, width: 21, height: 21 +Child: 205, type: 3, width: 21, height: 21 +Child: 206, type: 3, width: 21, height: 21 +Child: 207, type: 3, width: 21, height: 21 +Child: 208, type: 3, width: 21, height: 21 +Child: 209, type: 3, width: 21, height: 21 +Child: 210, type: 3, width: 21, height: 21 +Child: 211, type: 3, width: 21, height: 21 +Child: 212, type: 3, width: 21, height: 21 +Child: 213, type: 3, width: 21, height: 21 +Child: 214, type: 3, width: 21, height: 21 +Child: 215, type: 9, width: 176, height: 0 +Child: 216, type: 9, width: 0, height: 82 +Child: 217, type: 9, width: 0, height: 82 +Child: 218, type: 9, width: 174, height: 0 +Child: 219, type: 9, width: 192, height: 0 +Child: 220, type: 9, width: 0, height: 110 +Child: 221, type: 9, width: 0, height: 110 +Child: 222, type: 9, width: 192, height: 0 +Child: 223, type: 9, width: 132, height: 0 +Child: 224, type: 9, width: 0, height: 244 +Child: 225, type: 9, width: 0, height: 244 +Child: 226, type: 9, width: 132, height: 0 +Child: 227, type: 9, width: 93, height: 0 +Child: 228, type: 9, width: 0, height: 160 +Child: 229, type: 9, width: 0, height: 137 +Child: 230, type: 9, width: 24, height: 0 +Child: 231, type: 9, width: 69, height: 0 +Child: 232, type: 9, width: 0, height: 21 +Child: 233, type: 0, width: 200, height: 200 diff --git a/server508/lists/interfaces/593.txt b/server508/lists/interfaces/593.txt new file mode 100644 index 0000000..d7e0be9 --- /dev/null +++ b/server508/lists/interfaces/593.txt @@ -0,0 +1,153 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 130, height: 10 +Child: 14, type: 3, width: 130, height: 10 +Child: 15, type: 3, width: 130, height: 10 +Child: 16, type: 3, width: 130, height: 10 +Child: 17, type: 3, width: 130, height: 10 +Child: 18, type: 3, width: 130, height: 10 +Child: 19, type: 3, width: 130, height: 10 +Child: 20, type: 3, width: 130, height: 10 +Child: 21, type: 3, width: 130, height: 10 +Child: 22, type: 3, width: 130, height: 10 +Child: 23, type: 3, width: 130, height: 10 +Child: 24, type: 3, width: 130, height: 10 +Child: 25, type: 3, width: 130, height: 10 +Child: 26, type: 3, width: 130, height: 10 +Child: 27, type: 3, width: 130, height: 10 +Child: 28, type: 3, width: 130, height: 10 +Child: 29, type: 3, width: 130, height: 10 +Child: 30, type: 3, width: 130, height: 10 +Child: 31, type: 3, width: 130, height: 10 +Child: 32, type: 3, width: 130, height: 10 +Child: 33, type: 3, width: 130, height: 10 +Child: 34, type: 3, width: 130, height: 10 +Child: 35, type: 3, width: 130, height: 10 +Child: 36, type: 3, width: 130, height: 10 +Child: 37, type: 0, width: 130, height: 246 +Child: 38, type: 3, width: 173, height: 7 +Child: 39, type: 3, width: 173, height: 10 +Child: 40, type: 3, width: 173, height: 10 +Child: 41, type: 3, width: 173, height: 10 +Child: 42, type: 3, width: 173, height: 10 +Child: 43, type: 3, width: 173, height: 10 +Child: 44, type: 3, width: 173, height: 10 +Child: 45, type: 3, width: 173, height: 10 +Child: 46, type: 3, width: 173, height: 10 +Child: 47, type: 3, width: 173, height: 10 +Child: 48, type: 3, width: 173, height: 10 +Child: 49, type: 3, width: 173, height: 10 +Child: 50, type: 3, width: 173, height: 10 +Child: 51, type: 3, width: 173, height: 10 +Child: 52, type: 3, width: 173, height: 10 +Child: 53, type: 3, width: 173, height: 10 +Child: 54, type: 3, width: 173, height: 10 +Child: 55, type: 3, width: 173, height: 10 +Child: 56, type: 3, width: 173, height: 10 +Child: 57, type: 0, width: 173, height: 235 +Child: 58, type: 3, width: 140, height: 10 +Child: 59, type: 3, width: 140, height: 10 +Child: 60, type: 3, width: 140, height: 10 +Child: 61, type: 3, width: 140, height: 10 +Child: 62, type: 3, width: 140, height: 10 +Child: 63, type: 3, width: 140, height: 10 +Child: 64, type: 3, width: 140, height: 10 +Child: 65, type: 3, width: 140, height: 10 +Child: 66, type: 3, width: 140, height: 14 +Child: 67, type: 0, width: 512, height: 334 +Child: 68, type: 6, width: 32, height: 32 +Child: 69, type: 6, width: 32, height: 32 +Child: 70, type: 0, width: 130, height: 238 +Child: 71, type: 6, width: 136, height: 168 +Child: 72, message: Reinald's Smithing Emporium +Child: 73, message: Bare arms +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 0, width: 147, height: 21 +Child: 76, message: Silver wristguards +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 0, width: 147, height: 21 +Child: 79, message: Silver clasps +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 0, width: 147, height: 21 +Child: 82, message: Silver bangles +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 0, width: 147, height: 21 +Child: 85, message: Silver banding +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 0, width: 147, height: 21 +Child: 88, message: Silver bands +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 0, width: 147, height: 21 +Child: 91, message: Silver armguards +Child: 92, type: 5, width: 36, height: 36 +Child: 93, type: 0, width: 147, height: 21 +Child: 94, message: Bare arms +Child: 95, type: 5, width: 36, height: 36 +Child: 96, type: 0, width: 147, height: 21 +Child: 97, message: Gold wristguards +Child: 98, type: 5, width: 36, height: 36 +Child: 99, type: 0, width: 147, height: 21 +Child: 100, message: Gold clasps +Child: 101, type: 5, width: 36, height: 36 +Child: 102, type: 0, width: 147, height: 21 +Child: 103, message: Gold bangles +Child: 104, type: 5, width: 36, height: 36 +Child: 105, type: 0, width: 147, height: 21 +Child: 106, message: Gold banding +Child: 107, type: 5, width: 36, height: 36 +Child: 108, type: 0, width: 147, height: 21 +Child: 109, message: Gold bands +Child: 110, type: 5, width: 36, height: 36 +Child: 111, type: 0, width: 147, height: 21 +Child: 112, message: Gold armguards +Child: 113, type: 5, width: 36, height: 36 +Child: 114, type: 0, width: 147, height: 21 +Child: 115, type: 0, width: 173, height: 194 +Child: 116, type: 0, width: 173, height: 194 +Child: 117, type: 5, width: 42, height: 42 +Child: 118, message: 500 Coins +Child: 119, type: 0, width: 72, height: 71 +Child: 120, type: 5, width: 42, height: 42 +Child: 121, type: 5, width: 42, height: 42 +Child: 122, type: 3, width: 20, height: 20 +Child: 123, type: 3, width: 20, height: 20 +Child: 124, type: 3, width: 20, height: 20 +Child: 125, type: 3, width: 20, height: 20 +Child: 126, type: 3, width: 20, height: 20 +Child: 127, type: 3, width: 20, height: 20 +Child: 128, type: 3, width: 20, height: 20 +Child: 129, type: 3, width: 20, height: 20 +Child: 130, type: 3, width: 20, height: 20 +Child: 131, type: 3, width: 20, height: 20 +Child: 132, type: 3, width: 20, height: 20 +Child: 133, type: 3, width: 20, height: 20 +Child: 134, type: 3, width: 20, height: 20 +Child: 135, type: 3, width: 20, height: 20 +Child: 136, type: 5, width: 16, height: 16 +Child: 137, type: 0, width: 512, height: 334 +Child: 138, type: 9, width: 176, height: 0 +Child: 139, type: 9, width: 0, height: 188 +Child: 140, type: 9, width: 0, height: 188 +Child: 141, type: 9, width: 176, height: 0 +Child: 142, type: 9, width: 143, height: 0 +Child: 143, type: 9, width: 0, height: 92 +Child: 144, type: 9, width: 0, height: 92 +Child: 145, type: 9, width: 143, height: 0 +Child: 146, type: 9, width: 133, height: 0 +Child: 147, type: 9, width: 0, height: 239 +Child: 148, type: 9, width: 0, height: 239 +Child: 149, type: 9, width: 133, height: 0 +Child: 150, type: 5, width: 23, height: 23 +Child: 151, type: 0, width: 512, height: 334 +Child: 152, type: 0, width: 200, height: 200 diff --git a/server508/lists/interfaces/594.txt b/server508/lists/interfaces/594.txt new file mode 100644 index 0000000..9db93d8 --- /dev/null +++ b/server508/lists/interfaces/594.txt @@ -0,0 +1,301 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 130, height: 10 +Child: 14, type: 3, width: 130, height: 10 +Child: 15, type: 3, width: 130, height: 10 +Child: 16, type: 3, width: 130, height: 10 +Child: 17, type: 3, width: 130, height: 10 +Child: 18, type: 3, width: 130, height: 10 +Child: 19, type: 3, width: 130, height: 10 +Child: 20, type: 3, width: 130, height: 10 +Child: 21, type: 3, width: 130, height: 10 +Child: 22, type: 3, width: 130, height: 10 +Child: 23, type: 3, width: 130, height: 10 +Child: 24, type: 3, width: 130, height: 10 +Child: 25, type: 3, width: 130, height: 10 +Child: 26, type: 3, width: 130, height: 10 +Child: 27, type: 3, width: 130, height: 10 +Child: 28, type: 3, width: 130, height: 10 +Child: 29, type: 3, width: 130, height: 10 +Child: 30, type: 3, width: 130, height: 10 +Child: 31, type: 3, width: 130, height: 10 +Child: 32, type: 3, width: 130, height: 10 +Child: 33, type: 3, width: 130, height: 10 +Child: 34, type: 3, width: 130, height: 10 +Child: 35, type: 3, width: 130, height: 10 +Child: 36, type: 3, width: 130, height: 10 +Child: 37, type: 3, width: 130, height: 10 +Child: 38, type: 0, width: 130, height: 238 +Child: 39, type: 3, width: 173, height: 7 +Child: 40, type: 3, width: 173, height: 10 +Child: 41, type: 3, width: 173, height: 10 +Child: 42, type: 3, width: 173, height: 10 +Child: 43, type: 3, width: 173, height: 10 +Child: 44, type: 3, width: 173, height: 10 +Child: 45, type: 3, width: 173, height: 10 +Child: 46, type: 3, width: 173, height: 10 +Child: 47, type: 3, width: 173, height: 10 +Child: 48, type: 3, width: 173, height: 10 +Child: 49, type: 3, width: 173, height: 10 +Child: 50, type: 3, width: 173, height: 10 +Child: 51, type: 3, width: 173, height: 10 +Child: 52, type: 3, width: 173, height: 10 +Child: 53, type: 3, width: 173, height: 10 +Child: 54, type: 3, width: 173, height: 10 +Child: 55, type: 3, width: 173, height: 10 +Child: 56, type: 3, width: 173, height: 10 +Child: 57, type: 3, width: 173, height: 9 +Child: 58, type: 0, width: 173, height: 236 +Child: 59, type: 0, width: 130, height: 238 +Child: 60, type: 6, width: 136, height: 168 +Child: 61, message: Thessalia's Makeovers +Child: 62, message: Striped sweater +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 0, width: 147, height: 21 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 0, width: 147, height: 21 +Child: 67, message: Woollen vest +Child: 68, message: Frilled blouse +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 0, width: 147, height: 21 +Child: 71, message: Bodice +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 0, width: 147, height: 21 +Child: 74, message: Fine shirt +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 0, width: 147, height: 21 +Child: 77, message: Ragged top +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 147, height: 21 +Child: 80, message: Plain top +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 0, width: 147, height: 21 +Child: 83, message: Crop-top +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 0, width: 147, height: 21 +Child: 86, message: Simple +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 0, width: 147, height: 21 +Child: 89, message: Polo neck +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 0, width: 147, height: 21 +Child: 92, message: Torn +Child: 93, type: 5, width: 36, height: 36 +Child: 94, type: 0, width: 147, height: 21 +Child: 95, message: Striped arms +Child: 96, type: 5, width: 36, height: 36 +Child: 97, type: 0, width: 147, height: 21 +Child: 98, message: Frilled sleeves +Child: 99, type: 5, width: 36, height: 36 +Child: 100, type: 0, width: 147, height: 21 +Child: 101, message: Fine cuffs +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 0, width: 147, height: 21 +Child: 104, message: Woollen arms +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 0, width: 147, height: 21 +Child: 107, message: Ragged sleeves +Child: 108, type: 5, width: 36, height: 36 +Child: 109, type: 0, width: 147, height: 21 +Child: 110, message: Tattered sleeves +Child: 111, type: 5, width: 36, height: 36 +Child: 112, type: 0, width: 147, height: 21 +Child: 113, message: Long sleeves +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 0, width: 147, height: 21 +Child: 116, message: Short sleeves +Child: 117, type: 5, width: 36, height: 36 +Child: 118, type: 0, width: 147, height: 21 +Child: 119, message: Muscly +Child: 120, type: 5, width: 36, height: 36 +Child: 121, type: 0, width: 147, height: 21 +Child: 122, message: Large cuffs +Child: 123, type: 5, width: 36, height: 36 +Child: 124, type: 0, width: 147, height: 21 +Child: 125, message: Bare arms +Child: 126, type: 5, width: 36, height: 36 +Child: 127, type: 0, width: 147, height: 21 +Child: 128, message: Fine skirt +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 0, width: 147, height: 21 +Child: 131, message: Frilled skirt +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 0, width: 147, height: 21 +Child: 134, message: Layered skirt +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 0, width: 147, height: 21 +Child: 137, message: Long, narrow skirt +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 0, width: 147, height: 21 +Child: 140, message: Ragged skirt +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 0, width: 147, height: 21 +Child: 143, message: Tattered skirt +Child: 144, type: 5, width: 36, height: 36 +Child: 145, type: 0, width: 147, height: 21 +Child: 146, message: Short skirt +Child: 147, type: 5, width: 36, height: 36 +Child: 148, type: 0, width: 147, height: 21 +Child: 149, message: Sashed skirt +Child: 150, type: 5, width: 36, height: 36 +Child: 151, type: 0, width: 147, height: 21 +Child: 152, message: Fitted skirt +Child: 153, type: 5, width: 36, height: 36 +Child: 154, type: 0, width: 147, height: 21 +Child: 155, message: Torn trousers +Child: 156, type: 5, width: 36, height: 36 +Child: 157, type: 0, width: 147, height: 21 +Child: 158, message: Long skirt +Child: 159, type: 5, width: 36, height: 36 +Child: 160, type: 0, width: 147, height: 21 +Child: 161, message: Turn-ups +Child: 162, type: 5, width: 36, height: 36 +Child: 163, type: 0, width: 147, height: 21 +Child: 164, message: Flares +Child: 165, type: 5, width: 36, height: 36 +Child: 166, type: 0, width: 147, height: 21 +Child: 167, message: Plain trousers +Child: 168, type: 5, width: 36, height: 36 +Child: 169, type: 0, width: 147, height: 21 +Child: 170, message: Shorts +Child: 171, type: 5, width: 36, height: 36 +Child: 172, type: 0, width: 147, height: 21 +Child: 173, type: 0, width: 173, height: 183 +Child: 174, type: 0, width: 16, height: 187 +Child: 175, type: 0, width: 173, height: 186 +Child: 176, type: 0, width: 16, height: 187 +Child: 177, type: 0, width: 173, height: 186 +Child: 178, type: 0, width: 16, height: 187 +Child: 179, type: 0, width: 95, height: 195 +Child: 180, message: 1,000 Coins +Child: 181, type: 5, width: 42, height: 42 +Child: 182, type: 0, width: 87, height: 68 +Child: 183, type: 5, width: 42, height: 42 +Child: 184, type: 5, width: 42, height: 42 +Child: 185, type: 5, width: 42, height: 42 +Child: 186, type: 3, width: 20, height: 20 +Child: 187, type: 3, width: 20, height: 20 +Child: 188, type: 3, width: 20, height: 20 +Child: 189, type: 3, width: 20, height: 20 +Child: 190, type: 3, width: 20, height: 20 +Child: 191, type: 3, width: 20, height: 20 +Child: 192, type: 3, width: 20, height: 20 +Child: 193, type: 3, width: 20, height: 20 +Child: 194, type: 3, width: 20, height: 20 +Child: 195, type: 3, width: 20, height: 20 +Child: 196, type: 3, width: 20, height: 20 +Child: 197, type: 3, width: 20, height: 20 +Child: 198, type: 3, width: 20, height: 20 +Child: 199, type: 3, width: 20, height: 20 +Child: 200, type: 3, width: 20, height: 20 +Child: 201, type: 3, width: 20, height: 20 +Child: 202, type: 3, width: 20, height: 20 +Child: 203, type: 3, width: 20, height: 20 +Child: 204, type: 3, width: 20, height: 20 +Child: 205, type: 3, width: 20, height: 20 +Child: 206, type: 3, width: 20, height: 20 +Child: 207, type: 3, width: 20, height: 20 +Child: 208, type: 3, width: 20, height: 20 +Child: 209, type: 3, width: 20, height: 20 +Child: 210, type: 3, width: 20, height: 20 +Child: 211, type: 3, width: 20, height: 20 +Child: 212, type: 3, width: 20, height: 20 +Child: 213, type: 3, width: 20, height: 20 +Child: 214, type: 3, width: 20, height: 20 +Child: 215, type: 3, width: 20, height: 20 +Child: 216, type: 3, width: 20, height: 20 +Child: 217, type: 3, width: 20, height: 20 +Child: 218, type: 3, width: 20, height: 20 +Child: 219, type: 3, width: 20, height: 20 +Child: 220, type: 3, width: 20, height: 20 +Child: 221, type: 3, width: 20, height: 20 +Child: 222, type: 3, width: 20, height: 20 +Child: 223, type: 0, width: 95, height: 195 +Child: 224, type: 3, width: 21, height: 21 +Child: 225, type: 3, width: 21, height: 21 +Child: 226, type: 3, width: 21, height: 21 +Child: 227, type: 3, width: 21, height: 21 +Child: 228, type: 3, width: 21, height: 21 +Child: 229, type: 3, width: 21, height: 21 +Child: 230, type: 3, width: 21, height: 21 +Child: 231, type: 3, width: 21, height: 21 +Child: 232, type: 3, width: 21, height: 21 +Child: 233, type: 3, width: 21, height: 21 +Child: 234, type: 3, width: 21, height: 21 +Child: 235, type: 3, width: 21, height: 21 +Child: 236, type: 3, width: 21, height: 21 +Child: 237, type: 3, width: 21, height: 21 +Child: 238, type: 3, width: 21, height: 21 +Child: 239, type: 3, width: 21, height: 21 +Child: 240, type: 3, width: 21, height: 21 +Child: 241, type: 3, width: 21, height: 21 +Child: 242, type: 3, width: 21, height: 21 +Child: 243, type: 3, width: 21, height: 21 +Child: 244, type: 3, width: 21, height: 21 +Child: 245, type: 3, width: 21, height: 21 +Child: 246, type: 3, width: 21, height: 21 +Child: 247, type: 3, width: 21, height: 21 +Child: 248, type: 3, width: 21, height: 21 +Child: 249, type: 3, width: 21, height: 21 +Child: 250, type: 3, width: 21, height: 21 +Child: 251, type: 3, width: 21, height: 21 +Child: 252, type: 3, width: 21, height: 21 +Child: 253, type: 5, width: 21, height: 21 +Child: 254, type: 5, width: 21, height: 21 +Child: 255, type: 5, width: 21, height: 21 +Child: 256, type: 5, width: 21, height: 21 +Child: 257, type: 5, width: 21, height: 21 +Child: 258, type: 5, width: 21, height: 21 +Child: 259, type: 5, width: 21, height: 21 +Child: 260, type: 5, width: 21, height: 21 +Child: 261, type: 5, width: 21, height: 21 +Child: 262, type: 5, width: 21, height: 21 +Child: 263, type: 5, width: 21, height: 21 +Child: 264, type: 5, width: 21, height: 21 +Child: 265, type: 5, width: 21, height: 21 +Child: 266, type: 5, width: 21, height: 21 +Child: 267, type: 5, width: 21, height: 21 +Child: 268, type: 5, width: 21, height: 21 +Child: 269, type: 5, width: 21, height: 21 +Child: 270, type: 5, width: 21, height: 21 +Child: 271, type: 5, width: 21, height: 21 +Child: 272, type: 5, width: 21, height: 21 +Child: 273, type: 5, width: 21, height: 21 +Child: 274, type: 5, width: 21, height: 21 +Child: 275, type: 5, width: 21, height: 21 +Child: 276, type: 5, width: 21, height: 21 +Child: 277, type: 5, width: 21, height: 21 +Child: 278, type: 5, width: 21, height: 21 +Child: 279, type: 5, width: 21, height: 21 +Child: 280, type: 5, width: 21, height: 21 +Child: 281, type: 5, width: 21, height: 21 +Child: 282, type: 5, width: 16, height: 16 +Child: 283, type: 0, width: 512, height: 334 +Child: 284, type: 9, width: 176, height: 0 +Child: 285, type: 9, width: 0, height: 187 +Child: 286, type: 9, width: 0, height: 187 +Child: 287, type: 9, width: 176, height: 0 +Child: 288, type: 9, width: 93, height: 0 +Child: 289, type: 9, width: 0, height: 183 +Child: 290, type: 9, width: 0, height: 160 +Child: 291, type: 9, width: 24, height: 0 +Child: 292, type: 9, width: 133, height: 0 +Child: 293, type: 9, width: 0, height: 239 +Child: 294, type: 9, width: 0, height: 239 +Child: 295, type: 9, width: 133, height: 0 +Child: 296, type: 9, width: 69, height: 0 +Child: 297, type: 9, width: 0, height: 21 +Child: 298, type: 5, width: 23, height: 23 +Child: 299, type: 0, width: 512, height: 334 +Child: 300, type: 0, width: 200, height: 200 diff --git a/server508/lists/interfaces/595.txt b/server508/lists/interfaces/595.txt new file mode 100644 index 0000000..b75d854 --- /dev/null +++ b/server508/lists/interfaces/595.txt @@ -0,0 +1,153 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 130, height: 10 +Child: 14, type: 3, width: 130, height: 10 +Child: 15, type: 3, width: 130, height: 10 +Child: 16, type: 3, width: 130, height: 10 +Child: 17, type: 3, width: 130, height: 10 +Child: 18, type: 3, width: 130, height: 10 +Child: 19, type: 3, width: 130, height: 10 +Child: 20, type: 3, width: 130, height: 10 +Child: 21, type: 3, width: 130, height: 10 +Child: 22, type: 3, width: 130, height: 10 +Child: 23, type: 3, width: 130, height: 10 +Child: 24, type: 3, width: 130, height: 10 +Child: 25, type: 3, width: 130, height: 10 +Child: 26, type: 3, width: 130, height: 10 +Child: 27, type: 3, width: 130, height: 10 +Child: 28, type: 3, width: 130, height: 10 +Child: 29, type: 3, width: 130, height: 10 +Child: 30, type: 3, width: 130, height: 10 +Child: 31, type: 3, width: 130, height: 10 +Child: 32, type: 3, width: 130, height: 10 +Child: 33, type: 3, width: 130, height: 10 +Child: 34, type: 3, width: 130, height: 10 +Child: 35, type: 3, width: 130, height: 10 +Child: 36, type: 3, width: 130, height: 10 +Child: 37, type: 0, width: 130, height: 246 +Child: 38, type: 3, width: 173, height: 7 +Child: 39, type: 3, width: 173, height: 10 +Child: 40, type: 3, width: 173, height: 10 +Child: 41, type: 3, width: 173, height: 10 +Child: 42, type: 3, width: 173, height: 10 +Child: 43, type: 3, width: 173, height: 10 +Child: 44, type: 3, width: 173, height: 10 +Child: 45, type: 3, width: 173, height: 10 +Child: 46, type: 3, width: 173, height: 10 +Child: 47, type: 3, width: 173, height: 10 +Child: 48, type: 3, width: 173, height: 10 +Child: 49, type: 3, width: 173, height: 10 +Child: 50, type: 3, width: 173, height: 10 +Child: 51, type: 3, width: 173, height: 10 +Child: 52, type: 3, width: 173, height: 10 +Child: 53, type: 3, width: 173, height: 10 +Child: 54, type: 3, width: 173, height: 10 +Child: 55, type: 3, width: 173, height: 10 +Child: 56, type: 3, width: 173, height: 10 +Child: 57, type: 0, width: 173, height: 235 +Child: 58, type: 3, width: 140, height: 10 +Child: 59, type: 3, width: 140, height: 10 +Child: 60, type: 3, width: 140, height: 10 +Child: 61, type: 3, width: 140, height: 10 +Child: 62, type: 3, width: 140, height: 10 +Child: 63, type: 3, width: 140, height: 10 +Child: 64, type: 3, width: 140, height: 10 +Child: 65, type: 3, width: 140, height: 10 +Child: 66, type: 3, width: 140, height: 14 +Child: 67, type: 0, width: 512, height: 334 +Child: 68, type: 6, width: 32, height: 32 +Child: 69, type: 6, width: 32, height: 32 +Child: 70, type: 0, width: 130, height: 238 +Child: 71, type: 6, width: 136, height: 168 +Child: 72, message: Reinald's Smithing Emporium +Child: 73, message: Bare arms +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 0, width: 147, height: 21 +Child: 76, message: Silver wristguards +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 0, width: 147, height: 21 +Child: 79, message: Silver clasps +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 0, width: 147, height: 21 +Child: 82, message: Silver bangles +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 0, width: 147, height: 21 +Child: 85, message: Silver banding +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 0, width: 147, height: 21 +Child: 88, message: Silver bands +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 0, width: 147, height: 21 +Child: 91, message: Silver armguards +Child: 92, type: 5, width: 36, height: 36 +Child: 93, type: 0, width: 147, height: 21 +Child: 94, message: Bare arms +Child: 95, type: 5, width: 36, height: 36 +Child: 96, type: 0, width: 147, height: 21 +Child: 97, message: Gold wristguards +Child: 98, type: 5, width: 36, height: 36 +Child: 99, type: 0, width: 147, height: 21 +Child: 100, message: Gold clasps +Child: 101, type: 5, width: 36, height: 36 +Child: 102, type: 0, width: 147, height: 21 +Child: 103, message: Gold bangles +Child: 104, type: 5, width: 36, height: 36 +Child: 105, type: 0, width: 147, height: 21 +Child: 106, message: Gold banding +Child: 107, type: 5, width: 36, height: 36 +Child: 108, type: 0, width: 147, height: 21 +Child: 109, message: Gold bands +Child: 110, type: 5, width: 36, height: 36 +Child: 111, type: 0, width: 147, height: 21 +Child: 112, message: Gold armguards +Child: 113, type: 5, width: 36, height: 36 +Child: 114, type: 0, width: 147, height: 21 +Child: 115, type: 0, width: 173, height: 194 +Child: 116, type: 0, width: 173, height: 194 +Child: 117, type: 5, width: 42, height: 42 +Child: 118, message: 500 Coins +Child: 119, type: 0, width: 75, height: 71 +Child: 120, type: 5, width: 42, height: 42 +Child: 121, type: 5, width: 42, height: 42 +Child: 122, type: 3, width: 20, height: 20 +Child: 123, type: 3, width: 20, height: 20 +Child: 124, type: 3, width: 20, height: 20 +Child: 125, type: 3, width: 20, height: 20 +Child: 126, type: 3, width: 20, height: 20 +Child: 127, type: 3, width: 20, height: 20 +Child: 128, type: 3, width: 20, height: 20 +Child: 129, type: 3, width: 20, height: 20 +Child: 130, type: 3, width: 20, height: 20 +Child: 131, type: 3, width: 20, height: 20 +Child: 132, type: 3, width: 20, height: 20 +Child: 133, type: 3, width: 20, height: 20 +Child: 134, type: 3, width: 20, height: 20 +Child: 135, type: 3, width: 20, height: 20 +Child: 136, type: 5, width: 16, height: 16 +Child: 137, type: 0, width: 512, height: 334 +Child: 138, type: 9, width: 176, height: 0 +Child: 139, type: 9, width: 0, height: 188 +Child: 140, type: 9, width: 0, height: 188 +Child: 141, type: 9, width: 176, height: 0 +Child: 142, type: 9, width: 143, height: 0 +Child: 143, type: 9, width: 0, height: 92 +Child: 144, type: 9, width: 0, height: 92 +Child: 145, type: 9, width: 143, height: 0 +Child: 146, type: 9, width: 133, height: 0 +Child: 147, type: 9, width: 0, height: 239 +Child: 148, type: 9, width: 0, height: 239 +Child: 149, type: 9, width: 133, height: 0 +Child: 150, type: 5, width: 23, height: 23 +Child: 151, type: 0, width: 512, height: 334 +Child: 152, type: 0, width: 200, height: 200 diff --git a/server508/lists/interfaces/596.txt b/server508/lists/interfaces/596.txt new file mode 100644 index 0000000..5999f06 --- /dev/null +++ b/server508/lists/interfaces/596.txt @@ -0,0 +1,272 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 130, height: 10 +Child: 14, type: 3, width: 130, height: 10 +Child: 15, type: 3, width: 130, height: 10 +Child: 16, type: 3, width: 130, height: 10 +Child: 17, type: 3, width: 130, height: 10 +Child: 18, type: 3, width: 130, height: 10 +Child: 19, type: 3, width: 130, height: 10 +Child: 20, type: 3, width: 130, height: 10 +Child: 21, type: 3, width: 130, height: 10 +Child: 22, type: 3, width: 130, height: 10 +Child: 23, type: 3, width: 130, height: 10 +Child: 24, type: 3, width: 130, height: 10 +Child: 25, type: 3, width: 130, height: 10 +Child: 26, type: 3, width: 130, height: 10 +Child: 27, type: 3, width: 130, height: 10 +Child: 28, type: 3, width: 130, height: 10 +Child: 29, type: 3, width: 130, height: 10 +Child: 30, type: 3, width: 130, height: 10 +Child: 31, type: 3, width: 130, height: 10 +Child: 32, type: 3, width: 130, height: 10 +Child: 33, type: 3, width: 130, height: 10 +Child: 34, type: 3, width: 130, height: 10 +Child: 35, type: 3, width: 130, height: 10 +Child: 36, type: 3, width: 130, height: 10 +Child: 37, type: 3, width: 130, height: 10 +Child: 38, type: 0, width: 130, height: 246 +Child: 39, type: 3, width: 173, height: 7 +Child: 40, type: 3, width: 173, height: 10 +Child: 41, type: 3, width: 173, height: 10 +Child: 42, type: 3, width: 173, height: 10 +Child: 43, type: 3, width: 173, height: 10 +Child: 44, type: 3, width: 173, height: 10 +Child: 45, type: 3, width: 173, height: 10 +Child: 46, type: 3, width: 173, height: 13 +Child: 47, type: 0, width: 173, height: 120 +Child: 48, type: 3, width: 189, height: 10 +Child: 49, type: 3, width: 189, height: 10 +Child: 50, type: 3, width: 189, height: 10 +Child: 51, type: 3, width: 189, height: 10 +Child: 52, type: 3, width: 189, height: 10 +Child: 53, type: 3, width: 189, height: 10 +Child: 54, type: 3, width: 189, height: 10 +Child: 55, type: 3, width: 189, height: 10 +Child: 56, type: 3, width: 189, height: 10 +Child: 57, type: 3, width: 189, height: 10 +Child: 58, type: 3, width: 189, height: 9 +Child: 59, type: 0, width: 512, height: 334 +Child: 60, type: 0, width: 189, height: 109 +Child: 61, type: 6, width: 49, height: 21 +Child: 62, type: 0, width: 131, height: 245 +Child: 63, type: 6, width: 112, height: 198 +Child: 64, message: Hairdresser's Salon +Child: 65, message: Bald +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 0, width: 147, height: 21 +Child: 68, message: Dreadlocks +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 0, width: 147, height: 21 +Child: 71, message: Long hair +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 0, width: 147, height: 21 +Child: 74, message: Medium hair +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 0, width: 147, height: 21 +Child: 77, message: Monk +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 147, height: 21 +Child: 80, message: Short +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 0, width: 147, height: 21 +Child: 83, message: Close-cropped +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 0, width: 147, height: 21 +Child: 86, message: Wild spikes +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 0, width: 147, height: 21 +Child: 89, message: Spikes +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 0, width: 147, height: 21 +Child: 92, message: Mohawk +Child: 93, type: 5, width: 36, height: 36 +Child: 94, type: 0, width: 147, height: 21 +Child: 95, message: Wind braids +Child: 96, type: 5, width: 36, height: 36 +Child: 97, type: 0, width: 147, height: 21 +Child: 98, message: Quiff +Child: 99, type: 5, width: 36, height: 36 +Child: 100, type: 0, width: 147, height: 21 +Child: 101, message: Samurai +Child: 102, type: 5, width: 36, height: 36 +Child: 103, type: 0, width: 147, height: 21 +Child: 104, message: Prince +Child: 105, type: 5, width: 36, height: 36 +Child: 106, type: 0, width: 147, height: 21 +Child: 107, message: Curtains +Child: 108, type: 5, width: 36, height: 36 +Child: 109, type: 0, width: 147, height: 21 +Child: 110, message: Long curtains +Child: 111, type: 5, width: 36, height: 36 +Child: 112, type: 0, width: 147, height: 21 +Child: 113, message: Goatee +Child: 114, type: 5, width: 36, height: 36 +Child: 115, type: 0, width: 147, height: 21 +Child: 116, message: Long beard +Child: 117, type: 5, width: 36, height: 36 +Child: 118, type: 0, width: 147, height: 21 +Child: 119, message: Medium beard +Child: 120, type: 5, width: 36, height: 36 +Child: 121, type: 0, width: 147, height: 21 +Child: 122, message: Moustache +Child: 123, type: 5, width: 36, height: 36 +Child: 124, type: 0, width: 147, height: 21 +Child: 125, message: Clean shaven +Child: 126, type: 5, width: 36, height: 36 +Child: 127, type: 0, width: 147, height: 21 +Child: 128, message: Short beard +Child: 129, type: 5, width: 36, height: 36 +Child: 130, type: 0, width: 147, height: 21 +Child: 131, message: Short full +Child: 132, type: 5, width: 36, height: 36 +Child: 133, type: 0, width: 147, height: 21 +Child: 134, message: Split +Child: 135, type: 5, width: 36, height: 36 +Child: 136, type: 0, width: 147, height: 21 +Child: 137, message: Handlebar +Child: 138, type: 5, width: 36, height: 36 +Child: 139, type: 0, width: 147, height: 21 +Child: 140, message: Mutton +Child: 141, type: 5, width: 36, height: 36 +Child: 142, type: 0, width: 147, height: 21 +Child: 143, message: Full mutton +Child: 144, type: 5, width: 36, height: 36 +Child: 145, type: 0, width: 147, height: 21 +Child: 146, message: Full moustache +Child: 147, type: 5, width: 36, height: 36 +Child: 148, type: 0, width: 147, height: 21 +Child: 149, message: Waxed +Child: 150, type: 5, width: 36, height: 36 +Child: 151, type: 0, width: 147, height: 21 +Child: 152, message: Dali +Child: 153, type: 5, width: 36, height: 36 +Child: 154, type: 0, width: 147, height: 21 +Child: 155, message: Vizier +Child: 156, type: 5, width: 36, height: 36 +Child: 157, type: 0, width: 147, height: 21 +Child: 158, type: 0, width: 173, height: 80 +Child: 159, type: 0, width: 173, height: 80 +Child: 160, type: 5, width: 42, height: 42 +Child: 161, message: 2,000 Coins +Child: 162, type: 0, width: 70, height: 71 +Child: 163, type: 5, width: 42, height: 42 +Child: 164, type: 5, width: 42, height: 42 +Child: 165, type: 0, width: 16, height: 80 +Child: 166, type: 0, width: 16, height: 80 +Child: 167, type: 3, width: 20, height: 20 +Child: 168, type: 3, width: 20, height: 20 +Child: 169, type: 3, width: 20, height: 20 +Child: 170, type: 3, width: 20, height: 20 +Child: 171, type: 3, width: 20, height: 20 +Child: 172, type: 3, width: 20, height: 20 +Child: 173, type: 3, width: 20, height: 20 +Child: 174, type: 3, width: 20, height: 20 +Child: 175, type: 3, width: 20, height: 20 +Child: 176, type: 3, width: 20, height: 20 +Child: 177, type: 3, width: 20, height: 20 +Child: 178, type: 3, width: 20, height: 20 +Child: 179, type: 3, width: 20, height: 20 +Child: 180, type: 3, width: 20, height: 20 +Child: 181, type: 3, width: 20, height: 20 +Child: 182, type: 3, width: 20, height: 20 +Child: 183, type: 3, width: 20, height: 20 +Child: 184, type: 3, width: 20, height: 20 +Child: 185, type: 3, width: 20, height: 20 +Child: 186, type: 3, width: 20, height: 20 +Child: 187, type: 3, width: 20, height: 20 +Child: 188, type: 3, width: 20, height: 20 +Child: 189, type: 3, width: 20, height: 20 +Child: 190, type: 3, width: 20, height: 20 +Child: 191, type: 3, width: 20, height: 20 +Child: 192, type: 3, width: 20, height: 20 +Child: 193, type: 3, width: 20, height: 20 +Child: 194, type: 3, width: 20, height: 20 +Child: 195, type: 3, width: 20, height: 20 +Child: 196, type: 3, width: 20, height: 20 +Child: 197, type: 3, width: 20, height: 20 +Child: 198, type: 0, width: 95, height: 195 +Child: 199, type: 3, width: 21, height: 21 +Child: 200, type: 3, width: 21, height: 21 +Child: 201, type: 3, width: 21, height: 21 +Child: 202, type: 3, width: 21, height: 21 +Child: 203, type: 3, width: 21, height: 21 +Child: 204, type: 3, width: 21, height: 21 +Child: 205, type: 3, width: 21, height: 21 +Child: 206, type: 3, width: 21, height: 21 +Child: 207, type: 3, width: 21, height: 21 +Child: 208, type: 3, width: 21, height: 21 +Child: 209, type: 3, width: 21, height: 21 +Child: 210, type: 3, width: 21, height: 21 +Child: 211, type: 3, width: 21, height: 21 +Child: 212, type: 3, width: 21, height: 21 +Child: 213, type: 3, width: 21, height: 21 +Child: 214, type: 3, width: 21, height: 21 +Child: 215, type: 3, width: 21, height: 21 +Child: 216, type: 3, width: 21, height: 21 +Child: 217, type: 3, width: 21, height: 21 +Child: 218, type: 3, width: 21, height: 21 +Child: 219, type: 3, width: 21, height: 21 +Child: 220, type: 3, width: 21, height: 21 +Child: 221, type: 3, width: 21, height: 21 +Child: 222, type: 3, width: 21, height: 21 +Child: 223, type: 3, width: 21, height: 21 +Child: 224, type: 5, width: 21, height: 21 +Child: 225, type: 5, width: 21, height: 21 +Child: 226, type: 5, width: 21, height: 21 +Child: 227, type: 5, width: 21, height: 21 +Child: 228, type: 5, width: 21, height: 21 +Child: 229, type: 5, width: 21, height: 21 +Child: 230, type: 5, width: 21, height: 21 +Child: 231, type: 5, width: 21, height: 21 +Child: 232, type: 5, width: 21, height: 21 +Child: 233, type: 5, width: 21, height: 21 +Child: 234, type: 5, width: 21, height: 21 +Child: 235, type: 5, width: 21, height: 21 +Child: 236, type: 5, width: 21, height: 21 +Child: 237, type: 5, width: 21, height: 21 +Child: 238, type: 5, width: 21, height: 21 +Child: 239, type: 5, width: 21, height: 21 +Child: 240, type: 5, width: 21, height: 21 +Child: 241, type: 5, width: 21, height: 21 +Child: 242, type: 5, width: 21, height: 21 +Child: 243, type: 5, width: 21, height: 21 +Child: 244, type: 5, width: 21, height: 21 +Child: 245, type: 5, width: 21, height: 21 +Child: 246, type: 5, width: 21, height: 21 +Child: 247, type: 5, width: 21, height: 21 +Child: 248, type: 5, width: 21, height: 21 +Child: 249, type: 5, width: 16, height: 16 +Child: 250, type: 0, width: 512, height: 334 +Child: 251, type: 9, width: 176, height: 0 +Child: 252, type: 9, width: 0, height: 82 +Child: 253, type: 9, width: 0, height: 82 +Child: 254, type: 9, width: 174, height: 0 +Child: 255, type: 9, width: 192, height: 0 +Child: 256, type: 9, width: 0, height: 110 +Child: 257, type: 9, width: 0, height: 110 +Child: 258, type: 9, width: 192, height: 0 +Child: 259, type: 9, width: 132, height: 0 +Child: 260, type: 9, width: 0, height: 244 +Child: 261, type: 9, width: 0, height: 244 +Child: 262, type: 9, width: 132, height: 0 +Child: 263, type: 9, width: 93, height: 0 +Child: 264, type: 9, width: 0, height: 160 +Child: 265, type: 9, width: 0, height: 137 +Child: 266, type: 9, width: 24, height: 0 +Child: 267, type: 9, width: 69, height: 0 +Child: 268, type: 9, width: 0, height: 21 +Child: 269, type: 5, width: 23, height: 23 +Child: 270, type: 0, width: 512, height: 334 +Child: 271, type: 0, width: 92, height: 160 diff --git a/server508/lists/interfaces/597.txt b/server508/lists/interfaces/597.txt new file mode 100644 index 0000000..11b6cef --- /dev/null +++ b/server508/lists/interfaces/597.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, message: NPC Killcount +Child: 3, message: Armadyl kills +Child: 4, message: Bandos kills +Child: 5, message: Saradomin kills +Child: 6, message: Zamorak kills +Child: 7, message: 0 +Child: 8, message: 0 +Child: 9, message: 0 +Child: 10, message: 0 diff --git a/server508/lists/interfaces/598.txt b/server508/lists/interfaces/598.txt new file mode 100644 index 0000000..11b6cef --- /dev/null +++ b/server508/lists/interfaces/598.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, message: NPC Killcount +Child: 3, message: Armadyl kills +Child: 4, message: Bandos kills +Child: 5, message: Saradomin kills +Child: 6, message: Zamorak kills +Child: 7, message: 0 +Child: 8, message: 0 +Child: 9, message: 0 +Child: 10, message: 0 diff --git a/server508/lists/interfaces/599.txt b/server508/lists/interfaces/599.txt new file mode 100644 index 0000000..11b6cef --- /dev/null +++ b/server508/lists/interfaces/599.txt @@ -0,0 +1,11 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, message: NPC Killcount +Child: 3, message: Armadyl kills +Child: 4, message: Bandos kills +Child: 5, message: Saradomin kills +Child: 6, message: Zamorak kills +Child: 7, message: 0 +Child: 8, message: 0 +Child: 9, message: 0 +Child: 10, message: 0 diff --git a/server508/lists/interfaces/6.txt b/server508/lists/interfaces/6.txt new file mode 100644 index 0000000..b66b66a --- /dev/null +++ b/server508/lists/interfaces/6.txt @@ -0,0 +1,108 @@ +Child: 0, type: 5, width: 88, height: 60 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 25, height: 30 +Child: 31, type: 5, width: 36, height: 36 +Child: 32, type: 5, width: 36, height: 36 +Child: 33, type: 5, width: 36, height: 36 +Child: 34, type: 5, width: 36, height: 36 +Child: 35, type: 5, width: 36, height: 36 +Child: 36, type: 5, width: 36, height: 36 +Child: 37, type: 5, width: 36, height: 36 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 25, height: 30 +Child: 71, type: 5, width: 25, height: 30 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 25, height: 30 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 6, width: 50, height: 49 +Child: 89, type: 6, width: 47, height: 44 +Child: 90, message: Brimhaven Agility Arena Ticket Exchange +Child: 91, message: Toadflax +Child: 92, message: Pirate's hook +Child: 93, type: 6, width: 39, height: 56 +Child: 94, message: Experience (1) +Child: 95, type: 6, width: 39, height: 56 +Child: 96, type: 6, width: 39, height: 56 +Child: 97, type: 6, width: 39, height: 56 +Child: 98, type: 6, width: 39, height: 56 +Child: 99, type: 6, width: 47, height: 44 +Child: 100, message: Snapdragon +Child: 101, message: Experience (10) +Child: 102, message: Experience (25) +Child: 103, message: Experience (100) +Child: 104, message: Experience (1000) +Child: 105, type: 5, width: 26, height: 23 +Child: 106, type: 5, width: 26, height: 23 +Child: 107, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/60.txt b/server508/lists/interfaces/60.txt new file mode 100644 index 0000000..46ab42b --- /dev/null +++ b/server508/lists/interfaces/60.txt @@ -0,0 +1,19 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, message: Castle Wars Ticket Exchange +Child: 15, message: Use tickets to buy: +Child: 16, message: Use coins to buy: +Child: 17, type: 0, width: 358, height: 141 +Child: 18, type: 0, width: 359, height: 46 diff --git a/server508/lists/interfaces/600.txt b/server508/lists/interfaces/600.txt new file mode 100644 index 0000000..4c96508 --- /dev/null +++ b/server508/lists/interfaces/600.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This way leads into the Wilderness and is only
one way! Are you sure you want to go down here? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Yes, I'm fearless +Child: 18, message: Nope, that doesn't seem like a sensible
thing to do +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/601.txt b/server508/lists/interfaces/601.txt new file mode 100644 index 0000000..a698f6a --- /dev/null +++ b/server508/lists/interfaces/601.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, message: NPC Killcount +Child: 2, message: Armadyl kills +Child: 3, message: Bandos kills +Child: 4, message: Saradomin kills +Child: 5, message: Zamorak kills +Child: 6, message: 0 +Child: 7, message: 0 +Child: 8, message: 0 +Child: 9, message: 0 diff --git a/server508/lists/interfaces/602.txt b/server508/lists/interfaces/602.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/602.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/603.txt b/server508/lists/interfaces/603.txt new file mode 100644 index 0000000..5414739 --- /dev/null +++ b/server508/lists/interfaces/603.txt @@ -0,0 +1,23 @@ +Child: 0, type: 3, width: 700, height: 400 +Child: 1, type: 6, width: 318, height: 497 +Child: 2, type: 6, width: 118, height: 126 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 0, width: 8192, height: 16391 +Child: 7, type: 0, width: 8188, height: 16391 +Child: 8, type: 0, width: 16391, height: 8192 +Child: 9, type: 0, width: 16391, height: 8182 +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 5, width: 256, height: 16384 +Child: 12, type: 5, width: 256, height: 16391 +Child: 13, type: 5, width: 16391, height: 167 +Child: 14, type: 5, width: 16391, height: 166 +Child: 15, type: 5, width: 32, height: 334 +Child: 16, type: 5, width: 462, height: 32 +Child: 17, type: 5, width: 512, height: 32 +Child: 18, type: 5, width: 32, height: 334 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 diff --git a/server508/lists/interfaces/604.txt b/server508/lists/interfaces/604.txt new file mode 100644 index 0000000..75db28f --- /dev/null +++ b/server508/lists/interfaces/604.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 32 +Child: 4, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/605.txt b/server508/lists/interfaces/605.txt new file mode 100644 index 0000000..a351f30 --- /dev/null +++ b/server508/lists/interfaces/605.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 20679, height: 23503 +Child: 1, type: 6, width: 16807, height: 19088 +Child: 2, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/606.txt b/server508/lists/interfaces/606.txt new file mode 100644 index 0000000..c08abcb --- /dev/null +++ b/server508/lists/interfaces/606.txt @@ -0,0 +1,23 @@ +Child: 0, type: 3, width: 16487, height: 16341 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 6, width: 318, height: 497 +Child: 3, type: 6, width: 166, height: 127 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 5, width: 32, height: 334 +Child: 7, type: 5, width: 462, height: 32 +Child: 8, type: 5, width: 512, height: 32 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 8192, height: 16391 +Child: 15, type: 0, width: 8188, height: 16391 +Child: 16, type: 0, width: 16391, height: 8192 +Child: 17, type: 0, width: 16391, height: 8182 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 5, width: 256, height: 16384 +Child: 20, type: 5, width: 256, height: 16391 +Child: 21, type: 5, width: 16391, height: 167 +Child: 22, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/607.txt b/server508/lists/interfaces/607.txt new file mode 100644 index 0000000..c3eeb7d --- /dev/null +++ b/server508/lists/interfaces/607.txt @@ -0,0 +1,25 @@ +Child: 0, type: 6, width: 1742, height: 1073 +Child: 1, type: 6, width: 417, height: 457 +Child: 2, type: 6, width: 686, height: 618 +Child: 3, type: 6, width: 453, height: 463 +Child: 4, type: 6, width: 588, height: 395 +Child: 5, type: 0, width: 512, height: 334 +Child: 6, type: 0, width: 16391, height: 16391 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 5, width: 32, height: 334 +Child: 9, type: 5, width: 462, height: 32 +Child: 10, type: 5, width: 512, height: 32 +Child: 11, type: 5, width: 32, height: 334 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 0, width: 8192, height: 16391 +Child: 17, type: 0, width: 8188, height: 16391 +Child: 18, type: 0, width: 16391, height: 8192 +Child: 19, type: 0, width: 16391, height: 8182 +Child: 20, type: 0, width: 512, height: 334 +Child: 21, type: 5, width: 256, height: 16384 +Child: 22, type: 5, width: 256, height: 16391 +Child: 23, type: 5, width: 16391, height: 167 +Child: 24, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/608.txt b/server508/lists/interfaces/608.txt new file mode 100644 index 0000000..2fbf0dc --- /dev/null +++ b/server508/lists/interfaces/608.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 18279, height: 16734 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, type: 6, width: 6380, height: 10593 +Child: 3, type: 0, width: 16295, height: 19138 diff --git a/server508/lists/interfaces/609.txt b/server508/lists/interfaces/609.txt new file mode 100644 index 0000000..053920e --- /dev/null +++ b/server508/lists/interfaces/609.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 55751, height: 52641 +Child: 1, type: 6, width: 9031, height: 38759 +Child: 2, type: 6, width: 5863, height: 15409 +Child: 3, type: 6, width: 7463, height: 31156 +Child: 4, type: 0, width: 16384, height: 16384 diff --git a/server508/lists/interfaces/61.txt b/server508/lists/interfaces/61.txt new file mode 100644 index 0000000..0d8e71a --- /dev/null +++ b/server508/lists/interfaces/61.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 521, height: 346 +Child: 2, type: 3, width: 508, height: 172 +Child: 3, type: 3, width: 499, height: 164 +Child: 4, type: 0, width: 488, height: 36 +Child: 5, type: 6, width: 83, height: 80 +Child: 6, type: 6, width: 83, height: 80 +Child: 7, type: 6, width: 83, height: 80 +Child: 8, type: 6, width: 83, height: 80 +Child: 9, type: 6, width: 83, height: 80 +Child: 10, type: 6, width: 83, height: 80 +Child: 11, message: A +Child: 12, message: A +Child: 13, message: A +Child: 14, message: A +Child: 15, message: A +Child: 16, message: A +Child: 17, type: 6, width: 361, height: 93 +Child: 18, type: 5, width: 31, height: 24 +Child: 19, type: 5, width: 31, height: 24 +Child: 20, type: 5, width: 32, height: 25 +Child: 21, type: 5, width: 32, height: 25 +Child: 22, type: 5, width: 32, height: 25 +Child: 23, type: 5, width: 32, height: 25 +Child: 24, type: 5, width: 32, height: 25 +Child: 25, type: 5, width: 32, height: 25 +Child: 26, type: 5, width: 32, height: 25 +Child: 27, type: 5, width: 32, height: 25 +Child: 28, type: 5, width: 32, height: 25 +Child: 29, type: 5, width: 32, height: 25 +Child: 30, type: 5, width: 26, height: 23 +Child: 31, message: Name Your Cat +Child: 32, type: 3, width: 128, height: 32 +Child: 33, message: E N T E R +Child: 34, type: 6, width: 80, height: 86 +Child: 35, type: 6, width: 70, height: 87 +Child: 36, type: 6, width: 8, height: 8 +Child: 37, type: 6, width: 6, height: 6 +Child: 38, type: 6, width: 8, height: 7 +Child: 39, type: 6, width: 6, height: 6 +Child: 40, type: 0, width: 32, height: 32 +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/610.txt b/server508/lists/interfaces/610.txt new file mode 100644 index 0000000..779dee0 --- /dev/null +++ b/server508/lists/interfaces/610.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 3, width: 1, height: 16391 diff --git a/server508/lists/interfaces/611.txt b/server508/lists/interfaces/611.txt new file mode 100644 index 0000000..7a2a96d --- /dev/null +++ b/server508/lists/interfaces/611.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 16455, height: 16489 +Child: 1, type: 6, width: 187, height: 324 +Child: 2, type: 6, width: 187, height: 324 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/612.txt b/server508/lists/interfaces/612.txt new file mode 100644 index 0000000..850c6d7 --- /dev/null +++ b/server508/lists/interfaces/612.txt @@ -0,0 +1,4 @@ +Child: 0, type: 3, width: 514, height: 336 +Child: 1, type: 6, width: 179, height: 306 +Child: 2, type: 6, width: 195, height: 315 +Child: 3, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/613.txt b/server508/lists/interfaces/613.txt new file mode 100644 index 0000000..62d87ca --- /dev/null +++ b/server508/lists/interfaces/613.txt @@ -0,0 +1,44 @@ +Child: 0, type: 3, width: 515, height: 335 +Child: 1, type: 6, width: 285, height: 425 +Child: 2, type: 6, width: 197, height: 259 +Child: 3, type: 6, width: 65, height: 59 +Child: 4, type: 6, width: 61, height: 50 +Child: 5, type: 6, width: 31, height: 25 +Child: 6, type: 0, width: 38, height: 38 +Child: 7, type: 0, width: 38, height: 38 +Child: 8, type: 6, width: 35, height: 144 +Child: 9, type: 5, width: 36, height: 32 +Child: 10, type: 5, width: 36, height: 32 +Child: 11, type: 5, width: 36, height: 32 +Child: 12, type: 5, width: 36, height: 32 +Child: 13, type: 5, width: 26, height: 23 +Child: 14, type: 0, width: 32, height: 32 +Child: 15, type: 5, width: 36, height: 32 +Child: 16, type: 5, width: 36, height: 32 +Child: 17, type: 5, width: 36, height: 32 +Child: 18, type: 0, width: 160, height: 227 +Child: 19, type: 0, width: 160, height: 227 +Child: 20, type: 6, width: 18, height: 37 +Child: 21, type: 6, width: 18, height: 37 +Child: 22, type: 0, width: 512, height: 334 +Child: 23, type: 0, width: 10, height: 10 +Child: 24, type: 0, width: 10, height: 10 +Child: 25, type: 0, width: 16391, height: 16391 +Child: 26, type: 0, width: 16391, height: 16391 +Child: 27, type: 5, width: 32, height: 334 +Child: 28, type: 5, width: 462, height: 32 +Child: 29, type: 5, width: 512, height: 32 +Child: 30, type: 5, width: 32, height: 334 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 32, height: 32 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 0, width: 8192, height: 16391 +Child: 36, type: 0, width: 8188, height: 16391 +Child: 37, type: 0, width: 16391, height: 8192 +Child: 38, type: 0, width: 16391, height: 8182 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 5, width: 256, height: 16384 +Child: 41, type: 5, width: 256, height: 16391 +Child: 42, type: 5, width: 16391, height: 167 +Child: 43, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/614.txt b/server508/lists/interfaces/614.txt new file mode 100644 index 0000000..d4949a8 --- /dev/null +++ b/server508/lists/interfaces/614.txt @@ -0,0 +1,23 @@ +Child: 0, type: 6, width: 55751, height: 52641 +Child: 1, type: 6, width: 6119, height: 15458 +Child: 2, type: 6, width: 5863, height: 15409 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 5, width: 32, height: 334 +Child: 7, type: 5, width: 462, height: 32 +Child: 8, type: 5, width: 512, height: 32 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 8192, height: 16391 +Child: 15, type: 0, width: 8188, height: 16391 +Child: 16, type: 0, width: 16391, height: 8192 +Child: 17, type: 0, width: 16391, height: 8182 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 5, width: 256, height: 16384 +Child: 20, type: 5, width: 256, height: 16391 +Child: 21, type: 5, width: 16391, height: 167 +Child: 22, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/615.txt b/server508/lists/interfaces/615.txt new file mode 100644 index 0000000..387429f --- /dev/null +++ b/server508/lists/interfaces/615.txt @@ -0,0 +1,24 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 16391, height: 16391 +Child: 3, type: 0, width: 16391, height: 16391 +Child: 4, type: 3, width: 16391, height: 16391 +Child: 5, type: 6, width: 124, height: 273 +Child: 6, type: 0, width: 16391, height: 16391 +Child: 7, type: 5, width: 32, height: 334 +Child: 8, type: 5, width: 462, height: 32 +Child: 9, type: 5, width: 512, height: 32 +Child: 10, type: 5, width: 32, height: 334 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 0, width: 8192, height: 16391 +Child: 16, type: 0, width: 8188, height: 16391 +Child: 17, type: 0, width: 16391, height: 8192 +Child: 18, type: 0, width: 16391, height: 8182 +Child: 19, type: 0, width: 512, height: 334 +Child: 20, type: 5, width: 256, height: 16384 +Child: 21, type: 5, width: 256, height: 16391 +Child: 22, type: 5, width: 16391, height: 167 +Child: 23, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/616.txt b/server508/lists/interfaces/616.txt new file mode 100644 index 0000000..d23bb1b --- /dev/null +++ b/server508/lists/interfaces/616.txt @@ -0,0 +1,5 @@ +Child: 0, type: 3, width: 16455, height: 16440 +Child: 1, type: 6, width: 16583, height: 12466 +Child: 2, type: 6, width: 3047, height: 9278 +Child: 3, type: 6, width: 3207, height: 14723 +Child: 4, type: 6, width: 2631, height: 10651 diff --git a/server508/lists/interfaces/617.txt b/server508/lists/interfaces/617.txt new file mode 100644 index 0000000..796c05c --- /dev/null +++ b/server508/lists/interfaces/617.txt @@ -0,0 +1,30 @@ +Child: 0, type: 6, width: 35, height: 35 +Child: 1, type: 5, width: 350, height: 36 +Child: 2, type: 5, width: 39, height: 39 +Child: 3, type: 5, width: 352, height: 30 +Child: 4, type: 5, width: 39, height: 39 +Child: 5, type: 0, width: 487, height: 45 +Child: 6, type: 5, width: 21, height: 21 +Child: 7, message: Bolrie's Diary +Child: 8, message: Chapter 1. Bad advice +Child: 9, message: In which Bolrie is advised by +Child: 10, message: a mysterious stranger, and +Child: 11, message: ambition is fed. +Child: 12, message: +Child: 13, message: Chapter 2. The King is dead +Child: 14, message: In which a great king dies +Child: 15, message: and the search for a new +Child: 16, message: one begins. +Child: 17, message: +Child: 18, message: +Child: 19, message: Chapter 3. Eyes opened +Child: 20, message: In which a secret is revealed, +Child: 21, message: an old foe reappears and +Child: 22, message: ambitions end. +Child: 23, message: +Child: 24, message: Finally, I understand my +Child: 25, message: failings and my true enemies. +Child: 26, message: I dedicate the rest of my +Child: 27, message: shattered life to the task of +Child: 28, message: eradicating them both. +Child: 29, message: Bolrie diff --git a/server508/lists/interfaces/618.txt b/server508/lists/interfaces/618.txt new file mode 100644 index 0000000..935ea2c --- /dev/null +++ b/server508/lists/interfaces/618.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 55751, height: 52641 +Child: 1, type: 6, width: 5863, height: 15409 +Child: 2, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/619.txt b/server508/lists/interfaces/619.txt new file mode 100644 index 0000000..0a4b75c --- /dev/null +++ b/server508/lists/interfaces/619.txt @@ -0,0 +1,60 @@ +Child: 0, type: 3, width: 380, height: 295 +Child: 1, type: 5, width: 374, height: 290 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 349, height: 34 +Child: 6, type: 5, width: 358, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 365, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 3, width: 47, height: 43 +Child: 15, type: 3, width: 47, height: 43 +Child: 16, type: 3, width: 47, height: 43 +Child: 17, type: 3, width: 47, height: 43 +Child: 18, type: 3, width: 47, height: 43 +Child: 19, type: 3, width: 47, height: 43 +Child: 20, type: 3, width: 47, height: 43 +Child: 21, type: 3, width: 47, height: 43 +Child: 22, type: 3, width: 47, height: 43 +Child: 23, type: 3, width: 47, height: 43 +Child: 24, type: 3, width: 47, height: 43 +Child: 25, type: 3, width: 47, height: 43 +Child: 26, type: 3, width: 47, height: 43 +Child: 27, type: 3, width: 47, height: 43 +Child: 28, type: 6, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 6, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 6, width: 32, height: 32 +Child: 33, type: 6, width: 32, height: 32 +Child: 34, type: 6, width: 32, height: 32 +Child: 35, type: 6, width: 32, height: 32 +Child: 36, type: 6, width: 32, height: 32 +Child: 37, type: 6, width: 32, height: 32 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 6, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 6, width: 32, height: 32 +Child: 42, type: 0, width: 409, height: 309 +Child: 43, message: Pay Bank Charge With... +Child: 44, message: +Child: 45, type: 3, width: 47, height: 43 +Child: 46, type: 3, width: 47, height: 43 +Child: 47, type: 3, width: 47, height: 43 +Child: 48, type: 3, width: 47, height: 43 +Child: 49, type: 3, width: 47, height: 43 +Child: 50, type: 3, width: 47, height: 43 +Child: 51, type: 3, width: 47, height: 43 +Child: 52, type: 3, width: 47, height: 43 +Child: 53, type: 3, width: 47, height: 43 +Child: 54, type: 3, width: 47, height: 43 +Child: 55, type: 3, width: 47, height: 43 +Child: 56, type: 3, width: 47, height: 43 +Child: 57, type: 3, width: 47, height: 43 +Child: 58, type: 3, width: 47, height: 43 +Child: 59, type: 0, width: 335, height: 203 diff --git a/server508/lists/interfaces/62.txt b/server508/lists/interfaces/62.txt new file mode 100644 index 0000000..b76263c --- /dev/null +++ b/server508/lists/interfaces/62.txt @@ -0,0 +1,23 @@ +Child: 0, type: 6, width: 816, height: 702 +Child: 1, type: 6, width: 143, height: 120 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 5, width: 32, height: 334 +Child: 7, type: 5, width: 462, height: 32 +Child: 8, type: 5, width: 512, height: 32 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 8192, height: 16391 +Child: 15, type: 0, width: 8188, height: 16391 +Child: 16, type: 0, width: 16391, height: 8192 +Child: 17, type: 0, width: 16391, height: 8182 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 5, width: 256, height: 16384 +Child: 20, type: 5, width: 256, height: 16391 +Child: 21, type: 5, width: 16391, height: 167 +Child: 22, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/620.txt b/server508/lists/interfaces/620.txt new file mode 100644 index 0000000..61ab8d5 --- /dev/null +++ b/server508/lists/interfaces/620.txt @@ -0,0 +1,35 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 470, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 115, height: 20 +Child: 18, type: 5, width: 115, height: 20 +Child: 19, message: Player Stock +Child: 20, type: 5, width: 115, height: 20 +Child: 21, message: Main Stock +Child: 22, message: Lowe's Archery Emporium +Child: 23, type: 0, width: 391, height: 197 +Child: 24, type: 0, width: 391, height: 197 +Child: 25, type: 0, width: 115, height: 25 +Child: 26, type: 0, width: 122, height: 25 +Child: 27, type: 0, width: 122, height: 25 +Child: 28, message: Right-click on an item in the shop or your inventory to see the available options.
Compare the prices between the Main and Player Stock to find the best deals! +Child: 29, type: 0, width: 115, height: 25 +Child: 30, type: 5, width: 115, height: 20 +Child: 31, message: Player Stock +Child: 32, message: Main Stock +Child: 33, type: 5, width: 29, height: 29 +Child: 34, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/621.txt b/server508/lists/interfaces/621.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/621.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/622.txt b/server508/lists/interfaces/622.txt new file mode 100644 index 0000000..5eb7a71 --- /dev/null +++ b/server508/lists/interfaces/622.txt @@ -0,0 +1,5 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, type: 6, width: 110, height: 99 +Child: 3, type: 6, width: 108, height: 100 +Child: 4, message: Message of the week diff --git a/server508/lists/interfaces/623.txt b/server508/lists/interfaces/623.txt new file mode 100644 index 0000000..a1304b8 --- /dev/null +++ b/server508/lists/interfaces/623.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, type: 6, width: 110, height: 99 +Child: 3, type: 6, width: 108, height: 100 +Child: 4, message: Message of the week +Child: 5, type: 5, width: 25, height: 25 +Child: 6, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/624.txt b/server508/lists/interfaces/624.txt new file mode 100644 index 0000000..b90cd20 --- /dev/null +++ b/server508/lists/interfaces/624.txt @@ -0,0 +1,73 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 6, width: 235, height: 239 +Child: 15, type: 3, width: 15, height: 90 +Child: 16, type: 0, width: 15, height: 90 +Child: 17, type: 3, width: 15, height: 90 +Child: 18, type: 0, width: 15, height: 90 +Child: 19, type: 3, width: 16, height: 90 +Child: 20, type: 0, width: 15, height: 90 +Child: 21, type: 3, width: 14, height: 16 +Child: 22, type: 3, width: 14, height: 16 +Child: 23, type: 3, width: 14, height: 16 +Child: 24, type: 3, width: 14, height: 16 +Child: 25, type: 3, width: 14, height: 16 +Child: 26, type: 3, width: 14, height: 16 +Child: 27, type: 3, width: 12, height: 14 +Child: 28, type: 3, width: 12, height: 14 +Child: 29, type: 3, width: 12, height: 14 +Child: 30, type: 3, width: 12, height: 14 +Child: 31, type: 3, width: 12, height: 14 +Child: 32, type: 3, width: 12, height: 14 +Child: 33, type: 6, width: 113, height: 149 +Child: 34, type: 6, width: 189, height: 167 +Child: 35, type: 0, width: 512, height: 334 +Child: 36, type: 6, width: 167, height: 167 +Child: 37, type: 0, width: 512, height: 334 +Child: 38, type: 6, width: 121, height: 121 +Child: 39, type: 0, width: 512, height: 334 +Child: 40, type: 6, width: 67, height: 67 +Child: 41, type: 3, width: 190, height: 48 +Child: 42, type: 9, width: 193, height: 0 +Child: 43, type: 9, width: 192, height: 0 +Child: 44, type: 9, width: 0, height: 50 +Child: 45, type: 9, width: 0, height: 50 +Child: 46, message: Fairy Ring Power Relay +Child: 47, message: Assign power to each ring in proportion to its area: +Child: 48, type: 0, width: 16, height: 18 +Child: 49, type: 3, width: 16, height: 16 +Child: 50, type: 0, width: 16, height: 18 +Child: 51, type: 3, width: 16, height: 16 +Child: 52, type: 0, width: 16, height: 18 +Child: 53, type: 3, width: 16, height: 16 +Child: 54, type: 0, width: 16, height: 18 +Child: 55, type: 3, width: 16, height: 16 +Child: 56, type: 0, width: 16, height: 18 +Child: 57, type: 3, width: 16, height: 16 +Child: 58, type: 0, width: 16, height: 18 +Child: 59, type: 3, width: 16, height: 16 +Child: 60, type: 5, width: 108, height: 9 +Child: 61, type: 5, width: 106, height: 9 +Child: 62, type: 5, width: 9, height: 22 +Child: 63, type: 5, width: 9, height: 18 +Child: 64, type: 5, width: 9, height: 9 +Child: 65, type: 5, width: 9, height: 9 +Child: 66, type: 5, width: 9, height: 9 +Child: 67, type: 5, width: 9, height: 9 +Child: 68, message: Confirm +Child: 69, type: 0, width: 117, height: 29 +Child: 70, message: 0 +Child: 71, message: 0 +Child: 72, message: 0 diff --git a/server508/lists/interfaces/625.txt b/server508/lists/interfaces/625.txt new file mode 100644 index 0000000..a9b3718 --- /dev/null +++ b/server508/lists/interfaces/625.txt @@ -0,0 +1,107 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 465, height: 32 +Child: 5, type: 5, width: 424, height: 32 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 3, width: 222, height: 21 +Child: 14, type: 3, width: 222, height: 21 +Child: 15, type: 3, width: 222, height: 21 +Child: 16, type: 3, width: 222, height: 21 +Child: 17, type: 3, width: 222, height: 21 +Child: 18, type: 3, width: 222, height: 21 +Child: 19, type: 3, width: 222, height: 21 +Child: 20, type: 3, width: 222, height: 21 +Child: 21, type: 3, width: 222, height: 21 +Child: 22, type: 3, width: 222, height: 21 +Child: 23, type: 3, width: 222, height: 21 +Child: 24, type: 3, width: 222, height: 21 +Child: 25, type: 3, width: 222, height: 21 +Child: 26, type: 3, width: 222, height: 21 +Child: 27, type: 3, width: 222, height: 21 +Child: 28, type: 3, width: 222, height: 21 +Child: 29, type: 3, width: 222, height: 21 +Child: 30, type: 3, width: 222, height: 21 +Child: 31, type: 3, width: 222, height: 21 +Child: 32, type: 3, width: 222, height: 21 +Child: 33, type: 3, width: 222, height: 21 +Child: 34, type: 3, width: 222, height: 21 +Child: 35, type: 3, width: 222, height: 21 +Child: 36, type: 3, width: 222, height: 21 +Child: 37, type: 3, width: 222, height: 21 +Child: 38, type: 0, width: 222, height: 238 +Child: 39, type: 6, width: 140, height: 203 +Child: 40, type: 3, width: 173, height: 39 +Child: 41, type: 9, width: 176, height: 0 +Child: 42, type: 9, width: 176, height: 0 +Child: 43, type: 9, width: 0, height: 41 +Child: 44, type: 9, width: 0, height: 41 +Child: 45, message: Please select your goblin from the options below: +Child: 46, type: 3, width: 173, height: 7 +Child: 47, type: 3, width: 173, height: 10 +Child: 48, type: 3, width: 173, height: 10 +Child: 49, type: 3, width: 173, height: 10 +Child: 50, type: 3, width: 173, height: 10 +Child: 51, type: 3, width: 173, height: 10 +Child: 52, type: 3, width: 173, height: 10 +Child: 53, type: 3, width: 173, height: 10 +Child: 54, type: 3, width: 173, height: 10 +Child: 55, type: 3, width: 173, height: 10 +Child: 56, type: 3, width: 173, height: 10 +Child: 57, type: 3, width: 173, height: 10 +Child: 58, type: 3, width: 173, height: 10 +Child: 59, type: 3, width: 173, height: 10 +Child: 60, type: 3, width: 173, height: 10 +Child: 61, type: 3, width: 173, height: 10 +Child: 62, type: 3, width: 173, height: 10 +Child: 63, type: 3, width: 173, height: 10 +Child: 64, type: 3, width: 173, height: 9 +Child: 65, type: 0, width: 173, height: 236 +Child: 66, type: 0, width: 202, height: 226 +Child: 67, message: Select your Goblin +Child: 68, message: Goblin 1 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 0, width: 147, height: 21 +Child: 71, message: Goblin 2 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 0, width: 147, height: 21 +Child: 74, message: Goblin 3 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 0, width: 147, height: 21 +Child: 77, message: Goblin 4 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 147, height: 21 +Child: 80, message: Goblin 5 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 0, width: 147, height: 21 +Child: 83, message: Goblin 6 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 0, width: 147, height: 21 +Child: 86, type: 0, width: 173, height: 183 +Child: 87, type: 0, width: 16, height: 187 +Child: 88, type: 5, width: 16, height: 16 +Child: 89, type: 9, width: 176, height: 0 +Child: 90, type: 9, width: 0, height: 187 +Child: 91, type: 9, width: 0, height: 187 +Child: 92, type: 9, width: 176, height: 0 +Child: 93, type: 9, width: 225, height: 0 +Child: 94, type: 9, width: 0, height: 239 +Child: 95, type: 9, width: 0, height: 239 +Child: 96, type: 9, width: 225, height: 0 +Child: 97, type: 5, width: 106, height: 7 +Child: 98, type: 5, width: 103, height: 10 +Child: 99, type: 5, width: 15, height: 20 +Child: 100, type: 5, width: 9, height: 22 +Child: 101, type: 5, width: 9, height: 9 +Child: 102, type: 5, width: 9, height: 9 +Child: 103, type: 5, width: 9, height: 9 +Child: 104, type: 5, width: 9, height: 9 +Child: 105, message: Confirm +Child: 106, type: 0, width: 117, height: 29 diff --git a/server508/lists/interfaces/626.txt b/server508/lists/interfaces/626.txt new file mode 100644 index 0000000..b9e9be6 --- /dev/null +++ b/server508/lists/interfaces/626.txt @@ -0,0 +1,56 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 470, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 260 +Child: 16, type: 5, width: 226, height: 32 +Child: 17, type: 5, width: 241, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, message: Are you sure you want to fight this duel? +Child: 21, type: 0, width: 208, height: 129 +Child: 22, type: 0, width: 208, height: 129 +Child: 23, message: You are about to stake: +Child: 24, message: Your opponent will stake: +Child: 25, message: Absolutely nothing! +Child: 26, message: Absolutely nothing! +Child: 27, message: Before the duel starts: +Child: 28, message: There will be obstacles in the arena. +Child: 29, message: There will be obstacles in the arena. +Child: 30, message: There will be obstacles in the arena. +Child: 31, message: There will be obstacles in the arena. +Child: 32, message: During the duel: +Child: 33, message: There will be obstacles in the arena. +Child: 34, message: There will be obstacles in the arena. +Child: 35, message: There will be obstacles in the arena. +Child: 36, message: There will be obstacles in the arena. +Child: 37, message: There will be obstacles in the arena. +Child: 38, message: There will be obstacles in the arena. +Child: 39, message: There will be obstacles in the arena. +Child: 40, message: There will be obstacles in the arena. +Child: 41, message: Lots of y's and g's +Child: 42, message: There will be obstacles in the arena. +Child: 43, message: There will be obstacles in the arena. +Child: 44, message: There will be obstacles in the arena. +Child: 45, message: Waiting for other player... +Child: 46, message: +Child: 47, message: +Child: 48, type: 0, width: 196, height: 108 +Child: 49, type: 0, width: 196, height: 108 +Child: 50, type: 0, width: 16, height: 108 +Child: 51, type: 0, width: 16, height: 108 +Child: 52, type: 0, width: 70, height: 18 +Child: 53, message: Accept +Child: 54, type: 0, width: 70, height: 18 +Child: 55, message: Decline diff --git a/server508/lists/interfaces/627.txt b/server508/lists/interfaces/627.txt new file mode 100644 index 0000000..d783a40 --- /dev/null +++ b/server508/lists/interfaces/627.txt @@ -0,0 +1,20 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: Duelling is an honourable pastime. Anyone leaving a duel or tournament by ANY means, accidentally or deliberately, will lose their duel and their stake. No exceptions. +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Don't show me this again +Child: 18, type: 5, width: 19, height: 19 +Child: 19, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/628.txt b/server508/lists/interfaces/628.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/628.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/629.txt b/server508/lists/interfaces/629.txt new file mode 100644 index 0000000..8dd43b2 --- /dev/null +++ b/server508/lists/interfaces/629.txt @@ -0,0 +1,79 @@ +Child: 0, type: 3, width: 331, height: 315 +Child: 1, type: 5, width: 319, height: 302 +Child: 2, type: 5, width: 32, height: 257 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 23, height: 257 +Child: 5, type: 5, width: 270, height: 26 +Child: 6, type: 5, width: 269, height: 24 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 319, height: 32 +Child: 11, message: Tournament Value: +Child: 12, message: 0 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, type: 0, width: 148, height: 16 +Child: 15, type: 0, width: 148, height: 16 +Child: 16, type: 0, width: 148, height: 16 +Child: 17, type: 0, width: 148, height: 16 +Child: 18, type: 0, width: 148, height: 16 +Child: 19, type: 0, width: 148, height: 16 +Child: 20, type: 0, width: 148, height: 16 +Child: 21, type: 0, width: 148, height: 16 +Child: 22, type: 0, width: 148, height: 16 +Child: 23, type: 0, width: 148, height: 16 +Child: 24, type: 0, width: 148, height: 16 +Child: 25, type: 0, width: 148, height: 16 +Child: 26, type: 0, width: 148, height: 16 +Child: 27, type: 0, width: 148, height: 16 +Child: 28, type: 0, width: 148, height: 16 +Child: 29, type: 0, width: 148, height: 16 +Child: 30, type: 0, width: 148, height: 16 +Child: 31, type: 0, width: 148, height: 16 +Child: 32, type: 0, width: 148, height: 16 +Child: 33, type: 0, width: 148, height: 16 +Child: 34, type: 0, width: 148, height: 16 +Child: 35, type: 0, width: 148, height: 16 +Child: 36, type: 0, width: 148, height: 16 +Child: 37, type: 0, width: 148, height: 16 +Child: 38, type: 0, width: 148, height: 16 +Child: 39, type: 0, width: 148, height: 16 +Child: 40, message: Rank Required: +Child: 41, message: Entry Fee: +Child: 42, message: Potions: +Child: 43, message: Food: +Child: 44, message: Prayer: +Child: 45, message: Special Attacks: +Child: 46, message: Obstacles: +Child: 47, message: Ranged: +Child: 48, message: Melee: +Child: 49, message: Magic: +Child: 50, message: Heal Between Rounds: +Child: 51, message: Weapon Slots Only: +Child: 52, message: Summoning: +Child: 53, message: rank +Child: 54, message: fee +Child: 55, message: fee +Child: 56, message: fee +Child: 57, message: fee +Child: 58, message: spec +Child: 59, message: obstacles +Child: 60, message: ranged +Child: 61, message: melee +Child: 62, message: magic +Child: 63, message: heal +Child: 64, message: weapon +Child: 65, message: summon +Child: 66, type: 0, width: 71, height: 24 +Child: 67, message: Join +Child: 68, message: Join +Child: 69, message: Join +Child: 70, message: Join +Child: 71, message: Join +Child: 72, message: Resign +Child: 73, type: 0, width: 73, height: 24 +Child: 74, type: 0, width: 73, height: 24 +Child: 75, type: 0, width: 73, height: 24 +Child: 76, type: 0, width: 73, height: 24 +Child: 77, type: 0, width: 73, height: 24 +Child: 78, type: 0, width: 73, height: 24 diff --git a/server508/lists/interfaces/63.txt b/server508/lists/interfaces/63.txt new file mode 100644 index 0000000..a37a38c --- /dev/null +++ b/server508/lists/interfaces/63.txt @@ -0,0 +1,11 @@ +Child: 0, type: 6, width: 32, height: 28 +Child: 1, message: Congratulations! +Child: 2, message: Well done, you defeated the Champion! +Child: 3, type: 6, width: 85, height: 105 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, message: You are awarded: +Child: 6, message: %1 Slayer Xp +Child: 7, message: %1 Hitpoint Xp +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/630.txt b/server508/lists/interfaces/630.txt new file mode 100644 index 0000000..47fb810 --- /dev/null +++ b/server508/lists/interfaces/630.txt @@ -0,0 +1,38 @@ +Child: 0, type: 3, width: 16487, height: 16440 +Child: 1, type: 6, width: 312, height: 468 +Child: 2, type: 6, width: 159, height: 308 +Child: 3, type: 6, width: 49, height: 75 +Child: 4, type: 6, width: 49, height: 75 +Child: 5, type: 6, width: 12, height: 11 +Child: 6, type: 6, width: 12, height: 12 +Child: 7, type: 6, width: 12, height: 10 +Child: 8, type: 3, width: 28, height: 42 +Child: 9, type: 6, width: 241, height: 101 +Child: 10, type: 6, width: 18, height: 37 +Child: 11, type: 6, width: 57, height: 49 +Child: 12, type: 3, width: 18, height: 32 +Child: 13, type: 6, width: 33, height: 33 +Child: 14, type: 0, width: 512, height: 334 +Child: 15, type: 5, width: 36, height: 32 +Child: 16, type: 3, width: 16487, height: 16440 +Child: 17, type: 5, width: 26, height: 23 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 0, width: 16391, height: 16391 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 5, width: 32, height: 334 +Child: 22, type: 5, width: 462, height: 32 +Child: 23, type: 5, width: 512, height: 32 +Child: 24, type: 5, width: 32, height: 334 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 0, width: 8192, height: 16391 +Child: 30, type: 0, width: 8188, height: 16391 +Child: 31, type: 0, width: 16391, height: 8192 +Child: 32, type: 0, width: 16391, height: 8182 +Child: 33, type: 0, width: 512, height: 334 +Child: 34, type: 5, width: 256, height: 16384 +Child: 35, type: 5, width: 256, height: 16391 +Child: 36, type: 5, width: 16391, height: 167 +Child: 37, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/631.txt b/server508/lists/interfaces/631.txt new file mode 100644 index 0000000..e892ab3 --- /dev/null +++ b/server508/lists/interfaces/631.txt @@ -0,0 +1,110 @@ +Child: 0, type: 5, width: 497, height: 302 +Child: 1, type: 5, width: 32, height: 252 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 5, width: 32, height: 251 +Child: 5, type: 5, width: 447, height: 34 +Child: 6, type: 5, width: 448, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 301 +Child: 11, type: 5, width: 308, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 155, height: 32 +Child: 15, type: 5, width: 170, height: 32 +Child: 16, type: 5, width: 170, height: 32 +Child: 17, type: 5, width: 170, height: 32 +Child: 18, type: 5, width: 170, height: 32 +Child: 19, type: 5, width: 32, height: 210 +Child: 20, type: 5, width: 324, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 308, height: 32 +Child: 23, type: 5, width: 16, height: 16 +Child: 24, message: Opponent: +Child: 25, message: namehhhhhhhh +Child: 26, message: Opponent's Level: +Child: 27, message: 126 +Child: 28, message: AAAAAAAAAAAAAAAA +Child: 29, message: No Ranged +Child: 30, type: 5, width: 15, height: 15 +Child: 31, message: No Melee +Child: 32, type: 5, width: 15, height: 15 +Child: 33, message: No Magic +Child: 34, type: 5, width: 15, height: 15 +Child: 35, message: Fun Weapons +Child: 36, type: 5, width: 15, height: 15 +Child: 37, message: No Forfeit +Child: 38, type: 5, width: 15, height: 15 +Child: 39, message: No Drinks +Child: 40, type: 5, width: 15, height: 15 +Child: 41, message: No Food +Child: 42, type: 5, width: 15, height: 15 +Child: 43, message: No Prayer +Child: 44, type: 5, width: 15, height: 15 +Child: 45, message: No Movement +Child: 46, type: 5, width: 15, height: 15 +Child: 47, message: Obstacles +Child: 48, type: 5, width: 15, height: 15 +Child: 49, type: 6, width: 0, height: 0 +Child: 50, message: No Special Attacks +Child: 51, type: 5, width: 15, height: 15 +Child: 52, message: Enable Summoning +Child: 53, type: 5, width: 15, height: 15 +Child: 54, type: 0, width: 16, height: 210 +Child: 55, type: 0, width: 123, height: 33 +Child: 56, type: 0, width: 141, height: 210 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 32, height: 32 +Child: 69, type: 5, width: 32, height: 32 +Child: 70, type: 5, width: 32, height: 32 +Child: 71, type: 5, width: 32, height: 32 +Child: 72, type: 5, width: 32, height: 32 +Child: 73, type: 5, width: 32, height: 32 +Child: 74, type: 5, width: 32, height: 32 +Child: 75, type: 5, width: 32, height: 32 +Child: 76, type: 5, width: 32, height: 32 +Child: 77, type: 5, width: 32, height: 32 +Child: 78, type: 5, width: 32, height: 32 +Child: 79, type: 5, width: 36, height: 36 +Child: 80, type: 5, width: 36, height: 36 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 36, height: 36 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 0, width: 156, height: 206 +Child: 91, type: 0, width: 162, height: 214 +Child: 92, message: 0 +Child: 93, message: 0 +Child: 94, message: Max Stake: +Child: 95, message: Max Stake: +Child: 96, message: Your stake: +Child: 97, message: Opponent's stake: +Child: 98, type: 0, width: 16, height: 100 +Child: 99, type: 0, width: 16, height: 100 +Child: 100, type: 0, width: 80, height: 24 +Child: 101, message: Accept +Child: 102, type: 0, width: 80, height: 24 +Child: 103, type: 0, width: 126, height: 100 +Child: 104, type: 0, width: 126, height: 100 +Child: 105, type: 5, width: 32, height: 32 +Child: 106, message: VS +Child: 107, type: 0, width: 80, height: 24 +Child: 108, type: 0, width: 80, height: 24 +Child: 109, message: Decline diff --git a/server508/lists/interfaces/632.txt b/server508/lists/interfaces/632.txt new file mode 100644 index 0000000..d1c2cc3 --- /dev/null +++ b/server508/lists/interfaces/632.txt @@ -0,0 +1,68 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, message: Last fifty duels on this world: +Child: 14, message: Duel Scoreboard +Child: 15, type: 0, width: 437, height: 229 +Child: 16, message: Crunchy (126) beat Crunchy2 (126) +Child: 17, message: Crunchy (126) beat Crunchy2 (126) +Child: 18, message: Crunchy (126) beat Crunchy2 (126) +Child: 19, message: Crunchy (126) beat Crunchy2 (126) +Child: 20, message: Crunchy (126) beat Crunchy2 (126) +Child: 21, message: Crunchy (126) beat Crunchy2 (126) +Child: 22, message: Crunchy (126) beat Crunchy2 (126) +Child: 23, message: Crunchy (126) beat Crunchy2 (126) +Child: 24, message: Crunchy (126) beat Crunchy2 (126) +Child: 25, message: Crunchy (126) beat Crunchy2 (126) +Child: 26, message: Crunchy (126) beat Crunchy2 (126) +Child: 27, message: Crunchy (126) beat Crunchy2 (126) +Child: 28, message: Crunchy (126) beat Crunchy2 (126) +Child: 29, message: Crunchy (126) beat Crunchy2 (126) +Child: 30, message: Crunchy (126) beat Crunchy2 (126) +Child: 31, message: Crunchy (126) beat Crunchy2 (126) +Child: 32, message: Crunchy (126) beat Crunchy2 (126) +Child: 33, message: Crunchy (126) beat Crunchy2 (126) +Child: 34, message: Crunchy (126) beat Crunchy2 (126) +Child: 35, message: Crunchy (126) beat Crunchy2 (126) +Child: 36, message: Crunchy (126) beat Crunchy2 (126) +Child: 37, message: Crunchy (126) beat Crunchy2 (126) +Child: 38, message: Crunchy (126) beat Crunchy2 (126) +Child: 39, message: Crunchy (126) beat Crunchy2 (126) +Child: 40, message: Crunchy (126) beat Crunchy2 (126) +Child: 41, message: Crunchy (126) beat Crunchy2 (126) +Child: 42, message: Crunchy (126) beat Crunchy2 (126) +Child: 43, message: Crunchy (126) beat Crunchy2 (126) +Child: 44, message: Crunchy (126) beat Crunchy2 (126) +Child: 45, message: Crunchy (126) beat Crunchy2 (126) +Child: 46, message: Crunchy (126) beat Crunchy2 (126) +Child: 47, message: Crunchy (126) beat Crunchy2 (126) +Child: 48, message: Crunchy (126) beat Crunchy2 (126) +Child: 49, message: Crunchy (126) beat Crunchy2 (126) +Child: 50, message: Crunchy (126) beat Crunchy2 (126) +Child: 51, message: Crunchy (126) beat Crunchy2 (126) +Child: 52, message: Crunchy (126) beat Crunchy2 (126) +Child: 53, message: Crunchy (126) beat Crunchy2 (126) +Child: 54, message: Crunchy (126) beat Crunchy2 (126) +Child: 55, message: Crunchy (126) beat Crunchy2 (126) +Child: 56, message: Crunchy (126) beat Crunchy2 (126) +Child: 57, message: Crunchy (126) beat Crunchy2 (126) +Child: 58, message: Crunchy (126) beat Crunchy2 (126) +Child: 59, message: Crunchy (126) beat Crunchy2 (126) +Child: 60, message: Crunchy (126) beat Crunchy2 (126) +Child: 61, message: Crunchy (126) beat Crunchy2 (126) +Child: 62, message: Crunchy (126) beat Crunchy2 (126) +Child: 63, message: Crunchy (126) beat Crunchy2 (126) +Child: 64, message: Crunchy (126) beat Crunchy2 (126) +Child: 65, message: Crunchy (126) beat Crunchy2 (126) +Child: 66, type: 0, width: 16, height: 230 +Child: 67, type: 5, width: 16, height: 16 diff --git a/server508/lists/interfaces/633.txt b/server508/lists/interfaces/633.txt new file mode 100644 index 0000000..d67ca9b --- /dev/null +++ b/server508/lists/interfaces/633.txt @@ -0,0 +1,33 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 6, width: 62, height: 241 +Child: 14, type: 0, width: 105, height: 43 +Child: 15, message: You are Victorious! +Child: 16, type: 3, width: 94, height: 32 +Child: 17, message: Close +Child: 18, message: The Defeated: +Child: 19, message: Name: +Child: 20, message: Combat Level: +Child: 21, message: 126 +Child: 22, message: Crunchy +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 42, height: 37 +Child: 28, type: 5, width: 43, height: 32 +Child: 29, type: 6, width: 99, height: 85 +Child: 30, type: 5, width: 16, height: 16 +Child: 31, type: 0, width: 32, height: 32 +Child: 32, type: 0, width: 168, height: 89 diff --git a/server508/lists/interfaces/634.txt b/server508/lists/interfaces/634.txt new file mode 100644 index 0000000..bf4e6c5 --- /dev/null +++ b/server508/lists/interfaces/634.txt @@ -0,0 +1,35 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 6, width: 62, height: 241 +Child: 14, type: 0, width: 105, height: 43 +Child: 15, message: You are Victorious! +Child: 16, type: 3, width: 94, height: 32 +Child: 17, message: Claim! +Child: 18, message: The Spoils: +Child: 19, message: The Defeated: +Child: 20, message: Name: +Child: 21, message: Combat Level: +Child: 22, message: 126 +Child: 23, message: Crunchy +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 42, height: 37 +Child: 29, type: 5, width: 43, height: 32 +Child: 30, type: 6, width: 99, height: 85 +Child: 31, type: 5, width: 16, height: 16 +Child: 32, type: 0, width: 32, height: 32 +Child: 33, type: 0, width: 211, height: 205 +Child: 34, type: 0, width: 168, height: 89 diff --git a/server508/lists/interfaces/635.txt b/server508/lists/interfaces/635.txt new file mode 100644 index 0000000..d4462c4 --- /dev/null +++ b/server508/lists/interfaces/635.txt @@ -0,0 +1,39 @@ +Child: 0, type: 5, width: 25, height: 25 +Child: 1, type: 3, width: 90, height: 131 +Child: 2, type: 0, width: 16391, height: 16391 +Child: 3, type: 0, width: 16391, height: 16391 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 0, width: 16391, height: 16391 +Child: 7, type: 0, width: 16391, height: 16391 +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 0, width: 16391, height: 16391 +Child: 10, type: 0, width: 16391, height: 16391 +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 0, width: 16384, height: 16391 +Child: 13, message: Style: +Child: 14, message: Options: +Child: 15, type: 5, width: 25, height: 25 +Child: 16, type: 5, width: 25, height: 25 +Child: 17, type: 5, width: 25, height: 25 +Child: 18, type: 5, width: 25, height: 25 +Child: 19, type: 5, width: 25, height: 25 +Child: 20, type: 5, width: 25, height: 25 +Child: 21, type: 5, width: 25, height: 25 +Child: 22, type: 5, width: 25, height: 25 +Child: 23, type: 5, width: 25, height: 25 +Child: 24, type: 5, width: 25, height: 25 +Child: 25, type: 0, width: 6631, height: 2606 +Child: 26, message: +Child: 27, message: Registrar: +Child: 28, message: Time left: +Child: 29, message: +Child: 30, message: Entry Fee: +Child: 31, message: +Child: 32, message: Tourn. Value: +Child: 33, message: +Child: 34, message: +Child: 35, type: 0, width: 16391, height: 16391 +Child: 36, type: 0, width: 16391, height: 16391 +Child: 37, message: Tourn. Rank: +Child: 38, message: diff --git a/server508/lists/interfaces/636.txt b/server508/lists/interfaces/636.txt new file mode 100644 index 0000000..65d514a --- /dev/null +++ b/server508/lists/interfaces/636.txt @@ -0,0 +1,69 @@ +Child: 0, type: 3, width: 332, height: 303 +Child: 1, type: 5, width: 319, height: 302 +Child: 2, type: 5, width: 32, height: 257 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 23, height: 257 +Child: 5, type: 5, width: 270, height: 26 +Child: 6, type: 5, width: 269, height: 24 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 319, height: 32 +Child: 11, message: Upcoming Tournament Rules: Registrar # +Child: 12, type: 5, width: 16, height: 16 +Child: 13, type: 0, width: 148, height: 16 +Child: 14, type: 0, width: 148, height: 16 +Child: 15, type: 0, width: 148, height: 16 +Child: 16, type: 0, width: 148, height: 16 +Child: 17, type: 0, width: 148, height: 16 +Child: 18, type: 0, width: 148, height: 16 +Child: 19, type: 0, width: 148, height: 16 +Child: 20, type: 0, width: 148, height: 16 +Child: 21, type: 0, width: 148, height: 16 +Child: 22, type: 0, width: 148, height: 16 +Child: 23, type: 0, width: 148, height: 16 +Child: 24, type: 0, width: 148, height: 16 +Child: 25, type: 0, width: 148, height: 16 +Child: 26, type: 0, width: 148, height: 16 +Child: 27, type: 0, width: 148, height: 16 +Child: 28, type: 0, width: 148, height: 16 +Child: 29, type: 0, width: 148, height: 16 +Child: 30, type: 0, width: 148, height: 16 +Child: 31, type: 0, width: 148, height: 16 +Child: 32, type: 0, width: 148, height: 16 +Child: 33, type: 0, width: 148, height: 16 +Child: 34, type: 0, width: 148, height: 16 +Child: 35, type: 0, width: 148, height: 16 +Child: 36, type: 0, width: 148, height: 16 +Child: 37, type: 0, width: 148, height: 16 +Child: 38, type: 0, width: 148, height: 16 +Child: 39, type: 0, width: 148, height: 16 +Child: 40, type: 0, width: 148, height: 16 +Child: 41, message: Tournament Value: +Child: 42, message: Rank Required: +Child: 43, message: Entry Fee: +Child: 44, message: Potions: +Child: 45, message: Food: +Child: 46, message: Prayer: +Child: 47, message: Special Attacks: +Child: 48, message: Obstacles: +Child: 49, message: Ranged: +Child: 50, message: Melee: +Child: 51, message: Magic: +Child: 52, message: Heal Between Rounds: +Child: 53, message: Weapon Slots Only: +Child: 54, message: Summoning: +Child: 55, message: 0 +Child: 56, message: rank +Child: 57, message: fee +Child: 58, message: fee +Child: 59, message: fee +Child: 60, message: fee +Child: 61, message: spec +Child: 62, message: obstacles +Child: 63, message: ranged +Child: 64, message: melee +Child: 65, message: magic +Child: 66, message: heal +Child: 67, message: weapon +Child: 68, message: summon diff --git a/server508/lists/interfaces/637.txt b/server508/lists/interfaces/637.txt new file mode 100644 index 0000000..f9ee3f3 --- /dev/null +++ b/server508/lists/interfaces/637.txt @@ -0,0 +1,88 @@ +Child: 0, type: 5, width: 387, height: 294 +Child: 1, type: 5, width: 32, height: 242 +Child: 2, type: 5, width: 32, height: 243 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 337, height: 34 +Child: 5, type: 5, width: 337, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 6, width: 0, height: 0 +Child: 10, type: 5, width: 388, height: 32 +Child: 11, type: 5, width: 389, height: 32 +Child: 12, type: 5, width: 32, height: 210 +Child: 13, type: 5, width: 387, height: 32 +Child: 14, type: 5, width: 16, height: 16 +Child: 15, message: Duelling with: +Child: 16, message: name +Child: 17, message: Their Combat Level: +Child: 18, message: 126 +Child: 19, message: No Ranged +Child: 20, type: 5, width: 15, height: 15 +Child: 21, message: No Melee +Child: 22, type: 5, width: 15, height: 15 +Child: 23, message: No Magic +Child: 24, type: 5, width: 15, height: 15 +Child: 25, message: Fun Weapons +Child: 26, type: 5, width: 15, height: 15 +Child: 27, message: No Forfeit +Child: 28, type: 5, width: 15, height: 15 +Child: 29, message: No Drinks +Child: 30, type: 5, width: 15, height: 15 +Child: 31, message: No Food +Child: 32, type: 5, width: 15, height: 15 +Child: 33, message: No Prayer +Child: 34, type: 5, width: 15, height: 15 +Child: 35, message: No Movement +Child: 36, type: 5, width: 15, height: 15 +Child: 37, message: Obstacles +Child: 38, type: 5, width: 15, height: 15 +Child: 39, message: Enable Summoning +Child: 40, type: 5, width: 15, height: 15 +Child: 41, message: No Special Attacks +Child: 42, type: 5, width: 15, height: 15 +Child: 43, type: 0, width: 133, height: 33 +Child: 44, type: 0, width: 161, height: 210 +Child: 45, message: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 32 +Child: 60, type: 5, width: 32, height: 32 +Child: 61, type: 5, width: 32, height: 32 +Child: 62, type: 5, width: 32, height: 32 +Child: 63, type: 5, width: 32, height: 32 +Child: 64, type: 5, width: 32, height: 32 +Child: 65, type: 5, width: 32, height: 32 +Child: 66, type: 5, width: 32, height: 32 +Child: 67, type: 5, width: 32, height: 32 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 0, width: 159, height: 203 +Child: 80, type: 0, width: 159, height: 203 +Child: 81, type: 0, width: 80, height: 24 +Child: 82, message: Accept +Child: 83, type: 0, width: 80, height: 24 +Child: 84, type: 0, width: 80, height: 24 +Child: 85, message: Decline +Child: 86, type: 0, width: 80, height: 24 +Child: 87, type: 0, width: 16, height: 210 diff --git a/server508/lists/interfaces/638.txt b/server508/lists/interfaces/638.txt new file mode 100644 index 0000000..3983bc7 --- /dev/null +++ b/server508/lists/interfaces/638.txt @@ -0,0 +1,2 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/639.txt b/server508/lists/interfaces/639.txt new file mode 100644 index 0000000..157b508 --- /dev/null +++ b/server508/lists/interfaces/639.txt @@ -0,0 +1,38 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 242 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 16, height: 16 +Child: 11, type: 5, width: 474, height: 32 +Child: 12, type: 5, width: 474, height: 32 +Child: 13, type: 5, width: 474, height: 32 +Child: 14, message: Are you sure you want to fight this duel? +Child: 15, message: Before the duel starts: +Child: 16, message: Lots of y's and g's +Child: 17, message: There will be obstacles in the arena. +Child: 18, message: There will be obstacles in the arena. +Child: 19, message: There will be obstacles in the arena. +Child: 20, message: There will be obstacles in the arena. +Child: 21, message: During the duel: +Child: 22, message: There will be obstacles in the arena. +Child: 23, message: There will be obstacles in the arena. +Child: 24, message: There will be obstacles in the arena. +Child: 25, message: There will be obstacles in the arena. +Child: 26, message: There will be obstacles in the arena. +Child: 27, message: There will be obstacles in the arena. +Child: 28, message: There will be obstacles in the arena. +Child: 29, message: There will be obstacles in the arena. +Child: 30, message: There will be obstacles in the arena. +Child: 31, message: There will be obstacles in the arena. +Child: 32, message: There will be obstacles in the arena. +Child: 33, message: Waiting for other player... +Child: 34, type: 0, width: 70, height: 24 +Child: 35, message: Accept +Child: 36, type: 0, width: 70, height: 24 +Child: 37, message: Decline diff --git a/server508/lists/interfaces/64.txt b/server508/lists/interfaces/64.txt new file mode 100644 index 0000000..7f2e42d --- /dev/null +++ b/server508/lists/interfaces/64.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Click here to continue diff --git a/server508/lists/interfaces/640.txt b/server508/lists/interfaces/640.txt new file mode 100644 index 0000000..79b12b1 --- /dev/null +++ b/server508/lists/interfaces/640.txt @@ -0,0 +1,25 @@ +Child: 0, type: 3, width: 227, height: 158 +Child: 1, type: 5, width: 222, height: 149 +Child: 2, type: 5, width: 32, height: 95 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 97 +Child: 5, type: 5, width: 167, height: 26 +Child: 6, type: 5, width: 167, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 165, height: 32 +Child: 11, type: 5, width: 165, height: 32 +Child: 12, type: 5, width: 165, height: 32 +Child: 13, type: 5, width: 165, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, message: Friendly Duel +Child: 19, message: Staked Duel +Child: 20, message: Challenge! +Child: 21, type: 5, width: 15, height: 15 +Child: 22, type: 5, width: 15, height: 15 +Child: 23, type: 0, width: 130, height: 30 +Child: 24, type: 5, width: 16, height: 16 diff --git a/server508/lists/interfaces/641.txt b/server508/lists/interfaces/641.txt new file mode 100644 index 0000000..b1280a4 --- /dev/null +++ b/server508/lists/interfaces/641.txt @@ -0,0 +1,41 @@ +Child: 0, type: 5, width: 25, height: 25 +Child: 1, message: +Child: 2, message: 0 +Child: 3, message: Tourn. Rank: +Child: 4, message: +Child: 5, message: Tourn. Value: +Child: 6, type: 3, width: 90, height: 105 +Child: 7, message: 0 +Child: 8, message: +Child: 9, message: Opponent: +Child: 10, message: Tourn. Size: +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 0, width: 16391, height: 16391 +Child: 13, type: 0, width: 16391, height: 16391 +Child: 14, type: 0, width: 16391, height: 16391 +Child: 15, type: 0, width: 16391, height: 16391 +Child: 16, type: 0, width: 16391, height: 16391 +Child: 17, type: 0, width: 16391, height: 16391 +Child: 18, type: 0, width: 16391, height: 16391 +Child: 19, type: 0, width: 16391, height: 16391 +Child: 20, type: 0, width: 16391, height: 16391 +Child: 21, type: 0, width: 16391, height: 16391 +Child: 22, type: 0, width: 207, height: 53 +Child: 23, type: 0, width: 16391, height: 16391 +Child: 24, message: Style: +Child: 25, message: Options: +Child: 26, type: 6, width: 0, height: 0 +Child: 27, type: 5, width: 25, height: 25 +Child: 28, type: 5, width: 25, height: 25 +Child: 29, type: 5, width: 25, height: 25 +Child: 30, type: 5, width: 25, height: 25 +Child: 31, type: 5, width: 25, height: 25 +Child: 32, type: 5, width: 25, height: 25 +Child: 33, type: 5, width: 25, height: 25 +Child: 34, type: 5, width: 25, height: 25 +Child: 35, type: 5, width: 25, height: 25 +Child: 36, type: 5, width: 25, height: 25 +Child: 37, type: 0, width: 16391, height: 16391 +Child: 38, message: Round Time: +Child: 39, message: +Child: 40, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/642.txt b/server508/lists/interfaces/642.txt new file mode 100644 index 0000000..312b64e --- /dev/null +++ b/server508/lists/interfaces/642.txt @@ -0,0 +1,218 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, message: Common Item Costs : *type* +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 32, height: 32 +Child: 24, type: 0, width: 55, height: 49 +Child: 25, type: 0, width: 55, height: 49 +Child: 26, type: 0, width: 55, height: 49 +Child: 27, type: 0, width: 55, height: 49 +Child: 28, type: 0, width: 55, height: 49 +Child: 29, type: 0, width: 55, height: 49 +Child: 30, type: 0, width: 55, height: 49 +Child: 31, type: 0, width: 55, height: 49 +Child: 32, type: 0, width: 55, height: 49 +Child: 33, message: cost +Child: 34, message: cost +Child: 35, message: cost +Child: 36, message: cost +Child: 37, message: cost +Child: 38, message: cost +Child: 39, message: cost +Child: 40, message: cost +Child: 41, message: cost +Child: 42, type: 0, width: 473, height: 263 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 5, width: 32, height: 32 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 5, width: 32, height: 32 +Child: 54, type: 5, width: 32, height: 32 +Child: 55, type: 5, width: 32, height: 32 +Child: 56, type: 5, width: 32, height: 32 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 0, width: 50, height: 49 +Child: 59, type: 0, width: 50, height: 49 +Child: 60, type: 0, width: 50, height: 49 +Child: 61, type: 0, width: 50, height: 49 +Child: 62, type: 0, width: 50, height: 49 +Child: 63, type: 0, width: 50, height: 49 +Child: 64, type: 0, width: 50, height: 49 +Child: 65, type: 0, width: 50, height: 49 +Child: 66, type: 0, width: 50, height: 49 +Child: 67, type: 0, width: 50, height: 49 +Child: 68, type: 0, width: 50, height: 49 +Child: 69, type: 0, width: 50, height: 49 +Child: 70, type: 0, width: 50, height: 49 +Child: 71, type: 0, width: 50, height: 49 +Child: 72, type: 0, width: 50, height: 49 +Child: 73, message: cost +Child: 74, message: cost +Child: 75, message: cost +Child: 76, message: cost +Child: 77, message: cost +Child: 78, message: cost +Child: 79, message: cost +Child: 80, message: cost +Child: 81, message: cost +Child: 82, message: cost +Child: 83, message: cost +Child: 84, message: cost +Child: 85, message: cost +Child: 86, message: cost +Child: 87, message: cost +Child: 88, type: 0, width: 474, height: 263 +Child: 89, type: 5, width: 32, height: 32 +Child: 90, type: 5, width: 32, height: 32 +Child: 91, type: 5, width: 32, height: 32 +Child: 92, type: 5, width: 32, height: 32 +Child: 93, type: 5, width: 32, height: 32 +Child: 94, type: 5, width: 32, height: 32 +Child: 95, type: 5, width: 32, height: 32 +Child: 96, type: 5, width: 32, height: 32 +Child: 97, type: 5, width: 32, height: 32 +Child: 98, type: 5, width: 32, height: 32 +Child: 99, type: 5, width: 32, height: 32 +Child: 100, type: 5, width: 32, height: 32 +Child: 101, type: 5, width: 32, height: 32 +Child: 102, type: 5, width: 32, height: 32 +Child: 103, type: 5, width: 32, height: 32 +Child: 104, type: 0, width: 53, height: 44 +Child: 105, type: 0, width: 53, height: 44 +Child: 106, type: 0, width: 53, height: 44 +Child: 107, type: 0, width: 53, height: 44 +Child: 108, type: 0, width: 53, height: 44 +Child: 109, type: 0, width: 53, height: 44 +Child: 110, type: 0, width: 53, height: 44 +Child: 111, type: 0, width: 53, height: 44 +Child: 112, type: 0, width: 53, height: 44 +Child: 113, type: 0, width: 53, height: 44 +Child: 114, type: 0, width: 53, height: 44 +Child: 115, type: 0, width: 53, height: 44 +Child: 116, type: 0, width: 53, height: 44 +Child: 117, type: 0, width: 53, height: 44 +Child: 118, type: 0, width: 53, height: 44 +Child: 119, message: cost +Child: 120, message: cost +Child: 121, message: cost +Child: 122, message: cost +Child: 123, message: cost +Child: 124, message: cost +Child: 125, message: cost +Child: 126, message: cost +Child: 127, message: cost +Child: 128, message: cost +Child: 129, message: cost +Child: 130, message: cost +Child: 131, message: cost +Child: 132, message: cost +Child: 133, message: cost +Child: 134, type: 0, width: 473, height: 262 +Child: 135, type: 5, width: 32, height: 32 +Child: 136, type: 5, width: 32, height: 32 +Child: 137, type: 5, width: 32, height: 32 +Child: 138, type: 5, width: 32, height: 32 +Child: 139, type: 5, width: 32, height: 32 +Child: 140, type: 5, width: 32, height: 32 +Child: 141, type: 5, width: 32, height: 32 +Child: 142, type: 5, width: 32, height: 32 +Child: 143, type: 5, width: 32, height: 32 +Child: 144, type: 5, width: 32, height: 32 +Child: 145, type: 0, width: 50, height: 42 +Child: 146, type: 0, width: 50, height: 42 +Child: 147, type: 0, width: 50, height: 42 +Child: 148, type: 0, width: 50, height: 42 +Child: 149, type: 0, width: 50, height: 42 +Child: 150, type: 0, width: 50, height: 42 +Child: 151, type: 0, width: 50, height: 42 +Child: 152, type: 0, width: 50, height: 42 +Child: 153, type: 0, width: 50, height: 42 +Child: 154, type: 0, width: 50, height: 42 +Child: 155, message: cost +Child: 156, message: cost +Child: 157, message: cost +Child: 158, message: cost +Child: 159, message: cost +Child: 160, message: cost +Child: 161, message: cost +Child: 162, message: cost +Child: 163, message: cost +Child: 164, message: cost +Child: 165, type: 0, width: 472, height: 263 +Child: 166, type: 6, width: 0, height: 0 +Child: 167, type: 5, width: 32, height: 32 +Child: 168, type: 5, width: 32, height: 32 +Child: 169, type: 5, width: 32, height: 32 +Child: 170, type: 5, width: 32, height: 32 +Child: 171, type: 5, width: 32, height: 32 +Child: 172, type: 5, width: 32, height: 32 +Child: 173, type: 5, width: 32, height: 32 +Child: 174, type: 5, width: 32, height: 32 +Child: 175, type: 5, width: 32, height: 32 +Child: 176, type: 5, width: 32, height: 32 +Child: 177, type: 5, width: 32, height: 32 +Child: 178, type: 5, width: 32, height: 32 +Child: 179, type: 5, width: 32, height: 32 +Child: 180, type: 5, width: 32, height: 32 +Child: 181, type: 5, width: 32, height: 32 +Child: 182, type: 5, width: 32, height: 32 +Child: 183, message: cost +Child: 184, message: cost +Child: 185, message: cost +Child: 186, message: cost +Child: 187, message: cost +Child: 188, message: cost +Child: 189, message: cost +Child: 190, message: cost +Child: 191, message: cost +Child: 192, message: cost +Child: 193, message: cost +Child: 194, message: cost +Child: 195, message: cost +Child: 196, message: cost +Child: 197, message: cost +Child: 198, message: cost +Child: 199, type: 0, width: 40, height: 40 +Child: 200, type: 0, width: 40, height: 40 +Child: 201, type: 0, width: 40, height: 40 +Child: 202, type: 0, width: 40, height: 40 +Child: 203, type: 0, width: 40, height: 40 +Child: 204, type: 0, width: 40, height: 40 +Child: 205, type: 0, width: 40, height: 40 +Child: 206, type: 0, width: 40, height: 40 +Child: 207, type: 0, width: 40, height: 40 +Child: 208, type: 0, width: 40, height: 40 +Child: 209, type: 0, width: 40, height: 40 +Child: 210, type: 0, width: 40, height: 40 +Child: 211, type: 0, width: 40, height: 40 +Child: 212, type: 0, width: 40, height: 40 +Child: 213, type: 0, width: 40, height: 40 +Child: 214, type: 0, width: 40, height: 40 +Child: 215, type: 0, width: 472, height: 263 +Child: 216, type: 6, width: 0, height: 0 +Child: 217, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/643.txt b/server508/lists/interfaces/643.txt new file mode 100644 index 0000000..9a17aa1 --- /dev/null +++ b/server508/lists/interfaces/643.txt @@ -0,0 +1,51 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 6, width: 0, height: 0 +Child: 15, type: 5, width: 474, height: 32 +Child: 16, type: 5, width: 32, height: 44 +Child: 17, type: 5, width: 32, height: 44 +Child: 18, type: 5, width: 32, height: 44 +Child: 19, message: Item Back History +Child: 20, type: 5, width: 25, height: 25 +Child: 21, message: Offer type +Child: 22, message: Item name +Child: 23, message: Quantity +Child: 24, message: Price +Child: 25, message: xxxxxxxxxxxxx +Child: 26, message: xxxxxxxxxxxxx +Child: 27, message: xxxxxxxxxxxxx +Child: 28, message: xxxxxxxxxxxxx +Child: 29, message: xxxxxxxxxxxxx +Child: 30, message: 2,000,000,000 +Child: 31, message: 2,000,000,000 +Child: 32, message: 2,000,000,000 +Child: 33, message: 2,000,000,000 +Child: 34, message: 2,000,000,000 +Child: 35, message: name name name name name +Child: 36, message: name name name name name +Child: 37, message: name name name name name +Child: 38, message: name name name name name +Child: 39, message: name name name name name +Child: 40, message: 2,000,000,000 gp +Child: 41, message: 2,000,000,000 gp +Child: 42, message: 2,000,000,000 gp +Child: 43, message: 2,000,000,000 gp +Child: 44, message: 2,000,000,000 gp +Child: 45, type: 5, width: 474, height: 32 +Child: 46, type: 5, width: 474, height: 32 +Child: 47, type: 5, width: 474, height: 32 +Child: 48, type: 5, width: 474, height: 32 +Child: 49, type: 5, width: 474, height: 32 +Child: 50, type: 5, width: 474, height: 32 diff --git a/server508/lists/interfaces/644.txt b/server508/lists/interfaces/644.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/644.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/645.txt b/server508/lists/interfaces/645.txt new file mode 100644 index 0000000..fbd99ab --- /dev/null +++ b/server508/lists/interfaces/645.txt @@ -0,0 +1,20 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 475, height: 32 +Child: 15, message: Grand Exchange Item Sets +Child: 16, type: 0, width: 438, height: 229 +Child: 17, message: Click on a set you wish to purchase here
or click on a set in your inventory that you wish to sell. +Child: 18, type: 0, width: 16, height: 225 +Child: 19, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/646.txt b/server508/lists/interfaces/646.txt new file mode 100644 index 0000000..1e4ef0b --- /dev/null +++ b/server508/lists/interfaces/646.txt @@ -0,0 +1,14 @@ +Child: 0, type: 5, width: 502, height: 324 +Child: 1, type: 5, width: 32, height: 273 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 271 +Child: 4, type: 5, width: 450, height: 29 +Child: 5, type: 5, width: 450, height: 36 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 6, width: 146, height: 255 +Child: 10, type: 5, width: 25, height: 25 +Child: 11, message: Step 4 : With your items placed on the Grand Exchange system, just wait a while and we will let you know when your items are traded. +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Click to continue diff --git a/server508/lists/interfaces/647.txt b/server508/lists/interfaces/647.txt new file mode 100644 index 0000000..8ff4493 --- /dev/null +++ b/server508/lists/interfaces/647.txt @@ -0,0 +1,31 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 6, width: 0, height: 0 +Child: 15, type: 6, width: 0, height: 0 +Child: 16, type: 5, width: 475, height: 32 +Child: 17, type: 5, width: 41, height: 224 +Child: 18, type: 5, width: 28, height: 27 +Child: 19, message: Items being dropped +Child: 20, message: Items ready to be dropped +Child: 21, type: 0, width: 16, height: 224 +Child: 22, type: 0, width: 17, height: 225 +Child: 23, type: 5, width: 25, height: 25 +Child: 24, message: 00 +Child: 25, type: 0, width: 59, height: 30 +Child: 26, message: Accept +Child: 27, type: 0, width: 223, height: 220 +Child: 28, type: 0, width: 214, height: 222 +Child: 29, type: 0, width: 413, height: 35 +Child: 30, message: (Once you press Accept items can't be taken out of the chest!) diff --git a/server508/lists/interfaces/648.txt b/server508/lists/interfaces/648.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/648.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/649.txt b/server508/lists/interfaces/649.txt new file mode 100644 index 0000000..364788d --- /dev/null +++ b/server508/lists/interfaces/649.txt @@ -0,0 +1,16 @@ +Child: 0, type: 5, width: 36, height: 36 +Child: 1, type: 5, width: 36, height: 36 +Child: 2, type: 5, width: 36, height: 36 +Child: 3, type: 5, width: 36, height: 36 +Child: 4, type: 5, width: 36, height: 36 +Child: 5, message: Stop viewing +Child: 6, type: 6, width: 29, height: 52 +Child: 7, type: 6, width: 29, height: 52 +Child: 8, type: 6, width: 29, height: 52 +Child: 9, type: 6, width: 29, height: 52 +Child: 10, type: 6, width: 29, height: 52 +Child: 11, message: Centre +Child: 12, message: North-west +Child: 13, message: North-east +Child: 14, message: South-east +Child: 15, message: South-west diff --git a/server508/lists/interfaces/65.txt b/server508/lists/interfaces/65.txt new file mode 100644 index 0000000..679479f --- /dev/null +++ b/server508/lists/interfaces/65.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Click here to continue diff --git a/server508/lists/interfaces/650.txt b/server508/lists/interfaces/650.txt new file mode 100644 index 0000000..aa4179e --- /dev/null +++ b/server508/lists/interfaces/650.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 480, height: 301 +Child: 1, type: 6, width: 294, height: 203 +Child: 2, message: Defeat! +Child: 3, message: Your clan has been defeated. +Child: 4, type: 3, width: 200, height: 1 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/651.txt b/server508/lists/interfaces/651.txt new file mode 100644 index 0000000..0cbd16d --- /dev/null +++ b/server508/lists/interfaces/651.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 480, height: 301 +Child: 1, type: 6, width: 137, height: 245 +Child: 2, message: Victory! +Child: 3, message: Your clan is victorious! +Child: 4, type: 3, width: 200, height: 1 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/652.txt b/server508/lists/interfaces/652.txt new file mode 100644 index 0000000..e9e9e8d --- /dev/null +++ b/server508/lists/interfaces/652.txt @@ -0,0 +1,37 @@ +Child: 0, type: 3, width: 465, height: 289 +Child: 1, type: 5, width: 451, height: 275 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 226 +Child: 4, type: 5, width: 32, height: 225 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 401, height: 32 +Child: 7, type: 5, width: 401, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 443, height: 32 +Child: 13, type: 5, width: 32, height: 216 +Child: 14, type: 5, width: 170, height: 32 +Child: 15, type: 5, width: 32, height: 216 +Child: 16, type: 5, width: 170, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 148, height: 32 +Child: 21, type: 5, width: 147, height: 32 +Child: 22, type: 5, width: 32, height: 154 +Child: 23, type: 5, width: 32, height: 154 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 196 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, message: Gravestones +Child: 29, message: +Child: 30, message: +Child: 31, type: 0, width: 176, height: 205 +Child: 32, type: 0, width: 16, height: 207 +Child: 33, type: 5, width: 90, height: 56 +Child: 34, type: 0, width: 90, height: 56 +Child: 35, message: +Child: 36, type: 5, width: 16, height: 16 diff --git a/server508/lists/interfaces/653.txt b/server508/lists/interfaces/653.txt new file mode 100644 index 0000000..7bce34d --- /dev/null +++ b/server508/lists/interfaces/653.txt @@ -0,0 +1,15 @@ +Child: 0, type: 0, width: 184, height: 63 +Child: 1, type: 3, width: 170, height: 50 +Child: 2, type: 3, width: 170, height: 2 +Child: 3, type: 3, width: 174, height: 2 +Child: 4, type: 3, width: 2, height: 52 +Child: 5, type: 3, width: 176, height: 56 +Child: 6, type: 3, width: 2, height: 52 +Child: 7, message: Target: +Child: 8, message: None +Child: 9, type: 0, width: 170, height: 20 +Child: 10, message: Pickup penalty: +Child: 11, message: 100 Sec +Child: 12, type: 0, width: 170, height: 20 +Child: 13, message: Can't leave for: +Child: 14, message: 100 Sec diff --git a/server508/lists/interfaces/654.txt b/server508/lists/interfaces/654.txt new file mode 100644 index 0000000..1a1c90c --- /dev/null +++ b/server508/lists/interfaces/654.txt @@ -0,0 +1,57 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, message: Bounty Hunters +Child: 4, message: Players who hunt and kill assigned targets +Child: 5, message: 1) +Child: 6, message: 2) +Child: 7, message: 3) +Child: 8, message: 4) +Child: 9, message: 5) +Child: 10, message: 6) +Child: 11, message: 7) +Child: 12, message: 8) +Child: 13, message: 9) +Child: 14, message: 10) +Child: 15, message: Nobody yet +Child: 16, message: Nobody yet +Child: 17, message: Nobody yet +Child: 18, message: Nobody yet +Child: 19, message: Nobody yet +Child: 20, message: Nobody yet +Child: 21, message: Nobody yet +Child: 22, message: Nobody yet +Child: 23, message: Nobody yet +Child: 24, message: Nobody yet +Child: 25, message: 0 +Child: 26, message: 0 +Child: 27, message: 0 +Child: 28, message: 0 +Child: 29, message: 0 +Child: 30, message: 0 +Child: 31, message: 0 +Child: 32, message: 0 +Child: 33, message: 0 +Child: 34, message: 0 +Child: 35, type: 3, width: 512, height: 334 +Child: 36, type: 6, width: 661, height: 715 +Child: 37, type: 5, width: 26, height: 23 +Child: 38, type: 0, width: 16391, height: 16391 +Child: 39, type: 0, width: 16391, height: 16391 +Child: 40, type: 5, width: 32, height: 334 +Child: 41, type: 5, width: 462, height: 32 +Child: 42, type: 5, width: 512, height: 32 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 0, width: 8192, height: 16391 +Child: 49, type: 0, width: 8188, height: 16391 +Child: 50, type: 0, width: 16391, height: 8192 +Child: 51, type: 0, width: 16391, height: 8182 +Child: 52, type: 0, width: 512, height: 334 +Child: 53, type: 5, width: 256, height: 16384 +Child: 54, type: 5, width: 256, height: 16391 +Child: 55, type: 5, width: 16391, height: 167 +Child: 56, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/655.txt b/server508/lists/interfaces/655.txt new file mode 100644 index 0000000..e937dfb --- /dev/null +++ b/server508/lists/interfaces/655.txt @@ -0,0 +1,57 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 3, width: 512, height: 334 +Child: 4, type: 6, width: 687, height: 715 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, message: Rogues +Child: 7, message: Players who hunt and kill anyone +Child: 8, message: 1) +Child: 9, message: 2) +Child: 10, message: 3) +Child: 11, message: 4) +Child: 12, message: 5) +Child: 13, message: 6) +Child: 14, message: 7) +Child: 15, message: 8) +Child: 16, message: 9) +Child: 17, message: 10) +Child: 18, message: Nobody yet +Child: 19, message: Nobody yet +Child: 20, message: Nobody yet +Child: 21, message: Nobody yet +Child: 22, message: Nobody yet +Child: 23, message: Nobody yet +Child: 24, message: Nobody yet +Child: 25, message: Nobody yet +Child: 26, message: Nobody yet +Child: 27, message: Nobody yet +Child: 28, message: 0 +Child: 29, message: 0 +Child: 30, message: 0 +Child: 31, message: 0 +Child: 32, message: 0 +Child: 33, message: 0 +Child: 34, message: 0 +Child: 35, message: 0 +Child: 36, message: 0 +Child: 37, message: 0 +Child: 38, type: 0, width: 16391, height: 16391 +Child: 39, type: 0, width: 16391, height: 16391 +Child: 40, type: 5, width: 32, height: 334 +Child: 41, type: 5, width: 462, height: 32 +Child: 42, type: 5, width: 512, height: 32 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 32, height: 32 +Child: 45, type: 5, width: 32, height: 32 +Child: 46, type: 5, width: 32, height: 32 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 0, width: 8192, height: 16391 +Child: 49, type: 0, width: 8188, height: 16391 +Child: 50, type: 0, width: 16391, height: 8192 +Child: 51, type: 0, width: 16391, height: 8182 +Child: 52, type: 0, width: 512, height: 334 +Child: 53, type: 5, width: 256, height: 16384 +Child: 54, type: 5, width: 256, height: 16391 +Child: 55, type: 5, width: 16391, height: 167 +Child: 56, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/656.txt b/server508/lists/interfaces/656.txt new file mode 100644 index 0000000..3b4c654 --- /dev/null +++ b/server508/lists/interfaces/656.txt @@ -0,0 +1,12 @@ +Child: 0, type: 3, width: 170, height: 50 +Child: 1, type: 3, width: 170, height: 2 +Child: 2, type: 3, width: 174, height: 2 +Child: 3, type: 3, width: 2, height: 52 +Child: 4, type: 3, width: 176, height: 56 +Child: 5, type: 3, width: 2, height: 52 +Child: 6, message: Players waiting (need X): +Child: 7, message: 0 +Child: 8, type: 0, width: 170, height: 20 +Child: 9, message: Game starting in: +Child: 10, message: 100 Sec +Child: 11, type: 0, width: 181, height: 63 diff --git a/server508/lists/interfaces/657.txt b/server508/lists/interfaces/657.txt new file mode 100644 index 0000000..c2e8434 --- /dev/null +++ b/server508/lists/interfaces/657.txt @@ -0,0 +1,29 @@ +Child: 0, type: 3, width: 373, height: 243 +Child: 1, type: 5, width: 361, height: 236 +Child: 2, type: 5, width: 32, height: 202 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 205 +Child: 5, type: 5, width: 349, height: 34 +Child: 6, type: 5, width: 341, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 358, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, type: 6, width: 22, height: 26 +Child: 15, type: 6, width: 22, height: 26 +Child: 16, type: 6, width: 22, height: 26 +Child: 17, type: 6, width: 22, height: 26 +Child: 18, type: 5, width: 90, height: 56 +Child: 19, type: 5, width: 90, height: 56 +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 5, width: 19, height: 19 +Child: 22, message: WARNING! +Child: 23, message: You are about to enter the Bounty Hunter minigame.

This is not a safe area - it involves player versus player combat and, if you die, you will lose all the items you are carrying!

If you kill players that are not your target, you will not be able to use the Protect Item prayer. Also you cannot drop items on the floor worth over 1000 gp. +Child: 24, message: Enter
Crater +Child: 25, message: Don't go +Child: 26, message: Don't ask me this again +Child: 27, type: 5, width: 19, height: 19 +Child: 28, type: 0, width: 255, height: 20 diff --git a/server508/lists/interfaces/658.txt b/server508/lists/interfaces/658.txt new file mode 100644 index 0000000..0ca8ff8 --- /dev/null +++ b/server508/lists/interfaces/658.txt @@ -0,0 +1,55 @@ +Child: 0, type: 3, width: 402, height: 256 +Child: 1, type: 3, width: 399, height: 257 +Child: 2, type: 5, width: 387, height: 246 +Child: 3, type: 5, width: 32, height: 194 +Child: 4, type: 5, width: 32, height: 195 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 337, height: 34 +Child: 7, type: 5, width: 337, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 389, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Select a Snowman Hat +Child: 14, type: 6, width: 0, height: 0 +Child: 15, message: Barbarian hat +Child: 16, message: Dragon hat +Child: 17, message: Dwarf hat +Child: 18, message: Pirate hat +Child: 19, message: Top hat +Child: 20, type: 6, width: 0, height: 0 +Child: 21, type: 0, width: 50, height: 50 +Child: 22, type: 3, width: 50, height: 50 +Child: 23, type: 0, width: 50, height: 50 +Child: 24, type: 3, width: 50, height: 50 +Child: 25, type: 0, width: 50, height: 50 +Child: 26, type: 3, width: 50, height: 50 +Child: 27, type: 0, width: 50, height: 50 +Child: 28, type: 3, width: 50, height: 50 +Child: 29, type: 0, width: 50, height: 50 +Child: 30, type: 3, width: 50, height: 50 +Child: 31, type: 0, width: 50, height: 50 +Child: 32, type: 3, width: 50, height: 50 +Child: 33, type: 0, width: 50, height: 50 +Child: 34, type: 3, width: 50, height: 50 +Child: 35, type: 0, width: 50, height: 50 +Child: 36, type: 3, width: 50, height: 50 +Child: 37, type: 6, width: 0, height: 0 +Child: 38, type: 9, width: 396, height: 0 +Child: 39, type: 9, width: 387, height: 0 +Child: 40, type: 9, width: 387, height: 0 +Child: 41, type: 9, width: 12, height: 0 +Child: 42, type: 6, width: 39, height: 38 +Child: 43, type: 6, width: 49, height: 35 +Child: 44, type: 6, width: 37, height: 28 +Child: 45, type: 6, width: 44, height: 29 +Child: 46, type: 6, width: 41, height: 33 +Child: 47, type: 6, width: 41, height: 48 +Child: 48, type: 6, width: 48, height: 54 +Child: 49, type: 6, width: 45, height: 48 +Child: 50, message: Holly Bow +Child: 51, message: Winter Staff +Child: 52, message: Ice Sword +Child: 53, type: 0, width: 512, height: 334 +Child: 54, type: 3, width: 399, height: 256 diff --git a/server508/lists/interfaces/659.txt b/server508/lists/interfaces/659.txt new file mode 100644 index 0000000..09a3806 --- /dev/null +++ b/server508/lists/interfaces/659.txt @@ -0,0 +1,28 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 515, height: 343 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 6, width: 386, height: 215 +Child: 4, type: 6, width: 364, height: 282 +Child: 5, type: 6, width: 346, height: 229 +Child: 6, type: 6, width: 339, height: 237 +Child: 7, type: 6, width: 339, height: 237 +Child: 8, type: 6, width: 379, height: 295 +Child: 9, type: 0, width: 16391, height: 16391 +Child: 10, type: 0, width: 16391, height: 16391 +Child: 11, type: 5, width: 32, height: 334 +Child: 12, type: 5, width: 462, height: 32 +Child: 13, type: 5, width: 512, height: 32 +Child: 14, type: 5, width: 32, height: 334 +Child: 15, type: 5, width: 32, height: 32 +Child: 16, type: 5, width: 32, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 0, width: 8192, height: 16391 +Child: 20, type: 0, width: 8188, height: 16391 +Child: 21, type: 0, width: 16391, height: 8192 +Child: 22, type: 0, width: 16391, height: 8182 +Child: 23, type: 0, width: 512, height: 334 +Child: 24, type: 5, width: 256, height: 16384 +Child: 25, type: 5, width: 256, height: 16391 +Child: 26, type: 5, width: 16391, height: 167 +Child: 27, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/66.txt b/server508/lists/interfaces/66.txt new file mode 100644 index 0000000..eefba27 --- /dev/null +++ b/server508/lists/interfaces/66.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Click here to continue diff --git a/server508/lists/interfaces/660.txt b/server508/lists/interfaces/660.txt new file mode 100644 index 0000000..8d8d04f --- /dev/null +++ b/server508/lists/interfaces/660.txt @@ -0,0 +1,141 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 88, height: 60 +Child: 2, type: 5, width: 88, height: 60 +Child: 3, type: 5, width: 88, height: 60 +Child: 4, type: 5, width: 88, height: 60 +Child: 5, type: 5, width: 88, height: 60 +Child: 6, type: 5, width: 88, height: 60 +Child: 7, type: 5, width: 88, height: 60 +Child: 8, type: 5, width: 88, height: 60 +Child: 9, type: 5, width: 88, height: 60 +Child: 10, type: 5, width: 88, height: 60 +Child: 11, type: 5, width: 88, height: 60 +Child: 12, type: 5, width: 88, height: 60 +Child: 13, type: 5, width: 88, height: 60 +Child: 14, type: 5, width: 88, height: 60 +Child: 15, type: 5, width: 88, height: 60 +Child: 16, type: 5, width: 88, height: 60 +Child: 17, type: 5, width: 88, height: 60 +Child: 18, type: 5, width: 88, height: 60 +Child: 19, type: 5, width: 88, height: 60 +Child: 20, type: 5, width: 88, height: 60 +Child: 21, type: 5, width: 88, height: 60 +Child: 22, type: 5, width: 88, height: 60 +Child: 23, type: 5, width: 88, height: 60 +Child: 24, type: 5, width: 88, height: 60 +Child: 25, type: 5, width: 88, height: 60 +Child: 26, type: 5, width: 88, height: 60 +Child: 27, type: 5, width: 88, height: 60 +Child: 28, type: 5, width: 88, height: 60 +Child: 29, type: 5, width: 88, height: 60 +Child: 30, type: 5, width: 88, height: 60 +Child: 31, type: 5, width: 88, height: 60 +Child: 32, type: 5, width: 88, height: 60 +Child: 33, type: 5, width: 88, height: 60 +Child: 34, type: 5, width: 88, height: 60 +Child: 35, type: 5, width: 88, height: 60 +Child: 36, type: 5, width: 88, height: 60 +Child: 37, type: 5, width: 25, height: 30 +Child: 38, type: 5, width: 36, height: 36 +Child: 39, type: 5, width: 36, height: 36 +Child: 40, type: 5, width: 36, height: 36 +Child: 41, type: 5, width: 36, height: 36 +Child: 42, type: 5, width: 36, height: 36 +Child: 43, type: 5, width: 36, height: 36 +Child: 44, type: 5, width: 36, height: 36 +Child: 45, type: 5, width: 36, height: 36 +Child: 46, type: 5, width: 36, height: 36 +Child: 47, type: 5, width: 36, height: 36 +Child: 48, type: 5, width: 36, height: 36 +Child: 49, type: 5, width: 36, height: 36 +Child: 50, type: 5, width: 36, height: 36 +Child: 51, type: 5, width: 36, height: 36 +Child: 52, type: 5, width: 36, height: 36 +Child: 53, type: 5, width: 36, height: 36 +Child: 54, type: 5, width: 36, height: 36 +Child: 55, type: 5, width: 36, height: 36 +Child: 56, type: 5, width: 36, height: 36 +Child: 57, type: 5, width: 36, height: 36 +Child: 58, type: 5, width: 36, height: 36 +Child: 59, type: 5, width: 36, height: 36 +Child: 60, type: 5, width: 36, height: 36 +Child: 61, type: 5, width: 36, height: 36 +Child: 62, type: 5, width: 36, height: 36 +Child: 63, type: 5, width: 36, height: 36 +Child: 64, type: 5, width: 36, height: 36 +Child: 65, type: 5, width: 36, height: 36 +Child: 66, type: 5, width: 36, height: 36 +Child: 67, type: 5, width: 36, height: 36 +Child: 68, type: 5, width: 36, height: 36 +Child: 69, type: 5, width: 36, height: 36 +Child: 70, type: 5, width: 36, height: 36 +Child: 71, type: 5, width: 36, height: 36 +Child: 72, type: 5, width: 36, height: 36 +Child: 73, type: 5, width: 36, height: 36 +Child: 74, type: 5, width: 36, height: 36 +Child: 75, type: 5, width: 36, height: 36 +Child: 76, type: 5, width: 36, height: 36 +Child: 77, type: 5, width: 36, height: 36 +Child: 78, type: 5, width: 36, height: 36 +Child: 79, type: 5, width: 25, height: 30 +Child: 80, type: 5, width: 25, height: 30 +Child: 81, type: 5, width: 36, height: 36 +Child: 82, type: 5, width: 25, height: 30 +Child: 83, type: 5, width: 36, height: 36 +Child: 84, type: 5, width: 36, height: 36 +Child: 85, type: 5, width: 36, height: 36 +Child: 86, type: 5, width: 36, height: 36 +Child: 87, type: 5, width: 36, height: 36 +Child: 88, type: 5, width: 36, height: 36 +Child: 89, type: 5, width: 36, height: 36 +Child: 90, type: 5, width: 36, height: 36 +Child: 91, type: 5, width: 36, height: 36 +Child: 92, type: 5, width: 36, height: 36 +Child: 93, type: 5, width: 36, height: 36 +Child: 94, type: 5, width: 36, height: 36 +Child: 95, type: 5, width: 36, height: 36 +Child: 96, type: 5, width: 36, height: 36 +Child: 97, type: 0, width: 440, height: 299 +Child: 98, message: Welcome to RuneScape
Use the buttons below to design your player +Child: 99, type: 6, width: 136, height: 168 +Child: 100, type: 3, width: 66, height: 31 +Child: 101, message: Accept +Child: 102, type: 5, width: 25, height: 30 +Child: 103, type: 5, width: 25, height: 30 +Child: 104, type: 5, width: 25, height: 30 +Child: 105, type: 5, width: 25, height: 30 +Child: 106, message: Design +Child: 107, type: 5, width: 45, height: 36 +Child: 108, type: 5, width: 45, height: 36 +Child: 109, type: 5, width: 45, height: 36 +Child: 110, type: 5, width: 45, height: 36 +Child: 111, type: 5, width: 45, height: 36 +Child: 112, type: 5, width: 45, height: 36 +Child: 113, type: 5, width: 45, height: 36 +Child: 114, type: 5, width: 45, height: 36 +Child: 115, type: 5, width: 45, height: 36 +Child: 116, type: 5, width: 45, height: 36 +Child: 117, type: 5, width: 45, height: 36 +Child: 118, type: 5, width: 45, height: 36 +Child: 119, type: 5, width: 45, height: 36 +Child: 120, type: 5, width: 45, height: 36 +Child: 121, message: Head
Jaw
Torso
Arms
Hands
Legs
Feet +Child: 122, message: Colour +Child: 123, type: 5, width: 45, height: 36 +Child: 124, type: 5, width: 45, height: 36 +Child: 125, type: 5, width: 45, height: 36 +Child: 126, type: 5, width: 45, height: 36 +Child: 127, type: 5, width: 45, height: 36 +Child: 128, type: 5, width: 45, height: 36 +Child: 129, type: 5, width: 45, height: 36 +Child: 130, type: 5, width: 45, height: 36 +Child: 131, type: 5, width: 45, height: 36 +Child: 132, type: 5, width: 45, height: 36 +Child: 133, message: Hair
Torso
Legs
Feet
Skin +Child: 134, type: 5, width: 36, height: 36 +Child: 135, type: 5, width: 36, height: 36 +Child: 136, message: Gender +Child: 137, type: 5, width: 72, height: 36 +Child: 138, type: 5, width: 72, height: 36 +Child: 139, message: Male +Child: 140, message: Female diff --git a/server508/lists/interfaces/661.txt b/server508/lists/interfaces/661.txt new file mode 100644 index 0000000..339d476 --- /dev/null +++ b/server508/lists/interfaces/661.txt @@ -0,0 +1,23 @@ +Child: 0, type: 6, width: 1346, height: 772 +Child: 1, message: The runes must be in sets of three, I think, but I have had no luck in completing this conundrum. Perhaps, if my Thieving skills were greater, I could in some way interfere with the mechanism. May those who follow have more luck in this accursed place.
-Toralis of Menaphos +Child: 2, type: 5, width: 26, height: 23 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 16391, height: 16391 +Child: 6, type: 5, width: 32, height: 334 +Child: 7, type: 5, width: 462, height: 32 +Child: 8, type: 5, width: 512, height: 32 +Child: 9, type: 5, width: 32, height: 334 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 0, width: 8192, height: 16391 +Child: 15, type: 0, width: 8188, height: 16391 +Child: 16, type: 0, width: 16391, height: 8192 +Child: 17, type: 0, width: 16391, height: 8182 +Child: 18, type: 0, width: 512, height: 334 +Child: 19, type: 5, width: 256, height: 16384 +Child: 20, type: 5, width: 256, height: 16391 +Child: 21, type: 5, width: 16391, height: 167 +Child: 22, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/662.txt b/server508/lists/interfaces/662.txt new file mode 100644 index 0000000..78b33df --- /dev/null +++ b/server508/lists/interfaces/662.txt @@ -0,0 +1,189 @@ +Child: 0, type: 3, width: 173, height: 111 +Child: 1, type: 3, width: 161, height: 105 +Child: 2, type: 3, width: 143, height: 95 +Child: 3, type: 6, width: 78, height: 86 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 116, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 53 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 115, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 53 +Child: 12, type: 5, width: 32, height: 47 +Child: 13, type: 5, width: 164, height: 32 +Child: 14, type: 5, width: 32, height: 47 +Child: 15, type: 5, width: 165, height: 32 +Child: 16, type: 5, width: 166, height: 20 +Child: 17, type: 3, width: 146, height: 14 +Child: 18, type: 0, width: 146, height: 14 +Child: 19, type: 6, width: 143, height: 13 +Child: 20, type: 6, width: 9, height: 13 +Child: 21, type: 6, width: 9, height: 13 +Child: 22, type: 6, width: 9, height: 13 +Child: 23, type: 6, width: 9, height: 13 +Child: 24, type: 6, width: 8, height: 13 +Child: 25, type: 6, width: 8, height: 13 +Child: 26, type: 6, width: 8, height: 13 +Child: 27, type: 6, width: 8, height: 13 +Child: 28, type: 6, width: 8, height: 13 +Child: 29, type: 6, width: 8, height: 13 +Child: 30, type: 6, width: 8, height: 13 +Child: 31, type: 6, width: 8, height: 13 +Child: 32, type: 6, width: 8, height: 13 +Child: 33, type: 6, width: 8, height: 13 +Child: 34, type: 6, width: 8, height: 13 +Child: 35, type: 6, width: 8, height: 13 +Child: 36, type: 6, width: 9, height: 13 +Child: 37, type: 6, width: 9, height: 13 +Child: 38, type: 6, width: 9, height: 13 +Child: 39, type: 6, width: 9, height: 13 +Child: 40, message: S P E C I A L M O V E +Child: 41, type: 5, width: 25, height: 25 +Child: 42, message: 9999 +Child: 43, type: 5, width: 25, height: 25 +Child: 44, message: 9999 +Child: 45, type: 5, width: 25, height: 25 +Child: 46, message: 100% +Child: 47, type: 5, width: 25, height: 25 +Child: 48, message: 9999 +Child: 49, type: 0, width: 38, height: 38 +Child: 50, type: 5, width: 25, height: 25 +Child: 51, type: 0, width: 38, height: 38 +Child: 52, type: 5, width: 25, height: 25 +Child: 53, type: 5, width: 166, height: 20 +Child: 54, message: +Child: 55, type: 5, width: 32, height: 45 +Child: 56, type: 5, width: 32, height: 32 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 32 +Child: 60, message: 9999 +Child: 61, type: 0, width: 190, height: 261 +Child: 62, type: 0, width: 190, height: 261 +Child: 63, type: 0, width: 38, height: 38 +Child: 64, type: 5, width: 21, height: 21 +Child: 65, type: 0, width: 189, height: 260 +Child: 66, type: 0, width: 32, height: 32 +Child: 67, type: 5, width: 32, height: 36 +Child: 68, type: 0, width: 32, height: 32 +Child: 69, type: 5, width: 32, height: 36 +Child: 70, type: 0, width: 32, height: 32 +Child: 71, type: 5, width: 32, height: 36 +Child: 72, type: 0, width: 32, height: 32 +Child: 73, type: 5, width: 32, height: 32 +Child: 74, type: 0, width: 32, height: 32 +Child: 75, type: 5, width: 32, height: 32 +Child: 76, type: 0, width: 32, height: 32 +Child: 77, type: 5, width: 32, height: 32 +Child: 78, type: 0, width: 32, height: 32 +Child: 79, type: 5, width: 32, height: 36 +Child: 80, type: 0, width: 32, height: 32 +Child: 81, type: 5, width: 32, height: 32 +Child: 82, type: 0, width: 32, height: 32 +Child: 83, type: 5, width: 32, height: 36 +Child: 84, type: 0, width: 32, height: 32 +Child: 85, type: 5, width: 32, height: 32 +Child: 86, type: 0, width: 32, height: 32 +Child: 87, type: 5, width: 32, height: 32 +Child: 88, type: 0, width: 32, height: 32 +Child: 89, type: 5, width: 32, height: 32 +Child: 90, type: 0, width: 32, height: 32 +Child: 91, type: 5, width: 32, height: 36 +Child: 92, type: 0, width: 32, height: 32 +Child: 93, type: 5, width: 32, height: 32 +Child: 94, type: 0, width: 32, height: 32 +Child: 95, type: 5, width: 32, height: 32 +Child: 96, type: 0, width: 32, height: 32 +Child: 97, type: 5, width: 32, height: 32 +Child: 98, type: 0, width: 32, height: 32 +Child: 99, type: 5, width: 32, height: 32 +Child: 100, type: 0, width: 32, height: 32 +Child: 101, type: 5, width: 32, height: 32 +Child: 102, type: 0, width: 32, height: 32 +Child: 103, type: 5, width: 32, height: 32 +Child: 104, type: 0, width: 32, height: 32 +Child: 105, type: 5, width: 32, height: 32 +Child: 106, type: 0, width: 32, height: 32 +Child: 107, type: 5, width: 32, height: 32 +Child: 108, type: 0, width: 32, height: 32 +Child: 109, type: 5, width: 32, height: 36 +Child: 110, type: 0, width: 32, height: 32 +Child: 111, type: 5, width: 32, height: 32 +Child: 112, type: 0, width: 32, height: 32 +Child: 113, type: 5, width: 32, height: 32 +Child: 114, type: 0, width: 32, height: 32 +Child: 115, type: 5, width: 32, height: 32 +Child: 116, type: 0, width: 32, height: 32 +Child: 117, type: 5, width: 32, height: 32 +Child: 118, type: 0, width: 32, height: 32 +Child: 119, type: 5, width: 32, height: 32 +Child: 120, type: 0, width: 32, height: 32 +Child: 121, type: 5, width: 32, height: 32 +Child: 122, type: 0, width: 32, height: 32 +Child: 123, type: 5, width: 32, height: 32 +Child: 124, type: 0, width: 32, height: 32 +Child: 125, type: 5, width: 32, height: 32 +Child: 126, type: 0, width: 32, height: 32 +Child: 127, type: 5, width: 32, height: 32 +Child: 128, type: 0, width: 32, height: 32 +Child: 129, type: 5, width: 32, height: 32 +Child: 130, type: 0, width: 32, height: 32 +Child: 131, type: 5, width: 32, height: 32 +Child: 132, type: 0, width: 32, height: 32 +Child: 133, type: 5, width: 32, height: 32 +Child: 134, type: 0, width: 32, height: 32 +Child: 135, type: 5, width: 32, height: 32 +Child: 136, type: 0, width: 32, height: 32 +Child: 137, type: 5, width: 32, height: 32 +Child: 138, type: 0, width: 32, height: 32 +Child: 139, type: 5, width: 32, height: 32 +Child: 140, type: 0, width: 32, height: 32 +Child: 141, type: 5, width: 32, height: 32 +Child: 142, type: 0, width: 32, height: 32 +Child: 143, type: 5, width: 32, height: 32 +Child: 144, type: 0, width: 32, height: 32 +Child: 145, type: 5, width: 32, height: 32 +Child: 146, type: 0, width: 32, height: 32 +Child: 147, type: 5, width: 32, height: 32 +Child: 148, type: 0, width: 32, height: 32 +Child: 149, type: 5, width: 32, height: 32 +Child: 150, type: 0, width: 32, height: 32 +Child: 151, type: 5, width: 32, height: 32 +Child: 152, type: 0, width: 32, height: 32 +Child: 153, type: 5, width: 32, height: 32 +Child: 154, type: 0, width: 32, height: 32 +Child: 155, type: 5, width: 32, height: 32 +Child: 156, type: 0, width: 32, height: 32 +Child: 157, type: 5, width: 32, height: 32 +Child: 158, type: 0, width: 32, height: 32 +Child: 159, type: 5, width: 32, height: 32 +Child: 160, type: 0, width: 32, height: 32 +Child: 161, type: 5, width: 32, height: 32 +Child: 162, type: 0, width: 32, height: 32 +Child: 163, type: 5, width: 32, height: 32 +Child: 164, type: 0, width: 32, height: 32 +Child: 165, type: 5, width: 32, height: 32 +Child: 166, type: 0, width: 32, height: 32 +Child: 167, type: 5, width: 32, height: 32 +Child: 168, type: 0, width: 32, height: 32 +Child: 169, type: 5, width: 32, height: 32 +Child: 170, type: 0, width: 32, height: 32 +Child: 171, type: 5, width: 32, height: 32 +Child: 172, type: 0, width: 32, height: 32 +Child: 173, type: 5, width: 32, height: 32 +Child: 174, type: 0, width: 32, height: 32 +Child: 175, type: 5, width: 32, height: 32 +Child: 176, type: 0, width: 32, height: 32 +Child: 177, type: 5, width: 32, height: 32 +Child: 178, type: 0, width: 32, height: 32 +Child: 179, type: 5, width: 32, height: 32 +Child: 180, type: 0, width: 32, height: 32 +Child: 181, type: 5, width: 32, height: 32 +Child: 182, type: 0, width: 32, height: 32 +Child: 183, type: 5, width: 32, height: 32 +Child: 184, type: 0, width: 32, height: 32 +Child: 185, type: 5, width: 32, height: 32 +Child: 186, type: 0, width: 32, height: 32 +Child: 187, type: 5, width: 32, height: 32 +Child: 188, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/663.txt b/server508/lists/interfaces/663.txt new file mode 100644 index 0000000..4565dd5 --- /dev/null +++ b/server508/lists/interfaces/663.txt @@ -0,0 +1,28 @@ +Child: 0, type: 3, width: 173, height: 111 +Child: 1, type: 3, width: 161, height: 105 +Child: 2, type: 3, width: 143, height: 95 +Child: 3, type: 6, width: 78, height: 86 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 116, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 53 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 115, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 53 +Child: 12, type: 5, width: 32, height: 47 +Child: 13, type: 5, width: 164, height: 32 +Child: 14, type: 5, width: 32, height: 47 +Child: 15, type: 5, width: 165, height: 32 +Child: 16, type: 5, width: 25, height: 25 +Child: 17, message: 100% +Child: 18, type: 5, width: 25, height: 25 +Child: 19, message: 9999 +Child: 20, type: 0, width: 38, height: 38 +Child: 21, type: 5, width: 25, height: 25 +Child: 22, type: 0, width: 38, height: 38 +Child: 23, type: 5, width: 25, height: 25 +Child: 24, type: 5, width: 166, height: 20 +Child: 25, message: +Child: 26, type: 0, width: 189, height: 260 +Child: 27, type: 0, width: 190, height: 261 diff --git a/server508/lists/interfaces/664.txt b/server508/lists/interfaces/664.txt new file mode 100644 index 0000000..cbad865 --- /dev/null +++ b/server508/lists/interfaces/664.txt @@ -0,0 +1,32 @@ +Child: 0, message: %1 +Child: 1, type: 5, width: 70, height: 46 +Child: 2, type: 5, width: 34, height: 24 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 34, height: 24 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 70, height: 46 +Child: 8, message: Summon +Child: 9, type: 5, width: 150, height: 46 +Child: 10, message: Auto-retaliate
(Off) +Child: 11, type: 0, width: 183, height: 162 +Child: 12, type: 3, width: 155, height: 22 +Child: 13, type: 5, width: 150, height: 26 +Child: 14, type: 0, width: 158, height: 64 +Child: 15, type: 6, width: 143, height: 13 +Child: 16, type: 6, width: 16, height: 13 +Child: 17, type: 6, width: 16, height: 13 +Child: 18, type: 6, width: 15, height: 13 +Child: 19, type: 6, width: 15, height: 13 +Child: 20, type: 6, width: 15, height: 13 +Child: 21, type: 6, width: 15, height: 13 +Child: 22, type: 6, width: 15, height: 13 +Child: 23, type: 6, width: 15, height: 13 +Child: 24, type: 6, width: 16, height: 13 +Child: 25, type: 6, width: 16, height: 13 +Child: 26, message: S P E C I A L A T T A C K +Child: 27, message: Combat Lvl: %1 +Child: 28, message: Bash +Child: 29, message: Pound +Child: 30, message: Focus +Child: 31, type: 6, width: 32, height: 32 diff --git a/server508/lists/interfaces/665.txt b/server508/lists/interfaces/665.txt new file mode 100644 index 0000000..ba0055b --- /dev/null +++ b/server508/lists/interfaces/665.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/666.txt b/server508/lists/interfaces/666.txt new file mode 100644 index 0000000..f00b252 --- /dev/null +++ b/server508/lists/interfaces/666.txt @@ -0,0 +1,24 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 489, height: 305 +Child: 2, type: 5, width: 485, height: 300 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 243 +Child: 6, type: 5, width: 424, height: 32 +Child: 7, type: 5, width: 423, height: 32 +Child: 8, type: 5, width: 16, height: 16 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 465, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, message: Scroll Creation +Child: 16, type: 0, width: 453, height: 257 +Child: 17, type: 0, width: 16, height: 257 +Child: 18, type: 5, width: 79, height: 20 +Child: 19, type: 5, width: 25, height: 18 +Child: 20, type: 5, width: 79, height: 20 +Child: 21, type: 5, width: 25, height: 18 +Child: 22, type: 0, width: 512, height: 334 +Child: 23, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/667.txt b/server508/lists/interfaces/667.txt new file mode 100644 index 0000000..926ccce --- /dev/null +++ b/server508/lists/interfaces/667.txt @@ -0,0 +1,48 @@ +Child: 0, type: 5, width: 482, height: 297 +Child: 1, message: Equip Your Character... +Child: 2, type: 6, width: 105, height: 195 +Child: 3, type: 5, width: 26, height: 23 +Child: 4, type: 5, width: 32, height: 50 +Child: 5, type: 5, width: 32, height: 130 +Child: 6, type: 5, width: 32, height: 50 +Child: 7, type: 5, width: 48, height: 32 +Child: 8, type: 5, width: 82, height: 32 +Child: 9, type: 5, width: 36, height: 36 +Child: 10, type: 5, width: 36, height: 36 +Child: 11, type: 5, width: 36, height: 36 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 36, height: 36 +Child: 14, type: 5, width: 36, height: 36 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 36, height: 36 +Child: 17, type: 5, width: 36, height: 36 +Child: 18, type: 5, width: 36, height: 36 +Child: 19, type: 5, width: 36, height: 36 +Child: 20, type: 0, width: 163, height: 199 +Child: 21, type: 0, width: 146, height: 261 +Child: 22, message: Attack bonus +Child: 23, message: Defence bonus +Child: 24, message: Stab: +120 +Child: 25, message: Slash:+120 +Child: 26, message: Crush:+120 +Child: 27, message: Magic: +120 +Child: 28, message: Range: +120 +Child: 29, message: Stab: +120 +Child: 30, message: Slash: +120 +Child: 31, message: Crush: +120 +Child: 32, message: Magic: +120 +Child: 33, message: Range: +120 +Child: 34, message: Summoning: +120 +Child: 35, message: Other bonuses +Child: 36, message: Strength: +120 +Child: 37, message: Prayer: +120 +Child: 38, message: %1kg +Child: 39, type: 5, width: 17, height: 18 +Child: 40, type: 5, width: 32, height: 32 +Child: 41, type: 5, width: 32, height: 32 +Child: 42, type: 5, width: 32, height: 32 +Child: 43, type: 5, width: 32, height: 32 +Child: 44, type: 5, width: 32, height: 240 +Child: 45, type: 5, width: 32, height: 239 +Child: 46, type: 5, width: 425, height: 32 +Child: 47, type: 5, width: 426, height: 32 diff --git a/server508/lists/interfaces/668.txt b/server508/lists/interfaces/668.txt new file mode 100644 index 0000000..e370c45 --- /dev/null +++ b/server508/lists/interfaces/668.txt @@ -0,0 +1,11 @@ +Child: 0, message: Pick a Puppy +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 5, width: 57, height: 13 +Child: 3, type: 6, width: 39, height: 37 +Child: 4, type: 6, width: 48, height: 41 +Child: 5, type: 6, width: 49, height: 34 +Child: 6, type: 6, width: 44, height: 43 +Child: 7, type: 6, width: 48, height: 45 +Child: 8, type: 6, width: 46, height: 37 +Child: 9, type: 0, width: 506, height: 129 +Child: 10, type: 0, width: 506, height: 129 diff --git a/server508/lists/interfaces/669.txt b/server508/lists/interfaces/669.txt new file mode 100644 index 0000000..32c48f9 --- /dev/null +++ b/server508/lists/interfaces/669.txt @@ -0,0 +1,24 @@ +Child: 0, type: 3, width: 489, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, message: Summoning Pouch Creation +Child: 15, type: 0, width: 453, height: 257 +Child: 16, type: 0, width: 453, height: 257 +Child: 17, type: 0, width: 16, height: 257 +Child: 18, type: 5, width: 79, height: 20 +Child: 19, type: 5, width: 25, height: 18 +Child: 20, type: 5, width: 79, height: 20 +Child: 21, type: 5, width: 25, height: 18 +Child: 22, type: 0, width: 512, height: 334 +Child: 23, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/67.txt b/server508/lists/interfaces/67.txt new file mode 100644 index 0000000..317be8c --- /dev/null +++ b/server508/lists/interfaces/67.txt @@ -0,0 +1,9 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Line4 +Child: 8, message: Click here to continue diff --git a/server508/lists/interfaces/670.txt b/server508/lists/interfaces/670.txt new file mode 100644 index 0000000..6d00206 --- /dev/null +++ b/server508/lists/interfaces/670.txt @@ -0,0 +1 @@ +Child: 0, type: 0, width: 165, height: 245 diff --git a/server508/lists/interfaces/671.txt b/server508/lists/interfaces/671.txt new file mode 100644 index 0000000..8a44746 --- /dev/null +++ b/server508/lists/interfaces/671.txt @@ -0,0 +1,31 @@ +Child: 0, type: 3, width: 371, height: 305 +Child: 1, type: 5, width: 362, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 307, height: 34 +Child: 6, type: 5, width: 306, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 349, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 16, height: 16 +Child: 14, message: Familiar Inventory +Child: 15, type: 6, width: 0, height: 0 +Child: 16, type: 5, width: 324, height: 32 +Child: 17, type: 5, width: 324, height: 32 +Child: 18, type: 5, width: 324, height: 32 +Child: 19, type: 5, width: 324, height: 32 +Child: 20, type: 5, width: 32, height: 264 +Child: 21, type: 5, width: 32, height: 264 +Child: 22, type: 5, width: 32, height: 264 +Child: 23, type: 5, width: 32, height: 264 +Child: 24, type: 5, width: 32, height: 264 +Child: 25, type: 5, width: 32, height: 264 +Child: 26, type: 6, width: 0, height: 0 +Child: 27, type: 0, width: 308, height: 244 +Child: 28, type: 0, width: 356, height: 292 +Child: 29, type: 5, width: 21, height: 21 +Child: 30, type: 0, width: 323, height: 265 diff --git a/server508/lists/interfaces/672.txt b/server508/lists/interfaces/672.txt new file mode 100644 index 0000000..31ff530 --- /dev/null +++ b/server508/lists/interfaces/672.txt @@ -0,0 +1,25 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 489, height: 305 +Child: 2, type: 5, width: 485, height: 300 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 243 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 424, height: 32 +Child: 15, message: Summoning Pouch Creation +Child: 16, type: 0, width: 453, height: 257 +Child: 17, type: 0, width: 453, height: 257 +Child: 18, type: 0, width: 16, height: 257 +Child: 19, type: 5, width: 79, height: 20 +Child: 20, type: 5, width: 25, height: 18 +Child: 21, type: 5, width: 79, height: 20 +Child: 22, type: 5, width: 25, height: 18 +Child: 23, type: 0, width: 512, height: 334 +Child: 24, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/673.txt b/server508/lists/interfaces/673.txt new file mode 100644 index 0000000..dff2914 --- /dev/null +++ b/server508/lists/interfaces/673.txt @@ -0,0 +1,23 @@ +Child: 0, type: 3, width: 489, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, message: Scroll Creation +Child: 15, type: 0, width: 453, height: 257 +Child: 16, type: 0, width: 16, height: 257 +Child: 17, type: 5, width: 79, height: 20 +Child: 18, type: 5, width: 25, height: 18 +Child: 19, type: 5, width: 79, height: 20 +Child: 20, type: 5, width: 25, height: 19 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/675.txt b/server508/lists/interfaces/675.txt new file mode 100644 index 0000000..7277696 --- /dev/null +++ b/server508/lists/interfaces/675.txt @@ -0,0 +1,90 @@ +Child: 0, type: 5, width: 480, height: 293 +Child: 1, type: 5, width: 37, height: 276 +Child: 2, type: 5, width: 22, height: 281 +Child: 3, type: 5, width: 468, height: 23 +Child: 4, type: 5, width: 478, height: 38 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 477, height: 35 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: What Would You Like To Make? +Child: 14, type: 0, width: 450, height: 60 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, message: You need a ring mould to craft rings. +Child: 17, message: Rings +Child: 18, type: 0, width: 394, height: 60 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 0, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 0, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 0, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 0, width: 32, height: 32 +Child: 27, type: 6, width: 32, height: 32 +Child: 28, type: 0, width: 32, height: 32 +Child: 29, type: 6, width: 32, height: 32 +Child: 30, type: 0, width: 32, height: 32 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 0, width: 32, height: 32 +Child: 33, type: 0, width: 450, height: 60 +Child: 34, type: 6, width: 43, height: 38 +Child: 35, message: You need a necklace mould to craft necklaces. +Child: 36, message: Necklaces +Child: 37, type: 0, width: 394, height: 60 +Child: 38, type: 6, width: 32, height: 32 +Child: 39, type: 0, width: 32, height: 32 +Child: 40, type: 6, width: 32, height: 32 +Child: 41, type: 0, width: 32, height: 32 +Child: 42, type: 6, width: 32, height: 32 +Child: 43, type: 0, width: 32, height: 32 +Child: 44, type: 6, width: 32, height: 32 +Child: 45, type: 0, width: 32, height: 32 +Child: 46, type: 6, width: 32, height: 32 +Child: 47, type: 0, width: 32, height: 32 +Child: 48, type: 6, width: 32, height: 32 +Child: 49, type: 0, width: 32, height: 32 +Child: 50, type: 6, width: 32, height: 32 +Child: 51, type: 0, width: 32, height: 32 +Child: 52, type: 0, width: 450, height: 60 +Child: 53, type: 6, width: 32, height: 32 +Child: 54, message: You need an amulet mould to craft amulets. +Child: 55, message: Amulets +Child: 56, type: 0, width: 394, height: 60 +Child: 57, type: 6, width: 32, height: 32 +Child: 58, type: 0, width: 32, height: 32 +Child: 59, type: 6, width: 32, height: 32 +Child: 60, type: 0, width: 32, height: 32 +Child: 61, type: 6, width: 32, height: 32 +Child: 62, type: 0, width: 32, height: 32 +Child: 63, type: 6, width: 32, height: 32 +Child: 64, type: 0, width: 32, height: 32 +Child: 65, type: 6, width: 32, height: 32 +Child: 66, type: 0, width: 32, height: 32 +Child: 67, type: 6, width: 32, height: 32 +Child: 68, type: 0, width: 32, height: 32 +Child: 69, type: 6, width: 32, height: 32 +Child: 70, type: 0, width: 32, height: 32 +Child: 71, type: 0, width: 450, height: 60 +Child: 72, type: 6, width: 32, height: 32 +Child: 73, message: You need a bracelet mould to craft bracelets. +Child: 74, message: Bracelets +Child: 75, type: 0, width: 394, height: 60 +Child: 76, type: 6, width: 32, height: 32 +Child: 77, type: 0, width: 32, height: 32 +Child: 78, type: 6, width: 32, height: 32 +Child: 79, type: 0, width: 32, height: 32 +Child: 80, type: 6, width: 32, height: 32 +Child: 81, type: 0, width: 32, height: 32 +Child: 82, type: 6, width: 32, height: 32 +Child: 83, type: 0, width: 32, height: 32 +Child: 84, type: 6, width: 32, height: 32 +Child: 85, type: 0, width: 32, height: 32 +Child: 86, type: 6, width: 32, height: 32 +Child: 87, type: 0, width: 32, height: 32 +Child: 88, type: 6, width: 32, height: 32 +Child: 89, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/676.txt b/server508/lists/interfaces/676.txt new file mode 100644 index 0000000..532623a --- /dev/null +++ b/server508/lists/interfaces/676.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is dangerous and death is more than a possibility! Are you sure you want to go down there? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/677.txt b/server508/lists/interfaces/677.txt new file mode 100644 index 0000000..532623a --- /dev/null +++ b/server508/lists/interfaces/677.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is dangerous and death is more than a possibility! Are you sure you want to go down there? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/678.txt b/server508/lists/interfaces/678.txt new file mode 100644 index 0000000..532623a --- /dev/null +++ b/server508/lists/interfaces/678.txt @@ -0,0 +1,22 @@ +Child: 0, type: 5, width: 319, height: 203 +Child: 1, type: 5, width: 32, height: 154 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 23, height: 155 +Child: 4, type: 5, width: 270, height: 26 +Child: 5, type: 5, width: 269, height: 24 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 311, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, message: Warning! +Child: 14, message: This area is dangerous and death is more than a possibility! Are you sure you want to go down there? +Child: 15, type: 5, width: 19, height: 19 +Child: 16, type: 5, width: 19, height: 19 +Child: 17, message: Proceed regardless +Child: 18, message: Stay out +Child: 19, message: Don't ask me this again +Child: 20, type: 5, width: 19, height: 19 +Child: 21, type: 0, width: 270, height: 20 diff --git a/server508/lists/interfaces/679.txt b/server508/lists/interfaces/679.txt new file mode 100644 index 0000000..32b1c54 --- /dev/null +++ b/server508/lists/interfaces/679.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: +Child: 2, message: Message of the week +Child: 3, type: 6, width: 86, height: 122 +Child: 4, type: 6, width: 94, height: 154 +Child: 5, type: 6, width: 126, height: 144 +Child: 6, type: 6, width: 83, height: 94 diff --git a/server508/lists/interfaces/68.txt b/server508/lists/interfaces/68.txt new file mode 100644 index 0000000..8b74a07 --- /dev/null +++ b/server508/lists/interfaces/68.txt @@ -0,0 +1,5 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 diff --git a/server508/lists/interfaces/680.txt b/server508/lists/interfaces/680.txt new file mode 100644 index 0000000..ea61b8a --- /dev/null +++ b/server508/lists/interfaces/680.txt @@ -0,0 +1,40 @@ +Child: 0, type: 3, width: 487, height: 10 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 5, width: 16, height: 16 +Child: 3, type: 3, width: 10, height: 310 +Child: 4, type: 3, width: 10, height: 300 +Child: 5, type: 3, width: 498, height: 10 +Child: 6, type: 3, width: 492, height: 5 +Child: 7, type: 3, width: 5, height: 315 +Child: 8, type: 3, width: 5, height: 310 +Child: 9, type: 3, width: 498, height: 5 +Child: 10, type: 5, width: 75, height: 93 +Child: 11, type: 5, width: 75, height: 93 +Child: 12, type: 5, width: 32, height: 270 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 270 +Child: 15, type: 5, width: 448, height: 34 +Child: 16, type: 5, width: 448, height: 32 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 0, width: 512, height: 334 +Child: 21, type: 0, width: 16391, height: 16391 +Child: 22, type: 0, width: 16391, height: 16391 +Child: 23, type: 5, width: 32, height: 334 +Child: 24, type: 5, width: 462, height: 32 +Child: 25, type: 5, width: 512, height: 32 +Child: 26, type: 5, width: 32, height: 334 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 0, width: 8192, height: 16391 +Child: 32, type: 0, width: 8188, height: 16391 +Child: 33, type: 0, width: 16391, height: 8192 +Child: 34, type: 0, width: 16391, height: 8182 +Child: 35, type: 0, width: 512, height: 334 +Child: 36, type: 5, width: 256, height: 16384 +Child: 37, type: 5, width: 256, height: 16391 +Child: 38, type: 5, width: 16391, height: 167 +Child: 39, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/681.txt b/server508/lists/interfaces/681.txt new file mode 100644 index 0000000..f7bda0e --- /dev/null +++ b/server508/lists/interfaces/681.txt @@ -0,0 +1,146 @@ +Child: 0, type: 5, width: 497, height: 302 +Child: 1, type: 5, width: 512, height: 334 +Child: 2, type: 3, width: 512, height: 334 +Child: 3, type: 5, width: 496, height: 32 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, type: 0, width: 496, height: 88 +Child: 6, type: 5, width: 16, height: 16 +Child: 7, type: 0, width: 512, height: 334 +Child: 8, type: 0, width: 493, height: 100 +Child: 9, type: 0, width: 505, height: 211 +Child: 10, type: 3, width: 496, height: 211 +Child: 11, type: 6, width: 287, height: 187 +Child: 12, type: 0, width: 505, height: 211 +Child: 13, type: 3, width: 496, height: 211 +Child: 14, type: 6, width: 269, height: 190 +Child: 15, type: 0, width: 497, height: 211 +Child: 16, type: 6, width: 37, height: 19 +Child: 17, type: 6, width: 57, height: 19 +Child: 18, type: 6, width: 75, height: 27 +Child: 19, type: 6, width: 93, height: 21 +Child: 20, type: 6, width: 57, height: 37 +Child: 21, type: 6, width: 75, height: 41 +Child: 22, type: 6, width: 75, height: 37 +Child: 23, type: 6, width: 57, height: 37 +Child: 24, type: 6, width: 75, height: 37 +Child: 25, type: 6, width: 57, height: 56 +Child: 26, type: 6, width: 37, height: 21 +Child: 27, type: 6, width: 57, height: 25 +Child: 28, type: 6, width: 75, height: 23 +Child: 29, type: 6, width: 93, height: 25 +Child: 30, type: 6, width: 57, height: 44 +Child: 31, type: 6, width: 75, height: 42 +Child: 32, type: 6, width: 75, height: 44 +Child: 33, type: 6, width: 59, height: 42 +Child: 34, type: 6, width: 76, height: 45 +Child: 35, type: 6, width: 64, height: 63 +Child: 36, type: 3, width: 36, height: 18 +Child: 37, type: 3, width: 54, height: 18 +Child: 38, type: 3, width: 72, height: 18 +Child: 39, type: 3, width: 90, height: 18 +Child: 40, type: 3, width: 54, height: 36 +Child: 41, type: 3, width: 72, height: 36 +Child: 42, type: 3, width: 72, height: 36 +Child: 43, type: 3, width: 54, height: 36 +Child: 44, type: 3, width: 72, height: 36 +Child: 45, type: 3, width: 54, height: 54 +Child: 46, type: 3, width: 18, height: 36 +Child: 47, type: 3, width: 18, height: 54 +Child: 48, type: 3, width: 18, height: 72 +Child: 49, type: 3, width: 18, height: 90 +Child: 50, type: 3, width: 36, height: 54 +Child: 51, type: 3, width: 36, height: 72 +Child: 52, type: 3, width: 36, height: 72 +Child: 53, type: 3, width: 36, height: 54 +Child: 54, type: 3, width: 36, height: 72 +Child: 55, type: 3, width: 54, height: 54 +Child: 56, type: 3, width: 498, height: 87 +Child: 57, type: 6, width: 37, height: 21 +Child: 58, type: 6, width: 37, height: 19 +Child: 59, type: 6, width: 37, height: 25 +Child: 60, type: 6, width: 37, height: 19 +Child: 61, type: 3, width: 42, height: 24 +Child: 62, type: 6, width: 57, height: 25 +Child: 63, type: 6, width: 57, height: 19 +Child: 64, type: 6, width: 57, height: 24 +Child: 65, type: 6, width: 57, height: 23 +Child: 66, type: 3, width: 61, height: 22 +Child: 67, type: 6, width: 75, height: 23 +Child: 68, type: 6, width: 75, height: 27 +Child: 69, type: 6, width: 75, height: 29 +Child: 70, type: 6, width: 75, height: 19 +Child: 71, type: 3, width: 81, height: 25 +Child: 72, type: 6, width: 93, height: 25 +Child: 73, type: 6, width: 93, height: 21 +Child: 74, type: 6, width: 93, height: 31 +Child: 75, type: 6, width: 93, height: 29 +Child: 76, type: 3, width: 99, height: 24 +Child: 77, type: 6, width: 57, height: 44 +Child: 78, type: 6, width: 57, height: 37 +Child: 79, type: 6, width: 57, height: 47 +Child: 80, type: 6, width: 57, height: 40 +Child: 81, type: 3, width: 62, height: 40 +Child: 82, type: 6, width: 75, height: 42 +Child: 83, type: 6, width: 75, height: 41 +Child: 84, type: 6, width: 75, height: 44 +Child: 85, type: 6, width: 75, height: 42 +Child: 86, type: 3, width: 78, height: 39 +Child: 87, type: 6, width: 75, height: 44 +Child: 88, type: 6, width: 75, height: 37 +Child: 89, type: 6, width: 75, height: 43 +Child: 90, type: 6, width: 75, height: 43 +Child: 91, type: 3, width: 78, height: 39 +Child: 92, type: 6, width: 59, height: 42 +Child: 93, type: 6, width: 57, height: 37 +Child: 94, type: 6, width: 60, height: 48 +Child: 95, type: 6, width: 60, height: 43 +Child: 96, type: 3, width: 58, height: 42 +Child: 97, type: 6, width: 76, height: 45 +Child: 98, type: 6, width: 75, height: 37 +Child: 99, type: 6, width: 78, height: 43 +Child: 100, type: 6, width: 78, height: 43 +Child: 101, type: 3, width: 80, height: 41 +Child: 102, type: 6, width: 64, height: 63 +Child: 103, type: 6, width: 57, height: 56 +Child: 104, type: 6, width: 64, height: 65 +Child: 105, type: 6, width: 60, height: 60 +Child: 106, type: 3, width: 59, height: 59 +Child: 107, type: 6, width: 0, height: 0 +Child: 108, type: 3, width: 0, height: 0 +Child: 109, type: 0, width: 510, height: 332 +Child: 110, type: 3, width: 324, height: 40 +Child: 111, type: 3, width: 324, height: 40 +Child: 112, message: Close +Child: 113, message: Repairs Complete +Child: 114, message: You finish repairing the catapult. The Guard looks rather impressed. +Child: 115, type: 0, width: 85, height: 49 +Child: 116, type: 3, width: 84, height: 47 +Child: 117, type: 0, width: 82, height: 45 +Child: 118, type: 3, width: 83, height: 47 +Child: 119, type: 0, width: 85, height: 49 +Child: 120, type: 3, width: 84, height: 47 +Child: 121, type: 0, width: 82, height: 45 +Child: 122, type: 3, width: 83, height: 47 +Child: 123, type: 0, width: 0, height: 0 +Child: 124, type: 6, width: 61, height: 43 +Child: 125, type: 6, width: 64, height: 42 +Child: 126, type: 0, width: 512, height: 334 +Child: 127, type: 0, width: 16391, height: 16391 +Child: 128, type: 0, width: 16391, height: 16391 +Child: 129, type: 5, width: 32, height: 334 +Child: 130, type: 5, width: 462, height: 32 +Child: 131, type: 5, width: 512, height: 32 +Child: 132, type: 5, width: 32, height: 334 +Child: 133, type: 5, width: 32, height: 32 +Child: 134, type: 5, width: 32, height: 32 +Child: 135, type: 5, width: 32, height: 32 +Child: 136, type: 5, width: 32, height: 32 +Child: 137, type: 0, width: 8192, height: 16391 +Child: 138, type: 0, width: 8188, height: 16391 +Child: 139, type: 0, width: 16391, height: 8192 +Child: 140, type: 0, width: 16391, height: 8182 +Child: 141, type: 0, width: 512, height: 334 +Child: 142, type: 5, width: 256, height: 16384 +Child: 143, type: 5, width: 256, height: 16391 +Child: 144, type: 5, width: 16391, height: 167 +Child: 145, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/682.txt b/server508/lists/interfaces/682.txt new file mode 100644 index 0000000..391b059 --- /dev/null +++ b/server508/lists/interfaces/682.txt @@ -0,0 +1,44 @@ +Child: 0, type: 3, width: 140, height: 44 +Child: 1, type: 3, width: 170, height: 60 +Child: 2, type: 6, width: 38, height: 36 +Child: 3, type: 6, width: 38, height: 36 +Child: 4, type: 3, width: 40, height: 34 +Child: 5, type: 6, width: 13, height: 13 +Child: 6, type: 6, width: 13, height: 13 +Child: 7, type: 6, width: 13, height: 13 +Child: 8, type: 6, width: 13, height: 13 +Child: 9, type: 6, width: 37, height: 27 +Child: 10, type: 3, width: 36, height: 29 +Child: 11, type: 6, width: 37, height: 27 +Child: 12, type: 3, width: 36, height: 29 +Child: 13, type: 3, width: 17, height: 16 +Child: 14, type: 3, width: 17, height: 16 +Child: 15, type: 5, width: 32, height: 64 +Child: 16, type: 5, width: 32, height: 64 +Child: 17, type: 5, width: 173, height: 32 +Child: 18, type: 5, width: 173, height: 32 +Child: 19, type: 5, width: 140, height: 32 +Child: 20, type: 5, width: 139, height: 32 +Child: 21, type: 5, width: 32, height: 44 +Child: 22, type: 5, width: 32, height: 44 +Child: 23, type: 6, width: 0, height: 0 +Child: 24, type: 5, width: 16, height: 16 +Child: 25, type: 5, width: 16, height: 16 +Child: 26, type: 0, width: 146, height: 14 +Child: 27, type: 3, width: 146, height: 14 +Child: 28, type: 6, width: 143, height: 13 +Child: 29, type: 6, width: 16, height: 13 +Child: 30, type: 6, width: 16, height: 13 +Child: 31, type: 6, width: 15, height: 13 +Child: 32, type: 6, width: 15, height: 13 +Child: 33, type: 6, width: 15, height: 13 +Child: 34, type: 6, width: 15, height: 13 +Child: 35, type: 6, width: 15, height: 13 +Child: 36, message: COUNTERWEIGHT +Child: 37, message: DIRECTION +Child: 38, type: 0, width: 203, height: 263 +Child: 39, type: 6, width: 9, height: 9 +Child: 40, type: 6, width: 9, height: 9 +Child: 41, type: 6, width: 9, height: 9 +Child: 42, type: 6, width: 9, height: 9 +Child: 43, type: 0, width: 167, height: 227 diff --git a/server508/lists/interfaces/683.txt b/server508/lists/interfaces/683.txt new file mode 100644 index 0000000..0a1d890 --- /dev/null +++ b/server508/lists/interfaces/683.txt @@ -0,0 +1,59 @@ +Child: 0, type: 3, width: 173, height: 119 +Child: 1, type: 3, width: 161, height: 108 +Child: 2, type: 3, width: 143, height: 94 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 116, height: 32 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 32, height: 60 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 115, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 60 +Child: 11, type: 6, width: 0, height: 0 +Child: 12, type: 5, width: 32, height: 91 +Child: 13, type: 5, width: 177, height: 32 +Child: 14, type: 5, width: 32, height: 91 +Child: 15, type: 5, width: 177, height: 32 +Child: 16, type: 6, width: 0, height: 32 +Child: 17, type: 6, width: 32, height: 0 +Child: 18, type: 3, width: 25, height: 25 +Child: 19, type: 3, width: 25, height: 25 +Child: 20, type: 3, width: 25, height: 25 +Child: 21, type: 3, width: 25, height: 25 +Child: 22, type: 0, width: 190, height: 261 +Child: 23, type: 0, width: 105, height: 105 +Child: 24, type: 6, width: 37, height: 19 +Child: 25, type: 6, width: 57, height: 19 +Child: 26, type: 6, width: 75, height: 19 +Child: 27, type: 6, width: 93, height: 19 +Child: 28, type: 6, width: 57, height: 37 +Child: 29, type: 6, width: 75, height: 37 +Child: 30, type: 6, width: 75, height: 37 +Child: 31, type: 6, width: 57, height: 37 +Child: 32, type: 6, width: 75, height: 37 +Child: 33, type: 6, width: 57, height: 56 +Child: 34, type: 5, width: 25, height: 25 +Child: 35, type: 5, width: 25, height: 25 +Child: 36, type: 5, width: 25, height: 25 +Child: 37, type: 5, width: 25, height: 25 +Child: 38, type: 6, width: 21, height: 28 +Child: 39, type: 6, width: 28, height: 21 +Child: 40, type: 6, width: 28, height: 21 +Child: 41, type: 6, width: 21, height: 28 +Child: 42, type: 6, width: 0, height: 32 +Child: 43, type: 0, width: 190, height: 261 +Child: 44, type: 0, width: 94, height: 27 +Child: 45, type: 0, width: 94, height: 27 +Child: 46, message: Yes, Restart +Child: 47, message: No, Cancel +Child: 48, message: Are you sure you want to restart the puzzle? +Child: 49, type: 0, width: 192, height: 267 +Child: 50, type: 3, width: 28, height: 21 +Child: 51, type: 0, width: 175, height: 131 +Child: 52, type: 3, width: 21, height: 28 +Child: 53, type: 3, width: 21, height: 28 +Child: 54, type: 3, width: 28, height: 21 +Child: 55, type: 3, width: 25, height: 25 +Child: 56, type: 3, width: 25, height: 25 +Child: 57, type: 3, width: 25, height: 25 +Child: 58, type: 3, width: 25, height: 25 diff --git a/server508/lists/interfaces/684.txt b/server508/lists/interfaces/684.txt new file mode 100644 index 0000000..c13c60b --- /dev/null +++ b/server508/lists/interfaces/684.txt @@ -0,0 +1,8 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 3, width: 181, height: 179 +Child: 2, type: 3, width: 181, height: 179 +Child: 3, message: Watch out for rabbits wandering around the farmyard. They are hungry and will look for flags, as they often mean hidden food! If a rabbit eats the seed under a flag, you will not get any points for it and will lose the flag. +Child: 4, message: You can improve your Hunter skill by finding ogleroots in the farmyard and feeding them to the rabbits. Ogleroots are magical vegetables and will cause the rabbit to disappear for a short amount of time. +Child: 5, type: 6, width: 90, height: 160 +Child: 6, type: 6, width: 72, height: 120 +Child: 7, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/685.txt b/server508/lists/interfaces/685.txt new file mode 100644 index 0000000..ef462fd --- /dev/null +++ b/server508/lists/interfaces/685.txt @@ -0,0 +1,23 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 16, height: 16 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 465, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, message: Farmer Blinkin's Vinesweeper Instructions +Child: 15, message: 1. Speak to either Mrs. Winkin in the barn or Farmer Blinkin outside to buy some flags. +Child: 16, message: 2. When you have some flags, head out into the farmyard area over any of the 4 stiles. +Child: 17, message: 3. Use your spade to dig up any of the holes around the farmyard. This will uncover what was in that hole. The aim is to place your flags in holes where you believe seeds are planted. +Child: 18, message: 4. If the hole has nothing in it, then it will uncover a radius of 2 holes in all directions +Child: 19, message: 5. If you uncover a number from 1-8, this means that there are that many seeds planted in the 8 holes surrounding the one that you have dug up. +Child: 20, message: 6. When you have a square that you are certain contains a seed, either right-click and select the 'Flag' option or use a flag on the hole. +Child: 21, message: 7. When a farmer sees a flag, he will come over to check beneath it. He will collect the flag and give points out if there was a seed there. If you have successfully found a seed, you will be able to get the flag back for free from either Mrs. Winkin or Farmer Blinkin. +Child: 22, message: 8. Rabbits roam the area and will attempt to eat seeds where flags are planted or where they have been dug up. Use the ogleroots that you find on them to make them disappear. diff --git a/server508/lists/interfaces/686.txt b/server508/lists/interfaces/686.txt new file mode 100644 index 0000000..16eb330 --- /dev/null +++ b/server508/lists/interfaces/686.txt @@ -0,0 +1,74 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 3, width: 456, height: 153 +Child: 3, type: 5, width: 32, height: 241 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 32, height: 243 +Child: 6, type: 5, width: 424, height: 34 +Child: 7, type: 5, width: 423, height: 32 +Child: 8, type: 5, width: 16, height: 16 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 465, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 32 +Child: 15, type: 5, width: 475, height: 32 +Child: 16, type: 5, width: 475, height: 32 +Child: 17, message: Mrs. Winkin's World of Seeds +Child: 18, type: 6, width: 24, height: 17 +Child: 19, type: 6, width: 57, height: 38 +Child: 20, type: 6, width: 57, height: 38 +Child: 21, type: 6, width: 57, height: 38 +Child: 22, type: 6, width: 32, height: 19 +Child: 23, type: 6, width: 32, height: 19 +Child: 24, type: 6, width: 32, height: 19 +Child: 25, type: 6, width: 32, height: 19 +Child: 26, type: 6, width: 32, height: 19 +Child: 27, type: 6, width: 33, height: 24 +Child: 28, type: 6, width: 31, height: 23 +Child: 29, type: 6, width: 29, height: 23 +Child: 30, type: 6, width: 33, height: 27 +Child: 31, type: 6, width: 33, height: 27 +Child: 32, type: 6, width: 30, height: 23 +Child: 33, type: 6, width: 33, height: 26 +Child: 34, type: 6, width: 33, height: 26 +Child: 35, type: 6, width: 33, height: 26 +Child: 36, type: 6, width: 33, height: 26 +Child: 37, type: 6, width: 33, height: 26 +Child: 38, type: 6, width: 38, height: 29 +Child: 39, type: 6, width: 34, height: 27 +Child: 40, type: 6, width: 39, height: 23 +Child: 41, type: 6, width: 37, height: 26 +Child: 42, type: 6, width: 27, height: 21 +Child: 43, type: 6, width: 29, height: 21 +Child: 44, type: 6, width: 30, height: 23 +Child: 45, type: 6, width: 17, height: 25 +Child: 46, type: 6, width: 47, height: 28 +Child: 47, message: Trade points for seeds and flags +Child: 48, type: 5, width: 457, height: 32 +Child: 49, type: 5, width: 456, height: 32 +Child: 50, type: 5, width: 32, height: 152 +Child: 51, type: 5, width: 32, height: 152 +Child: 52, message: Trade points for XP +Child: 53, type: 0, width: 95, height: 43 +Child: 54, message: Trade for +Child: 55, message: XP +Child: 56, message: +Child: 57, message: Total points remaining : +Child: 58, type: 0, width: 512, height: 334 +Child: 59, type: 0, width: 32, height: 32 +Child: 60, type: 0, width: 512, height: 334 +Child: 61, type: 3, width: 512, height: 332 +Child: 62, type: 5, width: 147, height: 101 +Child: 63, type: 5, width: 32, height: 32 +Child: 64, type: 5, width: 32, height: 44 +Child: 65, type: 5, width: 32, height: 44 +Child: 66, type: 5, width: 32, height: 32 +Child: 67, type: 5, width: 32, height: 32 +Child: 68, type: 5, width: 32, height: 32 +Child: 69, type: 5, width: 100, height: 32 +Child: 70, type: 5, width: 99, height: 32 +Child: 71, message: Are you sure you want to trade your remaining points for XP? +Child: 72, message: Yes - let me trade +Child: 73, message: No - don't trade diff --git a/server508/lists/interfaces/687.txt b/server508/lists/interfaces/687.txt new file mode 100644 index 0000000..7150cea --- /dev/null +++ b/server508/lists/interfaces/687.txt @@ -0,0 +1,64 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 3, width: 181, height: 179 +Child: 2, type: 3, width: 181, height: 179 +Child: 3, message: Use a spade to dig in the farmer's field and try to work out where the seeds have been planted. Try not to dig up the seeds, as this will lose you points! Usually, when you dig a square, you will uncover a number, which shows how many seeds are in the holes next to it. +Child: 4, message: Plant your flags in holes where you think that seeds may be found. If you are correct, you will get lots of points, but if you are wrong, you will lose the flag. If you are close to other players, you might get some points if they find seeds, too!" +Child: 5, type: 6, width: 165, height: 164 +Child: 6, type: 6, width: 165, height: 164 +Child: 7, type: 6, width: 15, height: 25 +Child: 8, type: 6, width: 15, height: 25 +Child: 9, type: 6, width: 15, height: 25 +Child: 10, type: 6, width: 15, height: 25 +Child: 11, type: 6, width: 15, height: 25 +Child: 12, type: 6, width: 15, height: 25 +Child: 13, type: 6, width: 15, height: 25 +Child: 14, type: 6, width: 15, height: 25 +Child: 15, type: 6, width: 15, height: 25 +Child: 16, type: 6, width: 15, height: 25 +Child: 17, type: 6, width: 15, height: 25 +Child: 18, type: 6, width: 15, height: 25 +Child: 19, type: 6, width: 15, height: 25 +Child: 20, type: 6, width: 15, height: 25 +Child: 21, type: 6, width: 15, height: 25 +Child: 22, type: 6, width: 15, height: 25 +Child: 23, type: 6, width: 19, height: 25 +Child: 24, type: 6, width: 19, height: 25 +Child: 25, type: 6, width: 19, height: 25 +Child: 26, type: 6, width: 19, height: 25 +Child: 27, type: 6, width: 19, height: 25 +Child: 28, type: 6, width: 19, height: 25 +Child: 29, type: 6, width: 19, height: 25 +Child: 30, type: 6, width: 19, height: 25 +Child: 31, type: 6, width: 18, height: 26 +Child: 32, type: 6, width: 18, height: 26 +Child: 33, type: 6, width: 18, height: 26 +Child: 34, type: 6, width: 18, height: 26 +Child: 35, type: 6, width: 18, height: 26 +Child: 36, type: 6, width: 18, height: 26 +Child: 37, type: 6, width: 33, height: 22 +Child: 38, type: 6, width: 33, height: 22 +Child: 39, type: 6, width: 33, height: 22 +Child: 40, type: 6, width: 33, height: 22 +Child: 41, type: 6, width: 33, height: 22 +Child: 42, type: 6, width: 33, height: 22 +Child: 43, type: 5, width: 26, height: 23 +Child: 44, type: 0, width: 512, height: 334 +Child: 45, type: 0, width: 16391, height: 16391 +Child: 46, type: 0, width: 16391, height: 16391 +Child: 47, type: 5, width: 32, height: 334 +Child: 48, type: 5, width: 462, height: 32 +Child: 49, type: 5, width: 512, height: 32 +Child: 50, type: 5, width: 32, height: 334 +Child: 51, type: 5, width: 32, height: 32 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 5, width: 32, height: 32 +Child: 54, type: 5, width: 32, height: 32 +Child: 55, type: 0, width: 8192, height: 16391 +Child: 56, type: 0, width: 8188, height: 16391 +Child: 57, type: 0, width: 16391, height: 8192 +Child: 58, type: 0, width: 16391, height: 8182 +Child: 59, type: 0, width: 512, height: 334 +Child: 60, type: 5, width: 256, height: 16384 +Child: 61, type: 5, width: 256, height: 16391 +Child: 62, type: 5, width: 16391, height: 167 +Child: 63, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/688.txt b/server508/lists/interfaces/688.txt new file mode 100644 index 0000000..a2a1b10 --- /dev/null +++ b/server508/lists/interfaces/688.txt @@ -0,0 +1,15 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 3, width: 181, height: 179 +Child: 2, type: 3, width: 181, height: 179 +Child: 3, message: While you are in the area, you will be able to see your points total in the top-right corner of your screen. Your points are saved, so you can leave if you wish and return another time to pick up from where you left off. +Child: 4, message: You can trade your points in for prizes or Farming experience by speaking to Mrs. Winkin in the Winkin shop. +Child: 5, type: 6, width: 65, height: 44 +Child: 6, type: 6, width: 59, height: 123 +Child: 7, type: 3, width: 74, height: 36 +Child: 8, message: Points +Child: 9, message: 234,567 +Child: 10, type: 6, width: 67, height: 161 +Child: 11, message: XP +Child: 12, type: 6, width: 35, height: 51 +Child: 13, type: 6, width: 38, height: 29 +Child: 14, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/689.txt b/server508/lists/interfaces/689.txt new file mode 100644 index 0000000..f5826c4 --- /dev/null +++ b/server508/lists/interfaces/689.txt @@ -0,0 +1,10 @@ +Child: 0, type: 0, width: 494, height: 62 +Child: 1, type: 3, width: 83, height: 37 +Child: 2, type: 3, width: 89, height: 4 +Child: 3, type: 3, width: 89, height: 4 +Child: 4, type: 3, width: 4, height: 37 +Child: 5, type: 3, width: 4, height: 37 +Child: 6, type: 3, width: 91, height: 45 +Child: 7, message: Points +Child: 8, message: None +Child: 9, message: diff --git a/server508/lists/interfaces/69.txt b/server508/lists/interfaces/69.txt new file mode 100644 index 0000000..5d6dccd --- /dev/null +++ b/server508/lists/interfaces/69.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 diff --git a/server508/lists/interfaces/690.txt b/server508/lists/interfaces/690.txt new file mode 100644 index 0000000..b703374 --- /dev/null +++ b/server508/lists/interfaces/690.txt @@ -0,0 +1,12 @@ +Child: 0, type: 3, width: 514, height: 335 +Child: 1, type: 3, width: 181, height: 179 +Child: 2, type: 3, width: 181, height: 179 +Child: 3, message: Farmers wander the area looking for seeds that have been dug up by mistake. They will also collect any flags you have placed, resetting the nearby area and giving you points if the flag is in the right place. +Child: 4, message: If you place a flag over a seed, you will be able to get the flag back from Mrs. Winkin or Farmer Blinkin. If you placed a flag wrongly, you will have to pay 500gp for a new one. +Child: 5, type: 6, width: 74, height: 176 +Child: 6, type: 6, width: 59, height: 123 +Child: 7, type: 6, width: 81, height: 30 +Child: 8, type: 6, width: 83, height: 54 +Child: 9, type: 6, width: 43, height: 69 +Child: 10, type: 6, width: 96, height: 81 +Child: 11, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/691.txt b/server508/lists/interfaces/691.txt new file mode 100644 index 0000000..ba05ccd --- /dev/null +++ b/server508/lists/interfaces/691.txt @@ -0,0 +1,6 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 0, width: 16384, height: 16391 +Child: 2, type: 6, width: 45415, height: 26005 +Child: 3, type: 6, width: 4359, height: 2361 +Child: 4, type: 6, width: 6343, height: 3587 +Child: 5, type: 6, width: 6727, height: 16930 diff --git a/server508/lists/interfaces/692.txt b/server508/lists/interfaces/692.txt new file mode 100644 index 0000000..c226bae --- /dev/null +++ b/server508/lists/interfaces/692.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 21863, height: 35620 +Child: 1, type: 6, width: 28199, height: 53377 +Child: 2, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/693.txt b/server508/lists/interfaces/693.txt new file mode 100644 index 0000000..21147a0 --- /dev/null +++ b/server508/lists/interfaces/693.txt @@ -0,0 +1,11 @@ +Child: 0, type: 6, width: 38375, height: 31499 +Child: 1, type: 6, width: 13447, height: 58577 +Child: 2, type: 6, width: 30567, height: 56271 +Child: 3, type: 0, width: 16391, height: 16391 +Child: 4, message: Congratulations +Child: 5, message: Congratulations +Child: 6, message: you have +Child: 7, message: you have +Child: 8, message: slain bork! +Child: 9, message: slain bork! +Child: 10, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/694.txt b/server508/lists/interfaces/694.txt new file mode 100644 index 0000000..91e0f3a --- /dev/null +++ b/server508/lists/interfaces/694.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, message: However nice your friend is in RuneScape, they are still a stranger to you in real life. We would suggest that you have fun and enjoy the player's company in-game, but leave it there. If you are at all concerned, speak to a parent, friend or adult that you trust. +Child: 2, message: Incorrect! +Child: 3, message: Correct! +Child: 4, message: Be polite and say no, but if the other player is persistent you can use the report abuse button and ignore functions, which can both be found at the bottom of your game window. If you are at all concerned, speak to a parent, friend or adult that you trust. +Child: 5, type: 3, width: 512, height: 334 +Child: 6, type: 5, width: 449, height: 230 +Child: 7, type: 5, width: 25, height: 174 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 391, height: 32 +Child: 11, type: 5, width: 32, height: 175 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 387, height: 25 +Child: 15, type: 0, width: 389, height: 160 +Child: 16, type: 0, width: 389, height: 160 +Child: 17, type: 0, width: 97, height: 42 +Child: 18, type: 0, width: 97, height: 42 +Child: 19, type: 3, width: 97, height: 42 +Child: 20, message: Next +Child: 21, type: 6, width: 487, height: 335 +Child: 22, type: 6, width: 193, height: 151 +Child: 23, type: 6, width: 33, height: 34 +Child: 24, type: 6, width: 31, height: 34 +Child: 25, message: Question: +Child: 26, message: Player Safety Test +Child: 27, type: 5, width: 26, height: 23 +Child: 28, message: A friend you met playing RuneScape has asked to meet you in real life. What should you do? +Child: 29, message: Meet them. They've been a friend in-game for a while now and they're really nice +Child: 30, message: Say no and do not meet them +Child: 31, type: 9, width: 19, height: 1 +Child: 32, type: 9, width: 0, height: 19 +Child: 33, type: 9, width: 19, height: 1 +Child: 34, type: 9, width: 0, height: 20 +Child: 35, type: 9, width: 19, height: 1 +Child: 36, type: 9, width: 0, height: 19 +Child: 37, type: 9, width: 19, height: 1 +Child: 38, type: 9, width: 0, height: 20 +Child: 39, type: 9, width: 248, height: 0 +Child: 40, type: 0, width: 513, height: 335 +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/695.txt b/server508/lists/interfaces/695.txt new file mode 100644 index 0000000..b02b86d --- /dev/null +++ b/server508/lists/interfaces/695.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This naughty gublinchette gave a player her email address. The wise player hit the Report Abuse button straight away, allowing us to catch her! +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/696.txt b/server508/lists/interfaces/696.txt new file mode 100644 index 0000000..615b73b --- /dev/null +++ b/server508/lists/interfaces/696.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, type: 6, width: 33, height: 34 +Child: 4, type: 6, width: 31, height: 34 +Child: 5, message: Question: +Child: 6, message: Player Safety Test +Child: 7, type: 5, width: 26, height: 23 +Child: 8, message: A player has started to ask you personal questions that make you feel uncomfortable and you'd rather not answer. What should you do? +Child: 9, message: Answer them anyway +Child: 10, message: Do not answer any questions and report the player using the Report Abuse button at the bottom of the game screen. +Child: 11, type: 9, width: 19, height: 1 +Child: 12, type: 9, width: 0, height: 19 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 20 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 19 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 20 +Child: 19, type: 9, width: 248, height: 0 +Child: 20, type: 0, width: 513, height: 335 +Child: 21, type: 3, width: 512, height: 334 +Child: 22, type: 5, width: 449, height: 230 +Child: 23, type: 5, width: 25, height: 175 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 391, height: 32 +Child: 27, type: 5, width: 32, height: 175 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 387, height: 25 +Child: 31, type: 0, width: 389, height: 160 +Child: 32, message: Correct! +Child: 33, message: If you are at all concerned, speak to a parent, friend or adult that you trust. +Child: 34, type: 0, width: 389, height: 160 +Child: 35, message: Incorrect! +Child: 36, message: If another player makes you feel uncomfortable by asking lots of personal questions, you can report them using the Report Abuse button. You can also use the ignore function, which can be found at the bottom of your game window. +Child: 37, type: 0, width: 97, height: 42 +Child: 38, type: 0, width: 97, height: 42 +Child: 39, type: 3, width: 97, height: 42 +Child: 40, message: Next +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/697.txt b/server508/lists/interfaces/697.txt new file mode 100644 index 0000000..0263fb2 --- /dev/null +++ b/server508/lists/interfaces/697.txt @@ -0,0 +1,69 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, type: 6, width: 33, height: 34 +Child: 4, type: 6, width: 31, height: 34 +Child: 5, type: 6, width: 39, height: 29 +Child: 6, message: Question: +Child: 7, message: Player Safety Test +Child: 8, type: 5, width: 26, height: 23 +Child: 9, message: A player has just asked you for your personal details, including your phone number, home address and email address. What should you do? +Child: 10, message: Give them my personal details +Child: 11, message: Say "No" or ignore them +Child: 12, message: Say "No" and ask for their details instead +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 19 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 20 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 19 +Child: 19, type: 9, width: 19, height: 1 +Child: 20, type: 9, width: 0, height: 20 +Child: 21, type: 9, width: 19, height: 1 +Child: 22, type: 9, width: 0, height: 19 +Child: 23, type: 9, width: 19, height: 1 +Child: 24, type: 9, width: 0, height: 20 +Child: 25, type: 9, width: 248, height: 0 +Child: 26, type: 0, width: 513, height: 335 +Child: 27, type: 3, width: 512, height: 334 +Child: 28, type: 5, width: 449, height: 230 +Child: 29, type: 5, width: 25, height: 172 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 391, height: 32 +Child: 33, type: 5, width: 32, height: 173 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 387, height: 25 +Child: 37, type: 0, width: 389, height: 160 +Child: 38, message: Correct! +Child: 39, message: Be polite and say no, but if the other player is persistent you can also use the report abuse button and ignore functions, which can both be found at the bottom of your game window. If you are at all concerned, speak to a parent, friend or adult that you trust. +Child: 40, type: 0, width: 389, height: 160 +Child: 41, message: Incorrect! +Child: 42, message: Giving out personal information to another player is dangerous, as you can never be sure who you are talking to. It's best to keep your personal details to yourself. +Child: 43, type: 0, width: 389, height: 160 +Child: 44, message: Incorrect! +Child: 45, message: Asking for another player's personal details is against the RuneScape Rules of Conduct. Doing so would put your account at risk of being banned. +Child: 46, type: 0, width: 97, height: 42 +Child: 47, type: 0, width: 97, height: 42 +Child: 48, type: 3, width: 97, height: 42 +Child: 49, message: Next +Child: 50, type: 0, width: 16391, height: 16391 +Child: 51, type: 0, width: 16391, height: 16391 +Child: 52, type: 5, width: 32, height: 334 +Child: 53, type: 5, width: 462, height: 32 +Child: 54, type: 5, width: 512, height: 32 +Child: 55, type: 5, width: 32, height: 334 +Child: 56, type: 5, width: 32, height: 32 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 32 +Child: 60, type: 0, width: 8192, height: 16391 +Child: 61, type: 0, width: 8188, height: 16391 +Child: 62, type: 0, width: 16391, height: 8192 +Child: 63, type: 0, width: 16391, height: 8182 +Child: 64, type: 0, width: 512, height: 334 +Child: 65, type: 5, width: 256, height: 16384 +Child: 66, type: 5, width: 256, height: 16391 +Child: 67, type: 5, width: 16391, height: 167 +Child: 68, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/698.txt b/server508/lists/interfaces/698.txt new file mode 100644 index 0000000..1a0012b --- /dev/null +++ b/server508/lists/interfaces/698.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This cheeky gublinch claimed to be a Jagex Moderator! He was reported straight away and dealt with. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/699.txt b/server508/lists/interfaces/699.txt new file mode 100644 index 0000000..06a9ced --- /dev/null +++ b/server508/lists/interfaces/699.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, type: 6, width: 33, height: 34 +Child: 4, type: 6, width: 31, height: 34 +Child: 5, message: Question: +Child: 6, message: Player Safety Test +Child: 7, type: 5, width: 26, height: 23 +Child: 8, message: Where should you go in order to read about playing RuneScape safely? +Child: 9, message: There is nowhere to go +Child: 10, message: To the 'Safety & Security' section of the RuneScape homepage +Child: 11, type: 9, width: 19, height: 1 +Child: 12, type: 9, width: 0, height: 19 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 20 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 19 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 20 +Child: 19, type: 9, width: 248, height: 0 +Child: 20, type: 0, width: 513, height: 335 +Child: 21, type: 3, width: 512, height: 334 +Child: 22, type: 5, width: 449, height: 230 +Child: 23, type: 5, width: 25, height: 173 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 391, height: 32 +Child: 27, type: 5, width: 32, height: 173 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 387, height: 25 +Child: 31, type: 0, width: 389, height: 160 +Child: 32, message: Correct! +Child: 33, message: Head to the 'Safety & Security' section of the RuneScape Knowledge Base for more information. +Child: 34, type: 0, width: 389, height: 160 +Child: 35, message: Incorrect! +Child: 36, message: Actually, there is! A "Play Safely" article can be found in the Safety & Security Guidelines section of the Knowledge Base! We also have pages on player safety, keeping healthy, responsible gaming and account security. If you would like more information, please go to the RuneScape Knowledge Base. +Child: 37, type: 0, width: 97, height: 42 +Child: 38, type: 0, width: 97, height: 42 +Child: 39, type: 3, width: 97, height: 42 +Child: 40, message: Next +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/7.txt b/server508/lists/interfaces/7.txt new file mode 100644 index 0000000..c492759 --- /dev/null +++ b/server508/lists/interfaces/7.txt @@ -0,0 +1,2 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, message: Text diff --git a/server508/lists/interfaces/70.txt b/server508/lists/interfaces/70.txt new file mode 100644 index 0000000..b401126 --- /dev/null +++ b/server508/lists/interfaces/70.txt @@ -0,0 +1,7 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 diff --git a/server508/lists/interfaces/700.txt b/server508/lists/interfaces/700.txt new file mode 100644 index 0000000..aabb290 --- /dev/null +++ b/server508/lists/interfaces/700.txt @@ -0,0 +1,33 @@ +Child: 0, type: 5, width: 488, height: 305 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 25, height: 30 +Child: 3, type: 5, width: 25, height: 30 +Child: 4, type: 5, width: 25, height: 30 +Child: 5, type: 5, width: 440, height: 23 +Child: 6, type: 5, width: 482, height: 32 +Child: 7, type: 5, width: 442, height: 31 +Child: 8, type: 5, width: 35, height: 245 +Child: 9, type: 5, width: 38, height: 261 +Child: 10, type: 5, width: 26, height: 23 +Child: 11, message: Report abuse +Child: 12, message: This form is for reporting players who are breaking our rules.
Using it sends a snapshot of the last 60 secs of activity to us. +Child: 13, message: If you misuse this form, you will be banned. +Child: 14, message: First please enter the name of the offending player below: +Child: 15, message: ************** +Child: 16, message: Then click below to indicate which of our 13 rules is being broken.
For a detailed explanation of each rule please read the manual on our website. +Child: 17, message: 1: Offensive language +Child: 18, message: 2: Item scamming +Child: 19, message: 3: Password scamming +Child: 20, message: 4: Bug abuse +Child: 21, message: 5: Jagex staff impersonation +Child: 22, message: 6: Account sharing/trading +Child: 23, message: 7: Macroing +Child: 24, message: 8: Multiple logging in +Child: 25, message: 9: Encouraging others to break rules +Child: 26, message: 10: Misuse of customer support +Child: 27, message: 11: Advertising / website +Child: 28, message: 12: Real world item trading +Child: 29, message: 13: Asking for personal details +Child: 30, type: 6, width: 31, height: 34 +Child: 31, type: 6, width: 32, height: 32 +Child: 32, type: 3, width: 517, height: 335 diff --git a/server508/lists/interfaces/701.txt b/server508/lists/interfaces/701.txt new file mode 100644 index 0000000..74e7db8 --- /dev/null +++ b/server508/lists/interfaces/701.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This wretched gublinch was asking a player for his telephone number. The player helped us catch him by refusing to give their information away and reporting the gublinch straight away! +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/702.txt b/server508/lists/interfaces/702.txt new file mode 100644 index 0000000..64beffb --- /dev/null +++ b/server508/lists/interfaces/702.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This foul-mouthed gublinch was flaming and insulting other players. They used the Report Abuse button and he was instantly apprehended. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/703.txt b/server508/lists/interfaces/703.txt new file mode 100644 index 0000000..7be44b2 --- /dev/null +++ b/server508/lists/interfaces/703.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This vile gublinchette was asking a player for his home address. The clever player didn't give her their address, but used the Report Abuse button to report her instead. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/704.txt b/server508/lists/interfaces/704.txt new file mode 100644 index 0000000..0c2e454 --- /dev/null +++ b/server508/lists/interfaces/704.txt @@ -0,0 +1,69 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, message: Question: +Child: 4, message: Player Safety Test +Child: 5, type: 5, width: 26, height: 23 +Child: 6, message: How do you report a player for breaking the Rules? +Child: 7, message: By using the Report Abuse button at the bottom of my gaming screen +Child: 8, message: I'm not a tell-tale, so I don't report players +Child: 9, message: Find a Moderator and get them to report the player +Child: 10, type: 6, width: 33, height: 34 +Child: 11, type: 6, width: 31, height: 34 +Child: 12, type: 6, width: 33, height: 34 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 19 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 20 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 19 +Child: 19, type: 9, width: 19, height: 1 +Child: 20, type: 9, width: 0, height: 20 +Child: 21, type: 9, width: 19, height: 1 +Child: 22, type: 9, width: 0, height: 19 +Child: 23, type: 9, width: 19, height: 1 +Child: 24, type: 9, width: 0, height: 20 +Child: 25, type: 9, width: 248, height: 0 +Child: 26, type: 0, width: 513, height: 335 +Child: 27, type: 3, width: 512, height: 334 +Child: 28, type: 5, width: 449, height: 230 +Child: 29, type: 5, width: 25, height: 173 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 391, height: 32 +Child: 33, type: 5, width: 32, height: 173 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 387, height: 30 +Child: 37, type: 0, width: 389, height: 160 +Child: 38, message: Correct! +Child: 39, message: You can use the Report Abuse button at the bottom of the game screen, but make sure you only report players who break the rules. +Child: 40, type: 0, width: 389, height: 160 +Child: 41, message: Incorrect! +Child: 42, message: Reporting players who break the Rules allows us to ensure that RuneScape remains a positive and enjoyable environment for everyone. To find out everything you need to know about reporting rulebreakers in RuneScape, please take some time to read the Rules of Conduct and then see our guides on reporting abuse. This can be accessed by clicking on the link: 'Customer Support' on our homepage and then 'Reporting Abuse'. +Child: 43, type: 0, width: 389, height: 160 +Child: 44, message: Incorrect! +Child: 45, message: Incorrect. By waiting to find a Moderator, you run the risk of losing the ability to report the player. +Child: 46, type: 0, width: 97, height: 42 +Child: 47, type: 0, width: 97, height: 42 +Child: 48, type: 3, width: 97, height: 42 +Child: 49, message: Next +Child: 50, type: 0, width: 16391, height: 16391 +Child: 51, type: 0, width: 16391, height: 16391 +Child: 52, type: 5, width: 32, height: 334 +Child: 53, type: 5, width: 462, height: 32 +Child: 54, type: 5, width: 512, height: 32 +Child: 55, type: 5, width: 32, height: 334 +Child: 56, type: 5, width: 32, height: 32 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 32 +Child: 60, type: 0, width: 8192, height: 16391 +Child: 61, type: 0, width: 8188, height: 16391 +Child: 62, type: 0, width: 16391, height: 8192 +Child: 63, type: 0, width: 16391, height: 8182 +Child: 64, type: 0, width: 512, height: 334 +Child: 65, type: 5, width: 256, height: 16384 +Child: 66, type: 5, width: 256, height: 16391 +Child: 67, type: 5, width: 16391, height: 167 +Child: 68, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/705.txt b/server508/lists/interfaces/705.txt new file mode 100644 index 0000000..0a32295 --- /dev/null +++ b/server508/lists/interfaces/705.txt @@ -0,0 +1,69 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, message: Question: +Child: 4, message: Player Safety Test +Child: 5, type: 5, width: 26, height: 23 +Child: 6, message: A player that you do not know sends you a private message that is offensive. What should you do? +Child: 7, message: Nothing. I can't report anything that is said in private chat +Child: 8, message: Send the player an offensive message back +Child: 9, message: Use the Report Abuse button to report the player and then add them to my Ignore List +Child: 10, type: 6, width: 33, height: 34 +Child: 11, type: 6, width: 31, height: 34 +Child: 12, type: 6, width: 33, height: 34 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 19 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 20 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 19 +Child: 19, type: 9, width: 19, height: 1 +Child: 20, type: 9, width: 0, height: 20 +Child: 21, type: 9, width: 19, height: 1 +Child: 22, type: 9, width: 0, height: 19 +Child: 23, type: 9, width: 19, height: 1 +Child: 24, type: 9, width: 0, height: 20 +Child: 25, type: 9, width: 248, height: 0 +Child: 26, type: 0, width: 513, height: 335 +Child: 27, type: 3, width: 512, height: 334 +Child: 28, type: 5, width: 449, height: 230 +Child: 29, type: 5, width: 25, height: 174 +Child: 30, type: 5, width: 32, height: 32 +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 391, height: 32 +Child: 33, type: 5, width: 32, height: 174 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 32, height: 32 +Child: 36, type: 5, width: 387, height: 25 +Child: 37, type: 0, width: 389, height: 160 +Child: 38, message: Correct! +Child: 39, message: Correct! You can use the Report Abuse button to report any chat that you find offensive, whether it is said in Public or Private Chat. Adding a player to your Ignore List will prevent them from sending you any further messages. +Child: 40, type: 0, width: 389, height: 160 +Child: 41, message: Incorrect! +Child: 42, message: Wrong. You can use the Report Abuse button to report any chat that you find offensive, whether it is said in Public or Private Chat. +Child: 43, type: 0, width: 389, height: 160 +Child: 44, message: Incorrect! +Child: 45, message: Wrong. Retaliating may cause you to get in trouble and be reported yourself! +Child: 46, type: 0, width: 97, height: 42 +Child: 47, type: 0, width: 97, height: 42 +Child: 48, type: 3, width: 97, height: 42 +Child: 49, message: Next +Child: 50, type: 0, width: 16391, height: 16391 +Child: 51, type: 0, width: 16391, height: 16391 +Child: 52, type: 5, width: 32, height: 334 +Child: 53, type: 5, width: 462, height: 32 +Child: 54, type: 5, width: 512, height: 32 +Child: 55, type: 5, width: 32, height: 334 +Child: 56, type: 5, width: 32, height: 32 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 32 +Child: 60, type: 0, width: 8192, height: 16391 +Child: 61, type: 0, width: 8188, height: 16391 +Child: 62, type: 0, width: 16391, height: 8192 +Child: 63, type: 0, width: 16391, height: 8182 +Child: 64, type: 0, width: 512, height: 334 +Child: 65, type: 5, width: 256, height: 16384 +Child: 66, type: 5, width: 256, height: 16391 +Child: 67, type: 5, width: 16391, height: 167 +Child: 68, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/706.txt b/server508/lists/interfaces/706.txt new file mode 100644 index 0000000..bf41f0d --- /dev/null +++ b/server508/lists/interfaces/706.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This sly gublinch wanted to meet one of his player friends in the real world. The player obviously refused and reported him straight away. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/707.txt b/server508/lists/interfaces/707.txt new file mode 100644 index 0000000..d0bdf24 --- /dev/null +++ b/server508/lists/interfaces/707.txt @@ -0,0 +1,61 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, type: 6, width: 33, height: 34 +Child: 4, type: 6, width: 31, height: 34 +Child: 5, message: Question: +Child: 6, message: Player Safety Test +Child: 7, type: 5, width: 26, height: 23 +Child: 8, message: You are approached in the game by a player named JagMod999. This player claims to be a member of Jagex and asks for your personal details. What should you do? +Child: 9, message: Do not answer any questions and report the player using the Report Abuse button at the bottom of the game screen +Child: 10, message: Give them my details; they are a member of Jagex after all +Child: 11, type: 9, width: 19, height: 1 +Child: 12, type: 9, width: 0, height: 19 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 20 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 19 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 20 +Child: 19, type: 9, width: 248, height: 0 +Child: 20, type: 0, width: 513, height: 335 +Child: 21, type: 3, width: 512, height: 334 +Child: 22, type: 5, width: 449, height: 230 +Child: 23, type: 5, width: 25, height: 174 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 391, height: 32 +Child: 27, type: 5, width: 32, height: 174 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 387, height: 25 +Child: 31, type: 0, width: 389, height: 196 +Child: 32, message: Correct! +Child: 33, message: Correct! A real Jagex Moderator would never ask for a player's personal details. You can always tell who an official moderator is as a gold crown will appear before anything they say in the chat window. You can report any player who claims to be a member of Jagex Staff by using the Report Abuse button. You can also use the ignore function, which can be found at the bottom of your game window. If you are at all +Child: 34, message: concerned about the incident, speak to a parent, friend or adult that you trust. +Child: 35, type: 0, width: 389, height: 160 +Child: 36, message: Incorrect! +Child: 37, message: A real Jagex Moderator would never ask for any of your personal details, so we would advise you keep them to yourself. You can report any player who claims to be a Jagex Moderator by using the Report Abuse button. +Child: 38, type: 0, width: 97, height: 42 +Child: 39, type: 0, width: 97, height: 42 +Child: 40, type: 3, width: 97, height: 42 +Child: 41, message: Next +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 0, width: 16391, height: 16391 +Child: 44, type: 5, width: 32, height: 334 +Child: 45, type: 5, width: 462, height: 32 +Child: 46, type: 5, width: 512, height: 32 +Child: 47, type: 5, width: 32, height: 334 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 5, width: 32, height: 32 +Child: 52, type: 0, width: 8192, height: 16391 +Child: 53, type: 0, width: 8188, height: 16391 +Child: 54, type: 0, width: 16391, height: 8192 +Child: 55, type: 0, width: 16391, height: 8182 +Child: 56, type: 0, width: 512, height: 334 +Child: 57, type: 5, width: 256, height: 16384 +Child: 58, type: 5, width: 256, height: 16391 +Child: 59, type: 5, width: 16391, height: 167 +Child: 60, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/708.txt b/server508/lists/interfaces/708.txt new file mode 100644 index 0000000..ada0bc7 --- /dev/null +++ b/server508/lists/interfaces/708.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 0, width: 16391, height: 16391 +Child: 2, type: 5, width: 32, height: 334 +Child: 3, type: 5, width: 462, height: 32 +Child: 4, type: 5, width: 512, height: 32 +Child: 5, type: 5, width: 32, height: 334 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 6, width: 487, height: 335 +Child: 11, type: 6, width: 193, height: 151 +Child: 12, type: 6, width: 33, height: 34 +Child: 13, type: 6, width: 31, height: 34 +Child: 14, message: Question: +Child: 15, message: Player Safety Test +Child: 16, type: 5, width: 26, height: 23 +Child: 17, message: How long should you play RuneScape for at any one time? +Child: 18, message: As long as I like. I'm having fun and don't want to stop +Child: 19, message: I should take regular breaks in order to stay healthy +Child: 20, type: 9, width: 19, height: 1 +Child: 21, type: 9, width: 0, height: 19 +Child: 22, type: 9, width: 19, height: 1 +Child: 23, type: 9, width: 0, height: 20 +Child: 24, type: 9, width: 19, height: 1 +Child: 25, type: 9, width: 0, height: 19 +Child: 26, type: 9, width: 19, height: 1 +Child: 27, type: 9, width: 0, height: 20 +Child: 28, type: 9, width: 248, height: 0 +Child: 29, type: 0, width: 513, height: 335 +Child: 30, type: 3, width: 512, height: 334 +Child: 31, type: 5, width: 449, height: 230 +Child: 32, type: 5, width: 25, height: 173 +Child: 33, type: 5, width: 32, height: 32 +Child: 34, type: 5, width: 32, height: 32 +Child: 35, type: 5, width: 391, height: 32 +Child: 36, type: 5, width: 32, height: 173 +Child: 37, type: 5, width: 32, height: 32 +Child: 38, type: 5, width: 32, height: 32 +Child: 39, type: 5, width: 387, height: 25 +Child: 40, type: 0, width: 389, height: 160 +Child: 41, message: Correct! +Child: 42, message: It's very important to remain healthy by taking regular breaks and spending time doing other activities. +Child: 43, type: 0, width: 389, height: 160 +Child: 44, message: Incorrect! +Child: 45, message: Spending too much time on the computer can be harmful to your health. It's very important to take breaks, exercise and eat properly in order to stay healthy. While it's great to play RuneScape, it's also important to maintain a balanced lifestyle by socialising and spending time away from your computer. For more information, please look at our Responsible Gaming Policy on the RuneScape Knowledge Base. +Child: 46, type: 0, width: 97, height: 42 +Child: 47, type: 0, width: 97, height: 42 +Child: 48, type: 3, width: 97, height: 42 +Child: 49, message: Next +Child: 50, type: 0, width: 16391, height: 16391 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/709.txt b/server508/lists/interfaces/709.txt new file mode 100644 index 0000000..942667e --- /dev/null +++ b/server508/lists/interfaces/709.txt @@ -0,0 +1,19 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 5, width: 485, height: 300 +Child: 2, type: 5, width: 32, height: 241 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 243 +Child: 5, type: 5, width: 424, height: 34 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 465, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 6, width: 82, height: 145 +Child: 14, message: End of Exam +Child: 15, message: Player Safety Exam 101 +Child: 16, type: 5, width: 16, height: 16 +Child: 17, message: Congratulations! You have completed the Player Safety exam! +Child: 18, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/71.txt b/server508/lists/interfaces/71.txt new file mode 100644 index 0000000..d918f75 --- /dev/null +++ b/server508/lists/interfaces/71.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Name +Child: 4, message: Line1 +Child: 5, message: Line2 +Child: 6, message: Line3 +Child: 7, message: Line4 diff --git a/server508/lists/interfaces/710.txt b/server508/lists/interfaces/710.txt new file mode 100644 index 0000000..64f7a70 --- /dev/null +++ b/server508/lists/interfaces/710.txt @@ -0,0 +1,60 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 487, height: 335 +Child: 2, type: 6, width: 193, height: 151 +Child: 3, message: Question: +Child: 4, message: Player Safety Test +Child: 5, type: 5, width: 26, height: 23 +Child: 6, message: You are asked for your full name and date of birth by a player that you have been chatting with for a short while. Should you give them these details? +Child: 7, message: No. The player could use my information to steal my identity. I don't want anyone pretending to be me +Child: 8, message: Yes. There's no harm in telling someone my full name and my birthday. Maybe they want to buy me a birthday present! +Child: 9, type: 6, width: 33, height: 34 +Child: 10, type: 6, width: 31, height: 34 +Child: 11, type: 9, width: 19, height: 1 +Child: 12, type: 9, width: 0, height: 19 +Child: 13, type: 9, width: 19, height: 1 +Child: 14, type: 9, width: 0, height: 20 +Child: 15, type: 9, width: 19, height: 1 +Child: 16, type: 9, width: 0, height: 19 +Child: 17, type: 9, width: 19, height: 1 +Child: 18, type: 9, width: 0, height: 20 +Child: 19, type: 9, width: 248, height: 0 +Child: 20, type: 0, width: 513, height: 335 +Child: 21, type: 3, width: 512, height: 334 +Child: 22, type: 5, width: 449, height: 230 +Child: 23, type: 5, width: 25, height: 175 +Child: 24, type: 5, width: 32, height: 32 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 391, height: 32 +Child: 27, type: 5, width: 32, height: 175 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 5, width: 387, height: 25 +Child: 31, type: 0, width: 389, height: 160 +Child: 32, message: Correct! +Child: 33, message: Correct! Personal details given out while chatting could be used by someone who wishes to pretend to be you. Use the Report Abuse button to report anyone asking for your personal details. +Child: 34, type: 0, width: 389, height: 160 +Child: 35, message: Incorrect! +Child: 36, message: Wrong. Never give out personal details, such as your full name and date of birth, to other players. Personal details that you give out while chatting could be used by someone so that they can pretend to be you. Use the Report Abuse button to report anyone asking for your personal details. +Child: 37, type: 0, width: 97, height: 42 +Child: 38, type: 0, width: 97, height: 42 +Child: 39, type: 3, width: 97, height: 42 +Child: 40, message: Next +Child: 41, type: 0, width: 16391, height: 16391 +Child: 42, type: 0, width: 16391, height: 16391 +Child: 43, type: 5, width: 32, height: 334 +Child: 44, type: 5, width: 462, height: 32 +Child: 45, type: 5, width: 512, height: 32 +Child: 46, type: 5, width: 32, height: 334 +Child: 47, type: 5, width: 32, height: 32 +Child: 48, type: 5, width: 32, height: 32 +Child: 49, type: 5, width: 32, height: 32 +Child: 50, type: 5, width: 32, height: 32 +Child: 51, type: 0, width: 8192, height: 16391 +Child: 52, type: 0, width: 8188, height: 16391 +Child: 53, type: 0, width: 16391, height: 8192 +Child: 54, type: 0, width: 16391, height: 8182 +Child: 55, type: 0, width: 512, height: 334 +Child: 56, type: 5, width: 256, height: 16384 +Child: 57, type: 5, width: 256, height: 16391 +Child: 58, type: 5, width: 16391, height: 167 +Child: 59, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/711.txt b/server508/lists/interfaces/711.txt new file mode 100644 index 0000000..e56e8d0 --- /dev/null +++ b/server508/lists/interfaces/711.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 475, height: 91 +Child: 1, message: This evil gublinch asked a younger player where she went to school. The player was smart enough to not tell the gublinch and report him instead. +Child: 2, type: 5, width: 23, height: 23 diff --git a/server508/lists/interfaces/712.txt b/server508/lists/interfaces/712.txt new file mode 100644 index 0000000..d499bce --- /dev/null +++ b/server508/lists/interfaces/712.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 470, height: 261 +Child: 1, message: Dear friend, +Child: 2, message: Come and meet me at the entrance to the Legends' Guild as soon as possible. There are things I would like to discuss with you, but it is difficult to talk in Witchaven... +Child: 3, message: ~Kent +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 5, width: 26, height: 23 +Child: 6, type: 0, width: 32, height: 32 diff --git a/server508/lists/interfaces/713.txt b/server508/lists/interfaces/713.txt new file mode 100644 index 0000000..7e80f13 --- /dev/null +++ b/server508/lists/interfaces/713.txt @@ -0,0 +1 @@ +Child: 0, type: 6, width: 513, height: 373 diff --git a/server508/lists/interfaces/714.txt b/server508/lists/interfaces/714.txt new file mode 100644 index 0000000..0d03b39 --- /dev/null +++ b/server508/lists/interfaces/714.txt @@ -0,0 +1,8 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 514, height: 335 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 3, width: 514, height: 335 +Child: 4, type: 0, width: 512, height: 334 +Child: 5, type: 3, width: 514, height: 335 +Child: 6, type: 0, width: 512, height: 334 +Child: 7, type: 3, width: 514, height: 335 diff --git a/server508/lists/interfaces/715.txt b/server508/lists/interfaces/715.txt new file mode 100644 index 0000000..04a0cad --- /dev/null +++ b/server508/lists/interfaces/715.txt @@ -0,0 +1,7 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 76, height: 100 +Child: 2, message: +Child: 3, type: 6, width: 125, height: 145 +Child: 4, message: Message of the week +Child: 5, type: 6, width: 21, height: 19 +Child: 6, type: 6, width: 20, height: 19 diff --git a/server508/lists/interfaces/716.txt b/server508/lists/interfaces/716.txt new file mode 100644 index 0000000..34782cb --- /dev/null +++ b/server508/lists/interfaces/716.txt @@ -0,0 +1,41 @@ +Child: 0, type: 3, width: 173, height: 111 +Child: 1, type: 3, width: 161, height: 105 +Child: 2, type: 3, width: 143, height: 95 +Child: 3, type: 6, width: 57, height: 107 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 116, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 53 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 115, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 53 +Child: 13, type: 5, width: 32, height: 47 +Child: 14, type: 5, width: 164, height: 32 +Child: 15, type: 5, width: 32, height: 47 +Child: 16, type: 5, width: 165, height: 32 +Child: 17, type: 0, width: 38, height: 38 +Child: 18, type: 3, width: 38, height: 38 +Child: 19, type: 5, width: 20, height: 20 +Child: 20, type: 0, width: 190, height: 261 +Child: 21, type: 0, width: 189, height: 260 +Child: 22, type: 0, width: 190, height: 261 +Child: 23, type: 5, width: 166, height: 20 +Child: 24, type: 5, width: 166, height: 20 +Child: 25, type: 5, width: 31, height: 33 +Child: 26, type: 5, width: 32, height: 32 +Child: 27, type: 5, width: 32, height: 32 +Child: 28, type: 5, width: 32, height: 32 +Child: 29, type: 5, width: 32, height: 32 +Child: 30, type: 0, width: 32, height: 32 +Child: 31, type: 5, width: 28, height: 28 +Child: 32, type: 3, width: 38, height: 38 +Child: 33, message: Chocatrice +Child: 34, message: Waiting +Child: 35, type: 3, width: 32, height: 32 +Child: 36, type: 3, width: 38, height: 38 +Child: 37, type: 0, width: 83, height: 87 +Child: 38, type: 0, width: 168, height: 136 +Child: 39, type: 0, width: 31, height: 33 +Child: 40, type: 3, width: 29, height: 33 diff --git a/server508/lists/interfaces/717.txt b/server508/lists/interfaces/717.txt new file mode 100644 index 0000000..9d42fb2 --- /dev/null +++ b/server508/lists/interfaces/717.txt @@ -0,0 +1,37 @@ +Child: 0, type: 3, width: 145, height: 14 +Child: 1, type: 0, width: 188, height: 256 +Child: 2, type: 6, width: 127, height: 67 +Child: 3, type: 6, width: 19, height: 127 +Child: 4, type: 6, width: 7, height: 103 +Child: 5, type: 3, width: 23, height: 114 +Child: 6, type: 3, width: 23, height: 114 +Child: 7, type: 3, width: 27, height: 116 +Child: 8, type: 3, width: 27, height: 116 +Child: 9, type: 6, width: 61, height: 10 +Child: 10, type: 6, width: 223, height: 277 +Child: 11, type: 6, width: 37, height: 128 +Child: 12, type: 6, width: 37, height: 128 +Child: 13, type: 6, width: 39, height: 34 +Child: 14, type: 6, width: 39, height: 34 +Child: 15, type: 0, width: 28, height: 31 +Child: 16, type: 3, width: 40, height: 35 +Child: 17, type: 0, width: 28, height: 31 +Child: 18, type: 3, width: 39, height: 35 +Child: 19, type: 3, width: 171, height: 93 +Child: 20, message: Temperature reached!

New target
temperature set. +Child: 21, type: 0, width: 192, height: 256 +Child: 22, type: 6, width: 13, height: 13 +Child: 23, type: 6, width: 13, height: 13 +Child: 24, type: 6, width: 13, height: 13 +Child: 25, type: 6, width: 13, height: 13 +Child: 26, type: 5, width: 16, height: 16 +Child: 27, type: 3, width: 38, height: 35 +Child: 28, type: 3, width: 38, height: 35 +Child: 29, type: 0, width: 182, height: 30 +Child: 30, type: 0, width: 14, height: 21 +Child: 31, type: 5, width: 25, height: 25 +Child: 32, type: 5, width: 25, height: 25 +Child: 33, type: 0, width: 40, height: 35 +Child: 34, type: 3, width: 34, height: 31 +Child: 35, type: 0, width: 40, height: 35 +Child: 36, type: 3, width: 35, height: 31 diff --git a/server508/lists/interfaces/718.txt b/server508/lists/interfaces/718.txt new file mode 100644 index 0000000..790a99c --- /dev/null +++ b/server508/lists/interfaces/718.txt @@ -0,0 +1,6 @@ +Child: 0, message: Select an Option +Child: 1, message: option1 +Child: 2, message: option2 +Child: 3, type: 0, width: 476, height: 13 +Child: 4, type: 5, width: 57, height: 13 +Child: 5, type: 5, width: 57, height: 13 diff --git a/server508/lists/interfaces/719.txt b/server508/lists/interfaces/719.txt new file mode 100644 index 0000000..71bc706 --- /dev/null +++ b/server508/lists/interfaces/719.txt @@ -0,0 +1,7 @@ +Child: 0, type: 3, width: 514, height: 336 +Child: 1, type: 6, width: 477, height: 513 +Child: 2, type: 5, width: 26, height: 23 +Child: 3, message: COAL AND WATER SUPPLIES:
For your convenience, the incubator has a coal scuttle and water tank, which can hold up to twelve buckets of coal or water respectively. Simply use a bucket of coal or water on the coal scuttle or water tank to add to the supplies.

ADJUSTING THE INCUBATOR TEMPERATURE:
The control panel to the left of the incubator allows you to use the coal and water supplies you have added to the incubator to heat or cool it.

INCUBATING AN EGG:
> Place a suitable egg inside the incubation chamber.
> Add supplies to the water tank and coal scuttle
> Using the incubator controls, adjust the temperature. The temperature gauge has a needle which shows the current temperature. The top of the temperature gauge also has an arrow showing the temperature needed to reach the next phase of incubation.
> Some eggs may require you to reach several different temperatures before they hatch.

The very best of luck with hatching your eggs! +Child: 4, type: 0, width: 16, height: 260 +Child: 5, type: 0, width: 320, height: 268 +Child: 6, message: Operating your incubator diff --git a/server508/lists/interfaces/72.txt b/server508/lists/interfaces/72.txt new file mode 100644 index 0000000..e9e6756 --- /dev/null +++ b/server508/lists/interfaces/72.txt @@ -0,0 +1,8 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 96 +Child: 3, message: +Child: 4, message: +Child: 5, message: +Child: 6, message: What would you like to make in the churn? +Child: 7, message: Churn Cheese diff --git a/server508/lists/interfaces/720.txt b/server508/lists/interfaces/720.txt new file mode 100644 index 0000000..3002cd0 --- /dev/null +++ b/server508/lists/interfaces/720.txt @@ -0,0 +1,3 @@ +Child: 0, type: 5, width: 462, height: 297 +Child: 1, type: 5, width: 16, height: 16 +Child: 2, message: Here, the player will see an interface anim of the chocatrice hatching. diff --git a/server508/lists/interfaces/721.txt b/server508/lists/interfaces/721.txt new file mode 100644 index 0000000..885cb09 --- /dev/null +++ b/server508/lists/interfaces/721.txt @@ -0,0 +1,4 @@ +Child: 0, type: 3, width: 513, height: 339 +Child: 1, type: 6, width: 901, height: 555 +Child: 2, type: 0, width: 512, height: 334 +Child: 3, type: 3, width: 516, height: 335 diff --git a/server508/lists/interfaces/722.txt b/server508/lists/interfaces/722.txt new file mode 100644 index 0000000..cf413fb --- /dev/null +++ b/server508/lists/interfaces/722.txt @@ -0,0 +1,19 @@ +Child: 0, type: 0, width: 192, height: 262 +Child: 1, type: 3, width: 186, height: 3 +Child: 2, type: 3, width: 186, height: 3 +Child: 3, type: 3, width: 3, height: 250 +Child: 4, type: 3, width: 3, height: 250 +Child: 5, type: 3, width: 186, height: 256 +Child: 6, type: 3, width: 184, height: 254 +Child: 7, type: 3, width: 182, height: 252 +Child: 8, type: 3, width: 180, height: 250 +Child: 9, type: 3, width: 178, height: 248 +Child: 10, type: 3, width: 176, height: 246 +Child: 11, type: 3, width: 174, height: 244 +Child: 12, type: 3, width: 172, height: 242 +Child: 13, type: 3, width: 170, height: 240 +Child: 14, type: 3, width: 168, height: 238 +Child: 15, type: 3, width: 166, height: 236 +Child: 16, type: 3, width: 164, height: 234 +Child: 17, type: 3, width: 162, height: 232 +Child: 18, type: 0, width: 162, height: 250 diff --git a/server508/lists/interfaces/723.txt b/server508/lists/interfaces/723.txt new file mode 100644 index 0000000..de06f03 --- /dev/null +++ b/server508/lists/interfaces/723.txt @@ -0,0 +1,12 @@ +Child: 0, type: 3, width: 190, height: 202 +Child: 1, type: 5, width: 189, height: 202 +Child: 2, type: 3, width: 190, height: 202 +Child: 3, type: 5, width: 190, height: 32 +Child: 4, type: 5, width: 190, height: 32 +Child: 5, message: ~ What is this? ~ +Child: 6, type: 0, width: 170, height: 199 +Child: 7, type: 0, width: 16, height: 199 +Child: 8, type: 0, width: 180, height: 30 +Child: 9, message: +Child: 10, message: +Child: 11, type: 5, width: 16, height: 16 diff --git a/server508/lists/interfaces/724.txt b/server508/lists/interfaces/724.txt new file mode 100644 index 0000000..9d5c71c --- /dev/null +++ b/server508/lists/interfaces/724.txt @@ -0,0 +1,81 @@ +Child: 0, type: 5, width: 487, height: 299 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 36, height: 241 +Child: 3, type: 5, width: 36, height: 241 +Child: 4, type: 5, width: 438, height: 36 +Child: 5, type: 5, width: 438, height: 36 +Child: 6, type: 5, width: 25, height: 30 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 36, height: 288 +Child: 10, type: 5, width: 181, height: 36 +Child: 11, type: 5, width: 25, height: 30 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 25, height: 30 +Child: 14, type: 5, width: 25, height: 30 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 25, height: 30 +Child: 17, type: 3, width: 66, height: 31 +Child: 18, message: Runesquares +Child: 19, message: +Child: 20, message: vs +Child: 21, message: +Child: 22, message: Close +Child: 23, type: 6, width: 20, height: 19 +Child: 24, type: 6, width: 20, height: 19 +Child: 25, message: +Child: 26, message: +Child: 27, type: 0, width: 274, height: 274 +Child: 28, type: 3, width: 272, height: 2 +Child: 29, type: 3, width: 2, height: 272 +Child: 30, type: 3, width: 272, height: 2 +Child: 31, type: 3, width: 2, height: 272 +Child: 32, type: 3, width: 2, height: 2 +Child: 33, type: 3, width: 2, height: 2 +Child: 34, type: 3, width: 2, height: 2 +Child: 35, type: 3, width: 2, height: 2 +Child: 36, type: 3, width: 2, height: 2 +Child: 37, type: 3, width: 2, height: 2 +Child: 38, type: 3, width: 2, height: 2 +Child: 39, type: 3, width: 2, height: 2 +Child: 40, type: 3, width: 2, height: 2 +Child: 41, type: 3, width: 2, height: 2 +Child: 42, type: 3, width: 2, height: 2 +Child: 43, type: 3, width: 2, height: 2 +Child: 44, type: 3, width: 2, height: 2 +Child: 45, type: 3, width: 2, height: 2 +Child: 46, type: 3, width: 2, height: 2 +Child: 47, type: 3, width: 2, height: 2 +Child: 48, type: 3, width: 2, height: 2 +Child: 49, type: 3, width: 2, height: 2 +Child: 50, type: 3, width: 2, height: 2 +Child: 51, type: 3, width: 2, height: 2 +Child: 52, type: 3, width: 2, height: 2 +Child: 53, type: 3, width: 2, height: 2 +Child: 54, type: 3, width: 2, height: 2 +Child: 55, type: 3, width: 2, height: 2 +Child: 56, type: 3, width: 2, height: 2 +Child: 57, type: 3, width: 2, height: 2 +Child: 58, type: 3, width: 2, height: 2 +Child: 59, type: 3, width: 2, height: 2 +Child: 60, type: 3, width: 2, height: 2 +Child: 61, type: 3, width: 2, height: 2 +Child: 62, type: 3, width: 2, height: 2 +Child: 63, type: 3, width: 2, height: 2 +Child: 64, type: 3, width: 2, height: 2 +Child: 65, type: 3, width: 2, height: 2 +Child: 66, type: 3, width: 2, height: 2 +Child: 67, type: 3, width: 2, height: 2 +Child: 68, type: 3, width: 2, height: 2 +Child: 69, type: 3, width: 2, height: 2 +Child: 70, type: 3, width: 2, height: 2 +Child: 71, type: 3, width: 2, height: 2 +Child: 72, type: 3, width: 2, height: 2 +Child: 73, type: 3, width: 2, height: 2 +Child: 74, type: 3, width: 2, height: 2 +Child: 75, type: 3, width: 2, height: 2 +Child: 76, type: 3, width: 2, height: 2 +Child: 77, type: 3, width: 2, height: 2 +Child: 78, type: 3, width: 2, height: 2 +Child: 79, type: 3, width: 2, height: 2 +Child: 80, type: 3, width: 2, height: 2 diff --git a/server508/lists/interfaces/725.txt b/server508/lists/interfaces/725.txt new file mode 100644 index 0000000..a27e42c --- /dev/null +++ b/server508/lists/interfaces/725.txt @@ -0,0 +1,71 @@ +Child: 0, type: 5, width: 487, height: 299 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 36, height: 241 +Child: 3, type: 5, width: 36, height: 241 +Child: 4, type: 5, width: 438, height: 36 +Child: 5, type: 5, width: 438, height: 36 +Child: 6, type: 5, width: 25, height: 30 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 36, height: 288 +Child: 10, type: 5, width: 181, height: 36 +Child: 11, type: 5, width: 25, height: 30 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 25, height: 30 +Child: 14, type: 5, width: 25, height: 30 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 25, height: 30 +Child: 17, type: 3, width: 66, height: 31 +Child: 18, message: Runelink +Child: 19, type: 6, width: 299, height: 252 +Child: 20, message: +Child: 21, message: vs +Child: 22, message: +Child: 23, message: Close +Child: 24, type: 6, width: 20, height: 19 +Child: 25, type: 6, width: 20, height: 19 +Child: 26, message: +Child: 27, message: +Child: 28, type: 5, width: 36, height: 32 +Child: 29, type: 5, width: 36, height: 32 +Child: 30, type: 5, width: 36, height: 32 +Child: 31, type: 5, width: 36, height: 32 +Child: 32, type: 5, width: 36, height: 32 +Child: 33, type: 5, width: 36, height: 32 +Child: 34, type: 5, width: 36, height: 32 +Child: 35, type: 5, width: 36, height: 32 +Child: 36, type: 5, width: 36, height: 32 +Child: 37, type: 5, width: 36, height: 32 +Child: 38, type: 5, width: 36, height: 32 +Child: 39, type: 5, width: 36, height: 32 +Child: 40, type: 5, width: 36, height: 32 +Child: 41, type: 5, width: 36, height: 32 +Child: 42, type: 5, width: 36, height: 32 +Child: 43, type: 5, width: 36, height: 32 +Child: 44, type: 5, width: 36, height: 32 +Child: 45, type: 5, width: 36, height: 32 +Child: 46, type: 5, width: 36, height: 32 +Child: 47, type: 5, width: 36, height: 32 +Child: 48, type: 5, width: 36, height: 32 +Child: 49, type: 5, width: 36, height: 32 +Child: 50, type: 5, width: 36, height: 32 +Child: 51, type: 5, width: 36, height: 32 +Child: 52, type: 5, width: 36, height: 32 +Child: 53, type: 5, width: 36, height: 32 +Child: 54, type: 5, width: 36, height: 32 +Child: 55, type: 5, width: 36, height: 32 +Child: 56, type: 5, width: 36, height: 32 +Child: 57, type: 5, width: 36, height: 32 +Child: 58, type: 5, width: 36, height: 32 +Child: 59, type: 5, width: 36, height: 32 +Child: 60, type: 5, width: 36, height: 32 +Child: 61, type: 5, width: 36, height: 32 +Child: 62, type: 5, width: 36, height: 32 +Child: 63, type: 5, width: 36, height: 32 +Child: 64, type: 5, width: 36, height: 32 +Child: 65, type: 5, width: 36, height: 32 +Child: 66, type: 5, width: 36, height: 32 +Child: 67, type: 5, width: 36, height: 32 +Child: 68, type: 5, width: 36, height: 32 +Child: 69, type: 5, width: 36, height: 32 +Child: 70, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/726.txt b/server508/lists/interfaces/726.txt new file mode 100644 index 0000000..eb9a670 --- /dev/null +++ b/server508/lists/interfaces/726.txt @@ -0,0 +1,188 @@ +Child: 0, type: 5, width: 487, height: 299 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 36, height: 241 +Child: 3, type: 5, width: 36, height: 241 +Child: 4, type: 5, width: 438, height: 36 +Child: 5, type: 5, width: 438, height: 36 +Child: 6, type: 5, width: 25, height: 30 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 36, height: 288 +Child: 10, type: 5, width: 181, height: 36 +Child: 11, type: 5, width: 25, height: 30 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 25, height: 30 +Child: 14, type: 5, width: 25, height: 30 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 25, height: 30 +Child: 17, type: 3, width: 66, height: 31 +Child: 18, type: 3, width: 32, height: 32 +Child: 19, type: 3, width: 32, height: 32 +Child: 20, type: 3, width: 32, height: 32 +Child: 21, type: 3, width: 32, height: 32 +Child: 22, type: 3, width: 32, height: 32 +Child: 23, type: 3, width: 32, height: 32 +Child: 24, type: 3, width: 32, height: 32 +Child: 25, type: 3, width: 32, height: 32 +Child: 26, type: 3, width: 32, height: 32 +Child: 27, type: 3, width: 32, height: 32 +Child: 28, type: 3, width: 32, height: 32 +Child: 29, type: 3, width: 32, height: 32 +Child: 30, type: 3, width: 32, height: 32 +Child: 31, type: 3, width: 32, height: 32 +Child: 32, type: 3, width: 32, height: 32 +Child: 33, type: 3, width: 32, height: 32 +Child: 34, type: 3, width: 32, height: 32 +Child: 35, type: 3, width: 32, height: 32 +Child: 36, type: 3, width: 32, height: 32 +Child: 37, type: 3, width: 32, height: 32 +Child: 38, type: 3, width: 32, height: 32 +Child: 39, type: 3, width: 32, height: 32 +Child: 40, type: 3, width: 32, height: 32 +Child: 41, type: 3, width: 32, height: 32 +Child: 42, type: 3, width: 32, height: 32 +Child: 43, type: 3, width: 32, height: 32 +Child: 44, type: 3, width: 32, height: 32 +Child: 45, type: 3, width: 32, height: 32 +Child: 46, type: 3, width: 32, height: 32 +Child: 47, type: 3, width: 32, height: 32 +Child: 48, type: 3, width: 32, height: 32 +Child: 49, type: 3, width: 32, height: 32 +Child: 50, type: 3, width: 32, height: 32 +Child: 51, type: 3, width: 32, height: 32 +Child: 52, type: 3, width: 32, height: 32 +Child: 53, type: 3, width: 32, height: 32 +Child: 54, type: 3, width: 32, height: 32 +Child: 55, type: 3, width: 32, height: 32 +Child: 56, type: 3, width: 32, height: 32 +Child: 57, type: 3, width: 32, height: 32 +Child: 58, type: 3, width: 32, height: 32 +Child: 59, type: 3, width: 32, height: 32 +Child: 60, type: 3, width: 32, height: 32 +Child: 61, type: 3, width: 32, height: 32 +Child: 62, type: 3, width: 32, height: 32 +Child: 63, type: 3, width: 32, height: 32 +Child: 64, type: 3, width: 32, height: 32 +Child: 65, type: 3, width: 32, height: 32 +Child: 66, type: 3, width: 32, height: 32 +Child: 67, type: 3, width: 32, height: 32 +Child: 68, type: 3, width: 32, height: 32 +Child: 69, type: 3, width: 32, height: 32 +Child: 70, type: 3, width: 32, height: 32 +Child: 71, type: 3, width: 32, height: 32 +Child: 72, type: 3, width: 32, height: 32 +Child: 73, type: 3, width: 32, height: 32 +Child: 74, type: 3, width: 32, height: 32 +Child: 75, type: 3, width: 32, height: 32 +Child: 76, type: 3, width: 32, height: 32 +Child: 77, type: 3, width: 32, height: 32 +Child: 78, type: 3, width: 32, height: 32 +Child: 79, type: 3, width: 32, height: 32 +Child: 80, type: 3, width: 32, height: 32 +Child: 81, type: 3, width: 32, height: 32 +Child: 82, type: 3, width: 32, height: 32 +Child: 83, type: 3, width: 32, height: 32 +Child: 84, type: 3, width: 32, height: 32 +Child: 85, type: 3, width: 32, height: 32 +Child: 86, type: 3, width: 32, height: 32 +Child: 87, type: 3, width: 32, height: 32 +Child: 88, type: 3, width: 32, height: 32 +Child: 89, type: 3, width: 32, height: 32 +Child: 90, type: 3, width: 32, height: 32 +Child: 91, type: 3, width: 32, height: 32 +Child: 92, type: 3, width: 32, height: 32 +Child: 93, type: 3, width: 32, height: 32 +Child: 94, type: 3, width: 32, height: 32 +Child: 95, type: 3, width: 32, height: 32 +Child: 96, type: 3, width: 32, height: 32 +Child: 97, type: 3, width: 32, height: 32 +Child: 98, type: 3, width: 32, height: 32 +Child: 99, type: 3, width: 32, height: 32 +Child: 100, type: 3, width: 32, height: 32 +Child: 101, type: 3, width: 32, height: 32 +Child: 102, type: 3, width: 32, height: 32 +Child: 103, type: 3, width: 32, height: 32 +Child: 104, type: 3, width: 32, height: 32 +Child: 105, type: 3, width: 32, height: 32 +Child: 106, type: 3, width: 32, height: 32 +Child: 107, type: 3, width: 32, height: 32 +Child: 108, type: 3, width: 32, height: 32 +Child: 109, type: 3, width: 32, height: 32 +Child: 110, type: 3, width: 32, height: 32 +Child: 111, type: 3, width: 32, height: 32 +Child: 112, type: 3, width: 32, height: 32 +Child: 113, type: 3, width: 32, height: 32 +Child: 114, message: Runeversi +Child: 115, message: +Child: 116, message: vs +Child: 117, message: +Child: 118, message: Close +Child: 119, type: 6, width: 20, height: 19 +Child: 120, type: 6, width: 20, height: 19 +Child: 121, message: +Child: 122, message: +Child: 123, type: 5, width: 36, height: 32 +Child: 124, type: 5, width: 36, height: 32 +Child: 125, type: 5, width: 36, height: 32 +Child: 126, type: 5, width: 36, height: 32 +Child: 127, type: 5, width: 36, height: 32 +Child: 128, type: 5, width: 36, height: 32 +Child: 129, type: 5, width: 36, height: 32 +Child: 130, type: 5, width: 36, height: 32 +Child: 131, type: 5, width: 36, height: 32 +Child: 132, type: 5, width: 36, height: 32 +Child: 133, type: 5, width: 36, height: 32 +Child: 134, type: 5, width: 36, height: 32 +Child: 135, type: 5, width: 36, height: 32 +Child: 136, type: 5, width: 36, height: 32 +Child: 137, type: 5, width: 36, height: 32 +Child: 138, type: 5, width: 36, height: 32 +Child: 139, type: 5, width: 36, height: 32 +Child: 140, type: 5, width: 36, height: 32 +Child: 141, type: 5, width: 36, height: 32 +Child: 142, type: 5, width: 36, height: 32 +Child: 143, type: 5, width: 36, height: 32 +Child: 144, type: 5, width: 36, height: 32 +Child: 145, type: 5, width: 36, height: 32 +Child: 146, type: 5, width: 36, height: 32 +Child: 147, type: 5, width: 36, height: 32 +Child: 148, type: 5, width: 36, height: 32 +Child: 149, type: 5, width: 36, height: 32 +Child: 150, type: 5, width: 36, height: 32 +Child: 151, type: 5, width: 36, height: 32 +Child: 152, type: 5, width: 36, height: 32 +Child: 153, type: 5, width: 36, height: 32 +Child: 154, type: 5, width: 36, height: 32 +Child: 155, type: 5, width: 36, height: 32 +Child: 156, type: 5, width: 36, height: 32 +Child: 157, type: 5, width: 36, height: 32 +Child: 158, type: 5, width: 36, height: 32 +Child: 159, type: 5, width: 36, height: 32 +Child: 160, type: 5, width: 36, height: 32 +Child: 161, type: 5, width: 36, height: 32 +Child: 162, type: 5, width: 36, height: 32 +Child: 163, type: 5, width: 36, height: 32 +Child: 164, type: 5, width: 36, height: 32 +Child: 165, type: 5, width: 36, height: 32 +Child: 166, type: 5, width: 36, height: 32 +Child: 167, type: 5, width: 36, height: 32 +Child: 168, type: 5, width: 36, height: 32 +Child: 169, type: 5, width: 36, height: 32 +Child: 170, type: 5, width: 36, height: 32 +Child: 171, type: 5, width: 36, height: 32 +Child: 172, type: 5, width: 36, height: 32 +Child: 173, type: 5, width: 36, height: 32 +Child: 174, type: 5, width: 36, height: 32 +Child: 175, type: 5, width: 36, height: 32 +Child: 176, type: 5, width: 36, height: 32 +Child: 177, type: 5, width: 36, height: 32 +Child: 178, type: 5, width: 36, height: 32 +Child: 179, type: 5, width: 36, height: 32 +Child: 180, type: 5, width: 36, height: 32 +Child: 181, type: 5, width: 36, height: 32 +Child: 182, type: 5, width: 36, height: 32 +Child: 183, type: 5, width: 36, height: 32 +Child: 184, type: 5, width: 36, height: 32 +Child: 185, type: 5, width: 36, height: 32 +Child: 186, type: 5, width: 36, height: 32 +Child: 187, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/727.txt b/server508/lists/interfaces/727.txt new file mode 100644 index 0000000..380ed6f --- /dev/null +++ b/server508/lists/interfaces/727.txt @@ -0,0 +1,30 @@ +Child: 0, type: 5, width: 487, height: 299 +Child: 1, type: 5, width: 25, height: 30 +Child: 2, type: 5, width: 36, height: 241 +Child: 3, type: 5, width: 36, height: 241 +Child: 4, type: 5, width: 438, height: 36 +Child: 5, type: 5, width: 438, height: 36 +Child: 6, type: 5, width: 25, height: 30 +Child: 7, type: 5, width: 25, height: 30 +Child: 8, type: 5, width: 25, height: 30 +Child: 9, type: 5, width: 36, height: 288 +Child: 10, type: 5, width: 181, height: 36 +Child: 11, type: 5, width: 25, height: 30 +Child: 12, type: 5, width: 36, height: 36 +Child: 13, type: 5, width: 25, height: 30 +Child: 14, type: 5, width: 25, height: 30 +Child: 15, type: 5, width: 36, height: 36 +Child: 16, type: 5, width: 25, height: 30 +Child: 17, type: 3, width: 66, height: 31 +Child: 18, message: Draughts +Child: 19, type: 6, width: 275, height: 274 +Child: 20, type: 3, width: 258, height: 258 +Child: 21, message: +Child: 22, message: vs +Child: 23, message: +Child: 24, message: Close +Child: 25, type: 6, width: 20, height: 19 +Child: 26, type: 6, width: 20, height: 19 +Child: 27, message: +Child: 28, message: +Child: 29, type: 0, width: 260, height: 256 diff --git a/server508/lists/interfaces/728.txt b/server508/lists/interfaces/728.txt new file mode 100644 index 0000000..ae8f620 --- /dev/null +++ b/server508/lists/interfaces/728.txt @@ -0,0 +1,28 @@ +Child: 0, type: 3, width: 190, height: 261 +Child: 1, type: 5, width: 188, height: 165 +Child: 2, type: 3, width: 190, height: 167 +Child: 3, type: 6, width: 51, height: 62 +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: +Child: 15, type: 5, width: 189, height: 32 +Child: 16, type: 5, width: 189, height: 32 +Child: 17, type: 5, width: 23, height: 23 +Child: 18, type: 5, width: 23, height: 23 +Child: 19, type: 0, width: 87, height: 43 +Child: 20, type: 5, width: 20, height: 16 +Child: 21, type: 5, width: 16, height: 16 +Child: 22, type: 5, width: 16, height: 16 +Child: 23, type: 5, width: 20, height: 16 +Child: 24, type: 0, width: 190, height: 261 +Child: 25, type: 0, width: 190, height: 261 +Child: 26, type: 0, width: 110, height: 121 +Child: 27, type: 0, width: 1, height: 1 diff --git a/server508/lists/interfaces/729.txt b/server508/lists/interfaces/729.txt new file mode 100644 index 0000000..39532af --- /dev/null +++ b/server508/lists/interfaces/729.txt @@ -0,0 +1,4 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 340, height: 231 +Child: 2, message: +Child: 3, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/73.txt b/server508/lists/interfaces/73.txt new file mode 100644 index 0000000..744744a --- /dev/null +++ b/server508/lists/interfaces/73.txt @@ -0,0 +1,13 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 96 +Child: 3, type: 6, width: 64, height: 96 +Child: 4, message: +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: What would you like to make in the churn? +Child: 11, message: Churn Butter +Child: 12, message: Churn Cheese diff --git a/server508/lists/interfaces/730.txt b/server508/lists/interfaces/730.txt new file mode 100644 index 0000000..8b4324f --- /dev/null +++ b/server508/lists/interfaces/730.txt @@ -0,0 +1,30 @@ +Child: 0, type: 5, width: 190, height: 26 +Child: 1, type: 5, width: 32, height: 32 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 142, height: 32 +Child: 6, type: 5, width: 140, height: 32 +Child: 7, message: Please pick up a stone! +Child: 8, type: 0, width: 16391, height: 16391 +Child: 9, type: 5, width: 159, height: 50 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 108, height: 32 +Child: 15, type: 5, width: 108, height: 32 +Child: 16, type: 5, width: 153, height: 32 +Child: 17, message: Charge: +Child: 18, message: Name +Child: 19, type: 0, width: 204, height: 64 +Child: 20, type: 0, width: 201, height: 64 +Child: 21, type: 0, width: 512, height: 334 +Child: 22, type: 0, width: 512, height: 334 +Child: 23, type: 0, width: 204, height: 32 +Child: 24, type: 0, width: 512, height: 334 +Child: 25, message: Hunting: +Child: 26, message: Hunted by: +Child: 27, message: Time left: +Child: 28, type: 9, width: 182, height: 0 +Child: 29, type: 5, width: 184, height: 8 diff --git a/server508/lists/interfaces/731.txt b/server508/lists/interfaces/731.txt new file mode 100644 index 0000000..3e5e9cd --- /dev/null +++ b/server508/lists/interfaces/731.txt @@ -0,0 +1,27 @@ +Child: 0, type: 5, width: 112, height: 26 +Child: 1, type: 5, width: 32, height: 32 +Child: 2, type: 5, width: 32, height: 32 +Child: 3, type: 5, width: 32, height: 32 +Child: 4, type: 5, width: 32, height: 32 +Child: 5, type: 5, width: 69, height: 29 +Child: 6, type: 5, width: 62, height: 20 +Child: 7, message: Rating +Child: 8, type: 0, width: 512, height: 334 +Child: 9, type: 5, width: 112, height: 26 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 69, height: 29 +Child: 15, type: 5, width: 62, height: 20 +Child: 16, message: Text +Child: 17, type: 0, width: 512, height: 334 +Child: 18, type: 5, width: 475, height: 30 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 5, width: 32, height: 32 +Child: 22, type: 5, width: 32, height: 32 +Child: 23, type: 5, width: 442, height: 32 +Child: 24, type: 5, width: 441, height: 32 +Child: 25, message: The following item is not allowed in the arena: +Child: 26, type: 0, width: 510, height: 62 diff --git a/server508/lists/interfaces/732.txt b/server508/lists/interfaces/732.txt new file mode 100644 index 0000000..a89da9e --- /dev/null +++ b/server508/lists/interfaces/732.txt @@ -0,0 +1,210 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 5, width: 491, height: 271 +Child: 2, type: 3, width: 228, height: 51 +Child: 3, type: 6, width: 35, height: 27 +Child: 4, message: Druidic Mage Top +Child: 5, message: Lvl. Req. 20 Magic, 10 Defence +Child: 6, message: (Cost: 300, Recharge: 100) +Child: 7, type: 3, width: 228, height: 51 +Child: 8, type: 6, width: 27, height: 39 +Child: 9, message: Druidic Mage Bottom +Child: 10, message: Lvl. Req. 20 Magic, 10 Defence +Child: 11, message: (Cost: 200, Recharge: 70) +Child: 12, type: 3, width: 228, height: 51 +Child: 13, type: 6, width: 19, height: 26 +Child: 14, message: Druidic Mage Hood +Child: 15, message: Lvl. Req. 20 Magic, 10 Defence +Child: 16, message: (Cost: 100, Recharge: 35) +Child: 17, type: 3, width: 400, height: 1 +Child: 18, type: 3, width: 400, height: 3 +Child: 19, type: 3, width: 228, height: 51 +Child: 20, type: 6, width: 40, height: 29 +Child: 21, message: Combat Robe Top +Child: 22, message: Lvl. Req. 20 Magic, 10 Defence +Child: 23, message: (Cost: 150, Recharge: 50) +Child: 24, type: 3, width: 228, height: 51 +Child: 25, type: 6, width: 25, height: 40 +Child: 26, message: Combat Robe Bottom +Child: 27, message: Lvl. Req. 20 Magic, 10 Defence +Child: 28, message: (Cost: 100, Recharge: 35) +Child: 29, type: 3, width: 228, height: 51 +Child: 30, type: 6, width: 19, height: 26 +Child: 31, message: Combat Hood +Child: 32, message: Lvl. Req. 20 Magic, 10 Defence +Child: 33, message: (Cost: 50, Recharge: 15) +Child: 34, type: 3, width: 400, height: 1 +Child: 35, type: 3, width: 400, height: 3 +Child: 36, type: 3, width: 228, height: 51 +Child: 37, type: 6, width: 41, height: 29 +Child: 38, message: Battle Robe Top +Child: 39, message: Lvl. Req. 60 Magic, 50 Defence +Child: 40, message: (Cost: 1500, Recharge: 500) +Child: 41, type: 3, width: 228, height: 51 +Child: 42, type: 6, width: 24, height: 40 +Child: 43, message: Battle Robe Bottom +Child: 44, message: Lvl. Req. 60 Magic, 50 Defence +Child: 45, message: (Cost: 1000, Recharge: 350) +Child: 46, type: 3, width: 228, height: 51 +Child: 47, type: 6, width: 19, height: 26 +Child: 48, message: Battle Hood +Child: 49, message: Lvl. Req. 60 Magic, 50 Defence +Child: 50, message: (Cost: 250, Recharge: 80) +Child: 51, type: 3, width: 400, height: 1 +Child: 52, type: 3, width: 400, height: 3 +Child: 53, type: 3, width: 228, height: 51 +Child: 54, type: 6, width: 30, height: 34 +Child: 55, message: Green D'hide Coif +Child: 56, message: Lvl. Req. 40 Ranged, 40 Defence +Child: 57, message: (Cost: 150, Recharge: 25) +Child: 58, type: 3, width: 228, height: 51 +Child: 59, type: 6, width: 30, height: 34 +Child: 60, message: Blue D'hide Coif +Child: 61, message: Lvl. Req. 50 Ranged, 40 Defence +Child: 62, message: (Cost: 200, Recharge: 35) +Child: 63, type: 3, width: 228, height: 51 +Child: 64, type: 6, width: 30, height: 34 +Child: 65, message: Red D'hide Coif +Child: 66, message: Lvl. Req. 60 Ranged, 40 Defence +Child: 67, message: (Cost: 300, Recharge: 50) +Child: 68, type: 3, width: 228, height: 51 +Child: 69, type: 6, width: 30, height: 34 +Child: 70, message: Black D'hide Coif +Child: 71, message: Lvl. Req. 70 Ranged, 40 Defence +Child: 72, message: (Cost: 500, Recharge: 75) +Child: 73, type: 3, width: 400, height: 1 +Child: 74, type: 3, width: 400, height: 3 +Child: 75, type: 3, width: 228, height: 51 +Child: 76, type: 6, width: 37, height: 22 +Child: 77, message: Bronze Gauntlets +Child: 78, message: Lvl. Req. None +Child: 79, message: (Cost: 15, Recharge: 3) +Child: 80, type: 3, width: 228, height: 51 +Child: 81, type: 6, width: 37, height: 22 +Child: 82, message: Iron Gauntlets +Child: 83, message: Lvl. Req. None +Child: 84, message: (Cost: 30, Recharge: 5) +Child: 85, type: 3, width: 228, height: 51 +Child: 86, type: 6, width: 37, height: 22 +Child: 87, message: Steel Gauntlets +Child: 88, message: Lvl. Req. 5 Defence +Child: 89, message: (Cost: 50, Recharge: 8) +Child: 90, type: 3, width: 228, height: 51 +Child: 91, type: 6, width: 37, height: 22 +Child: 92, message: Black Gauntlets +Child: 93, message: Lvl. Req. 10 Defence +Child: 94, message: (Cost: 75, Recharge: 13) +Child: 95, type: 3, width: 228, height: 51 +Child: 96, type: 6, width: 37, height: 22 +Child: 97, message: Mithril Gauntlets +Child: 98, message: Lvl. Req. 20 Defence +Child: 99, message: (Cost: 100, Recharge: 17) +Child: 100, type: 3, width: 228, height: 51 +Child: 101, type: 6, width: 37, height: 22 +Child: 102, message: Adamant Gauntlets +Child: 103, message: Lvl. Req. 30 Defence +Child: 104, message: (Cost: 150, Recharge: 25) +Child: 105, type: 3, width: 228, height: 51 +Child: 106, type: 6, width: 37, height: 22 +Child: 107, message: Rune Gauntlets +Child: 108, message: Lvl. Req. 40 Defence +Child: 109, message: (Cost: 200, Recharge: 35) +Child: 110, type: 3, width: 228, height: 51 +Child: 111, type: 6, width: 37, height: 25 +Child: 112, message: Dragon Gauntlets +Child: 113, message: Lvl. Req. 60 Defence +Child: 114, message: (Cost: 300, Recharge: 50) +Child: 115, type: 3, width: 400, height: 1 +Child: 116, type: 3, width: 400, height: 3 +Child: 117, type: 3, width: 228, height: 51 +Child: 118, type: 6, width: 27, height: 45 +Child: 119, message: Adamant Spikeshield +Child: 120, message: Lvl. Req. 35 Defence +Child: 121, message: (Cost: 50, Recharge: 8) +Child: 122, type: 3, width: 228, height: 51 +Child: 123, type: 6, width: 39, height: 47 +Child: 124, message: Adamant Berserker Shield +Child: 125, message: Lvl. Req. 35 Defence +Child: 126, message: (Cost: 100, Recharge: 17) +Child: 127, type: 3, width: 228, height: 51 +Child: 128, type: 6, width: 27, height: 45 +Child: 129, message: Rune Spikeshield +Child: 130, message: Lvl. Req. 45 Defence +Child: 131, message: (Cost: 200, Recharge: 35) +Child: 132, type: 3, width: 228, height: 51 +Child: 133, type: 6, width: 39, height: 47 +Child: 134, message: Rune Berserker Shield +Child: 135, message: Lvl. Req. 45 Defence +Child: 136, message: (Cost: 300, Recharge: 50) +Child: 137, type: 3, width: 400, height: 1 +Child: 138, type: 3, width: 400, height: 3 +Child: 139, type: 3, width: 228, height: 51 +Child: 140, type: 6, width: 29, height: 36 +Child: 141, message: Irit Gloves +Child: 142, message: Lvl. Req. 50 Herblore +Child: 143, message: (Cost: 75) +Child: 144, type: 3, width: 228, height: 51 +Child: 145, type: 6, width: 29, height: 36 +Child: 146, message: Avantoe Gloves +Child: 147, message: Lvl. Req. 60 Herblore +Child: 148, message: (Cost: 100) +Child: 149, type: 3, width: 228, height: 51 +Child: 150, type: 6, width: 29, height: 36 +Child: 151, message: Kwuarm Gloves +Child: 152, message: Lvl. Req. 70 Herblore +Child: 153, message: (Cost: 200) +Child: 154, type: 3, width: 228, height: 51 +Child: 155, type: 6, width: 29, height: 36 +Child: 156, message: Cadantine Gloves +Child: 157, message: Lvl. Req. 80 Herblore +Child: 158, message: (Cost: 200) +Child: 159, type: 3, width: 400, height: 1 +Child: 160, type: 3, width: 400, height: 3 +Child: 161, type: 3, width: 228, height: 51 +Child: 162, type: 6, width: 29, height: 36 +Child: 163, message: Swordfish Gloves +Child: 164, message: Lvl. Req. 65 Fishing +Child: 165, message: (Cost: 200) +Child: 166, type: 3, width: 228, height: 51 +Child: 167, type: 6, width: 29, height: 36 +Child: 168, message: Shark Gloves +Child: 169, message: Lvl. Req. 90 Fishing +Child: 170, message: (Cost: 200) +Child: 171, type: 3, width: 228, height: 51 +Child: 172, type: 6, width: 29, height: 36 +Child: 173, message: Dragon Slayer Gloves +Child: 174, message: Lvl. Req. 70 Slayer +Child: 175, message: (Cost: 200) +Child: 176, type: 3, width: 228, height: 51 +Child: 177, type: 6, width: 29, height: 36 +Child: 178, message: Air Runecrafting Gloves +Child: 179, message: Lvl. Req. 10 Runecrafting +Child: 180, message: (Cost: 75) +Child: 181, type: 3, width: 228, height: 51 +Child: 182, type: 6, width: 29, height: 36 +Child: 183, message: Water Runecrafting Gloves +Child: 184, message: Lvl. Req. 20 Runecrafting +Child: 185, message: (Cost: 75) +Child: 186, type: 3, width: 228, height: 51 +Child: 187, type: 6, width: 29, height: 36 +Child: 188, message: Earth Runecrafting Gloves +Child: 189, message: Lvl. Req. 30 Runecrafting +Child: 190, message: (Cost: 75) +Child: 191, type: 3, width: 400, height: 1 +Child: 192, type: 3, width: 400, height: 3 +Child: 193, type: 0, width: 504, height: 276 +Child: 194, type: 5, width: 491, height: 33 +Child: 195, type: 5, width: 31, height: 235 +Child: 196, type: 5, width: 31, height: 235 +Child: 197, type: 5, width: 32, height: 32 +Child: 198, type: 5, width: 441, height: 30 +Child: 199, type: 5, width: 32, height: 32 +Child: 200, type: 5, width: 32, height: 32 +Child: 201, type: 5, width: 32, height: 32 +Child: 202, type: 5, width: 483, height: 25 +Child: 203, type: 5, width: 441, height: 33 +Child: 204, type: 5, width: 32, height: 32 +Child: 205, type: 5, width: 32, height: 32 +Child: 206, message: Fist of Guthix Reward Shop +Child: 207, type: 0, width: 512, height: 334 +Child: 208, type: 5, width: 16, height: 16 +Child: 209, type: 0, width: 16, height: 240 diff --git a/server508/lists/interfaces/733.txt b/server508/lists/interfaces/733.txt new file mode 100644 index 0000000..03c6594 --- /dev/null +++ b/server508/lists/interfaces/733.txt @@ -0,0 +1,6 @@ +Child: 0, type: 6, width: 427, height: 343 +Child: 1, message: Ivandis Flail +Child: 2, message: Ivandis flail requires silvthril chain to connect blessed silver sickle to. However, to increase charges for the flail, need to add an emerald to the sickle before chain is attached. +Child: 3, message: Find it difficult to make big hole for emerald to fit in sickle and am just frustrated. More effort to make this work is just crazy, why won't it just work?? +Child: 4, type: 5, width: 26, height: 23 +Child: 5, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/734.txt b/server508/lists/interfaces/734.txt new file mode 100644 index 0000000..bf93c74 --- /dev/null +++ b/server508/lists/interfaces/734.txt @@ -0,0 +1,29 @@ +Child: 0, type: 3, width: 514, height: 334 +Child: 1, type: 6, width: 258, height: 364 +Child: 2, type: 6, width: 70, height: 89 +Child: 3, type: 6, width: 82, height: 84 +Child: 4, type: 6, width: 74, height: 91 +Child: 5, type: 6, width: 32, height: 32 +Child: 6, type: 6, width: 32, height: 32 +Child: 7, type: 6, width: 74, height: 91 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 84, height: 81 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 258, height: 364 +Child: 12, type: 6, width: 74, height: 91 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 465, height: 75 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 5, width: 26, height: 23 +Child: 20, message: Choose a combination +Child: 21, message: Teleport to this location +Child: 22, message: Teleport to this location +Child: 23, type: 0, width: 83, height: 166 +Child: 24, type: 0, width: 83, height: 166 +Child: 25, type: 0, width: 83, height: 166 +Child: 26, type: 0, width: 83, height: 166 +Child: 27, type: 0, width: 83, height: 166 +Child: 28, type: 0, width: 83, height: 166 diff --git a/server508/lists/interfaces/735.txt b/server508/lists/interfaces/735.txt new file mode 100644 index 0000000..e3835e0 --- /dev/null +++ b/server508/lists/interfaces/735.txt @@ -0,0 +1,80 @@ +Child: 0, type: 0, width: 190, height: 261 +Child: 1, type: 3, width: 190, height: 261 +Child: 2, type: 5, width: 190, height: 32 +Child: 3, type: 5, width: 158, height: 32 +Child: 4, type: 5, width: 158, height: 32 +Child: 5, type: 5, width: 32, height: 229 +Child: 6, type: 5, width: 32, height: 229 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, message: Travel Log +Child: 12, type: 5, width: 16, height: 14 +Child: 13, type: 0, width: 166, height: 226 +Child: 14, message: +Child: 15, message: +Child: 16, message: +Child: 17, message: +Child: 18, message: +Child: 19, message: +Child: 20, message: +Child: 21, message: +Child: 22, message: +Child: 23, message: +Child: 24, message: +Child: 25, message: +Child: 26, message: +Child: 27, message: +Child: 28, message: +Child: 29, message: +Child: 30, message: +Child: 31, message: +Child: 32, message: +Child: 33, message: +Child: 34, message: +Child: 35, message: +Child: 36, message: +Child: 37, message: +Child: 38, message: +Child: 39, message: +Child: 40, message: +Child: 41, message: +Child: 42, message: +Child: 43, message: +Child: 44, message: +Child: 45, message: +Child: 46, message: +Child: 47, message: +Child: 48, message: +Child: 49, message: +Child: 50, message: +Child: 51, message: +Child: 52, message: +Child: 53, message: +Child: 54, message: +Child: 55, message: +Child: 56, message: +Child: 57, message: +Child: 58, message: +Child: 59, message: +Child: 60, message: +Child: 61, message: +Child: 62, message: +Child: 63, message: +Child: 64, message: +Child: 65, message: +Child: 66, message: +Child: 67, message: +Child: 68, message: +Child: 69, message: +Child: 70, message: +Child: 71, message: +Child: 72, message: +Child: 73, message: +Child: 74, message: +Child: 75, message: +Child: 76, message: +Child: 77, message: +Child: 78, message: +Child: 79, type: 0, width: 16, height: 226 diff --git a/server508/lists/interfaces/736.txt b/server508/lists/interfaces/736.txt new file mode 100644 index 0000000..121e8cf --- /dev/null +++ b/server508/lists/interfaces/736.txt @@ -0,0 +1,3 @@ +Child: 0, type: 6, width: 55495, height: 40329 +Child: 1, type: 6, width: 50407, height: 35423 +Child: 2, type: 6, width: 27047, height: 21885 diff --git a/server508/lists/interfaces/737.txt b/server508/lists/interfaces/737.txt new file mode 100644 index 0000000..792100a --- /dev/null +++ b/server508/lists/interfaces/737.txt @@ -0,0 +1,9 @@ +Child: 0, message: Pick a Kitten +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 5, width: 57, height: 13 +Child: 3, type: 6, width: 33, height: 31 +Child: 4, type: 6, width: 33, height: 31 +Child: 5, type: 6, width: 33, height: 31 +Child: 6, type: 6, width: 33, height: 31 +Child: 7, type: 6, width: 33, height: 31 +Child: 8, type: 6, width: 33, height: 31 diff --git a/server508/lists/interfaces/738.txt b/server508/lists/interfaces/738.txt new file mode 100644 index 0000000..259ca5a --- /dev/null +++ b/server508/lists/interfaces/738.txt @@ -0,0 +1,9 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 205, height: 318 +Child: 2, message: Tok-Xil-Im +Child: 3, message: Tok-Ket-Hurt +Child: 4, message: TokJal-Hurt +Child: 5, message: a +Child: 6, message: ah +Child: 7, message: ac +Child: 8, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/739.txt b/server508/lists/interfaces/739.txt new file mode 100644 index 0000000..dafaaae --- /dev/null +++ b/server508/lists/interfaces/739.txt @@ -0,0 +1,36 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 6, width: 319, height: 302 +Child: 2, message: TzHaar Numbers +Child: 3, type: 5, width: 26, height: 23 +Child: 4, message: a +Child: 5, message: = 1 +Child: 6, message: = 13 +Child: 7, message: = 14 +Child: 8, message: = 15 +Child: 9, message: etc. +Child: 10, message: = 2 +Child: 11, message: = 3 +Child: 12, message: = 4 +Child: 13, message: = 5 +Child: 14, message: = 6 +Child: 15, message: = 7 +Child: 16, message: = 8 +Child: 17, message: = 1 +Child: 18, message: = 9 +Child: 19, message: = 10 +Child: 20, message: = 11 +Child: 21, message: = 12 +Child: 22, message: b +Child: 23, message: c +Child: 24, message: d +Child: 25, message: e +Child: 26, message: f +Child: 27, message: g +Child: 28, message: h +Child: 29, message: i +Child: 30, message: j +Child: 31, message: k +Child: 32, message: l +Child: 33, message: aa +Child: 34, message: ab +Child: 35, message: ac diff --git a/server508/lists/interfaces/74.txt b/server508/lists/interfaces/74.txt new file mode 100644 index 0000000..23f24aa --- /dev/null +++ b/server508/lists/interfaces/74.txt @@ -0,0 +1,18 @@ +Child: 0, type: 5, width: 57, height: 13 +Child: 1, type: 5, width: 57, height: 13 +Child: 2, type: 6, width: 64, height: 96 +Child: 3, type: 6, width: 64, height: 96 +Child: 4, type: 6, width: 64, height: 96 +Child: 5, message: +Child: 6, message: +Child: 7, message: +Child: 8, message: +Child: 9, message: +Child: 10, message: +Child: 11, message: +Child: 12, message: +Child: 13, message: +Child: 14, message: What would you like to make? +Child: 15, message: Churn Cream +Child: 16, message: Churn Butter +Child: 17, message: Churn Cheese diff --git a/server508/lists/interfaces/740.txt b/server508/lists/interfaces/740.txt new file mode 100644 index 0000000..1b4517a --- /dev/null +++ b/server508/lists/interfaces/740.txt @@ -0,0 +1,5 @@ +Child: 0, message: +Child: 1, message: +Child: 2, message: Open your stats menu and click on the flashing icon for more information. +Child: 3, message: Click here to continue +Child: 4, type: 5, width: 55, height: 54 diff --git a/server508/lists/interfaces/741.txt b/server508/lists/interfaces/741.txt new file mode 100644 index 0000000..0e480ee --- /dev/null +++ b/server508/lists/interfaces/741.txt @@ -0,0 +1,12 @@ +Child: 0, type: 3, width: 16384, height: 16384 +Child: 1, type: 6, width: 480, height: 301 +Child: 2, type: 0, width: 359, height: 160 +Child: 3, type: 0, width: 16, height: 160 +Child: 4, message: +Child: 5, message: Congratulations! +Child: 6, message: +Child: 7, type: 5, width: 55, height: 54 +Child: 8, type: 3, width: 331, height: 1 +Child: 9, type: 5, width: 26, height: 23 +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/742.txt b/server508/lists/interfaces/742.txt new file mode 100644 index 0000000..0225716 --- /dev/null +++ b/server508/lists/interfaces/742.txt @@ -0,0 +1,84 @@ +Child: 0, type: 3, width: 488, height: 305 +Child: 1, type: 0, width: 512, height: 334 +Child: 2, type: 5, width: 485, height: 300 +Child: 3, type: 5, width: 474, height: 32 +Child: 4, type: 5, width: 33, height: 242 +Child: 5, type: 5, width: 32, height: 243 +Child: 6, type: 5, width: 423, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 423, height: 32 +Child: 11, type: 5, width: 32, height: 32 +Child: 12, type: 5, width: 16, height: 16 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 32, height: 16 +Child: 15, type: 5, width: 32, height: 16 +Child: 16, type: 5, width: 32, height: 16 +Child: 17, type: 5, width: 32, height: 16 +Child: 18, message: Graphics Options +Child: 19, type: 0, width: 220, height: 20 +Child: 20, message: Visible levels +Child: 21, type: 0, width: 220, height: 20 +Child: 22, message: Remove roofs +Child: 23, type: 0, width: 220, height: 20 +Child: 24, message: Ground decoration +Child: 25, type: 0, width: 220, height: 20 +Child: 26, message: Texture detail +Child: 27, type: 0, width: 220, height: 20 +Child: 28, message: Idle animations +Child: 29, type: 0, width: 220, height: 20 +Child: 30, message: Flickering effects +Child: 31, type: 0, width: 220, height: 20 +Child: 32, message: Ground textures +Child: 33, type: 0, width: 220, height: 20 +Child: 34, message: Character shadows +Child: 35, type: 0, width: 220, height: 20 +Child: 36, message: Scenery shadows +Child: 37, type: 0, width: 220, height: 20 +Child: 38, message: Lighting Detail +Child: 39, type: 0, width: 220, height: 20 +Child: 40, message: Water detail +Child: 41, type: 0, width: 220, height: 20 +Child: 42, message: Fog +Child: 43, type: 0, width: 220, height: 20 +Child: 44, type: 0, width: 90, height: 15 +Child: 45, type: 0, width: 90, height: 52 +Child: 46, type: 0, width: 88, height: 50 +Child: 47, type: 0, width: 90, height: 15 +Child: 48, type: 0, width: 90, height: 52 +Child: 49, type: 0, width: 88, height: 50 +Child: 50, type: 0, width: 90, height: 15 +Child: 51, type: 0, width: 90, height: 52 +Child: 52, type: 0, width: 88, height: 50 +Child: 53, type: 0, width: 90, height: 15 +Child: 54, type: 0, width: 90, height: 52 +Child: 55, type: 0, width: 88, height: 50 +Child: 56, type: 0, width: 90, height: 15 +Child: 57, type: 0, width: 90, height: 52 +Child: 58, type: 0, width: 88, height: 50 +Child: 59, type: 0, width: 90, height: 15 +Child: 60, type: 0, width: 90, height: 52 +Child: 61, type: 0, width: 88, height: 50 +Child: 62, type: 0, width: 90, height: 15 +Child: 63, type: 0, width: 90, height: 52 +Child: 64, type: 0, width: 88, height: 50 +Child: 65, type: 0, width: 90, height: 15 +Child: 66, type: 0, width: 90, height: 52 +Child: 67, type: 0, width: 88, height: 50 +Child: 68, type: 0, width: 90, height: 15 +Child: 69, type: 0, width: 90, height: 52 +Child: 70, type: 0, width: 88, height: 50 +Child: 71, type: 0, width: 90, height: 15 +Child: 72, type: 0, width: 90, height: 52 +Child: 73, type: 0, width: 88, height: 50 +Child: 74, type: 0, width: 90, height: 15 +Child: 75, type: 0, width: 90, height: 52 +Child: 76, type: 0, width: 88, height: 50 +Child: 77, type: 0, width: 90, height: 15 +Child: 78, type: 0, width: 90, height: 52 +Child: 79, type: 0, width: 88, height: 50 +Child: 80, type: 0, width: 90, height: 15 +Child: 81, type: 0, width: 90, height: 52 +Child: 82, type: 0, width: 88, height: 50 +Child: 83, message: Anti-aliasing diff --git a/server508/lists/interfaces/743.txt b/server508/lists/interfaces/743.txt new file mode 100644 index 0000000..3679df9 --- /dev/null +++ b/server508/lists/interfaces/743.txt @@ -0,0 +1,35 @@ +Child: 0, type: 0, width: 512, height: 334 +Child: 1, type: 3, width: 175, height: 244 +Child: 2, type: 5, width: 166, height: 219 +Child: 3, type: 5, width: 33, height: 183 +Child: 4, type: 5, width: 32, height: 183 +Child: 5, type: 5, width: 113, height: 32 +Child: 6, type: 5, width: 32, height: 32 +Child: 7, type: 5, width: 32, height: 32 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 113, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 16, height: 16 +Child: 12, message: Audio Options +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 26, height: 16 +Child: 15, type: 5, width: 26, height: 16 +Child: 16, type: 5, width: 26, height: 16 +Child: 17, type: 5, width: 26, height: 16 +Child: 18, type: 5, width: 26, height: 16 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 26, height: 16 +Child: 21, type: 5, width: 26, height: 16 +Child: 22, type: 5, width: 26, height: 16 +Child: 23, type: 5, width: 26, height: 16 +Child: 24, type: 5, width: 26, height: 16 +Child: 25, type: 5, width: 32, height: 32 +Child: 26, type: 5, width: 26, height: 16 +Child: 27, type: 5, width: 26, height: 16 +Child: 28, type: 5, width: 26, height: 16 +Child: 29, type: 5, width: 26, height: 16 +Child: 30, type: 5, width: 26, height: 16 +Child: 31, type: 5, width: 15, height: 15 +Child: 32, message: Mono +Child: 33, type: 5, width: 15, height: 15 +Child: 34, message: Stereo diff --git a/server508/lists/interfaces/744.txt b/server508/lists/interfaces/744.txt new file mode 100644 index 0000000..0e0c14d --- /dev/null +++ b/server508/lists/interfaces/744.txt @@ -0,0 +1,306 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 0, width: 16384, height: 380 +Child: 2, type: 3, width: 16391, height: 16391 +Child: 3, type: 3, width: 16391, height: 16391 +Child: 4, type: 3, width: 16391, height: 16391 +Child: 5, type: 5, width: 16391, height: 16391 +Child: 6, type: 3, width: 128, height: 256 +Child: 7, type: 3, width: 128, height: 256 +Child: 8, type: 5, width: 360, height: 123 +Child: 9, type: 0, width: 16391, height: 380 +Child: 10, message: Your fullscreen resolution has been changed. Do you want to keep this setting? +Child: 11, type: 0, width: 16, height: 265 +Child: 12, message: (Press `Esc' for Main Menu) +Child: 13, type: 0, width: 16, height: 265 +Child: 14, type: 5, width: 60, height: 236 +Child: 15, type: 5, width: 60, height: 236 +Child: 16, type: 5, width: 135, height: 236 +Child: 17, type: 5, width: 135, height: 236 +Child: 18, type: 5, width: 172, height: 40 +Child: 19, type: 5, width: 130, height: 40 +Child: 20, type: 5, width: 130, height: 40 +Child: 21, type: 5, width: 172, height: 40 +Child: 22, type: 5, width: 130, height: 40 +Child: 23, type: 5, width: 130, height: 40 +Child: 24, type: 5, width: 138, height: 112 +Child: 25, type: 5, width: 110, height: 112 +Child: 26, type: 5, width: 130, height: 40 +Child: 27, type: 5, width: 130, height: 40 +Child: 28, type: 5, width: 130, height: 40 +Child: 29, type: 5, width: 130, height: 40 +Child: 30, type: 5, width: 130, height: 40 +Child: 31, type: 5, width: 130, height: 40 +Child: 32, message: Never give anyone your password, not even Jagex staff. Jagex will never ask you for your password. +Child: 33, type: 0, width: 16391, height: 16391 +Child: 34, message: Close +Child: 35, type: 0, width: 180, height: 256 +Child: 36, type: 0, width: 180, height: 256 +Child: 37, message: Yes +Child: 38, message: No +Child: 39, message: +Child: 40, type: 0, width: 184, height: 256 +Child: 41, type: 5, width: 22, height: 28 +Child: 42, message: Log In +Child: 43, message: (Existing User) +Child: 44, message: Create Account +Child: 45, message: (New User) +Child: 46, message: +Child: 47, message: +Child: 48, message: +Child: 49, message: Graphics Options +Child: 50, message: Audio Options +Child: 51, message: Music Volume +Child: 52, message: Quit +Child: 53, type: 5, width: 100, height: 33 +Child: 54, type: 5, width: 66, height: 34 +Child: 55, type: 5, width: 66, height: 34 +Child: 56, type: 5, width: 22, height: 28 +Child: 57, type: 5, width: 22, height: 28 +Child: 58, type: 5, width: 22, height: 28 +Child: 59, type: 5, width: 22, height: 28 +Child: 60, type: 5, width: 22, height: 28 +Child: 61, type: 5, width: 22, height: 28 +Child: 62, type: 5, width: 22, height: 28 +Child: 63, type: 0, width: 110, height: 28 +Child: 64, type: 0, width: 134, height: 16 +Child: 65, type: 0, width: 134, height: 52 +Child: 66, type: 0, width: 16, height: 50 +Child: 67, type: 0, width: 116, height: 50 +Child: 68, message: Brightness +Child: 69, type: 5, width: 22, height: 28 +Child: 70, type: 5, width: 22, height: 28 +Child: 71, type: 5, width: 22, height: 28 +Child: 72, type: 5, width: 22, height: 28 +Child: 73, type: 5, width: 22, height: 28 +Child: 74, type: 5, width: 22, height: 28 +Child: 75, type: 0, width: 88, height: 28 +Child: 76, type: 5, width: 22, height: 28 +Child: 77, message: Visible levels +Child: 78, type: 5, width: 13, height: 20 +Child: 79, type: 5, width: 13, height: 20 +Child: 80, type: 5, width: 100, height: 20 +Child: 81, message: +Child: 82, type: 5, width: 13, height: 20 +Child: 83, type: 5, width: 13, height: 20 +Child: 84, type: 5, width: 100, height: 20 +Child: 85, message: Ground decoration +Child: 86, type: 5, width: 13, height: 20 +Child: 87, type: 5, width: 13, height: 20 +Child: 88, type: 5, width: 100, height: 20 +Child: 89, message: Texture detail +Child: 90, type: 5, width: 13, height: 20 +Child: 91, type: 5, width: 13, height: 20 +Child: 92, type: 5, width: 100, height: 20 +Child: 93, message: Idle animations +Child: 94, type: 5, width: 13, height: 20 +Child: 95, type: 5, width: 13, height: 20 +Child: 96, type: 5, width: 100, height: 20 +Child: 97, message: Flickering effects +Child: 98, type: 5, width: 13, height: 20 +Child: 99, type: 5, width: 13, height: 20 +Child: 100, type: 5, width: 100, height: 20 +Child: 101, message: Ground textures +Child: 102, type: 5, width: 13, height: 20 +Child: 103, type: 5, width: 13, height: 20 +Child: 104, type: 5, width: 100, height: 20 +Child: 105, message: Character shadows +Child: 106, type: 5, width: 13, height: 20 +Child: 107, type: 5, width: 13, height: 20 +Child: 108, type: 5, width: 100, height: 20 +Child: 109, message: Scenery shadows +Child: 110, type: 5, width: 13, height: 20 +Child: 111, type: 5, width: 13, height: 20 +Child: 112, type: 5, width: 100, height: 20 +Child: 113, message: Lighting detail +Child: 114, type: 5, width: 13, height: 20 +Child: 115, type: 5, width: 13, height: 20 +Child: 116, type: 5, width: 100, height: 20 +Child: 117, message: Water detail +Child: 118, type: 5, width: 13, height: 20 +Child: 119, type: 5, width: 13, height: 20 +Child: 120, type: 5, width: 100, height: 20 +Child: 121, message: Fog +Child: 122, type: 5, width: 13, height: 20 +Child: 123, type: 5, width: 13, height: 20 +Child: 124, type: 5, width: 100, height: 20 +Child: 125, message: Anti-aliasing +Child: 126, type: 5, width: 13, height: 20 +Child: 127, type: 5, width: 13, height: 20 +Child: 128, type: 5, width: 100, height: 20 +Child: 129, message: Main Menu +Child: 130, type: 0, width: 107, height: 16 +Child: 131, type: 0, width: 107, height: 52 +Child: 132, type: 0, width: 105, height: 50 +Child: 133, type: 0, width: 107, height: 16 +Child: 134, type: 0, width: 107, height: 52 +Child: 135, type: 0, width: 105, height: 50 +Child: 136, type: 0, width: 107, height: 16 +Child: 137, type: 0, width: 107, height: 52 +Child: 138, type: 0, width: 105, height: 50 +Child: 139, type: 0, width: 107, height: 16 +Child: 140, type: 0, width: 107, height: 52 +Child: 141, type: 0, width: 105, height: 50 +Child: 142, type: 0, width: 107, height: 16 +Child: 143, type: 0, width: 107, height: 52 +Child: 144, type: 0, width: 105, height: 50 +Child: 145, type: 0, width: 107, height: 16 +Child: 146, type: 0, width: 107, height: 52 +Child: 147, type: 0, width: 105, height: 50 +Child: 148, type: 0, width: 107, height: 16 +Child: 149, type: 0, width: 107, height: 52 +Child: 150, type: 0, width: 105, height: 50 +Child: 151, type: 0, width: 107, height: 16 +Child: 152, type: 0, width: 107, height: 52 +Child: 153, type: 0, width: 105, height: 50 +Child: 154, type: 0, width: 107, height: 16 +Child: 155, type: 0, width: 107, height: 52 +Child: 156, type: 0, width: 105, height: 50 +Child: 157, type: 0, width: 107, height: 16 +Child: 158, type: 0, width: 107, height: 52 +Child: 159, type: 0, width: 105, height: 50 +Child: 160, type: 0, width: 107, height: 16 +Child: 161, type: 0, width: 107, height: 52 +Child: 162, type: 0, width: 105, height: 50 +Child: 163, type: 0, width: 107, height: 16 +Child: 164, type: 0, width: 107, height: 52 +Child: 165, type: 0, width: 105, height: 50 +Child: 166, type: 0, width: 107, height: 16 +Child: 167, type: 0, width: 107, height: 52 +Child: 168, type: 0, width: 105, height: 50 +Child: 169, message: Sound Effects Volume +Child: 170, type: 5, width: 22, height: 28 +Child: 171, type: 5, width: 22, height: 28 +Child: 172, type: 5, width: 22, height: 28 +Child: 173, type: 5, width: 22, height: 28 +Child: 174, type: 5, width: 22, height: 28 +Child: 175, type: 5, width: 22, height: 28 +Child: 176, type: 5, width: 22, height: 28 +Child: 177, type: 0, width: 110, height: 28 +Child: 178, type: 5, width: 22, height: 28 +Child: 179, message: Music Volume +Child: 180, type: 5, width: 22, height: 28 +Child: 181, type: 5, width: 22, height: 28 +Child: 182, type: 5, width: 22, height: 28 +Child: 183, type: 5, width: 22, height: 28 +Child: 184, type: 5, width: 22, height: 28 +Child: 185, type: 5, width: 22, height: 28 +Child: 186, type: 5, width: 22, height: 28 +Child: 187, type: 0, width: 110, height: 28 +Child: 188, type: 5, width: 22, height: 28 +Child: 189, type: 5, width: 22, height: 28 +Child: 190, message: Area Sounds Volume +Child: 191, type: 5, width: 22, height: 28 +Child: 192, type: 5, width: 22, height: 28 +Child: 193, type: 5, width: 22, height: 28 +Child: 194, type: 5, width: 22, height: 28 +Child: 195, type: 5, width: 22, height: 28 +Child: 196, type: 5, width: 22, height: 28 +Child: 197, type: 5, width: 22, height: 28 +Child: 198, type: 0, width: 110, height: 28 +Child: 199, message: Mono +Child: 200, type: 5, width: 15, height: 15 +Child: 201, message: Stereo +Child: 202, type: 5, width: 15, height: 15 +Child: 203, message: Main Menu +Child: 204, message: Audio Options +Child: 205, message: Please Log In +Child: 206, message: +Child: 207, message: Username: +Child: 208, type: 5, width: 142, height: 22 +Child: 209, type: 5, width: 66, height: 34 +Child: 210, type: 5, width: 52, height: 34 +Child: 211, type: 5, width: 66, height: 34 +Child: 212, message: +Child: 213, message: Password: +Child: 214, type: 5, width: 142, height: 20 +Child: 215, type: 5, width: 66, height: 34 +Child: 216, type: 5, width: 52, height: 34 +Child: 217, type: 5, width: 66, height: 34 +Child: 218, message: ******************** +Child: 219, message: Log In +Child: 220, message: Main Menu +Child: 221, message: Creating a RuneScape account is quick, easy and free. It only takes a few simple steps and you'll be enjoying the game in no time. +Child: 222, message: Main Menu +Child: 223, message: Next +Child: 224, type: 5, width: 13, height: 20 +Child: 225, type: 5, width: 47, height: 20 +Child: 226, type: 5, width: 13, height: 20 +Child: 227, type: 5, width: 13, height: 20 +Child: 228, type: 5, width: 101, height: 20 +Child: 229, type: 5, width: 13, height: 20 +Child: 230, type: 5, width: 13, height: 20 +Child: 231, type: 5, width: 47, height: 20 +Child: 232, type: 5, width: 13, height: 20 +Child: 233, message: Please input your date of birth: +Child: 234, message: Please select your permanent country of residence: +Child: 235, message: Do not worry. These are the only
personal questions we need to ask. +Child: 236, message: Previous +Child: 237, message: Next +Child: 238, type: 5, width: 13, height: 20 +Child: 239, type: 5, width: 202, height: 20 +Child: 240, type: 5, width: 13, height: 20 +Child: 241, type: 0, width: 210, height: 16 +Child: 242, type: 0, width: 210, height: 75 +Child: 243, type: 0, width: 194, height: 74 +Child: 244, type: 0, width: 16, height: 73 +Child: 245, type: 0, width: 56, height: 16 +Child: 246, type: 0, width: 56, height: 59 +Child: 247, type: 0, width: 39, height: 57 +Child: 248, type: 0, width: 16, height: 57 +Child: 249, type: 0, width: 109, height: 16 +Child: 250, type: 0, width: 109, height: 59 +Child: 251, type: 0, width: 91, height: 57 +Child: 252, type: 0, width: 16, height: 57 +Child: 253, type: 0, width: 56, height: 16 +Child: 254, type: 0, width: 56, height: 59 +Child: 255, type: 0, width: 39, height: 57 +Child: 256, type: 0, width: 16, height: 57 +Child: 257, message: Please input a username, then click `Next' to check that it is available. +Child: 258, message: Usernames can be a maximum of 12 characters long and may contain letters, numbers and underscores. Note: first letters will be capitalised and underscores will be converted into spaces. For example, the username red_rooster would display in the game as Red Rooster. +Child: 259, message: Username: +Child: 260, message: Previous +Child: 261, message: Next +Child: 262, type: 5, width: 104, height: 20 +Child: 263, type: 5, width: 13, height: 20 +Child: 264, type: 5, width: 95, height: 20 +Child: 265, type: 5, width: 13, height: 20 +Child: 266, message: +Child: 267, message: Congratulations! That username is currently available. +Child: 268, message: By clicking `I Agree', you confirm that you will play RuneScape according to our Terms and Conditions.

Please ensure that you have read them carefully by clicking the following link: +Child: 269, type: 0, width: 16384, height: 17 +Child: 270, type: 0, width: 16384, height: 17 +Child: 271, message: These are also available as a page on our website, should you wish to visit them later or print them out. +Child: 272, message: Previous +Child: 273, message: I Agree +Child: 274, type: 0, width: 180, height: 265 +Child: 275, message: Graphics Options +Child: 276, type: 0, width: 180, height: 256 +Child: 277, type: 0, width: 16391, height: 503 +Child: 278, type: 0, width: 305, height: 256 +Child: 279, type: 0, width: 305, height: 256 +Child: 280, type: 0, width: 305, height: 256 +Child: 281, type: 0, width: 305, height: 256 +Child: 282, message: Terms and Conditions +Child: 283, message: Terms and Conditions +Child: 284, type: 0, width: 305, height: 256 +Child: 285, type: 0, width: 305, height: 256 +Child: 286, message: Please note that your account has been locked into Quick Chat until you are of suitable age - please review our Terms & Conditions for more information. +Child: 287, message: Please choose a password and click `Create' to create your account. +Child: 288, message: Passwords must be between
5 and 20 charcters long.
We recommend using a combination of numbers and letters in your password to make it harder for someone to guess. +Child: 289, message: Password: +Child: 290, type: 5, width: 185, height: 20 +Child: 291, type: 5, width: 13, height: 20 +Child: 292, type: 5, width: 178, height: 20 +Child: 293, type: 5, width: 13, height: 20 +Child: 294, message: Confirm Password: +Child: 295, message: +Child: 296, type: 5, width: 185, height: 20 +Child: 297, type: 5, width: 13, height: 20 +Child: 298, type: 5, width: 178, height: 20 +Child: 299, type: 5, width: 13, height: 20 +Child: 300, message: +Child: 301, message: Previous +Child: 302, message: Create +Child: 303, message: Congratulations, you have created your account! Now, you just need to log in to play. If it doesn't work straight away, wait a few minutes and try again. +Child: 304, type: 0, width: 16391, height: 80 +Child: 305, message: Main Menu diff --git a/server508/lists/interfaces/745.txt b/server508/lists/interfaces/745.txt new file mode 100644 index 0000000..08875eb --- /dev/null +++ b/server508/lists/interfaces/745.txt @@ -0,0 +1,3 @@ +Child: 0, type: 0, width: 100, height: 25 +Child: 1, type: 5, width: 25, height: 25 +Child: 2, type: 5, width: 25, height: 25 diff --git a/server508/lists/interfaces/746.txt b/server508/lists/interfaces/746.txt new file mode 100644 index 0000000..e68e166 --- /dev/null +++ b/server508/lists/interfaces/746.txt @@ -0,0 +1,106 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 0, width: 150, height: 100 +Child: 2, type: 0, width: 160, height: 158 +Child: 3, type: 0, width: 512, height: 334 +Child: 4, type: 0, width: 16391, height: 16391 +Child: 5, type: 0, width: 219, height: 164 +Child: 6, type: 0, width: 16384, height: 16384 +Child: 7, type: 0, width: 220, height: 186 +Child: 8, type: 5, width: 152, height: 152 +Child: 9, type: 5, width: 164, height: 164 +Child: 10, type: 5, width: 33, height: 33 +Child: 11, type: 5, width: 43, height: 43 +Child: 12, type: 5, width: 22, height: 21 +Child: 13, type: 0, width: 57, height: 34 +Child: 14, type: 0, width: 57, height: 34 +Child: 15, type: 0, width: 57, height: 34 +Child: 16, type: 0, width: 57, height: 34 +Child: 17, type: 0, width: 100, height: 25 +Child: 18, type: 0, width: 519, height: 23 +Child: 19, type: 0, width: 462, height: 36 +Child: 20, type: 0, width: 462, height: 36 +Child: 21, type: 5, width: 33, height: 36 +Child: 22, type: 5, width: 33, height: 36 +Child: 23, type: 5, width: 33, height: 36 +Child: 24, type: 5, width: 33, height: 36 +Child: 25, type: 5, width: 33, height: 36 +Child: 26, type: 5, width: 33, height: 36 +Child: 27, type: 5, width: 33, height: 36 +Child: 28, type: 5, width: 33, height: 36 +Child: 29, type: 5, width: 33, height: 36 +Child: 30, type: 5, width: 33, height: 36 +Child: 31, type: 5, width: 33, height: 36 +Child: 32, type: 5, width: 33, height: 36 +Child: 33, type: 5, width: 33, height: 36 +Child: 34, type: 5, width: 33, height: 36 +Child: 35, type: 0, width: 462, height: 36 +Child: 36, type: 5, width: 33, height: 36 +Child: 37, type: 5, width: 33, height: 36 +Child: 38, type: 5, width: 33, height: 36 +Child: 39, type: 5, width: 33, height: 36 +Child: 40, type: 5, width: 33, height: 36 +Child: 41, type: 5, width: 33, height: 36 +Child: 42, type: 5, width: 33, height: 36 +Child: 43, type: 5, width: 33, height: 36 +Child: 44, type: 5, width: 33, height: 36 +Child: 45, type: 5, width: 33, height: 36 +Child: 46, type: 5, width: 33, height: 36 +Child: 47, type: 5, width: 33, height: 36 +Child: 48, type: 5, width: 33, height: 36 +Child: 49, type: 5, width: 33, height: 36 +Child: 50, type: 0, width: 462, height: 36 +Child: 51, type: 5, width: 32, height: 36 +Child: 52, type: 5, width: 32, height: 36 +Child: 53, type: 5, width: 32, height: 36 +Child: 54, type: 5, width: 32, height: 36 +Child: 55, type: 5, width: 32, height: 36 +Child: 56, type: 5, width: 32, height: 36 +Child: 57, type: 5, width: 32, height: 36 +Child: 58, type: 5, width: 32, height: 36 +Child: 59, type: 5, width: 32, height: 36 +Child: 60, type: 5, width: 32, height: 36 +Child: 61, type: 5, width: 32, height: 36 +Child: 62, type: 5, width: 32, height: 36 +Child: 63, type: 5, width: 32, height: 36 +Child: 64, type: 5, width: 32, height: 36 +Child: 65, type: 0, width: 519, height: 142 +Child: 66, type: 0, width: 512, height: 69 +Child: 67, type: 0, width: 200, height: 271 +Child: 68, type: 0, width: 200, height: 271 +Child: 69, type: 5, width: 190, height: 261 +Child: 70, type: 0, width: 190, height: 261 +Child: 71, type: 0, width: 190, height: 261 +Child: 72, type: 5, width: 190, height: 261 +Child: 73, type: 5, width: 190, height: 261 +Child: 74, type: 5, width: 190, height: 261 +Child: 75, type: 5, width: 190, height: 261 +Child: 76, type: 5, width: 190, height: 261 +Child: 77, type: 5, width: 190, height: 261 +Child: 78, type: 5, width: 190, height: 261 +Child: 79, type: 5, width: 190, height: 261 +Child: 80, type: 5, width: 190, height: 261 +Child: 81, type: 5, width: 190, height: 261 +Child: 82, type: 5, width: 190, height: 261 +Child: 83, type: 5, width: 190, height: 261 +Child: 84, type: 5, width: 190, height: 261 +Child: 85, type: 5, width: 190, height: 261 +Child: 86, type: 5, width: 190, height: 261 +Child: 87, type: 0, width: 190, height: 261 +Child: 88, type: 0, width: 190, height: 261 +Child: 89, type: 0, width: 190, height: 261 +Child: 90, type: 0, width: 190, height: 261 +Child: 91, type: 0, width: 190, height: 261 +Child: 92, type: 0, width: 190, height: 261 +Child: 93, type: 0, width: 190, height: 261 +Child: 94, type: 0, width: 190, height: 261 +Child: 95, type: 0, width: 190, height: 261 +Child: 96, type: 0, width: 190, height: 261 +Child: 97, type: 0, width: 190, height: 261 +Child: 98, type: 0, width: 190, height: 261 +Child: 99, type: 0, width: 190, height: 261 +Child: 100, type: 0, width: 190, height: 261 +Child: 101, type: 0, width: 190, height: 261 +Child: 102, type: 0, width: 1024, height: 90 +Child: 103, type: 5, width: 43, height: 43 +Child: 104, type: 5, width: 34, height: 34 +Child: 105, type: 0, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/747.txt b/server508/lists/interfaces/747.txt new file mode 100644 index 0000000..dda2613 --- /dev/null +++ b/server508/lists/interfaces/747.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 57, height: 34 +Child: 1, type: 5, width: 57, height: 34 +Child: 2, type: 5, width: 31, height: 31 +Child: 3, type: 5, width: 31, height: 31 +Child: 4, message: +Child: 5, type: 5, width: 20, height: 20 diff --git a/server508/lists/interfaces/748.txt b/server508/lists/interfaces/748.txt new file mode 100644 index 0000000..dda2613 --- /dev/null +++ b/server508/lists/interfaces/748.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 57, height: 34 +Child: 1, type: 5, width: 57, height: 34 +Child: 2, type: 5, width: 31, height: 31 +Child: 3, type: 5, width: 31, height: 31 +Child: 4, message: +Child: 5, type: 5, width: 20, height: 20 diff --git a/server508/lists/interfaces/749.txt b/server508/lists/interfaces/749.txt new file mode 100644 index 0000000..dda2613 --- /dev/null +++ b/server508/lists/interfaces/749.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 57, height: 34 +Child: 1, type: 5, width: 57, height: 34 +Child: 2, type: 5, width: 31, height: 31 +Child: 3, type: 5, width: 31, height: 31 +Child: 4, message: +Child: 5, type: 5, width: 20, height: 20 diff --git a/server508/lists/interfaces/75.txt b/server508/lists/interfaces/75.txt new file mode 100644 index 0000000..bdce911 --- /dev/null +++ b/server508/lists/interfaces/75.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Chop +Child: 28, message: Hack +Child: 29, message: Smash +Child: 30, message: Auto Retaliate
(Off) +Child: 31, message: Block +Child: 32, type: 8, width: 72, height: 46 +Child: 33, type: 8, width: 70, height: 47 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 46 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/750.txt b/server508/lists/interfaces/750.txt new file mode 100644 index 0000000..dda2613 --- /dev/null +++ b/server508/lists/interfaces/750.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 57, height: 34 +Child: 1, type: 5, width: 57, height: 34 +Child: 2, type: 5, width: 31, height: 31 +Child: 3, type: 5, width: 31, height: 31 +Child: 4, message: +Child: 5, type: 5, width: 20, height: 20 diff --git a/server508/lists/interfaces/751.txt b/server508/lists/interfaces/751.txt new file mode 100644 index 0000000..f768c02 --- /dev/null +++ b/server508/lists/interfaces/751.txt @@ -0,0 +1,30 @@ +Child: 0, type: 0, width: 519, height: 23 +Child: 1, type: 0, width: 56, height: 22 +Child: 2, type: 5, width: 56, height: 22 +Child: 3, message: All +Child: 4, type: 0, width: 56, height: 22 +Child: 5, type: 5, width: 56, height: 22 +Child: 6, message: Game +Child: 7, type: 0, width: 56, height: 22 +Child: 8, type: 5, width: 56, height: 22 +Child: 9, message: Public +Child: 10, message: On +Child: 11, type: 0, width: 56, height: 22 +Child: 12, type: 5, width: 56, height: 22 +Child: 13, message: Private +Child: 14, message: On +Child: 15, type: 0, width: 56, height: 22 +Child: 16, type: 5, width: 56, height: 22 +Child: 17, message: Clan +Child: 18, message: On +Child: 19, type: 0, width: 56, height: 22 +Child: 20, type: 5, width: 56, height: 22 +Child: 21, message: Trade +Child: 22, message: On +Child: 23, type: 0, width: 56, height: 22 +Child: 24, type: 5, width: 56, height: 22 +Child: 25, message: Assist +Child: 26, message: On +Child: 27, type: 0, width: 111, height: 22 +Child: 28, type: 5, width: 111, height: 22 +Child: 29, message: Report Abuse diff --git a/server508/lists/interfaces/752.txt b/server508/lists/interfaces/752.txt new file mode 100644 index 0000000..e92e133 --- /dev/null +++ b/server508/lists/interfaces/752.txt @@ -0,0 +1,13 @@ +Child: 0, type: 0, width: 16391, height: 16384 +Child: 1, type: 5, width: 8, height: 10 +Child: 2, type: 0, width: 16391, height: 16384 +Child: 3, type: 0, width: 479, height: 96 +Child: 4, message: +Child: 5, message: +Child: 6, type: 0, width: 506, height: 130 +Child: 7, type: 0, width: 16391, height: 16384 +Child: 8, type: 0, width: 12, height: 12 +Child: 9, type: 0, width: 479, height: 96 +Child: 10, type: 0, width: 15, height: 18 +Child: 11, type: 0, width: 479, height: 96 +Child: 12, type: 0, width: 15, height: 18 diff --git a/server508/lists/interfaces/753.txt b/server508/lists/interfaces/753.txt new file mode 100644 index 0000000..3a2159b --- /dev/null +++ b/server508/lists/interfaces/753.txt @@ -0,0 +1,28 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 0, width: 1, height: 1 +Child: 2, type: 0, width: 1, height: 1 +Child: 3, type: 0, width: 1, height: 1 +Child: 4, type: 0, width: 1, height: 1 +Child: 5, type: 0, width: 1, height: 1 +Child: 6, type: 0, width: 1, height: 1 +Child: 7, type: 0, width: 1, height: 1 +Child: 8, type: 0, width: 1, height: 1 +Child: 9, type: 0, width: 1, height: 1 +Child: 10, type: 0, width: 1, height: 1 +Child: 11, type: 0, width: 1, height: 1 +Child: 12, type: 0, width: 1, height: 1 +Child: 13, type: 0, width: 1, height: 1 +Child: 14, type: 0, width: 1, height: 1 +Child: 15, type: 0, width: 1, height: 1 +Child: 16, type: 0, width: 1, height: 1 +Child: 17, type: 0, width: 1, height: 1 +Child: 18, type: 0, width: 1, height: 1 +Child: 19, type: 0, width: 1, height: 1 +Child: 20, type: 0, width: 1, height: 1 +Child: 21, type: 0, width: 1, height: 1 +Child: 22, type: 0, width: 1, height: 1 +Child: 23, type: 0, width: 1, height: 1 +Child: 24, type: 0, width: 1, height: 1 +Child: 25, type: 0, width: 1, height: 1 +Child: 26, type: 0, width: 1, height: 1 +Child: 27, type: 0, width: 1, height: 1 diff --git a/server508/lists/interfaces/754.txt b/server508/lists/interfaces/754.txt new file mode 100644 index 0000000..c3934ca --- /dev/null +++ b/server508/lists/interfaces/754.txt @@ -0,0 +1,6 @@ +Child: 0, type: 0, width: 512, height: 69 +Child: 1, message: +Child: 2, message: +Child: 3, message: +Child: 4, message: +Child: 5, message: diff --git a/server508/lists/interfaces/755.txt b/server508/lists/interfaces/755.txt new file mode 100644 index 0000000..cf629ef --- /dev/null +++ b/server508/lists/interfaces/755.txt @@ -0,0 +1,35 @@ +Child: 0, type: 0, width: 16391, height: 16391 +Child: 1, type: 5, width: 12, height: 32 +Child: 2, type: 0, width: 12, height: 49 +Child: 3, type: 0, width: 16384, height: 16391 +Child: 4, type: 5, width: 177, height: 16391 +Child: 5, type: 0, width: 24, height: 16391 +Child: 6, type: 0, width: 16, height: 16391 +Child: 7, type: 5, width: 3, height: 16391 +Child: 8, type: 3, width: 3, height: 454 +Child: 9, type: 5, width: 16, height: 16 +Child: 10, type: 0, width: 12, height: 32 +Child: 11, type: 5, width: 16391, height: 16384 +Child: 12, type: 5, width: 35, height: 35 +Child: 13, type: 5, width: 35, height: 35 +Child: 14, type: 5, width: 35, height: 35 +Child: 15, type: 0, width: 350, height: 20 +Child: 16, type: 5, width: 20, height: 20 +Child: 17, type: 5, width: 310, height: 20 +Child: 18, type: 5, width: 20, height: 20 +Child: 19, message: Search the map by typing here. +Child: 20, type: 0, width: 153, height: 153 +Child: 21, type: 0, width: 35, height: 140 +Child: 22, type: 0, width: 185, height: 16391 +Child: 23, type: 5, width: 35, height: 35 +Child: 24, message: 37% +Child: 25, type: 5, width: 35, height: 35 +Child: 26, message: 50% +Child: 27, type: 5, width: 35, height: 35 +Child: 28, message: 75% +Child: 29, type: 5, width: 35, height: 35 +Child: 30, message: 100% +Child: 31, type: 5, width: 32, height: 32 +Child: 32, type: 5, width: 120, height: 32 +Child: 33, type: 5, width: 32, height: 121 +Child: 34, type: 0, width: 150, height: 150 diff --git a/server508/lists/interfaces/756.txt b/server508/lists/interfaces/756.txt new file mode 100644 index 0000000..8d8fb0d --- /dev/null +++ b/server508/lists/interfaces/756.txt @@ -0,0 +1,69 @@ +Child: 0, type: 3, width: 334, height: 221 +Child: 1, type: 5, width: 322, height: 212 +Child: 2, type: 3, width: 88, height: 31 +Child: 3, type: 0, width: 100, height: 43 +Child: 4, type: 0, width: 100, height: 43 +Child: 5, message: Challenge +Child: 6, type: 0, width: 100, height: 43 +Child: 7, message: Challenge +Child: 8, type: 0, width: 100, height: 43 +Child: 9, message: Challenge +Child: 10, message: Draughts: Options +Child: 11, message: Challenge +Child: 12, type: 5, width: 15, height: 15 +Child: 13, type: 5, width: 15, height: 15 +Child: 14, type: 0, width: 113, height: 100 +Child: 15, type: 5, width: 15, height: 15 +Child: 16, type: 5, width: 15, height: 15 +Child: 17, message: 30 seconds +Child: 18, message: 1 minute +Child: 19, message: 2 minutes +Child: 20, message: 15 seconds +Child: 21, message: Time per move: +Child: 22, type: 0, width: 191, height: 179 +Child: 23, message: Choose piece: +Child: 24, type: 6, width: 32, height: 33 +Child: 25, type: 6, width: 32, height: 33 +Child: 26, type: 6, width: 32, height: 33 +Child: 27, type: 6, width: 32, height: 33 +Child: 28, type: 6, width: 32, height: 33 +Child: 29, type: 6, width: 32, height: 33 +Child: 30, type: 6, width: 32, height: 33 +Child: 31, type: 6, width: 32, height: 33 +Child: 32, type: 6, width: 32, height: 33 +Child: 33, type: 6, width: 32, height: 33 +Child: 34, type: 6, width: 32, height: 33 +Child: 35, type: 6, width: 32, height: 33 +Child: 36, type: 5, width: 15, height: 15 +Child: 37, type: 5, width: 15, height: 15 +Child: 38, type: 5, width: 15, height: 15 +Child: 39, type: 5, width: 15, height: 15 +Child: 40, type: 5, width: 15, height: 15 +Child: 41, type: 5, width: 15, height: 15 +Child: 42, type: 5, width: 15, height: 15 +Child: 43, type: 5, width: 15, height: 15 +Child: 44, type: 5, width: 15, height: 15 +Child: 45, type: 5, width: 15, height: 15 +Child: 46, type: 5, width: 15, height: 15 +Child: 47, type: 5, width: 15, height: 15 +Child: 48, message: Ranked +Child: 49, type: 0, width: 512, height: 334 +Child: 50, type: 5, width: 15, height: 15 +Child: 51, type: 5, width: 16, height: 16 +Child: 52, type: 5, width: 32, height: 32 +Child: 53, type: 5, width: 32, height: 32 +Child: 54, type: 5, width: 32, height: 32 +Child: 55, type: 5, width: 32, height: 32 +Child: 56, type: 5, width: 32, height: 155 +Child: 57, type: 5, width: 32, height: 32 +Child: 58, type: 5, width: 32, height: 32 +Child: 59, type: 5, width: 32, height: 155 +Child: 60, type: 5, width: 270, height: 32 +Child: 61, type: 5, width: 269, height: 32 +Child: 62, type: 5, width: 314, height: 25 +Child: 63, type: 5, width: 32, height: 32 +Child: 64, type: 5, width: 32, height: 32 +Child: 65, type: 5, width: 32, height: 32 +Child: 66, type: 5, width: 32, height: 32 +Child: 67, type: 5, width: 36, height: 32 +Child: 68, type: 5, width: 36, height: 32 diff --git a/server508/lists/interfaces/757.txt b/server508/lists/interfaces/757.txt new file mode 100644 index 0000000..97a7b49 --- /dev/null +++ b/server508/lists/interfaces/757.txt @@ -0,0 +1,4 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, message: Name +Child: 2, message: Line1 +Child: 3, message: Click here to continue diff --git a/server508/lists/interfaces/758.txt b/server508/lists/interfaces/758.txt new file mode 100644 index 0000000..c92cb01 --- /dev/null +++ b/server508/lists/interfaces/758.txt @@ -0,0 +1,30 @@ +Child: 0, type: 3, width: 16391, height: 16391 +Child: 1, type: 6, width: 167, height: 299 +Child: 2, type: 6, width: 167, height: 299 +Child: 3, type: 6, width: 513, height: 456 +Child: 4, message: Lumbridge +Child: 5, message: Champion's Guild +Child: 6, message: Barbarian Village +Child: 7, message: Edgeville +Child: 8, message: Wilderness +Child: 9, message: You Journey on the canoe.... +Child: 10, type: 0, width: 512, height: 334 +Child: 11, type: 0, width: 16391, height: 16391 +Child: 12, type: 0, width: 16391, height: 16391 +Child: 13, type: 5, width: 32, height: 334 +Child: 14, type: 5, width: 462, height: 32 +Child: 15, type: 5, width: 512, height: 32 +Child: 16, type: 5, width: 32, height: 334 +Child: 17, type: 5, width: 32, height: 32 +Child: 18, type: 5, width: 32, height: 32 +Child: 19, type: 5, width: 32, height: 32 +Child: 20, type: 5, width: 32, height: 32 +Child: 21, type: 0, width: 8192, height: 16391 +Child: 22, type: 0, width: 8188, height: 16391 +Child: 23, type: 0, width: 16391, height: 8192 +Child: 24, type: 0, width: 16391, height: 8182 +Child: 25, type: 0, width: 512, height: 334 +Child: 26, type: 5, width: 256, height: 16384 +Child: 27, type: 5, width: 256, height: 16391 +Child: 28, type: 5, width: 16391, height: 167 +Child: 29, type: 5, width: 16391, height: 166 diff --git a/server508/lists/interfaces/759.txt b/server508/lists/interfaces/759.txt new file mode 100644 index 0000000..aa7f72b --- /dev/null +++ b/server508/lists/interfaces/759.txt @@ -0,0 +1,22 @@ +Child: 0, type: 0, width: 16384, height: 16384 +Child: 1, type: 3, width: 332, height: 176 +Child: 2, type: 5, width: 327, height: 170 +Child: 3, type: 5, width: 39, height: 143 +Child: 4, type: 5, width: 27, height: 141 +Child: 5, type: 5, width: 32, height: 32 +Child: 6, type: 5, width: 286, height: 22 +Child: 7, type: 5, width: 285, height: 37 +Child: 8, type: 5, width: 32, height: 32 +Child: 9, type: 5, width: 32, height: 32 +Child: 10, type: 5, width: 32, height: 32 +Child: 11, type: 5, width: 316, height: 22 +Child: 12, type: 5, width: 32, height: 32 +Child: 13, type: 5, width: 32, height: 32 +Child: 14, type: 5, width: 90, height: 56 +Child: 15, type: 5, width: 90, height: 56 +Child: 16, type: 3, width: 16391, height: 16391 +Child: 17, type: 0, width: 357, height: 217 +Child: 18, message: Cancel +Child: 19, message: Confirm +Child: 20, message: Change game resolution? +Child: 21, message: diff --git a/server508/lists/interfaces/76.txt b/server508/lists/interfaces/76.txt new file mode 100644 index 0000000..80da630 --- /dev/null +++ b/server508/lists/interfaces/76.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Block +Child: 26, message: Pound +Child: 27, message: Pummel +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/77.txt b/server508/lists/interfaces/77.txt new file mode 100644 index 0000000..bce5585 --- /dev/null +++ b/server508/lists/interfaces/77.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Longrange +Child: 26, message: Accurate +Child: 27, message: Rapid +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 71, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/78.txt b/server508/lists/interfaces/78.txt new file mode 100644 index 0000000..84c385e --- /dev/null +++ b/server508/lists/interfaces/78.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Chop +Child: 28, message: Slash +Child: 29, message: Lunge +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/79.txt b/server508/lists/interfaces/79.txt new file mode 100644 index 0000000..bd78b21 --- /dev/null +++ b/server508/lists/interfaces/79.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Accurate +Child: 26, message: Rapid +Child: 27, message: Longrange +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 68, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/8.txt b/server508/lists/interfaces/8.txt new file mode 100644 index 0000000..1b6e59b --- /dev/null +++ b/server508/lists/interfaces/8.txt @@ -0,0 +1,10 @@ +Child: 0, type: 6, width: 482, height: 348 +Child: 1, message: 8-East +Child: 2, message: 6-South +Child: 3, message: 2-North +Child: 4, message: 4-East +Child: 5, message: 22-South +Child: 6, message: X marks the start! +Child: 7, message: Dragontooth Island +Child: 8, type: 5, width: 26, height: 23 +Child: 9, type: 0, width: 512, height: 334 diff --git a/server508/lists/interfaces/80.txt b/server508/lists/interfaces/80.txt new file mode 100644 index 0000000..547e0b0 --- /dev/null +++ b/server508/lists/interfaces/80.txt @@ -0,0 +1,14 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 34, height: 24 +Child: 5, type: 5, width: 30, height: 30 +Child: 6, message: Combat Lvl: %1 +Child: 7, type: 5, width: 150, height: 46 +Child: 8, message: Aim and Fire +Child: 9, message: Kick +Child: 10, message: Auto Retaliate
(Off) +Child: 11, type: 8, width: 70, height: 46 +Child: 12, type: 8, width: 70, height: 46 +Child: 13, type: 8, width: 150, height: 46 diff --git a/server508/lists/interfaces/81.txt b/server508/lists/interfaces/81.txt new file mode 100644 index 0000000..84c385e --- /dev/null +++ b/server508/lists/interfaces/81.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Chop +Child: 28, message: Slash +Child: 29, message: Lunge +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/82.txt b/server508/lists/interfaces/82.txt new file mode 100644 index 0000000..7b1e9e2 --- /dev/null +++ b/server508/lists/interfaces/82.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Chop +Child: 28, message: Slash +Child: 29, message: Smash +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/83.txt b/server508/lists/interfaces/83.txt new file mode 100644 index 0000000..a175abb --- /dev/null +++ b/server508/lists/interfaces/83.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Spike +Child: 28, message: Impale +Child: 29, message: Smash +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/84.txt b/server508/lists/interfaces/84.txt new file mode 100644 index 0000000..6698211 --- /dev/null +++ b/server508/lists/interfaces/84.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Jab +Child: 26, message: Swipe +Child: 27, message: Fend +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/85.txt b/server508/lists/interfaces/85.txt new file mode 100644 index 0000000..59448e4 --- /dev/null +++ b/server508/lists/interfaces/85.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Bash +Child: 26, message: Pound +Child: 27, message: Block +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/86.txt b/server508/lists/interfaces/86.txt new file mode 100644 index 0000000..beee48a --- /dev/null +++ b/server508/lists/interfaces/86.txt @@ -0,0 +1,22 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, message: Combat Lvl: %1 +Child: 11, type: 5, width: 150, height: 46 +Child: 12, message: Reap +Child: 13, message: Chop +Child: 14, message: Jab +Child: 15, message: Block +Child: 16, message: Auto Retaliate
(Off) +Child: 17, type: 8, width: 70, height: 46 +Child: 18, type: 8, width: 70, height: 46 +Child: 19, type: 8, width: 70, height: 47 +Child: 20, type: 8, width: 70, height: 47 +Child: 21, type: 8, width: 150, height: 46 diff --git a/server508/lists/interfaces/87.txt b/server508/lists/interfaces/87.txt new file mode 100644 index 0000000..279acfb --- /dev/null +++ b/server508/lists/interfaces/87.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Lunge +Child: 28, message: Swipe +Child: 29, message: Pound +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/88.txt b/server508/lists/interfaces/88.txt new file mode 100644 index 0000000..9227810 --- /dev/null +++ b/server508/lists/interfaces/88.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Pound +Child: 28, message: Pummel +Child: 29, message: Spike +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/89.txt b/server508/lists/interfaces/89.txt new file mode 100644 index 0000000..5cacb87 --- /dev/null +++ b/server508/lists/interfaces/89.txt @@ -0,0 +1,38 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 34, height: 24 +Child: 10, type: 3, width: 155, height: 22 +Child: 11, type: 5, width: 150, height: 26 +Child: 12, type: 0, width: 158, height: 64 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, type: 6, width: 146, height: 9 +Child: 23, type: 6, width: 146, height: 9 +Child: 24, message: S P E C I A L A T T A C K +Child: 25, message: Combat Lvl: %1 +Child: 26, type: 5, width: 150, height: 46 +Child: 27, message: Stab +Child: 28, message: Lunge +Child: 29, message: Slash +Child: 30, message: Block +Child: 31, message: Auto Retaliate
(Off) +Child: 32, type: 8, width: 70, height: 46 +Child: 33, type: 8, width: 70, height: 46 +Child: 34, type: 8, width: 70, height: 47 +Child: 35, type: 8, width: 70, height: 47 +Child: 36, type: 8, width: 150, height: 46 +Child: 37, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/9.txt b/server508/lists/interfaces/9.txt new file mode 100644 index 0000000..8b1d2ef --- /dev/null +++ b/server508/lists/interfaces/9.txt @@ -0,0 +1,37 @@ +Child: 0, type: 3, width: 512, height: 334 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Rune-Draw +Child: 4, message: Your Score +Child: 5, message: Opponent's Score +Child: 6, type: 0, width: 62, height: 43 +Child: 7, message: Draw +Child: 8, message: +Child: 9, type: 0, width: 63, height: 43 +Child: 10, message: Hold +Child: 11, message: +Child: 12, type: 6, width: 25, height: 24 +Child: 13, type: 6, width: 25, height: 24 +Child: 14, type: 6, width: 25, height: 24 +Child: 15, type: 6, width: 25, height: 24 +Child: 16, type: 6, width: 25, height: 24 +Child: 17, type: 6, width: 25, height: 24 +Child: 18, type: 6, width: 25, height: 24 +Child: 19, type: 6, width: 25, height: 24 +Child: 20, type: 6, width: 25, height: 24 +Child: 21, type: 6, width: 25, height: 24 +Child: 22, type: 6, width: 25, height: 24 +Child: 23, type: 6, width: 25, height: 24 +Child: 24, type: 6, width: 25, height: 24 +Child: 25, type: 6, width: 25, height: 24 +Child: 26, type: 6, width: 25, height: 24 +Child: 27, type: 6, width: 25, height: 24 +Child: 28, type: 6, width: 25, height: 24 +Child: 29, type: 6, width: 25, height: 24 +Child: 30, type: 6, width: 25, height: 24 +Child: 31, type: 6, width: 25, height: 24 +Child: 32, message: DEATH +Child: 33, message: Text +Child: 34, message: DEATH +Child: 35, message: Text +Child: 36, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/90.txt b/server508/lists/interfaces/90.txt new file mode 100644 index 0000000..01a9141 --- /dev/null +++ b/server508/lists/interfaces/90.txt @@ -0,0 +1,253 @@ +Child: 0, message: %1 +Child: 1, type: 5, width: 72, height: 36 +Child: 2, type: 5, width: 72, height: 36 +Child: 3, type: 5, width: 72, height: 36 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 70, height: 46 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 5, width: 34, height: 24 +Child: 9, type: 5, width: 150, height: 46 +Child: 10, message: Auto Retaliate
(Off) +Child: 11, message: Spell +Child: 12, type: 0, width: 183, height: 162 +Child: 13, type: 0, width: 93, height: 114 +Child: 14, type: 5, width: 20, height: 20 +Child: 15, type: 0, width: 93, height: 114 +Child: 16, type: 5, width: 20, height: 20 +Child: 17, type: 0, width: 93, height: 114 +Child: 18, type: 5, width: 20, height: 20 +Child: 19, type: 0, width: 93, height: 114 +Child: 20, type: 5, width: 20, height: 20 +Child: 21, type: 0, width: 93, height: 114 +Child: 22, type: 5, width: 20, height: 20 +Child: 23, type: 0, width: 93, height: 114 +Child: 24, type: 5, width: 20, height: 20 +Child: 25, type: 0, width: 93, height: 114 +Child: 26, type: 5, width: 20, height: 20 +Child: 27, type: 0, width: 93, height: 114 +Child: 28, type: 5, width: 20, height: 20 +Child: 29, type: 0, width: 93, height: 114 +Child: 30, type: 5, width: 20, height: 20 +Child: 31, type: 0, width: 93, height: 114 +Child: 32, type: 5, width: 20, height: 20 +Child: 33, type: 0, width: 93, height: 114 +Child: 34, type: 5, width: 20, height: 20 +Child: 35, type: 0, width: 93, height: 114 +Child: 36, type: 5, width: 20, height: 20 +Child: 37, type: 0, width: 93, height: 114 +Child: 38, type: 5, width: 20, height: 20 +Child: 39, type: 0, width: 93, height: 114 +Child: 40, type: 5, width: 20, height: 20 +Child: 41, type: 0, width: 93, height: 114 +Child: 42, type: 5, width: 20, height: 20 +Child: 43, type: 0, width: 93, height: 114 +Child: 44, type: 5, width: 20, height: 20 +Child: 45, type: 0, width: 93, height: 114 +Child: 46, type: 5, width: 20, height: 20 +Child: 47, type: 0, width: 93, height: 114 +Child: 48, type: 5, width: 20, height: 20 +Child: 49, type: 0, width: 93, height: 114 +Child: 50, type: 5, width: 20, height: 20 +Child: 51, type: 0, width: 93, height: 114 +Child: 52, type: 5, width: 20, height: 20 +Child: 53, type: 0, width: 93, height: 114 +Child: 54, type: 5, width: 20, height: 20 +Child: 55, type: 0, width: 93, height: 114 +Child: 56, type: 5, width: 20, height: 20 +Child: 57, type: 0, width: 93, height: 114 +Child: 58, type: 5, width: 20, height: 20 +Child: 59, type: 0, width: 93, height: 114 +Child: 60, type: 5, width: 20, height: 20 +Child: 61, type: 0, width: 93, height: 114 +Child: 62, type: 5, width: 20, height: 20 +Child: 63, type: 0, width: 93, height: 114 +Child: 64, type: 5, width: 20, height: 20 +Child: 65, type: 0, width: 93, height: 114 +Child: 66, type: 5, width: 20, height: 20 +Child: 67, type: 0, width: 93, height: 114 +Child: 68, type: 5, width: 20, height: 20 +Child: 69, type: 0, width: 93, height: 114 +Child: 70, type: 5, width: 20, height: 20 +Child: 71, type: 0, width: 93, height: 114 +Child: 72, type: 5, width: 20, height: 20 +Child: 73, type: 0, width: 93, height: 114 +Child: 74, type: 5, width: 20, height: 20 +Child: 75, type: 0, width: 93, height: 114 +Child: 76, type: 5, width: 20, height: 20 +Child: 77, type: 0, width: 93, height: 114 +Child: 78, type: 5, width: 20, height: 20 +Child: 79, type: 0, width: 93, height: 114 +Child: 80, type: 5, width: 20, height: 20 +Child: 81, type: 0, width: 93, height: 114 +Child: 82, type: 5, width: 20, height: 20 +Child: 83, type: 0, width: 93, height: 114 +Child: 84, type: 5, width: 32, height: 36 +Child: 85, type: 3, width: 155, height: 22 +Child: 86, type: 5, width: 150, height: 26 +Child: 87, type: 0, width: 158, height: 64 +Child: 88, type: 6, width: 146, height: 9 +Child: 89, type: 6, width: 146, height: 9 +Child: 90, type: 6, width: 146, height: 9 +Child: 91, type: 6, width: 146, height: 9 +Child: 92, type: 6, width: 146, height: 9 +Child: 93, type: 6, width: 146, height: 9 +Child: 94, type: 6, width: 146, height: 9 +Child: 95, type: 6, width: 146, height: 9 +Child: 96, type: 6, width: 146, height: 9 +Child: 97, type: 6, width: 146, height: 9 +Child: 98, type: 6, width: 146, height: 9 +Child: 99, message: S P E C I A L A T T A C K +Child: 100, message: Combat Lvl: %1 +Child: 101, message: Bash +Child: 102, message: Pound +Child: 103, message: Focus +Child: 104, type: 5, width: 36, height: 36 +Child: 105, type: 8, width: 70, height: 34 +Child: 106, type: 8, width: 70, height: 34 +Child: 107, type: 8, width: 70, height: 31 +Child: 108, type: 8, width: 70, height: 47 +Child: 109, type: 8, width: 71, height: 47 +Child: 110, type: 8, width: 159, height: 19 +Child: 111, type: 8, width: 150, height: 46 +Child: 112, message: Spell +Child: 113, type: 0, width: 100, height: 100 +Child: 114, type: 5, width: 20, height: 20 +Child: 115, type: 0, width: 100, height: 100 +Child: 116, type: 5, width: 20, height: 20 +Child: 117, type: 0, width: 100, height: 100 +Child: 118, type: 5, width: 20, height: 20 +Child: 119, type: 0, width: 100, height: 100 +Child: 120, type: 5, width: 20, height: 20 +Child: 121, type: 0, width: 100, height: 100 +Child: 122, type: 5, width: 20, height: 20 +Child: 123, type: 0, width: 100, height: 100 +Child: 124, type: 5, width: 20, height: 20 +Child: 125, type: 0, width: 100, height: 100 +Child: 126, type: 5, width: 20, height: 20 +Child: 127, type: 0, width: 100, height: 100 +Child: 128, type: 5, width: 20, height: 20 +Child: 129, type: 0, width: 100, height: 100 +Child: 130, type: 5, width: 20, height: 20 +Child: 131, type: 0, width: 100, height: 100 +Child: 132, type: 5, width: 20, height: 20 +Child: 133, type: 0, width: 100, height: 100 +Child: 134, type: 5, width: 20, height: 20 +Child: 135, type: 0, width: 100, height: 100 +Child: 136, type: 5, width: 20, height: 20 +Child: 137, type: 0, width: 100, height: 100 +Child: 138, type: 5, width: 20, height: 20 +Child: 139, type: 0, width: 100, height: 100 +Child: 140, type: 5, width: 20, height: 20 +Child: 141, type: 0, width: 100, height: 100 +Child: 142, type: 5, width: 20, height: 20 +Child: 143, type: 0, width: 100, height: 100 +Child: 144, type: 5, width: 20, height: 20 +Child: 145, type: 0, width: 100, height: 100 +Child: 146, type: 5, width: 20, height: 20 +Child: 147, type: 0, width: 100, height: 100 +Child: 148, type: 5, width: 20, height: 20 +Child: 149, type: 0, width: 100, height: 100 +Child: 150, type: 5, width: 20, height: 20 +Child: 151, type: 0, width: 100, height: 100 +Child: 152, type: 5, width: 20, height: 20 +Child: 153, type: 0, width: 100, height: 100 +Child: 154, type: 5, width: 20, height: 20 +Child: 155, type: 0, width: 100, height: 100 +Child: 156, type: 5, width: 20, height: 20 +Child: 157, type: 0, width: 100, height: 100 +Child: 158, type: 5, width: 20, height: 20 +Child: 159, type: 0, width: 100, height: 100 +Child: 160, type: 5, width: 20, height: 20 +Child: 161, type: 0, width: 100, height: 100 +Child: 162, type: 5, width: 20, height: 20 +Child: 163, type: 0, width: 100, height: 100 +Child: 164, type: 5, width: 20, height: 20 +Child: 165, type: 0, width: 100, height: 100 +Child: 166, type: 5, width: 20, height: 20 +Child: 167, type: 0, width: 100, height: 100 +Child: 168, type: 5, width: 20, height: 20 +Child: 169, type: 0, width: 100, height: 100 +Child: 170, type: 5, width: 20, height: 20 +Child: 171, type: 0, width: 100, height: 100 +Child: 172, type: 5, width: 20, height: 20 +Child: 173, type: 0, width: 100, height: 100 +Child: 174, type: 5, width: 20, height: 20 +Child: 175, type: 0, width: 100, height: 100 +Child: 176, type: 5, width: 20, height: 20 +Child: 177, type: 0, width: 100, height: 100 +Child: 178, type: 5, width: 20, height: 20 +Child: 179, type: 0, width: 100, height: 100 +Child: 180, type: 5, width: 20, height: 20 +Child: 181, type: 0, width: 100, height: 100 +Child: 182, type: 5, width: 20, height: 20 +Child: 183, type: 0, width: 115, height: 139 +Child: 184, type: 5, width: 32, height: 36 +Child: 185, type: 8, width: 72, height: 44 +Child: 186, type: 8, width: 72, height: 44 +Child: 187, type: 8, width: 72, height: 44 +Child: 188, type: 8, width: 72, height: 44 +Child: 189, type: 8, width: 72, height: 44 +Child: 190, type: 8, width: 72, height: 44 +Child: 191, type: 8, width: 72, height: 44 +Child: 192, type: 8, width: 72, height: 44 +Child: 193, type: 8, width: 72, height: 44 +Child: 194, type: 8, width: 72, height: 44 +Child: 195, type: 8, width: 72, height: 44 +Child: 196, type: 8, width: 72, height: 44 +Child: 197, type: 8, width: 72, height: 44 +Child: 198, type: 8, width: 72, height: 44 +Child: 199, type: 8, width: 72, height: 44 +Child: 200, type: 8, width: 72, height: 44 +Child: 201, type: 8, width: 72, height: 44 +Child: 202, type: 8, width: 72, height: 44 +Child: 203, type: 8, width: 72, height: 44 +Child: 204, type: 8, width: 72, height: 44 +Child: 205, type: 8, width: 72, height: 44 +Child: 206, type: 8, width: 72, height: 44 +Child: 207, type: 8, width: 72, height: 44 +Child: 208, type: 8, width: 72, height: 44 +Child: 209, type: 8, width: 72, height: 44 +Child: 210, type: 8, width: 72, height: 44 +Child: 211, type: 8, width: 72, height: 44 +Child: 212, type: 8, width: 72, height: 44 +Child: 213, type: 8, width: 72, height: 44 +Child: 214, type: 8, width: 72, height: 44 +Child: 215, type: 8, width: 72, height: 44 +Child: 216, type: 8, width: 72, height: 44 +Child: 217, type: 8, width: 72, height: 44 +Child: 218, type: 8, width: 72, height: 44 +Child: 219, type: 8, width: 72, height: 44 +Child: 220, type: 8, width: 72, height: 44 +Child: 221, type: 8, width: 72, height: 44 +Child: 222, type: 8, width: 72, height: 44 +Child: 223, type: 8, width: 72, height: 44 +Child: 224, type: 8, width: 72, height: 44 +Child: 225, type: 8, width: 72, height: 44 +Child: 226, type: 8, width: 72, height: 44 +Child: 227, type: 8, width: 72, height: 44 +Child: 228, type: 8, width: 72, height: 44 +Child: 229, type: 8, width: 72, height: 44 +Child: 230, type: 8, width: 72, height: 44 +Child: 231, type: 8, width: 72, height: 44 +Child: 232, type: 8, width: 72, height: 44 +Child: 233, type: 8, width: 72, height: 44 +Child: 234, type: 8, width: 72, height: 44 +Child: 235, type: 8, width: 72, height: 44 +Child: 236, type: 8, width: 72, height: 44 +Child: 237, type: 8, width: 72, height: 44 +Child: 238, type: 8, width: 72, height: 44 +Child: 239, type: 8, width: 72, height: 44 +Child: 240, type: 8, width: 72, height: 44 +Child: 241, type: 8, width: 72, height: 44 +Child: 242, type: 8, width: 72, height: 44 +Child: 243, type: 8, width: 72, height: 44 +Child: 244, type: 8, width: 72, height: 44 +Child: 245, type: 8, width: 72, height: 44 +Child: 246, type: 8, width: 72, height: 44 +Child: 247, type: 8, width: 72, height: 44 +Child: 248, type: 8, width: 72, height: 44 +Child: 249, type: 8, width: 72, height: 44 +Child: 250, type: 8, width: 72, height: 44 +Child: 251, type: 8, width: 72, height: 44 +Child: 252, type: 8, width: 72, height: 44 diff --git a/server508/lists/interfaces/91.txt b/server508/lists/interfaces/91.txt new file mode 100644 index 0000000..437c478 --- /dev/null +++ b/server508/lists/interfaces/91.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Accurate +Child: 26, message: Rapid +Child: 27, message: Longrange +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/92.txt b/server508/lists/interfaces/92.txt new file mode 100644 index 0000000..7783235 --- /dev/null +++ b/server508/lists/interfaces/92.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Punch +Child: 26, message: Kick +Child: 27, message: Block +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/93.txt b/server508/lists/interfaces/93.txt new file mode 100644 index 0000000..c4d44c4 --- /dev/null +++ b/server508/lists/interfaces/93.txt @@ -0,0 +1,34 @@ +Child: 0, message: %1 +Child: 1, type: 0, width: 180, height: 163 +Child: 2, type: 5, width: 70, height: 46 +Child: 3, type: 5, width: 70, height: 46 +Child: 4, type: 5, width: 70, height: 46 +Child: 5, type: 5, width: 34, height: 24 +Child: 6, type: 5, width: 34, height: 24 +Child: 7, type: 5, width: 34, height: 24 +Child: 8, type: 3, width: 155, height: 22 +Child: 9, type: 5, width: 150, height: 26 +Child: 10, type: 0, width: 158, height: 64 +Child: 11, type: 6, width: 146, height: 9 +Child: 12, type: 6, width: 146, height: 9 +Child: 13, type: 6, width: 146, height: 9 +Child: 14, type: 6, width: 146, height: 9 +Child: 15, type: 6, width: 146, height: 9 +Child: 16, type: 6, width: 146, height: 9 +Child: 17, type: 6, width: 146, height: 9 +Child: 18, type: 6, width: 146, height: 9 +Child: 19, type: 6, width: 146, height: 9 +Child: 20, type: 6, width: 146, height: 9 +Child: 21, type: 6, width: 146, height: 9 +Child: 22, message: S P E C I A L A T T A C K +Child: 23, message: Combat Lvl: %1 +Child: 24, type: 5, width: 150, height: 46 +Child: 25, message: Flick +Child: 26, message: Lash +Child: 27, message: Deflect +Child: 28, message: Auto Retaliate
(Off) +Child: 29, type: 8, width: 70, height: 46 +Child: 30, type: 8, width: 70, height: 46 +Child: 31, type: 8, width: 70, height: 47 +Child: 32, type: 8, width: 150, height: 46 +Child: 33, type: 8, width: 159, height: 19 diff --git a/server508/lists/interfaces/94.txt b/server508/lists/interfaces/94.txt new file mode 100644 index 0000000..381146a --- /dev/null +++ b/server508/lists/interfaces/94.txt @@ -0,0 +1,14 @@ +inventory type: 1 slots, width: 1, height: 1, 0 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, message: Are you sure you want to destroy this object? +Child: 4, message: Yes. +Child: 5, message: No. +Child: 6, type: 5, width: 57, height: 13 +Child: 7, type: 5, width: 57, height: 13 +Child: 8, type: 0, width: 482, height: 66 +Child: 9, type: 0, width: 482, height: 66 +Child: 10, message: Single_Line_Text +Child: 11, message: Multi_line_text_1 +Child: 12, message: Multi_line_text_2 +Child: 13, message: Name diff --git a/server508/lists/interfaces/95.txt b/server508/lists/interfaces/95.txt new file mode 100644 index 0000000..43386b7 --- /dev/null +++ b/server508/lists/interfaces/95.txt @@ -0,0 +1,35 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 17, height: 14 +Child: 2, type: 6, width: 17, height: 14 +Child: 3, type: 6, width: 17, height: 14 +Child: 4, type: 6, width: 17, height: 14 +Child: 5, type: 6, width: 17, height: 14 +Child: 6, type: 6, width: 17, height: 14 +Child: 7, type: 6, width: 17, height: 14 +Child: 8, type: 6, width: 17, height: 14 +Child: 9, type: 6, width: 17, height: 14 +Child: 10, type: 6, width: 17, height: 14 +Child: 11, type: 6, width: 17, height: 14 +Child: 12, message: Port Tyras +Child: 13, message: Port Phasmatys +Child: 14, message: Catherby +Child: 15, message: Shipyard +Child: 16, message: Karamja +Child: 17, message: Brimhaven +Child: 18, message: Port Khazard +Child: 19, message: Port Sarim +Child: 20, message: Mos Le'Harmless +Child: 21, message: Crandor +Child: 22, message: Oo'glog +Child: 23, type: 0, width: 101, height: 14 +Child: 24, type: 0, width: 117, height: 16 +Child: 25, type: 0, width: 69, height: 17 +Child: 26, type: 0, width: 100, height: 15 +Child: 27, type: 0, width: 128, height: 17 +Child: 28, type: 0, width: 76, height: 18 +Child: 29, type: 0, width: 93, height: 16 +Child: 30, type: 0, width: 136, height: 15 +Child: 31, type: 0, width: 114, height: 17 +Child: 32, type: 0, width: 61, height: 15 +Child: 33, type: 0, width: 101, height: 19 +Child: 34, type: 5, width: 26, height: 23 diff --git a/server508/lists/interfaces/96.txt b/server508/lists/interfaces/96.txt new file mode 100644 index 0000000..b12c13e --- /dev/null +++ b/server508/lists/interfaces/96.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/97.txt b/server508/lists/interfaces/97.txt new file mode 100644 index 0000000..b12c13e --- /dev/null +++ b/server508/lists/interfaces/97.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/98.txt b/server508/lists/interfaces/98.txt new file mode 100644 index 0000000..b12c13e --- /dev/null +++ b/server508/lists/interfaces/98.txt @@ -0,0 +1 @@ +Child: 0, type: 3, width: 16391, height: 16391 diff --git a/server508/lists/interfaces/99.txt b/server508/lists/interfaces/99.txt new file mode 100644 index 0000000..4f1ac0f --- /dev/null +++ b/server508/lists/interfaces/99.txt @@ -0,0 +1,37 @@ +Child: 0, type: 6, width: 32, height: 32 +Child: 1, type: 6, width: 32, height: 32 +Child: 2, type: 6, width: 32, height: 32 +Child: 3, type: 6, width: 32, height: 31 +Child: 4, type: 6, width: 32, height: 32 +Child: 5, message: Harold +Child: 6, message: Player +Child: 7, type: 6, width: 32, height: 32 +Child: 8, type: 6, width: 32, height: 32 +Child: 9, type: 6, width: 32, height: 32 +Child: 10, type: 6, width: 32, height: 32 +Child: 11, type: 6, width: 32, height: 32 +Child: 12, type: 6, width: 32, height: 32 +Child: 13, type: 6, width: 32, height: 32 +Child: 14, type: 6, width: 32, height: 32 +Child: 15, type: 6, width: 32, height: 32 +Child: 16, type: 6, width: 32, height: 32 +Child: 17, type: 6, width: 32, height: 32 +Child: 18, type: 6, width: 32, height: 32 +Child: 19, type: 6, width: 32, height: 32 +Child: 20, type: 6, width: 32, height: 32 +Child: 21, type: 6, width: 32, height: 32 +Child: 22, type: 6, width: 32, height: 32 +Child: 23, type: 6, width: 32, height: 32 +Child: 24, type: 6, width: 32, height: 32 +Child: 25, type: 6, width: 32, height: 32 +Child: 26, type: 6, width: 32, height: 32 +Child: 27, type: 0, width: 131, height: 25 +Child: 28, message: Roll Dice! +Child: 29, type: 0, width: 128, height: 27 +Child: 30, message: Continue... +Child: 31, message: 0 +Child: 32, message: 0 +Child: 33, message: You win! +Child: 34, type: 5, width: 26, height: 23 +Child: 35, type: 5, width: 26, height: 23 +Child: 36, type: 0, width: 32, height: 32 diff --git a/server508/lists/items.txt b/server508/lists/items.txt new file mode 100644 index 0000000..480fcc9 --- /dev/null +++ b/server508/lists/items.txt @@ -0,0 +1,13719 @@ +0 - Dwarf remains +1 - Toolkit +2 - Cannonball +3 - Nulodion's notes +4 - Ammo mould +5 - Instruction manual +6 - Cannon base +799 - Not Existing +7 - Cannon base +8 - Cannon stand +9 - Cannon stand +10 - Cannon barrels +11 - Cannon barrels +12 - Cannon furnace +13 - Cannon furnace +14 - Railing +15 - Holy table napkin +16 - Magic whistle +17 - Grail bell +18 - Magic gold feather +19 - Holy grail +20 - White cog +21 - Black cog +22 - Blue cog +23 - Red cog +24 - Rat poison +25 - Red vine worm +26 - Fishing trophy +27 - Fishing pass +28 - Insect repellent +29 - Tinderbox +30 - Bucket of wax +31 - Tinderbox +32 - Lit black candle +33 - Lit candle +34 - Lit candle +35 - Excalibur +36 - Candle +37 - Candle +38 - Black candle +39 - Bronze arrowtips +40 - Iron arrowtips +41 - Steel arrowtips +42 - Mithril arrowtips +43 - Adamant arrowtips +44 - Rune arrowtips +45 - Opal bolt tips +46 - Pearl bolt tips +47 - Barb bolttips +48 - Longbow (u) +49 - Longbow (u) +50 - Shortbow (u) +51 - Shortbow (u) +52 - Arrow shaft +53 - Headless arrow +54 - Oak shortbow (u) +55 - Oak shortbow (u) +56 - Oak longbow (u) +57 - Oak longbow (u) +58 - Willow longbow (u) +59 - Willow longbow (u) +60 - Willow shortbow (u) +61 - Willow shortbow (u) +62 - Maple longbow (u) +63 - Maple longbow (u) +64 - Maple shortbow (u) +65 - Maple shortbow (u) +66 - Yew longbow (u) +67 - Yew longbow (u) +68 - Yew shortbow (u) +69 - Yew shortbow (u) +70 - Magic longbow (u) +71 - Magic longbow (u) +72 - Magic shortbow (u) +73 - Magic shortbow (u) +74 - Khazard helmet +75 - Khazard armour +76 - Khazard cell keys +77 - Khali brew +78 - Ice arrows +79 - Not Existing +80 - Not Existing +81 - Not Existing +82 - Not Existing +83 - Lever +84 - Staff of armadyl +85 - Shiny key +86 - Pendant of lucien +87 - Armadyl pendant +88 - Boots of lightness +89 - Boots of lightness +90 - Child's blanket +91 - Guam potion(unf) +92 - Guam potion(unf) +93 - Marrentill potion(unf) +94 - Marrentill potion(unf) +95 - Tarromin potion(unf) +96 - Tarromin potion(unf) +97 - Harralander potion(unf) +98 - Harralander potion(unf) +99 - Ranarr potion(unf) +100 - Ranarr potion(unf) +101 - Irit potion(unf) +102 - Irit potion(unf) +103 - Avantoe potion(unf) +104 - Avantoe potion(unf) +105 - Kwuarm potion(unf) +106 - Kwuarm potion(unf) +107 - Cadantine potion(unf) +108 - Cadantine potion(unf) +109 - Dwarf weed potion(unf) +110 - Dwarf weed potion(unf) +111 - Torstol potion(unf) +112 - Torstol potion(unf) +113 - Strength potion(4) +114 - Strength potion(4) +115 - Strength potion(3) +116 - Strength potion(3) +117 - Strength potion(2) +118 - Strength potion(2) +119 - Strength potion(1) +120 - Strength potion(1) +121 - Attack potion(3) +122 - Attack potion(3) +123 - Attack potion(2) +124 - Attack potion(2) +125 - Attack potion(1) +126 - Attack potion(1) +127 - Restore potion(3) +128 - Restore potion(3) +129 - Restore potion(2) +130 - Restore potion(2) +131 - Restore potion(1) +132 - Restore potion(1) +133 - Defence potion(3) +134 - Defence potion(3) +135 - Defence potion(2) +136 - Defence potion(2) +137 - Defence potion(1) +138 - Defence potion(1) +139 - Prayer potion(3) +140 - Prayer potion(3) +141 - Prayer potion(2) +142 - Prayer potion(2) +143 - Prayer potion(1) +144 - Prayer potion(1) +145 - Super attack(3) +146 - Super attack(3) +147 - Super attack(2) +148 - Super attack(2) +149 - Super attack(1) +150 - Super attack(1) +151 - Fishing potion(3) +152 - Fishing potion(3) +153 - Fishing potion(2) +154 - Fishing potion(2) +155 - Fishing potion(1) +156 - Fishing potion(1) +157 - Super strength(3) +158 - Super strength(3) +159 - Super strength(2) +160 - Super strength(2) +161 - Super strength(1) +162 - Super strength(1) +163 - Super defence(3) +164 - Super defence(3) +165 - Super defence(2) +166 - Super defence(2) +167 - Super defence(1) +168 - Super defence(1) +169 - Ranging potion(3) +170 - Ranging potion(3) +171 - Ranging potion(2) +172 - Ranging potion(2) +173 - Ranging potion(1) +174 - Ranging potion(1) +175 - Antipoison(3) +176 - Antipoison(3) +177 - Antipoison(2) +178 - Antipoison(2) +179 - Antipoison(1) +180 - Antipoison(1) +181 - Super antipoison(3) +182 - Super antipoison(3) +183 - Super antipoison(2) +184 - Super antipoison(2) +185 - Super antipoison(1) +186 - Super antipoison(1) +187 - Weapon poison +188 - Weapon poison +189 - Zamorak brew(3) +190 - Zamorak brew(3) +191 - Zamorak brew(2) +192 - Zamorak brew(2) +193 - Zamorak brew(1) +194 - Zamorak brew(1) +195 - Potion +196 - Potion +197 - Poison chalice +198 - Poison chalice +199 - Grimy guam +200 - Grimy guam +201 - Grimy marrentill +202 - Grimy marrentill +203 - Grimy tarromin +204 - Grimy tarromin +205 - Grimy harralander +206 - Grimy harralander +207 - Grimy ranarr +208 - Grimy ranarr +209 - Grimy irit +210 - Grimy irit +211 - Grimy avantoe +212 - Grimy avantoe +213 - Grimy kwuarm +214 - Grimy kwuarm +215 - Grimy cadantine +216 - Grimy cadantine +217 - Grimy dwarf weed +218 - Grimy dwarf weed +219 - Grimy torstol +220 - Grimy torstol +221 - Eye of newt +222 - Eye of newt +223 - Red spiders' eggs +224 - Red spiders' eggs +225 - Limpwurt root +226 - Limpwurt root +227 - Vial of water +228 - Vial of water +229 - Vial +230 - Vial +231 - Snape grass +232 - Snape grass +233 - Pestle and mortar +234 - Pestle and mortar +235 - Unicorn horn dust +236 - Unicorn horn dust +237 - Unicorn horn +238 - Unicorn horn +239 - White berries +240 - White berries +241 - Dragon scale dust +242 - Dragon scale dust +243 - Blue dragon scale +244 - Blue dragon scale +245 - Wine of zamorak +246 - Wine of zamorak +247 - Jangerberries +248 - Jangerberries +249 - Clean guam +250 - Clean guam +251 - Clean marrentill +252 - Clean marrentill +253 - Clean tarromin +254 - Clean tarromin +255 - Clean harralander +256 - Clean harralander +257 - Clean ranarr +258 - Clean ranarr +259 - Clean irit +260 - Clean irit +261 - Clean avantoe +262 - Clean avantoe +263 - Clean kwuarm +264 - Clean kwuarm +265 - Clean cadantine +266 - Clean cadantine +267 - Clean dwarf weed +268 - Clean dwarf weed +269 - Clean torstol +270 - Clean torstol +271 - Pressure gauge +272 - Fish food +273 - Poison +274 - Poisoned fish food +275 - Key +276 - Rubber tube +277 - Oil can +278 - Cattleprod +279 - Sheep feed +280 - Sheep bones (1) +281 - Sheep bones (2) +282 - Sheep bones (3) +283 - Sheep bones (4) +284 - Plague jacket +285 - Plague trousers +286 - Orange goblin mail +287 - Blue goblin mail +288 - Goblin mail +289 - Goblin mail +290 - Research package +291 - Notes +292 - Book on baxtorian +293 - A key +294 - Glarial's pebble +295 - Glarial's amulet +296 - Glarial's urn +297 - Glarial's urn +298 - A key +299 - Mithril seeds +300 - Rat's tail +301 - Lobster pot +302 - Lobster pot +303 - Small fishing net +304 - Small fishing net +305 - Big fishing net +306 - Big fishing net +307 - Fishing rod +308 - Fishing rod +309 - Fly fishing rod +310 - Fly fishing rod +311 - Harpoon +312 - Harpoon +313 - Fishing bait +314 - Feather +315 - Shrimps +316 - Shrimps +317 - Raw shrimps +318 - Raw shrimps +319 - Anchovies +320 - Anchovies +321 - Raw anchovies +322 - Raw anchovies +323 - Burnt fish +324 - Burnt fish +325 - Sardine +326 - Sardine +327 - Raw sardine +328 - Raw sardine +329 - Salmon +330 - Salmon +331 - Raw salmon +332 - Raw salmon +333 - Trout +334 - Trout +335 - Raw trout +336 - Raw trout +337 - Giant carp +338 - Raw giant carp +339 - Cod +340 - Cod +341 - Raw cod +342 - Raw cod +343 - Burnt fish +344 - Burnt fish +345 - Raw herring +346 - Raw herring +347 - Herring +348 - Herring +349 - Raw pike +350 - Raw pike +351 - Pike +352 - Pike +353 - Raw mackerel +354 - Raw mackerel +355 - Mackerel +356 - Mackerel +357 - Burnt fish +358 - Burnt fish +359 - Raw tuna +360 - Raw tuna +361 - Tuna +362 - Tuna +363 - Raw bass +364 - Raw bass +365 - Bass +366 - Bass +367 - Burnt fish +368 - Burnt fish +369 - Burnt fish +370 - Burnt fish +371 - Raw swordfish +372 - Raw swordfish +373 - Swordfish +374 - Swordfish +375 - Burnt swordfish +376 - Burnt swordfish +377 - Raw lobster +378 - Raw lobster +379 - Lobster +380 - Lobster +381 - Burnt lobster +382 - Burnt lobster +383 - Raw shark +384 - Raw shark +385 - Shark +386 - Shark +387 - Burnt shark +388 - Burnt shark +389 - Raw manta ray +390 - Raw manta ray +391 - Manta ray +392 - Manta ray +393 - Burnt manta ray +394 - Burnt manta ray +395 - Raw sea turtle +396 - Raw sea turtle +397 - Sea turtle +398 - Sea turtle +399 - Burnt sea turtle +400 - Burnt sea turtle +401 - Seaweed +402 - Seaweed +403 - Edible seaweed +404 - Edible seaweed +405 - Casket +406 - Casket +407 - Oyster +408 - Oyster +409 - Empty oyster +410 - Empty oyster +411 - Oyster pearl +412 - Oyster pearl +413 - Oyster pearls +414 - Oyster pearls +415 - Ethenea +416 - Liquid honey +417 - Sulphuric broline +418 - Plague sample +419 - Touch paper +420 - Distillator +421 - Lathas' amulet +422 - Bird feed +423 - Key +424 - Pigeon cage +425 - Pigeon cage +426 - Priest gown +427 - Priest gown +428 - Priest gown +429 - Priest gown +430 - Doctors' gown +431 - Karamjan rum +432 - Chest key +433 - Pirate message +434 - Clay +435 - Clay +436 - Copper ore +437 - Copper ore +438 - Tin ore +439 - Tin ore +440 - Iron ore +441 - Iron ore +442 - Silver ore +443 - Silver ore +444 - Gold ore +445 - Gold ore +446 - 'perfect' gold ore +447 - Mithril ore +448 - Mithril ore +449 - Adamantite ore +450 - Adamantite ore +451 - Runite ore +452 - Runite ore +453 - Coal +454 - Coal +455 - Barcrawl card +456 - Scorpion cage +457 - Scorpion cage +458 - Scorpion cage +459 - Scorpion cage +460 - Scorpion cage +461 - Scorpion cage +462 - Scorpion cage +463 - Scorpion cage +464 - Strange fruit +465 - Strange fruit +466 - Pickaxe handle +467 - Pickaxe handle +468 - Broken pickaxe +469 - Broken pickaxe +470 - Broken pickaxe +471 - Broken pickaxe +472 - Broken pickaxe +473 - Broken pickaxe +474 - Broken pickaxe +475 - Broken pickaxe +476 - Broken pickaxe +477 - Broken pickaxe +478 - Broken pickaxe +479 - Broken pickaxe +480 - Bronze pick head +481 - Bronze pick head +482 - Iron pick head +483 - Iron pick head +484 - Steel pick head +485 - Steel pick head +486 - Mithril pick head +487 - Mithril pick head +488 - Adamant pick head +489 - Adamant pick head +490 - Rune pick head +491 - Rune pick head +492 - Picture +493 - Picture +494 - Broken axe +495 - Broken axe +496 - Broken axe +497 - Broken axe +498 - Broken axe +499 - Broken axe +500 - Broken axe +501 - Broken axe +502 - Broken axe +503 - Broken axe +504 - Broken axe +505 - Broken axe +506 - Broken axe +507 - Broken axe +508 - Picture +509 - Picture +510 - Picture +511 - Picture +512 - Picture +513 - Picture +514 - Picture +515 - Picture +516 - Picture +517 - Picture +518 - Picture +519 - Picture +520 - Picture +521 - Picture +522 - Enchanted beef +523 - Enchanted rat meat +524 - Enchanted bear meat +525 - Enchanted chicken +526 - Bones +527 - Bones +528 - Burnt bones +529 - Burnt bones +530 - Bat bones +531 - Bat bones +532 - Big bones +533 - Big bones +534 - Babydragon bones +535 - Babydragon bones +536 - Dragon bones +537 - Dragon bones +538 - Druid's robe +539 - Druid's robe +540 - Druid's robe +541 - Druid's robe +542 - Monk's robe +543 - Monk's robe +544 - Monk's robe +545 - Monk's robe +546 - Shade robe +547 - Picture +548 - Shade robe +549 - Picture +550 - Newcomer map +551 - Newcomer map +552 - Ghostspeak amulet +553 - Ghost's skull +554 - Fire rune +555 - Water rune +556 - Air rune +557 - Earth rune +558 - Mind rune +559 - Body rune +560 - Death rune +561 - Nature rune +562 - Chaos rune +563 - Law rune +564 - Cosmic rune +565 - Blood rune +566 - Soul rune +567 - Unpowered orb +568 - Unpowered orb +569 - Fire orb +570 - Fire orb +571 - Water orb +572 - Water orb +573 - Air orb +574 - Air orb +575 - Earth orb +576 - Earth orb +577 - Wizard robe +578 - Wizard robe +579 - Wizard hat +580 - Wizard hat +581 - Black robe +582 - Black robe +583 - Bailing bucket +584 - Bailing bucket +585 - Bailing bucket +586 - Bailing bucket +587 - Orb of protection +588 - Orbs of protection +589 - Gnome amulet +590 - Tinderbox +591 - Tinderbox +592 - Ashes +593 - Ashes +594 - Lit torch +595 - Torch +596 - Unlit torch +597 - Unlit torch +598 - Bronze fire arrows +599 - Picture +600 - Astronomy book +601 - Goblin kitchen key +602 - Lens mould +603 - Observatory lens +604 - Bone shard +605 - Bone key +606 - Stone-plaque +607 - Tattered scroll +608 - Crumpled scroll +609 - Rashiliyia corpse +610 - Zadimus corpse +611 - Locating crystal +612 - Locating crystal +613 - Locating crystal +614 - Locating crystal +615 - Locating crystal +616 - Beads of the dead +617 - Coins +618 - Bone beads +619 - Paramaya ticket +620 - Paramaya ticket +621 - Ship ticket +622 - Tinderbox +623 - Sword pommel +624 - Bervirius notes +625 - Wampum belt +626 - Boots +627 - Boots +628 - Boots +629 - Boots +630 - Boots +631 - Boots +632 - Boots +633 - Boots +634 - Boots +635 - Boots +636 - Robe top +637 - Robe top +638 - Robe top +639 - Robe top +640 - Robe top +641 - Robe top +642 - Robe top +643 - Robe top +644 - Robe top +645 - Robe top +646 - Robe bottoms +647 - Robe bottoms +648 - Robe bottoms +649 - Robe bottoms +650 - Robe bottoms +651 - Robe bottoms +652 - Robe bottoms +653 - Robe bottoms +654 - Robe bottoms +655 - Robe bottoms +656 - Hat +657 - Hat +658 - Hat +659 - Hat +660 - Hat +661 - Hat +662 - Hat +663 - Hat +664 - Hat +665 - Hat +666 - Portrait +667 - Blurite sword +668 - Blurite ore +669 - Specimen jar +670 - Specimen brush +671 - Animal skull +672 - Special cup +673 - Teddy +674 - Cracked sample +675 - Rock pick +676 - Trowel +677 - Panning tray +678 - Panning tray +679 - Panning tray +680 - Nuggets +681 - Ancient talisman +682 - Unstamped letter +683 - Sealed letter +684 - Belt buckle +685 - Old boot +686 - Rusty sword +687 - Broken arrow +688 - Buttons +689 - Broken staff +690 - Picture +691 - Level 1 certificate +692 - Level 2 certificate +693 - Level 3 certificate +694 - Ceramic remains +695 - Old tooth +696 - Invitation letter +697 - Damaged armour +698 - Broken armour +699 - Stone tablet +700 - Chemical powder +701 - Ammonium nitrate +702 - Unidentified liquid +703 - Nitroglycerin +704 - Ground charcoal +705 - Mixed chemicals +706 - Mixed chemicals +707 - Chemical compound +708 - Arcenia root +709 - Chest key +710 - Vase +711 - Book on chemicals +712 - Cup of tea +713 - Picture +714 - Radimus notes +715 - Radimus notes +716 - Bull roarer +717 - Scrawled note +718 - A scribbled note +719 - Scrumpled note +720 - Sketch +721 - Gold bowl +722 - Blessed gold bowl +723 - Golden bowl +724 - Golden bowl +725 - Golden bowl +726 - Golden bowl +727 - Hollow reed +728 - Hollow reed +729 - Shamans tome +730 - Binding book +731 - Enchanted vial +732 - Holy water +733 - Smashed glass +734 - Tinderbox +735 - Yommi tree seeds +736 - Yommi tree seeds +737 - Snakeweed mixture +738 - Ardrigal mixture +739 - Bravery potion +740 - Blue hat +741 - Chunk of crystal +742 - Hunk of crystal +743 - Lump of crystal +744 - Heart crystal +745 - Heart crystal +746 - Dark dagger +747 - Glowing dagger +748 - Holy force +749 - Yommi totem +750 - Gilded totem +751 - Gnomeball +799 - Not Existing +752 - Gnomeball +753 - Cadava berries +754 - Cadava berries +755 - Message +756 - Cadava potion +757 - Book +758 - Phoenix hq key +759 - Weapon store key +760 - Weapon store key +761 - Intel report +762 - Picture +763 - Broken shield +764 - Picture +765 - Broken shield +766 - Picture +767 - Phoenix crossbow +768 - Phoenix crossbow +769 - Certificate +770 - Picture +771 - Dramen branch +772 - Dramen staff +773 - 'perfect' ring +774 - 'perfect' necklace +775 - Cooking gauntlets +776 - Goldsmith gauntlets +777 - Chaos gauntlets +778 - Family gauntlets +779 - Crest part +780 - Crest part +781 - Crest part +782 - Family crest +783 - Bark sample +784 - Translation book +785 - Glough's journal +786 - Hazelmere's scroll +787 - Lumber order +788 - Glough's key +789 - Twigs +790 - Twigs +791 - Twigs +792 - Twigs +793 - Daconia rock +794 - Invasion plans +795 - War ship +796 - Exploding vial +797 - Herb bowl +798 - Grinder +799 - Not Existing +800 - Bronze thrownaxe +801 - Iron thrownaxe +802 - Steel thrownaxe +803 - Mithril thrownaxe +804 - Addy thrownaxe +805 - Rune thrownaxe +806 - Bronze dart +807 - Iron dart +808 - Steel dart +809 - Mithril dart +810 - Adamant dart +811 - Rune dart +812 - Bronze dart(p) +813 - Iron dart(p) +814 - Steel dart(p) +815 - Mithril dart(p) +816 - Adamant dart(p) +817 - Rune dart(p) +818 - Poisoned dart(p) +819 - Bronze dart tip +820 - Iron dart tip +821 - Steel dart tip +822 - Mithril dart tip +823 - Adamant dart tip +824 - Rune dart tip +825 - Bronze javelin +826 - Iron javelin +827 - Steel javelin +828 - Mithril javelin +829 - Adamant javelin +830 - Rune javelin +831 - Bronze javelin(p) +832 - Iron javelin(p) +833 - Steel javelin(p) +834 - Mithril javelin(p) +835 - Adamant javelin(p) +836 - Rune javelin(p) +837 - Crossbow +838 - Crossbow +839 - Longbow +840 - Longbow +841 - Shortbow +842 - Shortbow +843 - Oak shortbow +844 - Oak shortbow +845 - Oak longbow +846 - Oak longbow +847 - Willow longbow +848 - Willow longbow +849 - Willow shortbow +850 - Willow shortbow +851 - Maple longbow +852 - Maple longbow +853 - Maple shortbow +854 - Maple shortbow +855 - Yew longbow +856 - Yew longbow +857 - Yew shortbow +858 - Yew shortbow +859 - Magic longbow +860 - Magic longbow +861 - Magic shortbow +862 - Magic shortbow +863 - Iron knife +864 - Bronze knife +865 - Steel knife +866 - Mithril knife +867 - Adamant knife +868 - Rune knife +869 - Black knife +870 - Bronze knife(p) +871 - Iron knife(p) +872 - Steel knife(p) +873 - Mithril knife(p) +874 - Black knife(p) +875 - Adamant knife(p) +876 - Rune knife(p) +877 - Bronze bolts +878 - Bronze bolts(p) +879 - Opal bolts +880 - Pearl bolts +881 - Barbed bolts +882 - Bronze arrow +883 - Bronze arrow(p) +884 - Iron arrow +885 - Iron arrow(p) +886 - Steel arrow +887 - Steel arrow(p) +888 - Mithril arrow +889 - Mithril arrow(p) +890 - Adamant arrow +891 - Adamant arrow(p) +892 - Rune arrow +893 - Rune arrow(p) +894 - Not Existing +895 - Not Existing +896 - Not Existing +897 - Not Existing +898 - Not Existing +899 - Not Existing +900 - Not Existing +901 - Not Existing +902 - Not Existing +903 - Not Existing +904 - Not Existing +905 - Not Existing +906 - Not Existing +907 - Not Existing +908 - Not Existing +909 - Not Existing +910 - Not Existing +911 - Not Existing +912 - Not Existing +913 - Not Existing +914 - Not Existing +915 - Not Existing +916 - Not Existing +917 - Not Existing +918 - Not Existing +919 - Not Existing +920 - Not Existing +921 - Not Existing +922 - Not Existing +923 - Not Existing +924 - Not Existing +925 - Not Existing +926 - Not Existing +927 - Not Existing +928 - Not Existing +929 - Not Existing +930 - Not Existing +931 - Not Existing +932 - Not Existing +933 - Not Existing +934 - Not Existing +935 - Not Existing +936 - Not Existing +937 - Not Existing +938 - Not Existing +939 - Not Existing +940 - Not Existing +941 - Not Existing +942 - Bronze fire arrows +943 - Worm +799 - Not Existing +944 - Worm +945 - Throwing rope +946 - Knife +947 - Knife +948 - Bear fur +949 - Bear fur +950 - Silk +951 - Silk +952 - Spade +953 - Spade +954 - Rope +955 - Rope +956 - Flier +957 - Tinderbox +958 - Grey wolf fur +959 - Grey wolf fur +960 - Plank +961 - Plank +962 - Christmas cracker +963 - Christmas cracker +964 - Skull +965 - Skull +966 - Tile +967 - Tinderbox +968 - Rock +969 - Tinderbox +970 - Papyrus +971 - Papyrus +972 - Papyrus +973 - Charcoal +974 - Charcoal +975 - Machete +976 - Machete +977 - Cooking pot +978 - Cooking pot +979 - Not Existing +980 - Not Existing +981 - Disk of returning +982 - Disk of returning +983 - Brass key +984 - Brass key +985 - Tooth half of a key +986 - Tooth half of a key +987 - Loop half of a key +988 - Loop half of a key +989 - Crystal key +990 - Crystal key +991 - Muddy key +992 - Muddy key +993 - Sinister key +994 - Sinister key +995 - Coins +996 - Not Existing +997 - Not Existing +998 - Not Existing +999 - Not Existing +1000 - Not Existing +1001 - Not Existing +1002 - Not Existing +1003 - Not Existing +1004 - Not Existing +1005 - White apron +1006 - White apron +1007 - Cape +1008 - Cape +1009 - Brass necklace +1010 - Brass necklace +1011 - Blue skirt +1012 - Blue skirt +1013 - Pink skirt +1014 - Pink skirt +1015 - Black skirt +1016 - Black skirt +1017 - Wizard hat +1018 - Wizard hat +1019 - Cape +1020 - Cape +1021 - Cape +1022 - Cape +1023 - Cape +1024 - Cape +1025 - Eye patch +1026 - Eye patch +1027 - Cape +1028 - Cape +1029 - Cape +1030 - Cape +1031 - Cape +1032 - Cape +1033 - Zamorak robe +1034 - Zamorak robe +1035 - Zamorak robe +1036 - Zamorak robe +1037 - Bunny ears +1038 - Red partyhat +1039 - Red partyhat +1040 - Yellow partyhat +1041 - Yellow partyhat +1042 - Blue partyhat +1043 - Blue partyhat +1044 - Green partyhat +1045 - Green partyhat +1046 - Purple partyhat +1047 - Purple partyhat +1048 - White partyhat +1049 - White partyhat +1050 - Santa hat +1051 - Santa hat +1052 - Cape of legends +1053 - Green h'ween mask +1054 - Green h'ween mask +1055 - Blue h'ween mask +1056 - Blue h'ween mask +1057 - Red h'ween mask +1058 - Red h'ween mask +1059 - Leather gloves +1060 - Leather gloves +1061 - Leather boots +1062 - Leather boots +1063 - Leather vambraces +1064 - Leather vambraces +1065 - Green d'hide vamb +1066 - Green d'hide vamb +1067 - Iron platelegs +1068 - Iron platelegs +1069 - Steel platelegs +1070 - Steel platelegs +1071 - Mithril platelegs +1072 - Mithril platelegs +1073 - Adamant platelegs +1074 - Adamant platelegs +1075 - Bronze platelegs +1076 - Bronze platelegs +1077 - Black platelegs +1078 - Black platelegs +1079 - Rune platelegs +1080 - Rune platelegs +1081 - Iron plateskirt +1082 - Iron plateskirt +1083 - Steel plateskirt +1084 - Steel plateskirt +1085 - Mithril plateskirt +1086 - Mithril plateskirt +1087 - Bronze plateskirt +1088 - Bronze plateskirt +1089 - Black plateskirt +1090 - Black plateskirt +1091 - Adamant plateskirt +1092 - Adamant plateskirt +1093 - Rune plateskirt +1094 - Rune plateskirt +1095 - Leather chaps +1096 - Leather chaps +1097 - Studded chaps +1098 - Studded chaps +1099 - Green d'hide chaps +1100 - Green d'hide chaps +1101 - Iron chainbody +1102 - Iron chainbody +1103 - Bronze chainbody +1104 - Bronze chainbody +1105 - Steel chainbody +1106 - Steel chainbody +1107 - Black chainbody +1108 - Black chainbody +1109 - Mithril chainbody +1110 - Mithril chainbody +1111 - Adamant chainbody +1112 - Adamant chainbody +1113 - Rune chainbody +1114 - Rune chainbody +1115 - Iron platebody +1116 - Iron platebody +1117 - Bronze platebody +1118 - Bronze platebody +1119 - Steel platebody +1120 - Steel platebody +1121 - Mithril platebody +1122 - Mithril platebody +1123 - Adamant platebody +1124 - Adamant platebody +1125 - Black platebody +1126 - Black platebody +1127 - Rune platebody +1128 - Rune platebody +1129 - Leather body +1130 - Leather body +1131 - Hardleather body +1132 - Hardleather body +1133 - Studded body +1134 - Studded body +1135 - Green d'hide body +1136 - Green d'hide body +1137 - Iron med helm +1138 - Iron med helm +1139 - Bronze med helm +1140 - Bronze med helm +1141 - Steel med helm +1142 - Steel med helm +1143 - Mithril med helm +1144 - Mithril med helm +1145 - Adamant med helm +1146 - Adamant med helm +1147 - Rune med helm +1148 - Rune med helm +1149 - Dragon med helm +1150 - Dragon med helm +1151 - Black med helm +1152 - Black med helm +1153 - Iron full helm +1154 - Iron full helm +1155 - Bronze full helm +1156 - Bronze full helm +1157 - Steel full helm +1158 - Steel full helm +1159 - Mithril full helm +1160 - Mithril full helm +1161 - Adamant full helm +1162 - Adamant full helm +1163 - Rune full helm +1164 - Rune full helm +1165 - Black full helm +1166 - Black full helm +1167 - Leather cowl +1168 - Leather cowl +1169 - Coif +1170 - Coif +1171 - Wooden shield +1172 - Wooden shield +1173 - Bronze sq shield +1174 - Bronze sq shield +1175 - Iron sq shield +1176 - Iron sq shield +1177 - Steel sq shield +1178 - Steel sq shield +1179 - Black sq shield +1180 - Black sq shield +1181 - Mithril sq shield +1182 - Mithril sq shield +1183 - Adamant sq shield +1184 - Adamant sq shield +1185 - Rune sq shield +1186 - Rune sq shield +1187 - Dragon sq shield +1188 - Dragon sq shield +1189 - Bronze kiteshield +1190 - Bronze kiteshield +1191 - Iron kiteshield +1192 - Iron kiteshield +1193 - Steel kiteshield +1194 - Steel kiteshield +1195 - Black kiteshield +1196 - Black kiteshield +1197 - Mithril kiteshield +1198 - Mithril kiteshield +1199 - Adamant kiteshield +1200 - Adamant kiteshield +1201 - Rune kiteshield +1202 - Rune kiteshield +1203 - Iron dagger +1204 - Iron dagger +1205 - Bronze dagger +1206 - Bronze dagger +1207 - Steel dagger +1208 - Steel dagger +1209 - Mithril dagger +1210 - Mithril dagger +1211 - Adamant dagger +1212 - Adamant dagger +1213 - Rune dagger +1214 - Rune dagger +1215 - Dragon dagger +1216 - Dragon dagger +1217 - Black dagger +1218 - Black dagger +1219 - Iron dagger(p) +1220 - Iron dagger(p) +1221 - Bronze dagger(p) +1222 - Bronze dagger(p) +1223 - Steel dagger(p) +1224 - Steel dagger(p) +1225 - Mithril dagger(p) +1226 - Mithril dagger(p) +1227 - Adamant dagger(p) +1228 - Adamant dagger(p) +1229 - Rune dagger(p) +1230 - Rune dagger(p) +1231 - Dragon dagger(p) +1232 - Dragon dagger(p) +1233 - Black dagger(p) +1234 - Black dagger(p) +1235 - Poisoned dagger(p) +1236 - Poisoned dagger(p) +1237 - Bronze spear +1238 - Bronze spear +1239 - Iron spear +1240 - Iron spear +1241 - Steel spear +1242 - Steel spear +1243 - Mithril spear +1244 - Mithril spear +1245 - Adamant spear +1246 - Adamant spear +1247 - Rune spear +1248 - Rune spear +1249 - Dragon spear +1250 - Dragon spear +1251 - Bronze spear(p) +1252 - Bronze spear(p) +1253 - Iron spear(p) +1254 - Iron spear(p) +1255 - Steel spear(p) +1256 - Steel spear(p) +1257 - Mithril spear(p) +1258 - Mithril spear(p) +1259 - Adamant spear(p) +1260 - Adamant spear(p) +1261 - Rune spear(p) +1262 - Rune spear(p) +1263 - Dragon spear(p) +1264 - Dragon spear(p) +1265 - Bronze pickaxe +1266 - Bronze pickaxe +1267 - Iron pickaxe +1268 - Iron pickaxe +1269 - Steel pickaxe +1270 - Steel pickaxe +1271 - Adamant pickaxe +1272 - Adamant pickaxe +1273 - Mithril pickaxe +1274 - Mithril pickaxe +1275 - Rune pickaxe +1276 - Rune pickaxe +1277 - Bronze sword +1278 - Bronze sword +1279 - Iron sword +1280 - Iron sword +1281 - Steel sword +1282 - Steel sword +1283 - Black sword +1284 - Black sword +1285 - Mithril sword +1286 - Mithril sword +1287 - Adamant sword +1288 - Adamant sword +1289 - Rune sword +1290 - Rune sword +1291 - Bronze longsword +1292 - Bronze longsword +1293 - Iron longsword +1294 - Iron longsword +1295 - Steel longsword +1296 - Steel longsword +1297 - Black longsword +1298 - Black longsword +1299 - Mithril longsword +1300 - Mithril longsword +1301 - Adamant longsword +1302 - Adamant longsword +1303 - Rune longsword +1304 - Rune longsword +1305 - Dragon longsword +1306 - Dragon longsword +1307 - Bronze 2h sword +1308 - Bronze 2h sword +1309 - Iron 2h sword +1310 - Iron 2h sword +1311 - Steel 2h sword +1312 - Steel 2h sword +1313 - Black 2h sword +1314 - Black 2h sword +1315 - Mithril 2h sword +1316 - Mithril 2h sword +1317 - Adamant 2h sword +1318 - Adamant 2h sword +1319 - Rune 2h sword +1320 - Rune 2h sword +1321 - Bronze scimitar +1322 - Bronze scimitar +1323 - Iron scimitar +1324 - Iron scimitar +1325 - Steel scimitar +1326 - Steel scimitar +1327 - Black scimitar +1328 - Black scimitar +1329 - Mithril scimitar +1330 - Mithril scimitar +1331 - Adamant scimitar +1332 - Adamant scimitar +1333 - Rune scimitar +1334 - Rune scimitar +1335 - Iron warhammer +1336 - Iron warhammer +1337 - Bronze warhammer +1338 - Bronze warhammer +1339 - Steel warhammer +1340 - Steel warhammer +1341 - Black warhammer +1342 - Black warhammer +1343 - Mithril warhammer +1344 - Mithril warhammer +1345 - Addy warhammer +1346 - Addy warhammer +1347 - Rune warhammer +1348 - Rune warhammer +1349 - Iron axe +1350 - Iron axe +1351 - Bronze axe +1352 - Bronze axe +1353 - Steel axe +1354 - Steel axe +1355 - Mithril axe +1356 - Mithril axe +1357 - Adamant axe +1358 - Adamant axe +1359 - Rune axe +1360 - Rune axe +1361 - Black axe +1362 - Black axe +1363 - Iron battleaxe +1364 - Iron battleaxe +1365 - Steel battleaxe +1366 - Steel battleaxe +1367 - Black battleaxe +1368 - Black battleaxe +1369 - Mithril battleaxe +1370 - Mithril battleaxe +1371 - Adamant battleaxe +1372 - Adamant battleaxe +1373 - Rune battleaxe +1374 - Rune battleaxe +1375 - Bronze battleaxe +1376 - Bronze battleaxe +1377 - Dragon battleaxe +1378 - Dragon battleaxe +1379 - Staff +1380 - Staff +1381 - Staff of air +1382 - Staff of air +1383 - Staff of water +1384 - Staff of water +1385 - Staff of earth +1386 - Staff of earth +1387 - Staff of fire +1388 - Staff of fire +1389 - Magic staff +1390 - Magic staff +1391 - Battlestaff +1392 - Battlestaff +1393 - Fire battlestaff +1394 - Fire battlestaff +1395 - Water battlestaff +1396 - Water battlestaff +1397 - Air battlestaff +1398 - Air battlestaff +1399 - Earth battlestaff +1400 - Earth battlestaff +1401 - Mystic fire staff +1402 - Mystic fire staff +1403 - Mystic water staff +1404 - Mystic water staff +1405 - Mystic air staff +1406 - Mystic air staff +1407 - Mystic earth staff +1408 - Mystic earth staff +1409 - Iban's staff +1410 - Iban's staff +1411 - Farmer's fork +1412 - Farmer's fork +1413 - Halberd +1414 - Halberd +1415 - Warhammer +1416 - Warhammer +1417 - Javelin +1418 - Javelin +1419 - Scythe +1420 - Iron mace +1421 - Iron mace +1422 - Bronze mace +1423 - Bronze mace +1424 - Steel mace +1425 - Steel mace +1426 - Black mace +1427 - Black mace +1428 - Mithril mace +1429 - Mithril mace +1430 - Adamant mace +1431 - Adamant mace +1432 - Rune mace +1433 - Rune mace +1434 - Dragon mace +1435 - Dragon mace +1436 - Rune essence +1437 - Rune essence +1438 - Air talisman +1439 - Air talisman +1440 - Earth talisman +1441 - Earth talisman +1442 - Fire talisman +1443 - Fire talisman +1444 - Water talisman +1445 - Water talisman +1446 - Body talisman +1447 - Body talisman +1448 - Mind talisman +1449 - Mind talisman +1450 - Blood talisman +1451 - Blood talisman +1452 - Chaos talisman +1453 - Chaos talisman +1454 - Cosmic talisman +1455 - Cosmic talisman +1456 - Death talisman +1457 - Death talisman +1458 - Law talisman +1459 - Law talisman +1460 - Soul talisman +1461 - Soul talisman +1462 - Nature talisman +1463 - Nature talisman +1464 - Archery ticket +1465 - Weapon poison +1466 - Sea slug +1467 - Damp sticks +1468 - Dry sticks +1469 - Broken glass +1470 - Red bead +1471 - Red bead +1472 - Yellow bead +1473 - Yellow bead +1474 - Black bead +1475 - Black bead +1476 - White bead +1477 - White bead +1478 - Amulet of accuracy +1479 - Amulet of accuracy +1480 - Rock +1481 - Orb of light +1482 - Orb of light +1483 - Orb of light +1484 - Orb of light +1485 - Damp cloth +1486 - Piece of railing +1487 - Unicorn horn +1488 - Paladin's badge +1489 - Paladin's badge +1490 - Paladin's badge +1491 - Witch's cat +1492 - Doll of iban +1493 - Old journal +1494 - History of iban +1495 - Klank's gauntlets +1496 - Iban's dove +1497 - Amulet of othanian +1498 - Amulet of doomion +1499 - Amulet of holthion +1500 - Iban's shadow +1501 - Dwarf brew +1502 - Iban's ashes +1503 - Warrant +1504 - Hangover cure +1505 - A magic scroll +1506 - Gas mask +1507 - A small key +1508 - A scruffy note +1509 - Book +1510 - Picture +1511 - Logs +1512 - Logs +1513 - Magic logs +1514 - Magic logs +1515 - Yew logs +1516 - Yew logs +1517 - Maple logs +1518 - Maple logs +1519 - Willow logs +1520 - Willow logs +1521 - Oak logs +1522 - Oak logs +1523 - Lockpick +1524 - Lockpick +1525 - Grimy snake weed +1526 - Clean snake weed +1527 - Grimy ardrigal +1528 - Clean ardrigal +1529 - Grimy sito foil +1530 - Clean sito foil +1531 - Grimy volencia moss +1532 - Clean volencia moss +1533 - Grimy rogue's purse +1534 - Clean rogue's purse +1535 - Map part +1536 - Map part +1537 - Map part +1538 - Crandor map +1539 - Steel nails +1540 - Anti-dragon shield +1541 - Anti-dragon shield +1542 - Maze key +1543 - Key +1544 - Key +1545 - Key +1546 - Key +1547 - Key +1548 - Key +1549 - Stake +1550 - Garlic +1551 - Garlic +1552 - Doogle sardine +1553 - Tinderbox +1554 - Not Existing +1555 - Pet kitten +1556 - Pet kitten +1557 - Pet kitten +1558 - Pet kitten +1559 - Pet kitten +1560 - Pet kitten +1561 - Pet cat +1562 - Pet cat +1563 - Pet cat +1564 - Pet cat +1565 - Pet cat +1566 - Pet cat +1567 - Overgrown cat +1568 - Overgrown cat +1569 - Overgrown cat +1570 - Overgrown cat +1571 - Overgrown cat +1572 - Overgrown cat +1573 - Doogle leaves +1574 - Tinderbox +1575 - Cat training medal +1576 - Tinderbox +1577 - Pete's candlestick +1578 - Pete's candlestick +1579 - Thieves' armband +1580 - Ice gloves +1581 - Blamish snail slime +1582 - Blamish oil +1583 - Fire feather +1584 - Id papers +1585 - Oily fishing rod +1586 - Miscellaneous key +1587 - Miscellaneous key +1588 - Grips' keyring +1589 - Picture +1590 - Dusty key +1591 - Jail key +1592 - Ring mould +1593 - Ring mould +1594 - Unholy mould +1595 - Amulet mould +1596 - Amulet mould +1597 - Necklace mould +1598 - Necklace mould +1599 - Holy mould +1600 - Holy mould +1601 - Diamond +1602 - Diamond +1603 - Ruby +1604 - Ruby +1605 - Emerald +1606 - Emerald +1607 - Sapphire +1608 - Sapphire +1609 - Opal +1610 - Opal +1611 - Jade +1612 - Jade +1613 - Red topaz +1614 - Red topaz +1615 - Dragonstone +1616 - Dragonstone +1617 - Uncut diamond +1618 - Uncut diamond +1619 - Uncut ruby +1620 - Uncut ruby +1621 - Uncut emerald +1622 - Uncut emerald +1623 - Uncut sapphire +1624 - Uncut sapphire +1625 - Uncut opal +1626 - Uncut opal +1627 - Uncut jade +1628 - Uncut jade +1629 - Uncut red topaz +1630 - Uncut red topaz +1631 - Uncut dragonstone +1632 - Uncut dragonstone +1633 - Crushed gem +1634 - Crushed gem +1635 - Gold ring +1636 - Gold ring +1637 - Sapphire ring +1638 - Sapphire ring +1639 - Emerald ring +1640 - Emerald ring +1641 - Ruby ring +1642 - Ruby ring +1643 - Diamond ring +1644 - Diamond ring +1645 - Dragonstone ring +1646 - Dragonstone ring +1647 - Not Existing +1648 - Not Existing +1649 - Sapphire ring +1650 - Emerald ring +1651 - Ruby ring +1652 - Diamond ring +1653 - Dragonstone ring +1654 - Gold necklace +1655 - Gold necklace +1656 - Sapphire necklace +1657 - Sapphire necklace +1658 - Emerald necklace +1659 - Emerald necklace +1660 - Ruby necklace +1661 - Ruby necklace +1662 - Diamond necklace +1663 - Diamond necklace +1664 - Dragon necklace +1665 - Dragon necklace +1666 - Not Existing +1667 - Not Existing +1668 - Sapphire necklace +1669 - Emerald necklace +1670 - Ruby necklace +1671 - Diamond necklace +1672 - Dragon necklace +1673 - Gold amulet +1674 - Gold amulet +1675 - Sapphire amulet +1676 - Sapphire amulet +1677 - Emerald amulet +1678 - Emerald amulet +1679 - Ruby amulet +1680 - Ruby amulet +1681 - Diamond amulet +1682 - Diamond amulet +1683 - Dragonstone ammy +1684 - Dragonstone ammy +1685 - Not Existing +1686 - Not Existing +1687 - Sapphire amulet +1688 - Emerald amulet +1689 - Ruby amulet +1690 - Diamond amulet +1691 - Dragonstone ammy +1692 - Gold amulet +1693 - Gold amulet +1694 - Sapphire amulet +1695 - Sapphire amulet +1696 - Emerald amulet +1697 - Emerald amulet +1698 - Ruby amulet +1699 - Ruby amulet +1700 - Diamond amulet +1701 - Diamond amulet +1702 - Dragonstone ammy +1703 - Dragonstone ammy +1704 - Amulet of glory +1705 - Amulet of glory +1706 - Amulet of glory(1) +1707 - Amulet of glory(1) +1708 - Amulet of glory(2) +1709 - Amulet of glory(2) +1710 - Amulet of glory(3) +1711 - Amulet of glory(3) +1712 - Amulet of glory(4) +1713 - Amulet of glory(4) +1714 - Unstrung symbol +1715 - Unstrung symbol +1716 - Unblessed symbol +1717 - Unblessed symbol +1718 - Holy symbol +1719 - Holy symbol +1720 - Unstrung emblem +1721 - Unstrung emblem +1722 - Unpowered symbol +1723 - Unpowered symbol +1724 - Unholy symbol +1725 - Amulet of strength +1726 - Amulet of strength +1727 - Amulet of magic +1728 - Amulet of magic +1729 - Amulet of defence +1730 - Amulet of defence +1731 - Amulet of power +1732 - Amulet of power +1733 - Needle +1734 - Thread +1735 - Shears +1736 - Shears +1737 - Wool +1738 - Wool +1739 - Cowhide +1740 - Cowhide +1741 - Leather +1742 - Leather +1743 - Hard leather +1744 - Hard leather +1745 - Green d-leather +1746 - Green d-leather +1747 - Black dragonhide +1748 - Black dragonhide +1749 - Red dragonhide +1750 - Red dragonhide +1751 - Blue dragonhide +1752 - Blue dragonhide +1753 - Green dragonhide +1754 - Green dragonhide +1755 - Chisel +1756 - Chisel +1757 - Brown apron +1758 - Brown apron +1759 - Ball of wool +1760 - Ball of wool +1761 - Soft clay +1762 - Soft clay +1763 - Red dye +1764 - Red dye +1765 - Yellow dye +1766 - Yellow dye +1767 - Blue dye +1768 - Blue dye +1769 - Orange dye +1770 - Orange dye +1771 - Green dye +1772 - Green dye +1773 - Purple dye +1774 - Purple dye +1775 - Molten glass +1776 - Molten glass +1777 - Bow string +1778 - Bow string +1779 - Flax +1780 - Flax +1781 - Soda ash +1782 - Soda ash +1783 - Bucket of sand +1784 - Bucket of sand +1785 - Glassblowing pipe +1786 - Glassblowing pipe +1787 - Unfired pot +1788 - Unfired pot +1789 - Unfired pie dish +1790 - Unfired pie dish +1791 - Unfired bowl +1792 - Unfired bowl +1793 - Woad leaf +1794 - Bronze wire +1795 - Bronze wire +1796 - Silver necklace +1797 - Silver necklace +1798 - Silver cup +1799 - Silver cup +1800 - Silver bottle +1801 - Silver bottle +1802 - Silver book +1803 - Silver book +1804 - Silver needle +1805 - Silver needle +1806 - Silver pot +1807 - Silver pot +1808 - Criminal's thread +1809 - Criminal's thread +1810 - Criminal's thread +1811 - Flypaper +1812 - Pungent pot +1813 - Criminal's dagger +1814 - Criminal's dagger +1815 - Killer's print +1816 - Anna's print +1817 - Bob's print +1818 - Carol's print +1819 - David's print +1820 - Elizabeth's print +1821 - Frank's print +1822 - Unknown print +1823 - Waterskin(4) +1824 - Waterskin(4) +1825 - Waterskin(3) +1826 - Waterskin(3) +1827 - Waterskin(2) +1828 - Waterskin(2) +1829 - Waterskin(1) +1830 - Waterskin(1) +1831 - Waterskin(0) +1832 - Waterskin(0) +1833 - Desert shirt +1834 - Desert shirt +1835 - Desert robe +1836 - Desert robe +1837 - Desert boots +1838 - Desert boots +1839 - Metal key +1840 - Cell door key +1841 - Barrel +1842 - Ana in a barrel +1843 - Wrought iron key +1844 - Slave shirt +1845 - Slave robe +1846 - Slave boots +1847 - Scrumpled paper +1848 - Shantay disclaimer +1849 - Prototype dart +1850 - Technical plans +1851 - Tenti pineapple +1852 - Bedabin key +1853 - Prototype dart tip +1854 - Shantay pass +1855 - Rock +1856 - Guide book +1857 - Totem +1858 - Address label +1859 - Raw ugthanki meat +1860 - Raw ugthanki meat +1861 - Ugthanki meat +1862 - Ugthanki meat +1863 - Pitta dough +1864 - Pitta dough +1865 - Pitta bread +1866 - Pitta bread +1867 - Burnt pitta bread +1868 - Burnt pitta bread +1869 - Chopped tomato +1870 - Chopped tomato +1871 - Chopped onion +1872 - Chopped onion +1873 - Chopped ugthanki +1874 - Chopped ugthanki +1875 - Onion & tomato +1876 - Onion & tomato +1877 - Ugthanki & onion +1878 - Ugthanki & onion +1879 - Ugthanki & tomato +1880 - Ugthanki & tomato +1881 - Kebab mix +1882 - Kebab mix +1883 - Ugthanki kebab +1884 - Ugthanki kebab +1885 - Ugthanki kebab +1886 - Ugthanki kebab +1887 - Cake tin +1888 - Cake tin +1889 - Uncooked cake +1890 - Uncooked cake +1891 - Cake +1892 - Cake +1893 - 2/3 cake +1894 - 2/3 cake +1895 - Slice of cake +1896 - Slice of cake +1897 - Chocolate cake +1898 - Chocolate cake +1899 - 2/3 chocolate cake +1900 - 2/3 chocolate cake +1901 - Chocolate slice +1902 - Chocolate slice +1903 - Burnt cake +1904 - Burnt cake +1905 - Asgarnian ale +1906 - Asgarnian ale +1907 - Wizard's mind bomb +1908 - Wizard's mind bomb +1909 - Greenman's ale +1910 - Greenman's ale +1911 - Dragon bitter +1912 - Dragon bitter +1913 - Dwarven stout +1914 - Dwarven stout +1915 - Grog +1916 - Grog +1917 - Beer +1918 - Beer +1919 - Beer glass +1920 - Beer glass +1921 - Bowl of water +1922 - Bowl of water +1923 - Bowl +1924 - Bowl +1925 - Bucket +1926 - Bucket +1927 - Bucket of milk +1928 - Bucket of milk +1929 - Bucket of water +1930 - Bucket of water +1931 - Empty pot +1932 - Empty pot +1933 - Pot of flour +1934 - Pot of flour +1935 - Jug +1936 - Jug +1937 - Jug of water +1938 - Jug of water +1939 - Swamp tar +1940 - Raw swamp paste +1941 - Swamp paste +1942 - Potato +1943 - Potato +1944 - Egg +1945 - Egg +1946 - Flour +1947 - Grain +1948 - Grain +1949 - Chef's hat +1950 - Chef's hat +1951 - Redberries +1952 - Redberries +1953 - Pastry dough +1954 - Pastry dough +1955 - Cooking apple +1956 - Cooking apple +1957 - Onion +1958 - Onion +1959 - Pumpkin +1960 - Pumpkin +1961 - Easter egg +1962 - Easter egg +1963 - Banana +1964 - Banana +1965 - Cabbage +1966 - Cabbage +1967 - Cabbage +1968 - Cabbage +1969 - Spinach roll +1970 - Tinderbox +1971 - Kebab +1972 - Kebab +1973 - Chocolate bar +1974 - Chocolate bar +1975 - Chocolate dust +1976 - Chocolate dust +1977 - Chocolatey milk +1978 - Cup of tea +1979 - Cup of tea +1980 - Empty cup +1981 - Empty cup +1982 - Tomato +1983 - Tomato +1984 - Rotten apple +1985 - Cheese +1986 - Cheese +1987 - Grapes +1988 - Grapes +1989 - Half full wine jug +1990 - Half full wine jug +1991 - Jug of bad wine +1992 - Jug of bad wine +1993 - Jug of wine +1994 - Jug of wine +1995 - Unfermented wine +1996 - Unfermented wine +1997 - Incomplete stew +1998 - Incomplete stew +1999 - Incomplete stew +2000 - Incomplete stew +2001 - Uncooked stew +2002 - Uncooked stew +2003 - Stew +2004 - Stew +2005 - Burnt stew +2006 - Burnt stew +2007 - Spice +2008 - Spice +2009 - Uncooked curry +2010 - Uncooked curry +2011 - Curry +2012 - Curry +2013 - Burnt curry +2014 - Burnt curry +2015 - Vodka +2016 - Vodka +2017 - Whisky +2018 - Whisky +2019 - Gin +2020 - Gin +2021 - Brandy +2022 - Brandy +2023 - Cocktail guide +2024 - Cocktail guide +2025 - Cocktail shaker +2026 - Cocktail glass +2027 - Cocktail glass +2028 - Premade blurb' sp. +2029 - Premade blurb' sp. +2030 - Premade choc s'dy +2031 - Premade choc s'dy +2032 - Premade dr' dragon +2033 - Premade dr' dragon +2034 - Premade fr' blast +2035 - Premade fr' blast +2036 - Premade p' punch +2037 - Premade p' punch +2038 - Premade sgg +2039 - Premade sgg +2040 - Premade wiz blz'd +2041 - Premade wiz blz'd +2042 - Picture +2043 - Picture +2044 - Picture +2045 - Picture +2046 - Picture +2047 - Picture +2048 - Pineapple punch +2049 - Pineapple punch +2050 - Picture +2051 - Picture +2052 - Picture +2053 - Picture +2054 - Wizard blizzard +2055 - Wizard blizzard +2056 - Picture +2057 - Picture +2058 - Picture +2059 - Picture +2060 - Picture +2061 - Picture +2062 - Picture +2063 - Picture +2064 - Blurberry special +2065 - Blurberry special +2066 - Picture +2067 - Picture +2068 - Picture +2069 - Picture +2070 - Picture +2071 - Picture +2072 - Picture +2073 - Picture +2074 - Choc saturday +2075 - Choc saturday +2076 - Picture +2077 - Picture +2078 - Picture +2079 - Picture +2080 - Short green guy +2081 - Short green guy +2082 - Picture +2083 - Picture +2084 - Fruit blast +2085 - Fruit blast +2086 - Picture +2087 - Picture +2088 - Picture +2089 - Picture +2090 - Picture +2091 - Picture +2092 - Drunk dragon +2093 - Drunk dragon +2094 - Picture +2095 - Picture +2096 - Picture +2097 - Picture +2098 - Picture +2099 - Picture +2100 - Picture +2101 - Picture +2102 - Lemon +2103 - Lemon +2104 - Lemon chunks +2105 - Lemon chunks +2106 - Lemon slices +2107 - Lemon slices +2108 - Orange +2109 - Orange +2110 - Orange chunks +2111 - Orange chunks +2112 - Orange slices +2113 - Orange slices +2114 - Pineapple +2115 - Pineapple +2116 - Pineapple chunks +2117 - Pineapple chunks +2118 - Pineapple ring +2119 - Pineapple ring +2120 - Lime +2121 - Lime +2122 - Lime chunks +2123 - Lime chunks +2124 - Lime slices +2125 - Lime slices +2126 - Dwellberries +2127 - Dwellberries +2128 - Equa leaves +2129 - Equa leaves +2130 - Pot of cream +2131 - Pot of cream +2132 - Raw beef +2133 - Raw beef +2134 - Raw rat meat +2135 - Raw rat meat +2136 - Raw bear meat +2137 - Raw bear meat +2138 - Raw chicken +2139 - Raw chicken +2140 - Cooked chicken +2141 - Cooked chicken +2142 - Cooked meat +2143 - Cooked meat +2144 - Burnt chicken +2145 - Burnt chicken +2146 - Burnt meat +2147 - Burnt meat +2148 - Raw lava eel +2149 - Lava eel +2150 - Swamp toad +2151 - Swamp toad +2152 - Toad's legs +2153 - Toad's legs +2154 - Picture +2155 - Picture +2156 - Spicy toad's legs +2157 - Spicy toad's legs +2158 - Seasoned legs +2159 - Seasoned legs +2160 - Spicy worm +2161 - Spicy worm +2162 - King worm +2163 - King worm +2164 - Batta tin +2165 - Crunchy tray +2166 - Gnomebowl mould +2167 - Gianne's cook book +2168 - Gianne's cook book +2169 - Gnome spice +2170 - Gnome spice +2171 - Gianne dough +2172 - Gianne dough +2173 - Picture +2174 - Picture +2175 - Burnt gnomebowl +2176 - Burnt gnomebowl +2177 - Half baked bowl +2178 - Raw gnomebowl +2179 - Picture +2180 - Picture +2181 - Picture +2182 - Picture +2183 - Picture +2184 - Picture +2185 - Chocolate bomb +2186 - Chocolate bomb +2187 - Tangled toads' legs +2188 - Tangled toads' legs +2189 - Picture +2190 - Picture +2191 - Worm hole +2192 - Worm hole +2193 - Picture +2194 - Picture +2195 - Veg ball +2196 - Veg ball +2197 - Odd crunchies +2198 - Odd crunchies +2199 - Burnt crunchies +2200 - Burnt crunchies +2201 - Half baked crunchy +2202 - Raw crunchies +2203 - Picture +2204 - Picture +2205 - Worm crunchies +2206 - Worm crunchies +2207 - Picture +2208 - Picture +2209 - Chocchip crunchies +2210 - Chocchip crunchies +2211 - Picture +2212 - Picture +2213 - Spicy crunchies +2214 - Spicy crunchies +2215 - Picture +2216 - Picture +2217 - Toad crunchies +2218 - Toad crunchies +2219 - Premade w'm batta +2220 - Premade w'm batta +2221 - Premade t'd batta +2222 - Premade t'd batta +2223 - Premade c+t batta +2224 - Premade c+t batta +2225 - Premade fr't batta +2226 - Premade fr't batta +2227 - Premade veg batta +2228 - Premade veg batta +2229 - Premade choc bomb +2230 - Premade choc bomb +2231 - Premade ttl +2232 - Premade ttl +2233 - Premade worm hole +2234 - Premade worm hole +2235 - Premade veg ball +2236 - Premade veg ball +2237 - Premade w'm crun' +2238 - Premade w'm crun' +2239 - Premade ch' crunch +2240 - Premade ch' crunch +2241 - Premade s'y crunch +2242 - Premade s'y crunch +2243 - Premade t'd crunch +2244 - Premade t'd crunch +2245 - Picture +2246 - Picture +2247 - Burnt batta +2248 - Burnt batta +2249 - Half baked batta +2250 - Raw batta +2251 - Picture +2252 - Picture +2253 - Worm batta +2254 - Worm batta +2255 - Toad batta +2256 - Toad batta +2257 - Picture +2258 - Picture +2259 - Cheese+tom batta +2260 - Cheese+tom batta +2261 - Unfinished batta +2262 - Unfinished batta +2263 - Unfinished batta +2264 - Unfinished batta +2265 - Unfinished batta +2266 - Unfinished batta +2267 - Unfinished batta +2268 - Unfinished batta +2269 - Unfinished batta +2270 - Unfinished batta +2271 - Unfinished batta +2272 - Unfinished batta +2273 - Unfinished batta +2274 - Unfinished batta +2275 - Picture +2276 - Picture +2277 - Fruit batta +2278 - Fruit batta +2279 - Picture +2280 - Picture +2281 - Vegetable batta +2282 - Vegetable batta +2283 - Pizza base +2284 - Pizza base +2285 - Incomplete pizza +2286 - Incomplete pizza +2287 - Uncooked pizza +2288 - Uncooked pizza +2289 - Plain pizza +2290 - Plain pizza +2291 - 1/2 plain pizza +2292 - 1/2 plain pizza +2293 - Meat pizza +2294 - Meat pizza +2295 - 1/2 meat pizza +2296 - 1/2 meat pizza +2297 - Anchovy pizza +2298 - Anchovy pizza +2299 - 1/2 anchovy pizza +2300 - 1/2 anchovy pizza +2301 - Pineapple pizza +2302 - Pineapple pizza +2303 - 1/2 p'apple pizza +2304 - 1/2 p'apple pizza +2305 - Burnt pizza +2306 - Burnt pizza +2307 - Bread dough +2308 - Bread dough +2309 - Bread +2310 - Bread +2311 - Burnt bread +2312 - Burnt bread +2313 - Pie dish +2314 - Pie dish +2315 - Pie shell +2316 - Pie shell +2317 - Uncooked apple pie +2318 - Uncooked apple pie +2319 - Uncooked meat pie +2320 - Uncooked meat pie +2321 - Uncooked berry pie +2322 - Uncooked berry pie +2323 - Apple pie +2324 - Apple pie +2325 - Redberry pie +2326 - Redberry pie +2327 - Meat pie +2328 - Meat pie +2329 - Burnt pie +2330 - Burnt pie +2331 - Half a meat pie +2332 - Half a meat pie +2333 - Half a redberry pie +2334 - Half a redberry pie +2335 - Half an apple pie +2336 - Half an apple pie +2337 - Raw oomlie +2338 - Raw oomlie +2339 - Palm leaf +2340 - Palm leaf +2341 - Wrapped oomlie +2342 - Wrapped oomlie +2343 - Cooked oomlie wrap +2344 - Cooked oomlie wrap +2345 - Burnt oomlie wrap +2346 - Burnt oomlie wrap +2347 - Hammer +2348 - Hammer +2349 - Bronze bar +2350 - Bronze bar +2351 - Iron bar +2352 - Iron bar +2353 - Steel bar +2354 - Steel bar +2355 - Silver bar +2356 - Silver bar +2357 - Gold bar +2358 - Gold bar +2359 - Mithril bar +2360 - Mithril bar +2361 - Adamantite bar +2362 - Adamantite bar +2363 - Runite bar +2364 - Runite bar +2365 - 'perfect' gold bar +2366 - Shield left half +2367 - Shield left half +2368 - Shield right half +2369 - Shield right half +2370 - Steel studs +2371 - Steel studs +2372 - Ogre relic +2373 - Relic part 1 +2374 - Relic part 2 +2375 - Relic part 3 +2376 - Skavid map +2377 - Ogre tooth +2378 - Toban's key +2379 - Rock cake +2380 - Crystal +2381 - Crystal +2382 - Crystal +2383 - Crystal +2384 - Fingernails +2385 - Old robe +2386 - Unusual armour +2387 - Damaged dagger +2388 - Tattered eye patch +2389 - Vial +2390 - Vial +2391 - Ground bat bones +2392 - Ground bat bones +2393 - Toban's gold +2394 - Potion +2395 - Magic ogre potion +2396 - Spell scroll +2397 - Shaman robe +2398 - Cave nightshade +2399 - Silverlight key +2400 - Silverlight key +2401 - Silverlight key +2402 - Silverlight +2403 - Hazeel scroll +2404 - Chest key +2405 - Carnillean armour +2406 - Hazeel's mark +2407 - Ball +2408 - Diary +2409 - Door key +2410 - Magnet +2411 - Key +2412 - Saradomin cape +2413 - Guthix cape +2414 - Zamorak cape +2415 - Saradomin staff +2416 - Guthix staff +2417 - Zamorak staff +2418 - Bronze key +2419 - Wig +2420 - Picture +2421 - Wig +2422 - Blue partyhat +2423 - Key print +2424 - Paste +2425 - Picture +2426 - Burnt oomlie +2427 - Burnt oomlie +2428 - Attack potion(4) +2429 - Attack potion(4) +2430 - Restore potion(4) +2431 - Restore potion(4) +2432 - Defence potion(4) +2433 - Defence potion(4) +2434 - Prayer potion(4) +2435 - Prayer potion(4) +2436 - Super attack(4) +2437 - Super attack(4) +2438 - Fishing potion(4) +2439 - Fishing potion(4) +2440 - Super strength(4) +2441 - Super strength(4) +2442 - Super defence(4) +2443 - Super defence(4) +2444 - Ranging potion(4) +2445 - Ranging potion(4) +2446 - Antipoison(4) +2447 - Antipoison(4) +2448 - Super antipoison(4) +2449 - Super antipoison(4) +2450 - Zamorak brew(4) +2451 - Zamorak brew(4) +2452 - Antifire potion(4) +2453 - Antifire potion(4) +2454 - Antifire potion(3) +2455 - Antifire potion(3) +2456 - Antifire potion(2) +2457 - Antifire potion(2) +2458 - Antifire potion(1) +2459 - Antifire potion(1) +2460 - Flowers +2461 - Flowers +2462 - Flowers +2463 - Flowers +2464 - Flowers +2465 - Flowers +2466 - Flowers +2467 - Flowers +2468 - Flowers +2469 - Flowers +2470 - Flowers +2471 - Flowers +2472 - Flowers +2473 - Flowers +2474 - Flowers +2475 - Flowers +2476 - Flowers +2477 - Flowers +2478 - Tinderbox +2479 - Tinderbox +2480 - Picture +2481 - Clean lantadyme +2482 - Clean lantadyme +2483 - Lantadyme potion(unf) +2484 - Lantadyme potion(unf) +2485 - Grimy lantadyme +2486 - Grimy lantadyme +2487 - Blue d'hide vamb +2488 - Blue d'hide vamb +2489 - Red d'hide vamb +2490 - Red d'hide vamb +2491 - Black d'hide vamb +2492 - Black d'hide vamb +2493 - Blue d'hide chaps +2494 - Blue d'hide chaps +2495 - Red d'hide chaps +2496 - Red d'hide chaps +2497 - Black d'hide chaps +2498 - Black d'hide chaps +2499 - Blue d'hide body +2500 - Blue d'hide body +2501 - Red d'hide body +2502 - Red d'hide body +2503 - Black d'hide body +2504 - Black d'hide body +2505 - Blue d-leather +2506 - Blue d-leather +2507 - Red dragon leather +2508 - Red dragon leather +2509 - Black d-leather +2510 - Black d-leather +2511 - Logs +2512 - Picture +2513 - Dragon chainbody +2514 - Raw shrimps +2515 - Raw shrimps +2516 - Pot of flour +2517 - Pot of flour +2518 - Rotten tomato +2519 - Rotten tomato +2520 - Toy horsey +2521 - Toy horsey +2522 - Toy horsey +2523 - Toy horsey +2524 - Toy horsey +2525 - Toy horsey +2526 - Toy horsey +2527 - Toy horsey +2528 - Lamp +2529 - Orb of light +2530 - Bones +2531 - Bones +2532 - Iron fire arrows +2533 - Iron fire arrows +2534 - Steel fire arrows +2535 - Steel fire arrows +2536 - Mithril fire arrows +2537 - Mithril fire arrows +2538 - Addy fire arrows +2539 - Addy fire arrows +2540 - Rune fire arrows +2541 - Rune fire arrows +2542 - Not Existing +2543 - Not Existing +2544 - Not Existing +2545 - Not Existing +2546 - Not Existing +2547 - Not Existing +2548 - Not Existing +2549 - Not Existing +2550 - Ring of recoil +2551 - Ring of recoil +2552 - Ring of duelling(8) +2553 - Ring of duelling(8) +2554 - Ring of duelling(7) +2555 - Ring of duelling(7) +2556 - Ring of duelling(6) +2557 - Ring of duelling(6) +2558 - Ring of duelling(5) +2559 - Ring of duelling(5) +2560 - Ring of duelling(4) +2561 - Ring of duelling(4) +2562 - Ring of duelling(3) +2563 - Ring of duelling(3) +2564 - Ring of duelling(2) +2565 - Ring of duelling(2) +2566 - Ring of duelling(1) +2567 - Ring of duelling(1) +2568 - Ring of forging +2569 - Ring of forging +2570 - Ring of life +2571 - Ring of life +2572 - Ring of wealth +2573 - Ring of wealth +2574 - Sextant +2575 - Watch +2576 - Chart +2577 - Ranger boots +2578 - Ranger boots +2579 - Wizard boots +2580 - Wizard boots +2581 - Robin hood hat +2582 - Robin hood hat +2583 - Black platebody (t) +2584 - Black platebody (t) +2585 - Black platelegs (t) +2586 - Black platelegs (t) +2587 - Black full helm(t) +2588 - Black full helm(t) +2589 - Black kiteshield (t) +2590 - Black kiteshield (t) +2591 - Black platebody (g) +2592 - Black platebody (g) +2593 - Black platelegs (g) +2594 - Black platelegs (g) +2595 - Black full helm(g) +2596 - Black full helm(g) +2597 - Black kiteshield (g) +2598 - Black kiteshield (g) +2599 - Adam platebody (t) +2600 - Adam platebody (t) +2601 - Adam platelegs (t) +2602 - Adam platelegs (t) +2603 - Adam kiteshield (t) +2604 - Adam kiteshield (t) +2605 - Adam full helm(t) +2606 - Adam full helm(t) +2607 - Adam platebody (g) +2608 - Adam platebody (g) +2609 - Adam platelegs (g) +2610 - Adam platelegs (g) +2611 - Adam kiteshield (g) +2612 - Adam kiteshield (g) +2613 - Adam full helm(g) +2614 - Adam full helm(g) +2615 - Rune platebody (g) +2616 - Rune platebody (g) +2617 - Rune platelegs (g) +2618 - Rune platelegs (g) +2619 - Rune full helm(g) +2620 - Rune full helm(g) +2621 - Rune kiteshield (g) +2622 - Rune kiteshield (g) +2623 - Rune platebody (t) +2624 - Rune platebody (t) +2625 - Rune platelegs (t) +2626 - Rune platelegs (t) +2627 - Rune full helm (t) +2628 - Rune full helm (t) +2629 - Rune kiteshield (t) +2630 - Rune kiteshield (t) +2631 - Highwayman mask +2632 - Highwayman mask +2633 - Blue beret +2634 - Blue beret +2635 - Black beret +2636 - Black beret +2637 - White beret +2638 - White beret +2639 - Tan cavalier +2640 - Tan cavalier +2641 - Dark cavalier +2642 - Dark cavalier +2643 - Black cavalier +2644 - Black cavalier +2645 - Red headband +2646 - Red headband +2647 - Black headband +2648 - Black headband +2649 - Brown headband +2650 - Brown headband +2651 - Pirate's hat +2652 - Pirate's hat +2653 - Zamorak platebody +2654 - Zamorak platebody +2655 - Zamorak platelegs +2656 - Zamorak platelegs +2657 - Zamorak full helm +2658 - Zamorak full helm +2659 - Zamorak kiteshield +2660 - Zamorak kiteshield +2661 - Saradomin plate +2662 - Saradomin plate +2663 - Saradomin legs +2664 - Saradomin legs +2665 - Saradomin full helm +2666 - Saradomin full helm +2667 - Saradomin kite +2668 - Saradomin kite +2669 - Guthix platebody +2670 - Guthix platebody +2671 - Guthix platelegs +2672 - Guthix platelegs +2673 - Guthix full helm +2674 - Guthix full helm +2675 - Guthix kiteshield +2676 - Guthix kiteshield +2677 - Clue scroll +2678 - Clue scroll +2679 - Clue scroll +2680 - Clue scroll +2681 - Clue scroll +2682 - Clue scroll +2683 - Clue scroll +2684 - Clue scroll +2685 - Clue scroll +2686 - Clue scroll +2687 - Clue scroll +2688 - Clue scroll +2689 - Clue scroll +2690 - Clue scroll +2691 - Clue scroll +2692 - Clue scroll +2693 - Clue scroll +2694 - Clue scroll +2695 - Clue scroll +2696 - Clue scroll +2697 - Clue scroll +2698 - Clue scroll +2699 - Clue scroll +2700 - Clue scroll +2701 - Clue scroll +2702 - Clue scroll +2703 - Clue scroll +2704 - Clue scroll +2705 - Clue scroll +2706 - Clue scroll +2707 - Clue scroll +2708 - Clue scroll +2709 - Clue scroll +2710 - Clue scroll +2711 - Clue scroll +2712 - Clue scroll +2713 - Clue scroll +2714 - Casket +2715 - Casket +2716 - Clue scroll +2717 - Casket +2718 - Casket +2719 - Clue scroll +2720 - Casket +2721 - Casket +2722 - Clue scroll +2723 - Clue scroll +2724 - Casket +2725 - Clue scroll +2726 - Casket +2727 - Clue scroll +2728 - Casket +2729 - Clue scroll +2730 - Casket +2731 - Clue scroll +2732 - Casket +2733 - Clue scroll +2734 - Casket +2735 - Clue scroll +2736 - Casket +2737 - Clue scroll +2738 - Casket +2739 - Clue scroll +2740 - Casket +2741 - Clue scroll +2742 - Casket +2743 - Clue scroll +2744 - Casket +2745 - Clue scroll +2746 - Casket +2747 - Clue scroll +2748 - Casket +2749 - Sliding piece +2750 - Sliding piece +2751 - Sliding piece +2752 - Sliding piece +2753 - Sliding piece +2754 - Sliding piece +2755 - Sliding piece +2756 - Sliding piece +2757 - Sliding piece +2758 - Sliding piece +2759 - Sliding piece +2760 - Sliding piece +2761 - Sliding piece +2762 - Sliding piece +2763 - Sliding piece +2764 - Sliding piece +2765 - Sliding piece +2766 - Sliding piece +2767 - Sliding piece +2768 - Sliding piece +2769 - Sliding piece +2770 - Sliding piece +2771 - Sliding piece +2772 - Sliding piece +2773 - Clue scroll +2774 - Clue scroll +2775 - Casket +2776 - Clue scroll +2777 - Casket +2778 - Clue scroll +2779 - Casket +2780 - Clue scroll +2781 - Casket +2782 - Clue scroll +2783 - Clue scroll +2784 - Casket +2785 - Clue scroll +2786 - Clue scroll +2787 - Casket +2788 - Clue scroll +2789 - Casket +2790 - Clue scroll +2791 - Casket +2792 - Clue scroll +2793 - Clue scroll +2794 - Clue scroll +2795 - Puzzle box +2796 - Clue scroll +2797 - Clue scroll +2798 - Puzzle box +2799 - Clue scroll +2800 - Puzzle box +2801 - Clue scroll +2802 - Casket +2803 - Clue scroll +2804 - Casket +2805 - Clue scroll +2806 - Casket +2807 - Clue scroll +2808 - Casket +2809 - Clue scroll +2810 - Casket +2811 - Clue scroll +2812 - Casket +2813 - Clue scroll +2814 - Casket +2815 - Clue scroll +2816 - Casket +2817 - Clue scroll +2818 - Casket +2819 - Clue scroll +2820 - Casket +2821 - Clue scroll +2822 - Casket +2823 - Clue scroll +2824 - Casket +2825 - Clue scroll +2826 - Casket +2827 - Clue scroll +2828 - Casket +2829 - Clue scroll +2830 - Casket +2831 - Clue scroll +2832 - Key +2833 - Clue scroll +2834 - Key +2835 - Clue scroll +2836 - Key +2837 - Clue scroll +2838 - Key +2839 - Clue scroll +2840 - Key +2841 - Clue scroll +2842 - Challenge scroll +2843 - Clue scroll +2844 - Challenge scroll +2845 - Clue scroll +2846 - Challenge scroll +2847 - Clue scroll +2848 - Clue scroll +2849 - Clue scroll +2850 - Challenge scroll +2851 - Clue scroll +2852 - Challenge scroll +2853 - Clue scroll +2854 - Challenge scroll +2855 - Clue scroll +2856 - Clue scroll +2857 - Clue scroll +2858 - Clue scroll +2859 - Wolf bones +799 - Not Existing +2860 - Wolf bones +2861 - Wolfbone arrowtips +2862 - Achey tree logs +2863 - Achey tree logs +2864 - Ogre arrow shaft +2865 - Flighted ogre arrow +2866 - Ogre arrow +2867 - Not Existing +2868 - Not Existing +2869 - Not Existing +2870 - Not Existing +2871 - Ogre bellows +2872 - Ogre bellows (3) +2873 - Ogre bellows (2) +2874 - Ogre bellows (1) +2875 - Bloated toad +2876 - Raw chompy +2877 - Raw chompy +2878 - Cooked chompy +2879 - Cooked chompy +2880 - Ruined chompy +2881 - Ruined chompy +2882 - Seasoned chompy +2883 - Ogre bow +2884 - Not Existing +2885 - Not Existing +2886 - Battered book +2887 - Battered key +2888 - A stone bowl +2889 - A stone bowl +2890 - Elemental shield +2891 - Elemental shield +2892 - Elemental ore +2893 - Elemental metal +2894 - Boots +2895 - Boots +2896 - Robe top +2897 - Robe top +2898 - Robe bottoms +2899 - Robe bottoms +2900 - Hat +2901 - Hat +2902 - Gloves +2903 - Gloves +2904 - Boots +2905 - Boots +2906 - Robe top +2907 - Robe top +2908 - Robe bottoms +2909 - Robe bottoms +2910 - Hat +2911 - Hat +2912 - Gloves +2913 - Gloves +2914 - Boots +2915 - Boots +2916 - Robe top +2917 - Robe top +2918 - Robe bottoms +2919 - Robe bottoms +2920 - Hat +2921 - Hat +2922 - Gloves +2923 - Gloves +2924 - Boots +2925 - Boots +2926 - Robe top +2927 - Robe top +2928 - Robe bottoms +2929 - Robe bottoms +2930 - Hat +2931 - Hat +2932 - Gloves +2933 - Gloves +2934 - Boots +2935 - Boots +2936 - Robe top +2937 - Robe top +2938 - Robe bottoms +2939 - Robe bottoms +2940 - Hat +2941 - Hat +2942 - Gloves +2943 - Gloves +2944 - Golden key +2945 - Iron key +2946 - Golden tinderbox +2947 - Golden candle +2948 - Golden pot +2949 - Golden hammer +2950 - Golden feather +2951 - Golden needle +2952 - Wolfbane +2953 - Bucket of water +2954 - Bucket of water +2955 - Moonlight mead +2956 - Moonlight mead +2957 - Druid pouch +2958 - Druid pouch +2959 - Rotten food +2960 - Rotten food +2961 - Silver sickle +2962 - Silver sickle +2963 - Silver sickle(b) +2964 - Washing bowl +2965 - Picture +2966 - Mirror +2967 - Journal +2968 - Druidic spell +2969 - A used spell +2970 - Mort myre fungus +2971 - Mort myre fungus +2972 - Mort myre stem +2973 - Mort myre stem +2974 - Mort myre pear +2975 - Mort myre pear +2976 - Sickle mould +2977 - Sickle mould +2978 - Chompy bird hat +2979 - Chompy bird hat +2980 - Chompy bird hat +2981 - Chompy bird hat +2982 - Chompy bird hat +2983 - Chompy bird hat +2984 - Chompy bird hat +2985 - Chompy bird hat +2986 - Chompy bird hat +2987 - Chompy bird hat +2988 - Chompy bird hat +2989 - Chompy bird hat +2990 - Chompy bird hat +2991 - Chompy bird hat +2992 - Chompy bird hat +2993 - Chompy bird hat +2994 - Chompy bird hat +2995 - Chompy bird hat +2996 - Agility arena ticket +2997 - Pirate's hook +2998 - Clean toadflax +2999 - Clean toadflax +3000 - Clean snapdragon +3001 - Clean snapdragon +3002 - Toadflax potion(unf) +3003 - Toadflax potion(unf) +3004 - Snapdragon potion(unf) +3005 - Snapdragon potion(unf) +3006 - Firework +3007 - Firework +3008 - Energy potion(4) +3009 - Energy potion(4) +3010 - Energy potion(3) +3011 - Energy potion(3) +3012 - Energy potion(2) +3013 - Energy potion(2) +3014 - Energy potion(1) +3015 - Energy potion(1) +3016 - Super energy(4) +3017 - Super energy(4) +3018 - Super energy(3) +3019 - Super energy(3) +3020 - Super energy(2) +3021 - Super energy(2) +3022 - Super energy(1) +3023 - Super energy(1) +3024 - Super restore(4) +3025 - Super restore(4) +3026 - Super restore(3) +3027 - Super restore(3) +3028 - Super restore(2) +3029 - Super restore(2) +3030 - Super restore(1) +3031 - Super restore(1) +3032 - Agility potion(4) +3033 - Agility potion(4) +3034 - Agility potion(3) +3035 - Agility potion(3) +3036 - Agility potion(2) +3037 - Agility potion(2) +3038 - Agility potion(1) +3039 - Agility potion(1) +3040 - Magic potion(4) +3041 - Magic potion(4) +3042 - Magic potion(3) +3043 - Magic potion(3) +3044 - Magic potion(2) +3045 - Magic potion(2) +3046 - Magic potion(1) +3047 - Magic potion(1) +3048 - Pirate's hook +3049 - Grimy toadflax +3050 - Grimy toadflax +3051 - Grimy snapdragon +3052 - Grimy snapdragon +3053 - Lava battlestaff +3054 - Mystic lava staff +3055 - Lava battlestaff +3056 - Mystic lava staff +3057 - Mime mask +3058 - Mime top +3059 - Mime legs +3060 - Mime gloves +3061 - Mime boots +3062 - Strange box +3063 - Not Existing +3064 - Not Existing +3065 - Not Existing +3066 - Not Existing +3067 - Not Existing +3068 - Not Existing +3069 - Not Existing +3070 - Not Existing +3071 - Not Existing +3072 - Not Existing +3073 - Not Existing +3074 - Not Existing +3075 - Not Existing +3076 - Not Existing +3077 - Not Existing +3078 - Not Existing +3079 - Not Existing +3080 - Not Existing +3081 - Not Existing +3082 - Not Existing +3083 - Not Existing +3084 - Not Existing +3085 - Not Existing +3086 - Not Existing +3087 - Not Existing +3088 - Not Existing +3089 - Not Existing +3090 - Not Existing +3091 - Not Existing +3092 - Not Existing +3093 - Black dart +3094 - Black dart(p) +3095 - Bronze claws +3096 - Iron claws +3097 - Steel claws +3098 - Black claws +3099 - Mithril claws +3100 - Adamant claws +3101 - Rune claws +3102 - Combination +3103 - Iou +3104 - Secret way map +3105 - Climbing boots +3106 - Climbing boots +3107 - Spiked boots +3108 - Picture +3109 - Stone ball +3110 - Stone ball +3111 - Stone ball +3112 - Stone ball +3113 - Stone ball +3114 - Certificate +3115 - Bronze claws +3116 - Iron claws +3117 - Steel claws +3118 - Black claws +3119 - Mithril claws +3120 - Adamant claws +3121 - Rune claws +3122 - Granite shield +3123 - Shaikahan bones +3124 - Shaikahan bones +3125 - Jogre bones +3126 - Jogre bones +3127 - Burnt jogre bones +3128 - Pasty jogre bones +3129 - Pasty jogre bones +3130 - Marinated j' bones +3131 - Pasty jogre bones +3132 - Pasty jogre bones +3133 - Marinated j' bones +3134 - Granite shield +3135 - Prison key +3136 - Cell key 1 +3137 - Cell key 2 +3138 - Potato cactus +3139 - Potato cactus +3140 - Dragon chainbody +3141 - Dragon chainbody +3142 - Raw karambwan +3143 - Raw karambwan +3144 - Cooked karambwan +3145 - Cooked karambwan +3146 - Poison karambwan +3147 - Cooked karambwan +3148 - Burnt karambwan +3149 - Burnt karambwan +3150 - Raw karambwanji +3151 - Karambwanji +3152 - Karambwan paste +3153 - Karambwan paste +3154 - Karambwan paste +3155 - Karambwanji paste +3156 - Karambwanji paste +3157 - Karambwan vessel +3158 - Karambwan vessel +3159 - Karambwan vessel +3160 - Karambwan vessel +3161 - Crafting manual +3162 - Sliced banana +3163 - Sliced banana +3164 - Karamjan rum +3165 - Karamjan rum +3166 - Monkey corpse +3167 - Monkey skin +3168 - Seaweed sandwich +3169 - Stuffed monkey +3170 - Bronze spear(kp) +3171 - Iron spear(kp) +3172 - Steel spear(kp) +3173 - Mithril spear(kp) +3174 - Adamant spear(kp) +3175 - Rune spear(kp) +3176 - Dragon spear(kp) +3177 - Picture +3178 - Picture +3179 - Monkey bones +3180 - Monkey bones +3181 - Monkey bones +3182 - Monkey bones +3183 - Monkey bones +3184 - Monkey bones +3185 - Monkey bones +3186 - Monkey bones +3187 - Bones +3188 - Cleaning cloth +3189 - Cleaning cloth +3190 - Bronze halberd +3191 - Bronze halberd +3192 - Iron halberd +3193 - Iron halberd +3194 - Steel halberd +3195 - Steel halberd +3196 - Black halberd +3197 - Black halberd +3198 - Mithril halberd +3199 - Mithril halberd +3200 - Adamant halberd +3201 - Adamant halberd +3202 - Rune halberd +3203 - Rune halberd +3204 - Dragon halberd +3205 - Dragon halberd +3206 - King's message +3207 - Iorwerths message +3208 - Crystal pendant +3209 - Sulphur +3210 - Tinderbox +3211 - Limestone +3212 - Limestone +3213 - Quicklime +3214 - Pot of quicklime +3215 - Ground sulphur +3216 - Barrel +3217 - Barrel +3218 - Barrel bomb +3219 - Barrel bomb +3220 - Barrel of coal-tar +3221 - Barrel of naphtha +3222 - Naphtha mix +3223 - Naphtha mix +3224 - Strip of cloth +3225 - Tinderbox +3226 - Raw rabbit +3227 - Raw rabbit +3228 - Cooked rabbit +3229 - Cooked rabbit +3230 - Big book of bangs +3231 - Picture +3232 - Picture +3233 - Picture +3234 - Picture +3235 - Picture +3236 - Picture +3237 - Picture +3238 - Picture +3239 - Bark +3240 - Bark +3241 - Man +3242 - Not Existing +3243 - Farmer +3244 - Not Existing +3245 - Warrior woman +3246 - Not Existing +3247 - Rogue +3248 - Not Existing +3249 - Guard +3250 - Not Existing +3251 - Knight of ardougne +3252 - Not Existing +3253 - Watchman +3254 - Not Existing +3255 - Paladin +3256 - Not Existing +3257 - Gnome +3258 - Not Existing +3259 - Hero +3260 - Not Existing +3261 - Goutweed +3262 - Troll thistle +3263 - Dried thistle +3264 - Ground thistle +3265 - Troll potion +3266 - Drunk parrot +3267 - Dirty robe +3268 - Fake man +3269 - Storeroom key +3270 - Alco-chunks +3271 - Not Existing +3272 - Not Existing +3273 - Not Existing +3274 - Not Existing +3275 - Not Existing +3276 - Not Existing +3277 - Not Existing +3278 - Not Existing +3279 - Not Existing +3280 - Not Existing +3281 - Not Existing +3282 - Not Existing +3283 - Not Existing +3284 - Not Existing +3285 - Not Existing +3286 - Not Existing +3287 - Not Existing +3288 - Not Existing +3289 - Not Existing +3290 - Not Existing +3291 - Not Existing +3292 - Not Existing +3293 - Not Existing +3294 - Not Existing +3295 - Not Existing +3296 - Not Existing +3297 - Not Existing +3298 - Not Existing +3299 - Not Existing +3300 - Not Existing +3301 - Not Existing +3302 - Not Existing +3303 - Not Existing +3304 - Not Existing +3305 - Not Existing +3306 - Not Existing +3307 - Not Existing +3308 - Not Existing +3309 - Not Existing +3310 - Not Existing +3311 - Not Existing +3312 - Not Existing +3313 - Not Existing +3314 - Not Existing +3315 - Not Existing +3316 - Not Existing +3317 - Not Existing +3318 - Not Existing +3319 - Not Existing +3320 - Not Existing +3321 - Not Existing +3322 - Not Existing +3323 - Not Existing +3324 - Not Existing +3325 - Vampire dust +799 - Not Existing +3326 - Vampire dust +3327 - Myre snelm +3328 - Myre snelm +3329 - Blood'n'tar snelm +3330 - Blood'n'tar snelm +3331 - Ochre snelm +3332 - Ochre snelm +3333 - Bruise blue snelm +3334 - Bruise blue snelm +3335 - Broken bark snelm +3336 - Broken bark snelm +3337 - Myre snelm +3338 - Myre snelm +3339 - Blood'n'tar snelm +3340 - Blood'n'tar snelm +3341 - Ochre snelm +3342 - Ochre snelm +3343 - Bruise blue snelm +3344 - Bruise blue snelm +3345 - Blamish myre shell +3346 - Blamish myre shell +3347 - Blamish red shell +3348 - Blamish red shell +3349 - Blamish ochre shell +3350 - Blamish ochre shell +3351 - Blamish blue shell +3352 - Blamish blue shell +3353 - Blamish bark shell +3354 - Blamish bark shell +3355 - Blamish myre shell +3356 - Blamish myre shell +3357 - Blamish red shell +3358 - Blamish red shell +3359 - Blamish ochre shell +3360 - Blamish ochre shell +3361 - Blamish blue shell +3362 - Blamish blue shell +3363 - Thin snail +3364 - Thin snail +3365 - Lean snail +3366 - Lean snail +3367 - Fat snail +3368 - Fat snail +3369 - Thin snail meat +3370 - Thin snail meat +3371 - Lean snail meat +3372 - Lean snail meat +3373 - Fat snail meat +3374 - Fat snail meat +3375 - Burnt snail +3376 - Burnt snail +3377 - Sample bottle +3378 - Sample bottle +3379 - Slimy eel +3380 - Slimy eel +3381 - Cooked slimy eel +3382 - Cooked slimy eel +3383 - Burnt eel +3384 - Tinderbox +3385 - Splitbark helm +3386 - Splitbark helm +3387 - Splitbark body +3388 - Splitbark body +3389 - Splitbark legs +3390 - Splitbark legs +3391 - Splitbark gauntlets +3392 - Splitbark gauntlets +3393 - Splitbark boots +3394 - Splitbark boots +3395 - Diary +3396 - Loar remains +3397 - Loar remains +3398 - Phrin remains +3399 - Phrin remains +3400 - Riyl remains +3401 - Riyl remains +3402 - Asyn remains +3403 - Asyn remains +3404 - Fiyr remains +3405 - Fiyr remains +3406 - Ash potion(unf) +3407 - Ash potion(unf) +3408 - Serum 207 (4) +3409 - Tinderbox +3410 - Serum 207 (3) +3411 - Tinderbox +3412 - Serum 207 (2) +3413 - Tinderbox +3414 - Serum 207 (1) +3415 - Tinderbox +3416 - Serum 208 (4) +3417 - Serum 208 (3) +3418 - Serum 208 (2) +3419 - Serum 208 (1) +3420 - Limestone brick +3421 - Limestone brick +3422 - Olive oil(4) +3423 - Olive oil(4) +3424 - Olive oil(3) +3425 - Olive oil(3) +3426 - Olive oil(2) +3427 - Olive oil(2) +3428 - Olive oil(1) +3429 - Olive oil(1) +3430 - Sacred oil(4) +3431 - Sacred oil(4) +3432 - Sacred oil(3) +3433 - Sacred oil(3) +3434 - Sacred oil(2) +3435 - Sacred oil(2) +3436 - Sacred oil(1) +3437 - Sacred oil(1) +3438 - Pyre logs +3439 - Pyre logs +3440 - Oak pyre logs +3441 - Oak pyre logs +3442 - Willow pyre logs +3443 - Willow pyre logs +3444 - Maple pyre logs +3445 - Maple pyre logs +3446 - Yew pyre logs +3447 - Yew pyre logs +3448 - Magic pyre logs +3449 - Magic pyre logs +3450 - Bronze key red +3451 - Bronze key brown +3452 - Bronze key crimson +3453 - Bronze key black +3454 - Bronze key purple +3455 - Steel key red +3456 - Steel key brown +3457 - Steel key crimson +3458 - Steel key black +3459 - Steel key purple +3460 - Black key red +3461 - Black key brown +3462 - Black key crimson +3463 - Black key black +3464 - Black key purple +3465 - Silver key red +3466 - Silver key brown +3467 - Silver key crimson +3468 - Silver key black +3469 - Silver key purple +3470 - Fine cloth +3471 - Fine cloth +3472 - Black plateskirt (t) +3473 - Black plateskirt (g) +3474 - Adam plateskirt (t) +3475 - Adam plateskirt (g) +3476 - Rune plateskirt (g) +3477 - Rune plateskirt (t) +3478 - Zamorak plateskirt +3479 - Saradomin skirt +3480 - Guthix plateskirt +3481 - Gilded platebody +3482 - Gilded platebody +3483 - Gilded platelegs +3484 - Gilded platelegs +3485 - Gilded plateskirt +3486 - Gilded full helm +3487 - Gilded full helm +3488 - Gilded kiteshield +3489 - Gilded kiteshield +3490 - Clue scroll +3491 - Clue scroll +3492 - Clue scroll +3493 - Clue scroll +3494 - Clue scroll +3495 - Clue scroll +3496 - Clue scroll +3497 - Clue scroll +3498 - Clue scroll +3499 - Clue scroll +3500 - Clue scroll +3501 - Clue scroll +3502 - Clue scroll +3503 - Clue scroll +3504 - Clue scroll +3505 - Clue scroll +3506 - Clue scroll +3507 - Clue scroll +3508 - Clue scroll +3509 - Clue scroll +3510 - Clue scroll +3511 - Casket +3512 - Clue scroll +3513 - Clue scroll +3514 - Clue scroll +3515 - Clue scroll +3516 - Clue scroll +3517 - Casket +3518 - Clue scroll +3519 - Casket +3520 - Clue scroll +3521 - Casket +3522 - Clue scroll +3523 - Casket +3524 - Clue scroll +3525 - Clue scroll +3526 - Clue scroll +3527 - Casket +3528 - Clue scroll +3529 - Casket +3530 - Clue scroll +3531 - Casket +3532 - Clue scroll +3533 - Casket +3534 - Clue scroll +3535 - Casket +3536 - Clue scroll +3537 - Casket +3538 - Clue scroll +3539 - Casket +3540 - Clue scroll +3541 - Casket +3542 - Clue scroll +3543 - Casket +3544 - Clue scroll +3545 - Casket +3546 - Clue scroll +3547 - Casket +3548 - Clue scroll +3549 - Casket +3550 - Clue scroll +3551 - Casket +3552 - Clue scroll +3553 - Casket +3554 - Clue scroll +3555 - Casket +3556 - Clue scroll +3557 - Casket +3558 - Clue scroll +3559 - Casket +3560 - Clue scroll +3561 - Casket +3562 - Clue scroll +3563 - Casket +3564 - Clue scroll +3565 - Puzzle box +3566 - Clue scroll +3567 - Puzzle box +3568 - Clue scroll +3569 - Puzzle box +3570 - Clue scroll +3571 - Puzzle box +3572 - Clue scroll +3573 - Clue scroll +3574 - Clue scroll +3575 - Clue scroll +3576 - Puzzle box +3577 - Clue scroll +3578 - Puzzle box +3579 - Clue scroll +3580 - Clue scroll +3581 - Casket +3582 - Clue scroll +3583 - Casket +3584 - Clue scroll +3585 - Casket +3586 - Clue scroll +3587 - Casket +3588 - Clue scroll +3589 - Casket +3590 - Clue scroll +3591 - Casket +3592 - Clue scroll +3593 - Casket +3594 - Clue scroll +3595 - Casket +3596 - Clue scroll +3597 - Casket +3598 - Clue scroll +3599 - Clue scroll +3600 - Casket +3601 - Clue scroll +3602 - Clue scroll +3603 - Casket +3604 - Clue scroll +3605 - Clue scroll +3606 - Key +3607 - Clue scroll +3608 - Key +3609 - Clue scroll +3610 - Clue scroll +3611 - Clue scroll +3612 - Clue scroll +3613 - Clue scroll +3614 - Clue scroll +3615 - Clue scroll +3616 - Clue scroll +3617 - Clue scroll +3618 - Clue scroll +3619 - Sliding piece +3620 - Sliding piece +3621 - Sliding piece +3622 - Sliding piece +3623 - Sliding piece +3624 - Sliding piece +3625 - Sliding piece +3626 - Sliding piece +3627 - Sliding piece +3628 - Sliding piece +3629 - Sliding piece +3630 - Sliding piece +3631 - Sliding piece +3632 - Sliding piece +3633 - Sliding piece +3634 - Sliding piece +3635 - Sliding piece +3636 - Sliding piece +3637 - Sliding piece +3638 - Sliding piece +3639 - Sliding piece +3640 - Sliding piece +3641 - Sliding piece +3642 - Sliding piece +3643 - Sliding piece +3644 - Sliding piece +3645 - Sliding piece +3646 - Sliding piece +3647 - Sliding piece +3648 - Sliding piece +3649 - Sliding piece +3650 - Sliding piece +3651 - Sliding piece +3652 - Sliding piece +3653 - Sliding piece +3654 - Sliding piece +3655 - Sliding piece +3656 - Sliding piece +3657 - Sliding piece +3658 - Sliding piece +3659 - Sliding piece +3660 - Sliding piece +3661 - Sliding piece +3662 - Sliding piece +3663 - Sliding piece +3664 - Sliding piece +3665 - Sliding piece +3666 - Sliding piece +3667 - Picture +799 - Not Existing +3472 - Black plateskirt (t) +3668 - Black plateskirt (t) +3473 - Black plateskirt (g) +3669 - Black plateskirt (g) +3474 - Adam plateskirt (t) +3670 - Adam plateskirt (t) +3475 - Adam plateskirt (g) +3671 - Adam plateskirt (g) +3476 - Rune plateskirt (g) +3672 - Rune plateskirt (g) +3477 - Rune plateskirt (t) +3673 - Rune plateskirt (t) +3478 - Zamorak plateskirt +3674 - Zamorak plateskirt +3479 - Saradomin skirt +3675 - Saradomin skirt +3480 - Guthix plateskirt +3676 - Guthix plateskirt +3485 - Gilded plateskirt +3677 - Gilded plateskirt +3678 - Flamtaer hammer +3679 - Picture +3680 - Picture +3681 - Picture +3682 - Picture +3683 - Picture +3684 - Picture +3685 - Picture +3686 - Fremennik +3687 - Not Existing +3688 - Unstrung lyre +3689 - Lyre +3690 - Enchanted lyre +3691 - Enchanted lyre(1) +3692 - Branch +3693 - Golden fleece +3694 - Golden wool +3695 - Pet rock +3696 - Hunters' talisman +3697 - Hunters' talisman +3698 - Exotic flower +3699 - Fremennik ballad +3700 - Sturdy boots +3701 - Tracking map +3702 - Custom bow string +3703 - Unusual fish +3704 - Sea fishing map +3705 - Weather forecast +3706 - Champions token +3707 - Legendary cocktail +3708 - Fiscal statement +3709 - Promissory note +3710 - Warriors' contract +3711 - Keg of beer +3712 - Low alcohol keg +3713 - Strange object +3714 - Lit strange object +3715 - Picture +3716 - Picture +3717 - Not Existing +3718 - Magnet +3719 - Thread +3720 - Pick +3721 - Ship toy +3722 - Full bucket +3723 - 4/5ths full bucket +3724 - 3/5ths full bucket +3725 - 2/5ths full bucket +3726 - 1/5ths full bucket +3727 - Empty bucket +3728 - Frozen bucket +3729 - Full jug +3730 - 2/3rds full jug +3731 - 1/3rds full jug +3732 - Empty jug +3733 - Frozen jug +3734 - Vase +3735 - Vase of water +3736 - Frozen vase +3737 - Vase lid +3738 - Sealed vase +3739 - Sealed vase +3740 - Sealed vase +3741 - Frozen key +3742 - Red herring +3743 - Red disk +3744 - Wooden disk +3745 - Seer's key +3746 - Sticky red goop +799 - Not Existing +3747 - Sticky red goop +3748 - Fremennik helm +3749 - Archer helm +3750 - Archer helm +3751 - Berserker helm +3752 - Berserker helm +3753 - Warrior helm +3754 - Warrior helm +3755 - Farseer helm +3756 - Farseer helm +3757 - Fremennik blade +3758 - Fremennik shield +3759 - Fremennik cloak +3760 - Fremennik cloak +3761 - Fremennik cloak +3762 - Fremennik cloak +3763 - Fremennik cloak +3764 - Fremennik cloak +3765 - Fremennik cloak +3766 - Fremennik cloak +3767 - Fremennik shirt +3768 - Fremennik shirt +3769 - Fremennik shirt +3770 - Fremennik shirt +3771 - Fremennik shirt +3772 - Fremennik shirt +3773 - Fremennik shirt +3774 - Fremennik shirt +3775 - Fremennik shirt +3776 - Fremennik shirt +3777 - Fremennik cloak +3778 - Fremennik cloak +3779 - Fremennik cloak +3780 - Fremennik cloak +3781 - Fremennik cloak +3782 - Fremennik cloak +3783 - Fremennik cloak +3784 - Fremennik cloak +3785 - Fremennik cloak +3786 - Fremennik cloak +3787 - Fremennik cloak +3788 - Fremennik cloak +3789 - Fremennik cloak +3790 - Fremennik cloak +3791 - Fremennik boots +3792 - Fremennik boots +3793 - Fremennik robe +3794 - Fremennik robe +3795 - Fremennik skirt +3796 - Fremennik skirt +3797 - Fremennik hat +3798 - Fremennik hat +3799 - Gloves +3800 - Gloves +3801 - Keg of beer +3802 - Keg of beer +3803 - Beer +3804 - Beer +3805 - Tankard +3806 - Tankard +3807 - Not Existing +3808 - Not Existing +3809 - Not Existing +3810 - Not Existing +3811 - Not Existing +3812 - Not Existing +3813 - Not Existing +3814 - Not Existing +3815 - Not Existing +3816 - Not Existing +3817 - Not Existing +3818 - Not Existing +3819 - Not Existing +3820 - Not Existing +3821 - Not Existing +3822 - Not Existing +3823 - Not Existing +3824 - Not Existing +3825 - Not Existing +3826 - Not Existing +3827 - Saradomin page 1 +3828 - Saradomin page 2 +3829 - Saradomin page 3 +3830 - Saradomin page 4 +3831 - Zamorak page 1 +3832 - Zamorak page 2 +3833 - Zamorak page 3 +3834 - Zamorak page 4 +3835 - Guthix page 1 +3836 - Guthix page 2 +3837 - Guthix page 3 +3838 - Guthix page 4 +3839 - Damaged book +3840 - Holy book +3841 - Damaged book +3842 - Unholy book +3843 - Damaged book +3844 - Book of balance +3845 - Journal +3846 - Diary +3847 - Manual +3848 - Lighthouse key +3849 - Rusty casket +3850 - Not Existing +3851 - Not Existing +1724 - Unholy symbol +3852 - Unholy symbol +3853 - Games necklace(8) +3854 - Games necklace(8) +3855 - Games necklace(7) +3856 - Games necklace(7) +3857 - Games necklace(6) +3858 - Games necklace(6) +3859 - Games necklace(5) +3860 - Games necklace(5) +3861 - Games necklace(4) +3862 - Games necklace(4) +3863 - Games necklace(3) +3864 - Games necklace(3) +3865 - Games necklace(2) +3866 - Games necklace(2) +3867 - Games necklace(1) +3868 - Games necklace(1) +3869 - Board game piece +3870 - Board game piece +3871 - Board game piece +3872 - Board game piece +3873 - Board game piece +3874 - Board game piece +3875 - Board game piece +3876 - Board game piece +3877 - Board game piece +3878 - Board game piece +3879 - Board game piece +3880 - Board game piece +3881 - Not Existing +3882 - Not Existing +3883 - Not Existing +3884 - Not Existing +3885 - Not Existing +3886 - Not Existing +3887 - Not Existing +3888 - Not Existing +3889 - Not Existing +3890 - Not Existing +3891 - Not Existing +3892 - Not Existing +3893 - Stool +3894 - Awful anthem +3895 - Good anthem +3896 - Treaty +3897 - Giant nib +3898 - Giant pen +3899 - Iron sickle +3900 - Picture +3901 - Ghrim's book +3902 - Picture +3903 - Picture +3904 - Sliding button +3905 - Not Existing +3906 - Sliding button +3907 - Not Existing +3908 - Sliding button +3909 - Not Existing +3910 - Sliding button +3911 - Not Existing +3912 - Sliding button +3913 - Not Existing +3914 - Sliding button +3915 - Not Existing +3916 - Sliding button +3917 - Not Existing +3918 - Sliding button +3919 - Not Existing +3920 - Sliding button +3921 - Not Existing +3922 - Sliding button +3923 - Not Existing +3924 - Sliding button +3925 - Not Existing +3926 - Sliding button +3927 - Not Existing +3928 - Sliding button +3929 - Not Existing +3930 - Sliding button +3931 - Not Existing +3932 - Sliding button +3933 - Not Existing +3934 - Sliding button +3935 - Not Existing +3936 - Sliding button +3937 - Not Existing +3938 - Sliding button +3939 - Not Existing +3940 - Sliding button +3941 - Not Existing +3942 - Sliding button +3943 - Not Existing +3944 - Sliding button +3945 - Not Existing +3946 - Sliding button +3947 - Not Existing +3948 - Sliding button +3949 - Not Existing +3950 - Sliding button +3951 - Not Existing +3952 - Sliding button +3953 - Not Existing +3954 - Sliding button +3955 - Not Existing +3956 - Sliding button +3957 - Not Existing +3958 - Sliding button +3959 - Not Existing +3960 - Sliding button +3961 - Not Existing +3962 - Sliding button +3963 - Not Existing +3964 - Sliding button +3965 - Not Existing +3966 - Sliding button +3967 - Not Existing +3968 - Sliding button +3969 - Not Existing +3970 - Sliding button +3971 - Not Existing +3972 - Sliding button +3973 - Not Existing +3974 - Sliding button +3975 - Not Existing +3976 - Sliding button +3977 - Not Existing +3978 - Sliding button +3979 - Not Existing +3980 - Sliding button +3981 - Not Existing +3982 - Sliding button +3983 - Not Existing +3984 - Sliding button +3985 - Not Existing +3986 - Sliding button +3987 - Not Existing +3988 - Sliding button +3989 - Not Existing +3990 - Sliding button +3991 - Not Existing +3992 - Sliding button +3993 - Not Existing +3994 - Sliding button +3995 - Not Existing +3996 - Sliding button +3997 - Not Existing +3998 - Sliding button +3999 - Not Existing +4000 - Picture +4001 - Hardy gout tuber +4002 - Spare controls +4003 - Picture +4004 - Gnome royal seal +4005 - Narnode's orders +4006 - Monkey dentures +4007 - Enchanted bar +4008 - Eye of gnome +4009 - Eye of gnome +4010 - Monkey magic +4011 - Picture +4012 - Monkey nuts +4013 - Picture +4014 - Monkey bar +4015 - Picture +4016 - Banana stew +4017 - Picture +4018 - Monkey wrench +4019 - Picture +4020 - M'amulet mould +4021 - M'speak amulet +4022 - M'speak amulet +4023 - Monkey talisman +4024 - Monkey greegree +4025 - Monkey greegree +4026 - Monkey greegree +4027 - Monkey greegree +4028 - Monkey greegree +4029 - Monkey greegree +4030 - Monkey greegree +4031 - Monkey greegree +4032 - Dummy +4033 - Monkey +4034 - Monkey skull +4035 - 10th squad sigil +4036 - Not Existing +4037 - Saradomin banner +799 - Not Existing +4038 - Saradomin banner +4039 - Zamorak banner +4040 - Zamorak banner +4041 - Hooded cloak +4042 - Hooded cloak +4043 - Rock +4044 - Rock +4045 - Explosive potion +4046 - Explosive potion +4047 - Climbing rope +4048 - Climbing rope +4049 - Bandages +4050 - Bandages +4051 - Toolkit +4052 - Toolkit +4053 - Barricade +4054 - Barricade +4055 - Castlewars manual +4056 - Not Existing +4057 - Not Existing +4058 - Not Existing +4059 - Not Existing +4060 - Not Existing +4061 - Not Existing +4062 - Not Existing +4063 - Not Existing +4064 - Not Existing +4065 - Not Existing +4066 - Not Existing +4067 - Castle wars ticket +4068 - Decorative sword +4069 - Decorative armour +4070 - Decorative armour +4071 - Decorative helm +4072 - Decorative shield +4073 - Damp tinderbox +4074 - Damp tinderbox +4075 - Glowing fungus +4076 - Picture +4077 - Crystal-mine key +4078 - Zealot's key +4079 - Yo-yo +4080 - Not Existing +4081 - Salve amulet +4082 - Salve shard +4083 - Sled +4084 - Sled +4085 - Wax +4086 - Trollweiss +4087 - Dragon platelegs +4088 - Dragon platelegs +4089 - Mystic hat +4090 - Mystic hat +4091 - Mystic robe top +4092 - Mystic robe top +4093 - Mystic robe bottom +4094 - Mystic robe bottom +4095 - Mystic gloves +4096 - Mystic gloves +4097 - Mystic boots +4098 - Mystic boots +4099 - Mystic hat +4100 - Mystic hat +4101 - Mystic robe top +4102 - Mystic robe top +4103 - Mystic robe bottom +4104 - Mystic robe bottom +4105 - Mystic gloves +4106 - Mystic gloves +4107 - Mystic boots +4108 - Mystic boots +4109 - Mystic hat +4110 - Mystic hat +4111 - Mystic robe top +4112 - Mystic robe top +4113 - Mystic robe bottom +4114 - Mystic robe bottom +4115 - Mystic gloves +4116 - Mystic gloves +4117 - Mystic boots +4118 - Mystic boots +4119 - Bronze boots +4120 - Bronze boots +4121 - Iron boots +4122 - Iron boots +4123 - Steel boots +4124 - Steel boots +4125 - Black boots +4126 - Black boots +4127 - Mithril boots +4128 - Mithril boots +4129 - Adamant boots +4130 - Adamant boots +4131 - Rune boots +4132 - Rune boots +4133 - Crawling hand +4134 - Cave crawler +4135 - Banshee +4136 - Rockslug +4137 - Cockatrice +4138 - Pyrefiend +4139 - Basilisk +4140 - Infernal mage +4141 - Bloodveld +4142 - Jelly +4143 - Turoth +4144 - Abberant spectre +4145 - Dust devil +4146 - Kurask +4147 - Gargoyle +4148 - Nechryael +4149 - Abyssal demon +4150 - Broad arrows +4151 - Abyssal whip +4152 - Abyssal whip +4153 - Granite maul +4154 - Granite maul +4155 - Enchanted gem +4156 - Mirror shield +4157 - Mirror shield +4158 - Leaf-bladed spear +4159 - Leaf-bladed spear +4160 - Broad arrow +4161 - Bag of salt +4162 - Rock hammer +4163 - Rock hammer +4164 - Facemask +4165 - Facemask +4166 - Earmuffs +4167 - Earmuffs +4168 - Nose peg +4169 - Nose peg +4170 - Slayer's staff +4171 - Slayer's staff +4172 - Broad arrows +4173 - Broad arrows +4174 - Broad arrows +4175 - Broad arrows +4176 - Not Existing +4177 - Picture +4178 - Abyssal whip +4179 - Stick +4180 - Dragon platelegs +4181 - Mouth grip +4182 - Goutweed +4183 - Star amulet +4184 - Cavern key +4185 - Tower key +4186 - Shed key +4187 - Marble amulet +4188 - Obsidian amulet +4189 - Garden cane +4190 - Garden brush +4191 - Extended brush +4192 - Extended brush +4193 - Extended brush +4194 - Torso +4195 - Arms +4196 - Legs +4197 - Decapitated head +4198 - Decapitated head +4199 - Pickled brain +4200 - Conductor mould +4201 - Conductor +4202 - Ring of charos +4203 - Journal +4204 - Letter +4205 - Consecration seed +4206 - Consecration seed +4207 - Crystal seed +4208 - Crystal seed +4209 - Cadarn lineage +4210 - Tinderbox +4211 - Elf crystal +4212 - New crystal bow +4213 - New crystal bow +4214 - Crystal bow full +4215 - Crystal bow 9/10 +4216 - Crystal bow 8/10 +4217 - Crystal bow 7/10 +4218 - Crystal bow 6/10 +4219 - Crystal bow 5/10 +4220 - Crystal bow 4/10 +4221 - Crystal bow 3/10 +4222 - Crystal bow 2/10 +4223 - Crystal bow 1/10 +4224 - New crystal shield +4225 - Crystal shield full +4226 - Crystal shield 9/10 +4227 - Crystal shield 8/10 +4228 - Crystal shield 7/10 +4229 - Crystal shield 6/10 +4230 - Crystal shield 5/10 +4231 - Crystal shield 4/10 +4232 - Crystal shield 3/10 +4233 - Crystal shield 2/10 +4234 - Crystal shield 1/10 +4235 - New crystal shield +4236 - Signed oak bow +4237 - Nettle-water +4238 - Puddle of slime +4239 - Nettle tea +4240 - Nettle tea +4241 - Nettles +4242 - Cup of tea +4243 - Cup of tea +4244 - Porcelain cup +4245 - Cup of tea +4246 - Cup of tea +4247 - Mystical robes +4248 - Book of haricanto +4249 - Translation manual +4250 - Ghostspeak amulet +4251 - Ectophial +4252 - Ectophial +4253 - Model ship +4254 - Model ship +4255 - Bonemeal +4256 - Bonemeal +4257 - Bonemeal +4258 - Bonemeal +4259 - Bonemeal +4260 - Bonemeal +4261 - Bonemeal +4262 - Bonemeal +4263 - Bonemeal +4264 - Bonemeal +4265 - Bonemeal +4266 - Bonemeal +4267 - Bonemeal +4268 - Bonemeal +4269 - Bonemeal +4270 - Bonemeal +4271 - Bonemeal +4272 - Bone key +4273 - Chest key +4274 - Map scrap +4275 - Map scrap +4276 - Map scrap +4277 - Treasure map +4278 - Ecto-token +4279 - Not Existing +4280 - Not Existing +4281 - Not Existing +4282 - Not Existing +4283 - Petition form +4284 - Bedsheet +4285 - Bedsheet +4286 - Bucket of slime +4287 - Raw beef +4288 - Raw beef +4289 - Raw chicken +4290 - Raw chicken +4291 - Cooked chicken +4292 - Cooked chicken +4293 - Cooked meat +4294 - Cooked meat +4295 - Female h.a.m. +4296 - Not Existing +4297 - Male h.a.m. +4298 - Ham shirt +4299 - Ham shirt +4300 - Ham robe +4301 - Ham robe +4302 - Ham hood +4303 - Ham hood +4304 - Ham cloak +4305 - Ham cloak +4306 - H.a.m logo +4307 - H.a.m logo +4308 - Gloves +4309 - Gloves +4310 - Boots +4311 - Boots +4312 - Not Existing +4313 - Crystal of seren +4314 - Tinderbox +4315 - Team-1 cape +4316 - Team-1 cape +4317 - Team-2 cape +4318 - Team-2 cape +4319 - Team-3 cape +4320 - Team-3 cape +4321 - Team-4 cape +4322 - Team-4 cape +4323 - Team-5 cape +4324 - Team-5 cape +4325 - Team-6 cape +4326 - Team-6 cape +4327 - Team-7 cape +4328 - Team-7 cape +4329 - Team-8 cape +4330 - Team-8 cape +4331 - Team-9 cape +4332 - Team-9 cape +4333 - Team-10 cape +4334 - Team-10 cape +4335 - Team-11 cape +4336 - Team-11 cape +4337 - Team-12 cape +4338 - Team-12 cape +4339 - Team-13 cape +4340 - Team-13 cape +4341 - Team-14 cape +4342 - Team-14 cape +4343 - Team-15 cape +4344 - Team-15 cape +4345 - Team-16 cape +4346 - Team-16 cape +4347 - Team-17 cape +4348 - Team-17 cape +4349 - Team-18 cape +4350 - Team-18 cape +4351 - Team-19 cape +4352 - Team-19 cape +4353 - Team-20 cape +4354 - Team-20 cape +4355 - Team-21 cape +4356 - Team-21 cape +4357 - Team-22 cape +4358 - Team-22 cape +4359 - Team-23 cape +4360 - Team-23 cape +4361 - Team-24 cape +4362 - Team-24 cape +4363 - Team-25 cape +4364 - Team-25 cape +4365 - Team-26 cape +4366 - Team-26 cape +4367 - Team-27 cape +4368 - Team-27 cape +4369 - Team-28 cape +4370 - Team-28 cape +4371 - Team-29 cape +4372 - Team-29 cape +4373 - Team-30 cape +4374 - Team-30 cape +4375 - Team-31 cape +4376 - Team-31 cape +4377 - Team-32 cape +4378 - Team-32 cape +4379 - Team-33 cape +4380 - Team-33 cape +4381 - Team-34 cape +4382 - Team-34 cape +4383 - Team-35 cape +4384 - Team-35 cape +4385 - Team-36 cape +4386 - Team-36 cape +4387 - Team-37 cape +4388 - Team-37 cape +4389 - Team-38 cape +4390 - Team-38 cape +4391 - Team-39 cape +4392 - Team-39 cape +4393 - Team-40 cape +4394 - Team-40 cape +4395 - Team-41 cape +4396 - Team-41 cape +4397 - Team-42 cape +4398 - Team-42 cape +4399 - Team-43 cape +4400 - Team-43 cape +4401 - Team-44 cape +4402 - Team-44 cape +4403 - Team-45 cape +4404 - Team-45 cape +4405 - Team-46 cape +4406 - Team-46 cape +4407 - Team-47 cape +4408 - Team-47 cape +4409 - Team-48 cape +4410 - Team-48 cape +4411 - Team-49 cape +4412 - Team-49 cape +4413 - Team-50 cape +4414 - Team-50 cape +4415 - Blunt axe +4416 - Herbal tincture +4417 - Guthix rest(4) +4418 - Guthix rest(4) +4419 - Guthix rest(3) +4420 - Guthix rest(3) +4421 - Guthix rest(2) +4422 - Guthix rest(2) +4423 - Guthix rest(1) +4424 - Guthix rest(1) +4425 - Stodgy mattress +4426 - Comfy mattress +4427 - Iron oxide +4428 - Animate rock scroll +4429 - Broken vane part +4430 - Directionals +4431 - Broken vane part +4432 - Ornament +4433 - Broken vane part +4434 - Weathervane pillar +4435 - Weather report +4436 - Airtight pot +4437 - Airtight pot +4438 - Unfired pot lid +4439 - Unfired pot lid +4440 - Pot lid +4441 - Pot lid +4442 - Breathing salts +4443 - Chicken cage +4444 - Sharpened axe +4445 - Red mahogany log +4446 - Steel key ring +4447 - Antique lamp +4448 - Not Existing +4449 - Not Existing +4450 - Not Existing +4451 - Not Existing +4452 - Not Existing +4453 - Not Existing +4454 - Not Existing +4455 - Not Existing +4456 - Bowl of hot water +4457 - Bowl of hot water +4458 - Cup of water +4459 - Cup of water +4460 - Cup of hot water +4461 - Cup of hot water +4462 - Ruined herb tea +4463 - Ruined herb tea +4464 - Herb tea mix +4465 - Herb tea mix +4466 - Herb tea mix +4467 - Herb tea mix +4468 - Herb tea mix +4469 - Herb tea mix +4470 - Herb tea mix +4471 - Herb tea mix +4472 - Herb tea mix +4473 - Herb tea mix +4474 - Herb tea mix +4475 - Herb tea mix +4476 - Herb tea mix +4477 - Herb tea mix +4478 - Herb tea mix +4479 - Herb tea mix +4480 - Herb tea mix +4481 - Herb tea mix +4482 - Herb tea mix +4483 - Herb tea mix +4484 - Safety guarantee +4485 - White pearl +4486 - White pearl seed +4487 - Half a rock +4488 - Corpse of woman +4489 - Asleif's necklace +4490 - Mud +4491 - Tinderbox +4492 - Muddy rock +4493 - Tinderbox +4494 - Pole +4495 - Pole +4496 - Broken pole +4497 - Tinderbox +4498 - Rope +4499 - Rope +4500 - Pole +4501 - Pole +4502 - Bearhead +4503 - Decorative sword +4504 - Decorative armour +4505 - Decorative armour +4506 - Decorative helm +4507 - Decorative shield +4508 - Decorative sword +4509 - Decorative armour +4510 - Decorative armour +4511 - Decorative helm +4512 - Decorative shield +4513 - Castlewars hood +4514 - Castlewars cloak +4515 - Castlewars hood +4516 - Castlewars cloak +4517 - Giant frog legs +4518 - Giant frog legs +4519 - Swamp wallbeast +4520 - Swamp cave slime +4521 - Swamp cave bug +4522 - Oil lamp +4523 - Oil lamp +4524 - Oil lamp +4525 - Oil lamp +4526 - Oil lamp +4527 - Candle lantern +4528 - Candle lantern +4529 - Candle lantern +4530 - Candle lantern +4531 - Candle lantern +4532 - Candle lantern +4533 - Candle lantern +4534 - Candle lantern +4535 - Oil lantern +4536 - Oil lantern +4537 - Oil lantern +4538 - Oil lantern +4539 - Oil lantern +4540 - Oil lantern frame +4541 - Oil lantern frame +4542 - Lantern lens +4543 - Lantern lens +4544 - Bullseye lantern +4545 - Bullseye lantern +4546 - Bullseye lantern +4547 - Bullseye lantern +4548 - Bullseye lantern +4549 - Bullseye lantern +4550 - Bullseye lantern +4551 - Spiny helmet +4552 - Spiny helmet +4553 - Not Existing +4554 - Not Existing +4555 - Not Existing +4556 - Not Existing +4557 - Not Existing +4558 - Blue sweets +4559 - Deep blue sweets +4560 - White sweets +4561 - Purple sweets +4562 - Red sweets +4563 - Green sweets +4564 - Pink sweets +4565 - Basket of eggs +4566 - Rubber chicken +4567 - Gold helmet +4568 - Dwarven lore +4569 - Book page 1 +4570 - Book page 2 +4571 - Book page 3 +4572 - Pages +4573 - Pages +4574 - Base schematics +4575 - Schematic +4576 - Schematics +4577 - Schematics +4578 - Schematic +4579 - Cannon ball +4580 - Black spear +4581 - Black spear +4582 - Black spear(p) +4583 - Black spear(p) +4584 - Black spear(kp) +4585 - Dragon plateskirt +4586 - Dragon plateskirt +4587 - Dragon scimitar +4588 - Dragon scimitar +4589 - Keys +4590 - Jewels +4591 - Karidian headpiece +4592 - Picture +4593 - Fake beard +4594 - Picture +4595 - Karidian disguise +4596 - Picture +4597 - Note +4598 - Note +4599 - Oak-blackjack +4600 - Willow-blackjack +4601 - Ugthanki dung +4602 - Ugthanki dung +4603 - Receipt +4604 - Hag's poison +4605 - Snake charm +4606 - Snake basket +4607 - Snake basket full +4608 - Super kebab +4609 - Super kebab +4610 - Red hot sauce +4611 - Desert disguise +4612 - Willow-blackjack +4613 - Spinning plate +4614 - Broken plate +4615 - Letter +4616 - Varmen's notes +4617 - Display cabinet key +4618 - Statuette +4619 - Strange implement +4620 - Black mushroom +4621 - Phoenix feather +4622 - Black mushroom ink +4623 - Phoenix quill pen +4624 - Golem program +4625 - Bandit +4626 - Not Existing +4627 - Bandit's brew +4628 - Bandit's brew +4629 - Not Existing +4630 - Not Existing +4631 - Not Existing +4632 - Not Existing +4633 - Not Existing +4634 - Not Existing +4635 - Not Existing +4636 - Not Existing +4637 - Not Existing +4638 - Not Existing +4639 - Not Existing +4640 - Not Existing +4641 - Not Existing +4642 - Not Existing +4643 - Not Existing +4644 - Not Existing +4645 - Not Existing +4646 - Not Existing +4647 - Not Existing +4648 - Not Existing +4649 - Not Existing +4650 - Not Existing +4651 - Not Existing +4652 - Not Existing +4653 - Fire +4654 - Etchings +4655 - Translation +4656 - Warm key +4657 - Ring of visibility +4658 - Silver pot +4659 - Blessed pot +4660 - Silver pot +4661 - Blessed pot +4662 - Silver pot +4663 - Blessed pot +4664 - Silver pot +4665 - Blessed pot +4666 - Silver pot +4667 - Blessed pot +4668 - Garlic powder +4669 - Tinderbox +4670 - Blood diamond +4671 - Ice diamond +4672 - Smoke diamond +4673 - Shadow diamond +4674 - Gilded cross +4675 - Ancient staff +4676 - Ancient staff +4677 - Catspeak amulet +4678 - Canopic jar +4679 - Canopic jar +4680 - Canopic jar +4681 - Canopic jar +4682 - Holy symbol +4683 - Unholy symbol +4684 - Linen +4685 - Picture +4686 - Embalming manual +4687 - Bucket of sap +4688 - Tinderbox +4689 - Pile of salt +4690 - Tinderbox +4691 - Sphinx's token +4692 - Gold leaf +4693 - Full bucket +4694 - Steam rune +4695 - Mist rune +4696 - Dust rune +4697 - Smoke rune +4698 - Mud rune +4699 - Lava rune +4700 - Sapphire lantern +4701 - Sapphire lantern +4702 - Sapphire lantern +4703 - Magic stone +4704 - Stone bowl +4705 - Not Existing +4706 - Not Existing +4707 - Crumbling tome +4708 - Ahrim's hood +4709 - Ahrim's hood +4710 - Ahrim's staff +4711 - Ahrim's staff +4712 - Ahrim's robetop +4713 - Ahrim's robetop +4714 - Ahrim's robeskirt +4715 - Ahrim's robeskirt +4716 - Dharok's helm +4717 - Dharok's helm +4718 - Dharok's greataxe +4719 - Dharok's greataxe +4720 - Dharok's platebody +4721 - Dharok's platebody +4722 - Dharok's platelegs +4723 - Dharok's platelegs +4724 - Guthan's helm +4725 - Guthan's helm +4726 - Guthan's warspear +4727 - Guthan's warspear +4728 - Guthan's platebody +4729 - Guthan's platebody +4730 - Guthan's chainskirt +4731 - Guthan's chainskirt +4732 - Karil's coif +4733 - Karil's coif +4734 - Karil's crossbow +4735 - Karil's crossbow +4736 - Karil's leathertop +4737 - Karil's leathertop +4738 - Karil's leatherskirt +4739 - Karil's leatherskirt +4740 - Bolt rack +4741 - Not Existing +4742 - Not Existing +4743 - Not Existing +4744 - Not Existing +4745 - Torag's helm +4746 - Torag's helm +4747 - Torag's hammers +4748 - Torag's hammers +4749 - Torag's platebody +4750 - Torag's platebody +4751 - Torag's platelegs +4752 - Torag's platelegs +4753 - Verac's helm +4754 - Verac's helm +4755 - Verac's flail +4756 - Verac's flail +4757 - Verac's brassard +4758 - Verac's brassard +4759 - Verac's plateskirt +4760 - Verac's plateskirt +4761 - Not Existing +4762 - Not Existing +4763 - Not Existing +4764 - Not Existing +4765 - Not Existing +4766 - Not Existing +4767 - Not Existing +4768 - Not Existing +4769 - Not Existing +4770 - Not Existing +4771 - Not Existing +4772 - Not Existing +4773 - Bronze brutal +4774 - Not Existing +4775 - Not Existing +4776 - Not Existing +4777 - Not Existing +4778 - Iron brutal +4779 - Not Existing +4780 - Not Existing +4781 - Not Existing +4782 - Not Existing +4783 - Steel brutal +4784 - Not Existing +4785 - Not Existing +4786 - Not Existing +4787 - Not Existing +4788 - Black brutal +4789 - Not Existing +4790 - Not Existing +4791 - Not Existing +4792 - Not Existing +4793 - Mithril brutal +4794 - Not Existing +4795 - Not Existing +4796 - Not Existing +4797 - Not Existing +4798 - Adamant brutal +4799 - Not Existing +4800 - Not Existing +4801 - Not Existing +4802 - Not Existing +4803 - Rune brutal +4804 - Not Existing +4805 - Not Existing +4806 - Not Existing +4807 - Not Existing +4808 - Black prism +4809 - Torn page +4810 - Ruined backpack +4811 - Dragon inn tankard +4812 - Zogre bones +4813 - Zogre bones +4814 - Sithik portrait +4815 - Sithik portrait +4816 - Signed portrait +4817 - Book of portraiture +4818 - Ogre artefact +4819 - Bronze nails +4820 - Iron nails +4821 - Black nails +4822 - Mithril nails +4823 - Adamantite nails +4824 - Rune nails +4825 - Unstrung comp bow +4826 - Unstrung comp bow +4827 - Comp ogre bow +4828 - Comp ogre bow +4829 - Book of 'h.a.m' +4830 - Fayrg bones +4831 - Fayrg bones +4832 - Raurg bones +4833 - Raurg bones +4834 - Ourg bones +4835 - Ourg bones +4836 - Strange potion +4837 - Necromancy book +4838 - Cup of tea +4839 - Ogre gate key +4840 - Rogue's purse potion(unf) +4841 - Rogue's purse potion(unf) +4842 - Relicym's balm(4) +4843 - Relicym's balm(4) +4844 - Relicym's balm(3) +4845 - Relicym's balm(3) +4846 - Relicym's balm(2) +4847 - Relicym's balm(2) +4848 - Relicym's balm(1) +4849 - Relicym's balm(1) +4850 - Ogre coffin key +4851 - Ogre coffin key +4852 - Bonemeal +4853 - Bonemeal +4854 - Bonemeal +4855 - Bonemeal +4856 - Ahrim's hood 100 +4857 - Ahrim's hood 75 +4858 - Ahrim's hood 50 +4859 - Ahrim's hood 25 +4860 - Ahrim's hood 0 +4861 - Ahrim's hood 0 +4862 - Ahrim's staff 100 +4863 - Ahrim's staff 75 +4864 - Ahrim's staff 50 +4865 - Ahrim's staff 25 +4866 - Ahrim's staff 0 +4867 - Ahrim's staff 0 +4868 - Ahrim's top 100 +4869 - Ahrim's top 75 +4870 - Ahrim's top 50 +4871 - Ahrim's top 25 +4872 - Ahrim's top 0 +4873 - Ahrim's top 0 +4874 - Ahrim's skirt 100 +4875 - Ahrim's skirt 75 +4876 - Ahrim's skirt 50 +4877 - Ahrim's skirt 25 +4878 - Ahrim's skirt 0 +4879 - Ahrim's skirt 0 +4880 - Dharok's helm 100 +4881 - Dharok's helm 75 +4882 - Dharok's helm 50 +4883 - Dharok's helm 25 +4884 - Dharok's helm 0 +4885 - Dharok's helm 0 +4886 - Dharok's axe 100 +4887 - Dharok's axe 75 +4888 - Dharok's axe 50 +4889 - Dharok's axe 25 +4890 - Dharok's axe 0 +4891 - Dharok's axe 0 +4892 - Dharok's body 100 +4893 - Dharok's body 75 +4894 - Dharok's body 50 +4895 - Dharok's body 25 +4896 - Dharok's body 0 +4897 - Dharok's body 0 +4898 - Dharok's legs 100 +4899 - Dharok's legs 75 +4900 - Dharok's legs 50 +4901 - Dharok's legs 25 +4902 - Dharok's legs 0 +4903 - Dharok's legs 0 +4904 - Guthan's helm 100 +4905 - Guthan's helm 75 +4906 - Guthan's helm 50 +4907 - Guthan's helm 25 +4908 - Guthan's helm 0 +4909 - Guthan's helm 0 +4910 - Guthan's spear 100 +4911 - Guthan's spear 75 +4912 - Guthan's spear 50 +4913 - Guthan's spear 25 +4914 - Guthan's spear 0 +4915 - Guthan's spear 0 +4916 - Guthan's body 100 +4917 - Guthan's body 75 +4918 - Guthan's body 50 +4919 - Guthan's body 25 +4920 - Guthan's body 0 +4921 - Guthan's body 0 +4922 - Guthan's skirt 100 +4923 - Guthan's skirt 75 +4924 - Guthan's skirt 50 +4925 - Guthan's skirt 25 +4926 - Guthan's skirt 0 +4927 - Guthan's skirt 0 +4928 - Karil's co if 100 +4929 - Karil's co if 75 +4930 - Karil's co if 50 +4931 - Karil's co if 25 +4932 - Karil's co if 0 +4933 - Karil's co if 0 +4934 - Karil's x-bow 100 +4935 - Karil's x-bow 75 +4936 - Karil's x-bow 50 +4937 - Karil's x-bow 25 +4938 - Karil's x-bow 0 +4939 - Karil's x-bow 0 +4940 - Karil's top 100 +4941 - Karil's top 75 +4942 - Karil's top 50 +4943 - Karil's top 25 +4944 - Karil's top 0 +4945 - Karil's top 0 +4946 - Karil's skirt 100 +4947 - Karil's skirt 75 +4948 - Karil's skirt 50 +4949 - Karil's skirt 25 +4950 - Karil's skirt 0 +4951 - Karil's skirt 0 +4952 - Torag's helm 100 +4953 - Torag's helm 75 +4954 - Torag's helm 50 +4955 - Torag's helm 25 +4956 - Torag's helm 0 +4957 - Torag's helm 0 +4958 - Torag's hammer 100 +4959 - Torag's hammer 75 +4960 - Torag's hammer 50 +4961 - Torag's hammer 25 +4962 - Torag's hammer 0 +4963 - Torag's hammer 0 +4964 - Torag's body 100 +4965 - Torag's body 75 +4966 - Torag's body 50 +4967 - Torag's body 25 +4968 - Torag's body 0 +4969 - Torag's body 0 +4970 - Torag's legs 100 +4971 - Torag's legs 75 +4972 - Torag's legs 50 +4973 - Torag's legs 25 +4974 - Torag's legs 0 +4975 - Torag's legs 0 +4976 - Verac's helm 100 +4977 - Verac's helm 75 +4978 - Verac's helm 50 +4979 - Verac's helm 25 +4980 - Verac's helm 0 +4981 - Verac's helm 0 +4982 - Verac's flail 100 +4983 - Verac's flail 75 +4984 - Verac's flail 50 +4985 - Verac's flail 25 +4986 - Verac's flail 0 +4987 - Verac's flail 0 +4988 - Verac's top 100 +4989 - Verac's top 75 +4990 - Verac's top 50 +4991 - Verac's top 25 +4992 - Verac's top 0 +4993 - Verac's top 0 +4994 - Verac's skirt 100 +4995 - Verac's skirt 75 +4996 - Verac's skirt 50 +4997 - Verac's skirt 25 +4998 - Verac's skirt 0 +4999 - Verac's skirt 0 +5000 - Not Existing +5001 - Raw cave eel +5002 - Burnt cave eel +5003 - Cave eel +5004 - Frog spawn +5005 - Raw cave eel +5006 - Burnt cave eel +5007 - Cave eel +5008 - Brooch +5009 - Goblin symbol book +5010 - Key +5011 - Silverware +5012 - Peace treaty +5013 - Mining helmet +5014 - Mining helmet +5015 - Mining helmet +5016 - Bone spear +5017 - Bone spear +5018 - Bone club +5019 - Bone club +5020 - Minecart ticket +5021 - Minecart ticket +5022 - Minecart ticket +5023 - Minecart ticket +5024 - Woven top +5025 - Woven top +5026 - Woven top +5027 - Woven top +5028 - Woven top +5029 - Woven top +5030 - Shirt +5031 - Shirt +5032 - Shirt +5033 - Shirt +5034 - Shirt +5035 - Shirt +5036 - Trousers +5037 - Trousers +5038 - Trousers +5039 - Trousers +5040 - Trousers +5041 - Trousers +5042 - Shorts +5043 - Shorts +5044 - Shorts +5045 - Shorts +5046 - Shorts +5047 - Shorts +5048 - Skirt +5049 - Skirt +5050 - Skirt +5051 - Skirt +5052 - Skirt +5053 - Skirt +5054 - Dwarf +5055 - Dwarf +5056 - Dwarven battleaxe +5057 - Dwarven battleaxe +5058 - Dwarven battleaxe +5059 - Dwarven battleaxe +5060 - Dwarven battleaxe +5061 - Dwarven battleaxe +5062 - Left boot +5063 - Right boot +5064 - Exquisite boots +5065 - Book on costumes +5066 - Meeting notes +5067 - Exquisite clothes +5068 - Master farmer +5069 - Not Existing +5070 - Bird's nest +5071 - Bird's nest +5072 - Bird's nest +5073 - Bird's nest +5074 - Bird's nest +5075 - Bird's nest +5076 - Bird's egg +5077 - Bird's egg +5078 - Bird's egg +5079 - Not Existing +5080 - Not Existing +5081 - Not Existing +5082 - Not Existing +5083 - Not Existing +5084 - Not Existing +5085 - Not Existing +5086 - Not Existing +5087 - Not Existing +5088 - Not Existing +5089 - Not Existing +5090 - Not Existing +5091 - Not Existing +5092 - Not Existing +5093 - Not Existing +5094 - Not Existing +5095 - Not Existing +5096 - Marigold seed +5097 - Rosemary seed +5098 - Nasturtium seed +5099 - Woad seed +5100 - Limpwurt seed +5101 - Redberry seed +5102 - Cadavaberry seed +5103 - Dwellberry seed +5104 - Jangerberry seed +5105 - Whiteberry seed +5106 - Poison ivy seed +5107 - Not Existing +5108 - Not Existing +5109 - Not Existing +5110 - Not Existing +5111 - Not Existing +5112 - Not Existing +5113 - Not Existing +5114 - Not Existing +5115 - Not Existing +5116 - Not Existing +5117 - Not Existing +5118 - Not Existing +5119 - Not Existing +5120 - Not Existing +5121 - Not Existing +5122 - Not Existing +5123 - Not Existing +5124 - Not Existing +5125 - Not Existing +5126 - Not Existing +5127 - Not Existing +5128 - Not Existing +5129 - Not Existing +5130 - Not Existing +5131 - Not Existing +5132 - Not Existing +5133 - Not Existing +5134 - Not Existing +5135 - Not Existing +5136 - Not Existing +5137 - Not Existing +5138 - Not Existing +5139 - Not Existing +5140 - Not Existing +5141 - Not Existing +5142 - Not Existing +5143 - Not Existing +5144 - Not Existing +5145 - Not Existing +5146 - Not Existing +5147 - Not Existing +5148 - Not Existing +5149 - Not Existing +5150 - Not Existing +5151 - Not Existing +5152 - Not Existing +5153 - Not Existing +5154 - Not Existing +5155 - Not Existing +5156 - Not Existing +5157 - Not Existing +5158 - Not Existing +5159 - Not Existing +5160 - Not Existing +5161 - Not Existing +5162 - Not Existing +5163 - Not Existing +5164 - Not Existing +5165 - Not Existing +5166 - Not Existing +5167 - Not Existing +5168 - Not Existing +5169 - Not Existing +5170 - Not Existing +5171 - Seeds +5172 - Not Existing +5173 - Not Existing +5174 - Not Existing +5175 - Not Existing +5176 - Not Existing +5177 - Not Existing +5178 - Not Existing +5179 - Not Existing +5180 - Not Existing +5181 - Not Existing +5182 - Not Existing +5183 - Not Existing +5184 - Not Existing +5185 - Not Existing +5186 - Not Existing +5187 - Not Existing +5188 - Not Existing +5189 - Not Existing +5190 - Not Existing +5191 - Not Existing +5192 - Not Existing +5193 - Not Existing +5194 - Not Existing +5195 - Not Existing +5196 - Not Existing +5197 - Not Existing +5198 - Not Existing +5199 - Not Existing +5200 - Not Existing +5201 - Not Existing +5202 - Not Existing +5203 - Not Existing +5204 - Not Existing +5205 - Not Existing +5206 - Not Existing +5207 - Not Existing +5208 - Not Existing +5209 - Not Existing +5210 - Not Existing +5211 - Not Existing +5212 - Not Existing +5213 - Not Existing +5214 - Not Existing +5215 - Not Existing +5216 - Not Existing +5217 - Not Existing +5218 - Not Existing +5219 - Not Existing +5220 - Not Existing +5221 - Not Existing +5222 - Not Existing +5223 - Not Existing +5224 - Not Existing +5225 - Not Existing +5226 - Not Existing +5227 - Not Existing +5228 - Not Existing +5229 - Not Existing +5230 - Not Existing +5231 - Not Existing +5232 - Not Existing +5233 - Not Existing +5234 - Not Existing +5235 - Not Existing +5236 - Not Existing +5237 - Not Existing +5238 - Not Existing +5239 - Not Existing +5240 - Not Existing +5241 - Not Existing +5242 - Not Existing +5243 - Not Existing +5244 - Not Existing +5245 - Not Existing +5246 - Not Existing +5247 - Not Existing +5248 - Not Existing +5249 - Not Existing +5250 - Not Existing +5251 - Not Existing +5252 - Not Existing +5253 - Not Existing +5254 - Not Existing +5255 - Not Existing +5256 - Not Existing +5257 - Not Existing +5258 - Not Existing +5259 - Not Existing +5260 - Not Existing +5261 - Not Existing +5262 - Not Existing +5263 - Not Existing +5264 - Not Existing +5265 - Not Existing +5266 - Not Existing +5267 - Not Existing +5268 - Not Existing +5269 - Not Existing +5270 - Not Existing +5271 - Not Existing +5272 - Not Existing +5273 - Not Existing +5274 - Not Existing +5275 - Not Existing +5276 - Not Existing +5277 - Not Existing +5278 - Not Existing +5279 - Not Existing +5280 - Cactus seed +5281 - Belladonna seed +5282 - Mushroom spore +5283 - Apple tree seed +5284 - Banana tree seed +5285 - Orange tree seed +5286 - Curry tree seed +5287 - Pineapple seed +5288 - Papaya tree seed +5289 - Palm tree seed +5290 - Calquat tree seed +5291 - Guam seed +5292 - Marrentill seed +5293 - Tarromin seed +5294 - Harralander seed +5295 - Ranarr seed +5296 - Toadflax seed +5297 - Irit seed +5298 - Avantoe seed +5299 - Kwuarm seed +5300 - Snapdragon seed +5301 - Cadantine seed +5302 - Lantadyme seed +5303 - Dwarf weed seed +5304 - Torstol seed +5305 - Barley seed +5306 - Jute seed +5307 - Hammerstone seed +5308 - Asgarnian seed +5309 - Yanillian seed +5310 - Krandorian seed +5311 - Wildblood seed +5312 - Acorn +5313 - Willow seed +5314 - Maple seed +5315 - Yew seed +5316 - Magic seed +5317 - Spirit seed +5318 - Potato seed +5319 - Onion seed +5320 - Sweetcorn seed +5321 - Watermelon seed +5322 - Tomato seed +5323 - Strawberry seed +5324 - Cabbage seed +5325 - Gardening trowel +799 - Not Existing +5326 - Gardening trowel +5327 - Spade handle +5328 - Spade head +5329 - Secateurs +5330 - Secateurs +5331 - Watering can +5332 - Watering can +5333 - Watering can(1) +5334 - Watering can(2) +5335 - Watering can(3) +5336 - Watering can(4) +5337 - Watering can(5) +5338 - Watering can(6) +5339 - Watering can(7) +5340 - Watering can(8) +5341 - Rake +5342 - Rake +5343 - Seed dibber +5344 - Seed dibber +5345 - Gardening boots +5346 - Gardening boots +5347 - Rake handle +5348 - Rake head +5349 - Not Existing +5350 - Plant pot +5351 - Plant pot +5352 - Unfired plant pot +5353 - Unfired plant pot +5354 - Plant pot +5355 - Plant pot +5356 - Plant pot +5357 - Plant pot +5358 - Oak seedling +5359 - Willow seedling +5360 - Maple seedling +5361 - Yew seedling +5362 - Magic seedling +5363 - Spirit seedling +5364 - Oak seedling +5365 - Willow seedling +5366 - Maple seedling +5367 - Yew seedling +5368 - Magic seedling +5369 - Spirit seedling +5370 - Oak sapling +5371 - Willow sapling +5372 - Maple sapling +5373 - Yew sapling +5374 - Magic sapling +5375 - Spirit sapling +5376 - Basket +5377 - Basket +5378 - Apples(1) +5379 - Apples(1) +5380 - Apples(2) +5381 - Apples(2) +5382 - Apples(3) +5383 - Apples(3) +5384 - Apples(4) +5385 - Apples(4) +5386 - Apples(5) +5387 - Apples(5) +5388 - Oranges(1) +5389 - Oranges(1) +5390 - Oranges(2) +5391 - Oranges(2) +5392 - Oranges(3) +5393 - Oranges(3) +5394 - Oranges(4) +5395 - Oranges(4) +5396 - Oranges(5) +5397 - Oranges(5) +5398 - Strawberries(1) +5399 - Strawberries(1) +5400 - Strawberries(2) +5401 - Strawberries(2) +5402 - Strawberries(3) +5403 - Strawberries(3) +5404 - Strawberries(4) +5405 - Strawberries(4) +5406 - Strawberries(5) +5407 - Strawberries(5) +5408 - Bananas(1) +5409 - Bananas(1) +5410 - Bananas(2) +5411 - Bananas(2) +5412 - Bananas(3) +5413 - Bananas(3) +5414 - Bananas(4) +5415 - Bananas(4) +5416 - Bananas(5) +5417 - Bananas(5) +5418 - Empty sack +5419 - Empty sack +5420 - Potatoes(1) +5421 - Potatoes(1) +5422 - Potatoes(2) +5423 - Potatoes(2) +5424 - Potatoes(3) +5425 - Potatoes(3) +5426 - Potatoes(4) +5427 - Potatoes(4) +5428 - Potatoes(5) +5429 - Potatoes(5) +5430 - Potatoes(6) +5431 - Potatoes(6) +5432 - Potatoes(7) +5433 - Potatoes(7) +5434 - Potatoes(8) +5435 - Potatoes(8) +5436 - Potatoes(9) +5437 - Potatoes(9) +5438 - Potatoes(10) +5439 - Potatoes(10) +5440 - Onions(1) +5441 - Onions(1) +5442 - Onions(2) +5443 - Onions(2) +5444 - Onions(3) +5445 - Onions(3) +5446 - Onions(4) +5447 - Onions(4) +5448 - Onions(5) +5449 - Onions(5) +5450 - Onions(6) +5451 - Onions(6) +5452 - Onions(7) +5453 - Onions(7) +5454 - Onions(8) +5455 - Onions(8) +5456 - Onions(9) +5457 - Onions(9) +5458 - Onions(10) +5459 - Onions(10) +5460 - Cabbages(1) +5461 - Cabbages(1) +5462 - Cabbages(2) +5463 - Cabbages(2) +5464 - Cabbages(3) +5465 - Cabbages(3) +5466 - Cabbages(4) +5467 - Cabbages(4) +5468 - Cabbages(5) +5469 - Cabbages(5) +5470 - Cabbages(6) +5471 - Cabbages(6) +5472 - Cabbages(7) +5473 - Cabbages(7) +5474 - Cabbages(8) +5475 - Cabbages(8) +5476 - Cabbages(9) +5477 - Cabbages(9) +5478 - Cabbages(10) +5479 - Cabbages(10) +5480 - Apple seedling +5481 - Banana seedling +5482 - Orange seedling +5483 - Curry seedling +5484 - Pineapple seedling +5485 - Papaya seedling +5486 - Palm seedling +5487 - Calquat seedling +5488 - Apple seedling +5489 - Banana seedling +5490 - Orange seedling +5491 - Curry seedling +5492 - Pineapple seedling +5493 - Papaya seedling +5494 - Palm seedling +5495 - Calquat seedling +5496 - Apple sapling +5497 - Banana sapling +5498 - Orange sapling +5499 - Curry sapling +5500 - Pineapple sapling +5501 - Papaya sapling +5502 - Palm sapling +5503 - Calquat sapling +5504 - Strawberry +5505 - Strawberry +5506 - Old man's message +5507 - Strange book +5508 - Book of folklore +5509 - Small pouch +5510 - Medium pouch +5511 - Medium pouch +5512 - Large pouch +5513 - Large pouch +5514 - Giant pouch +5515 - Giant pouch +5516 - Elemental talisman +5517 - Elemental talisman +5518 - Scrying orb +5519 - Scrying orb +5520 - Abyssal book +5521 - Binding necklace +5522 - Binding necklace +5523 - Tiara mould +5524 - Tiara mould +5525 - Tiara +5526 - Tiara +5527 - Air tiara +5528 - Air tiara +5529 - Mind tiara +5530 - Mind tiara +5531 - Water tiara +5532 - Water tiara +5533 - Body tiara +5534 - Body tiara +5535 - Earth tiara +5536 - Earth tiara +5537 - Fire tiara +5538 - Fire tiara +5539 - Cosmic tiara +5540 - Cosmic tiara +5541 - Nature tiara +5542 - Nature tiara +5543 - Chaos tiara +5544 - Chaos tiara +5545 - Law tiara +5546 - Law tiara +5547 - Death tiara +5548 - Death tiara +5549 - Blood tiara +5550 - Blood tiara +5551 - Soul tiara +5552 - Soul tiara +5553 - Rogue top +5554 - Rogue mask +5555 - Rogue trousers +5556 - Rogue gloves +5557 - Rogue boots +5558 - Rogue kit +5559 - Flash powder +5560 - Stethoscope +5561 - Mystic jewel +5562 - Picture +5563 - Picture +5564 - Picture +5565 - Picture +5566 - Picture +5567 - Picture +5568 - Picture +5569 - Picture +5570 - Picture +5571 - Picture +5572 - Dial +5573 - Not Existing +5574 - Initiate sallet +5575 - Initiate hauberk +5576 - Initiate cuisse +5577 - Cupric sulphate +5578 - Acetic acid +5579 - Gypsum +5580 - Sodium chloride +5581 - Nitrous oxide +5582 - Vial of liquid +5583 - Tin ore powder +5584 - Cupric ore powder +5585 - Bronze key +5586 - Metal spade +5587 - Metal spade +5588 - Alchemical notes +5589 - ??? mixture +5590 - ??? mixture +5591 - ??? mixture +5592 - Tin +5593 - Tin +5594 - Tin +5595 - Tin +5596 - Tin +5597 - Tin +5598 - Tin +5599 - Tin +5600 - Tin +5601 - Chisel +5602 - Bronze wire +5603 - Shears +5604 - Magnet +5605 - Knife +5606 - Makeover voucher +5607 - Grain +5608 - Fox +5609 - Chicken +5610 - Hourglass +5611 - Initiate sallet +5612 - Initiate hauberk +5613 - Initiate cuisse +5614 - Magic carpet +5615 - Bonemeal +5616 - Bronze arrow(p+) +5617 - Iron arrow(p+) +5618 - Steel arrow(p+) +5619 - Mithril arrow(p+) +5620 - Adamant arrow(p+) +5621 - Rune arrow(p+) +5622 - Bronze arrow(p++) +5623 - Iron arrow(p++) +5624 - Steel arrow(p++) +5625 - Mithril arrow(p++) +5626 - Adam arrow(p++) +5627 - Rune arrow(p++) +5628 - Bronze dart(p+) +5629 - Iron dart(p+) +5630 - Steel dart(p+) +5631 - Black dart(p+) +5632 - Mithril dart(p+) +5633 - Adamant dart(p+) +5634 - Rune dart(p+) +5635 - Bronze dart(p++) +5636 - Iron dart(p++) +5637 - Steel dart(p++) +5638 - Black dart(p++) +5639 - Mithril dart(p++) +5640 - Adamant dart(p++) +5641 - Rune dart(p++) +5642 - Bronze javelin(p+) +5643 - Iron javelin(p+) +5644 - Steel javelin(p+) +5645 - Mithril javelin(p+) +5646 - Addy javelin(p+) +5647 - Rune javelin(p+) +5648 - Bronze jav'n(p++) +5649 - Iron javelin(p++) +5650 - Steel javelin(p++) +5651 - Mithril javelin(p++) +5652 - Addy javelin(p++) +5653 - Rune javelin(p++) +5654 - Bronze knife(p+) +5655 - Iron knife(p+) +5656 - Steel knife(p+) +5657 - Mithril knife(p+) +5658 - Black knife(p+) +5659 - Adamant knife(p+) +5660 - Rune knife(p+) +5661 - Bronze knife(p++) +5662 - Iron knife(p++) +5663 - Steel knife(p++) +5664 - Mithril knife(p++) +5665 - Black knife(p++) +5666 - Addy knife(p++) +5667 - Rune knife(p++) +5668 - Iron dagger(p+) +5669 - Iron dagger(p+) +5670 - Bronze dagger(p+) +5671 - Bronze dagger(p+) +5672 - Steel dagger(p+) +5673 - Steel dagger(p+) +5674 - Mithril dagger(p+) +5675 - Mithril dagger(p+) +5676 - Adam dagger(p+) +5677 - Adam dagger(p+) +5678 - Rune dagger(p+) +5679 - Rune dagger(p+) +5680 - Dragon dagger(p+) +5681 - Dragon dagger(p+) +5682 - Black dagger(p+) +5683 - Black dagger(p+) +5684 - Poison dagger(p+) +5685 - Poison dagger(p+) +5686 - Iron dagger(p++) +5687 - Iron dagger(p++) +5688 - Br'ze dagger(p++) +5689 - Br'ze dagger(p++) +5690 - Steel dagger(p++) +5691 - Steel dagger(p++) +5692 - Mithril dagger(p++) +5693 - Mithril dagger(p++) +5694 - Adam dagger(p++) +5695 - Adam dagger(p++) +5696 - Rune dagger(p++) +5697 - Rune dagger(p++) +5698 - Drag dagger(p++) +5699 - Drag dagger(p++) +5700 - Black dagger(p++) +5701 - Black dagger(p++) +5702 - Poison dagger(p++) +5703 - Poison dagger(p++) +5704 - Bronze spear(p+) +5705 - Bronze spear(p+) +5706 - Iron spear(p+) +5707 - Iron spear(p+) +5708 - Steel spear(p+) +5709 - Steel spear(p+) +5710 - Mithril spear(p+) +5711 - Mithril spear(p+) +5712 - Adamant spear(p+) +5713 - Adamant spear(p+) +5714 - Rune spear(p+) +5715 - Rune spear(p+) +5716 - Dragon spear(p+) +5717 - Dragon spear(p+) +5718 - Bronze spear(p++) +5719 - Bronze spear(p++) +5720 - Iron spear(p++) +5721 - Iron spear(p++) +5722 - Steel spear(p++) +5723 - Steel spear(p++) +5724 - Mithril spear(p++) +5725 - Mithril spear(p++) +5726 - Adam spear(p++) +5727 - Adam spear(p++) +5728 - Rune spear(p++) +5729 - Rune spear(p++) +5730 - Dragon spear(p++) +5731 - Dragon spear(p++) +5732 - Stool +5733 - Rotten potato +5734 - Black spear(p+) +5735 - Black spear(p+) +5736 - Black spear(p++) +5737 - Black spear(p++) +5738 - Woad leaf +5739 - Asgarnian ale(m) +5740 - Asgarnian ale(m) +5741 - Mature wmb +5742 - Mature wmb +5743 - Greenman's ale(m) +5744 - Greenman's ale(m) +5745 - Dragon bitter(m) +5746 - Dragon bitter(m) +5747 - Dwarven stout(m) +5748 - Dwarven stout(m) +5749 - Moonlight mead(m) +5750 - Moonlight mead(m) +5751 - Axeman's folly +5752 - Axeman's folly +5753 - Axeman's folly(m) +5754 - Axeman's folly(m) +5755 - Chef's delight +5756 - Chef's delight +5757 - Chef's delight(m) +5758 - Chef's delight(m) +5759 - Slayer's respite +5760 - Slayer's respite +5761 - Slayer's respite(m) +5762 - Slayer's respite(m) +5763 - Cider +5764 - Cider +5765 - Mature cider +5766 - Mature cider +5767 - Ale yeast +5768 - Ale yeast +5769 - Calquat keg +5770 - Calquat keg +5771 - Dwarven stout(1) +5772 - Dwarven stout(1) +5773 - Dwarven stout(2) +5774 - Dwarven stout(2) +5775 - Dwarven stout(3) +5776 - Dwarven stout(3) +5777 - Dwarven stout(4) +5778 - Dwarven stout(4) +5779 - Asgarnian ale(1) +5780 - Asgarnian ale(1) +5781 - Asgarnian ale(2) +5782 - Asgarnian ale(2) +5783 - Asgarnian ale(3) +5784 - Asgarnian ale(3) +5785 - Asgarnian ale(4) +5786 - Asgarnian ale(4) +5787 - Greenmans ale(1) +5788 - Greenmans ale(1) +5789 - Greenmans ale(2) +5790 - Greenmans ale(2) +5791 - Greenmans ale(3) +5792 - Greenmans ale(3) +5793 - Greenmans ale(4) +5794 - Greenmans ale(4) +5795 - Mind bomb(1) +5796 - Mind bomb(1) +5797 - Mind bomb(2) +5798 - Mind bomb(2) +5799 - Mind bomb(3) +5800 - Mind bomb(3) +5801 - Mind bomb(4) +5802 - Mind bomb(4) +5803 - Dragon bitter(1) +5804 - Dragon bitter(1) +5805 - Dragon bitter(2) +5806 - Dragon bitter(2) +5807 - Dragon bitter(3) +5808 - Dragon bitter(3) +5809 - Dragon bitter(4) +5810 - Dragon bitter(4) +5811 - Moonlight mead(1) +5812 - Moonlight mead(1) +5813 - Moonlight mead(2) +5814 - Moonlight mead(2) +5815 - Moonlight mead(3) +5816 - Moonlight mead(3) +5817 - Moonlight mead(4) +5818 - Moonlight mead(4) +5819 - Axeman's folly(1) +5820 - Axeman's folly(1) +5821 - Axeman's folly(2) +5822 - Axeman's folly(2) +5823 - Axeman's folly(3) +5824 - Axeman's folly(3) +5825 - Axeman's folly(4) +5826 - Axeman's folly(4) +5827 - Chef's delight(1) +5828 - Chef's delight(1) +5829 - Chef's delight(2) +5830 - Chef's delight(2) +5831 - Chef's delight(3) +5832 - Chef's delight(3) +5833 - Chef's delight(4) +5834 - Chef's delight(4) +5835 - Slayer's respite(1) +5836 - Slayer's respite(1) +5837 - Slayer's respite(2) +5838 - Slayer's respite(2) +5839 - Slayer's respite(3) +5840 - Slayer's respite(3) +5841 - Slayer's respite(4) +5842 - Slayer's respite(4) +5843 - Cider(1) +5844 - Cider(1) +5845 - Cider(2) +5846 - Cider(2) +5847 - Cider(3) +5848 - Cider(3) +5849 - Cider(4) +5850 - Cider(4) +5851 - Dwarven stout(m1) +5852 - Dwarven stout(m1) +5853 - Dwarven stout(m2) +5854 - Dwarven stout(m2) +5855 - Dwarven stout(m3) +5856 - Dwarven stout(m3) +5857 - Dwarven stout(m4) +5858 - Dwarven stout(m4) +5859 - Asgarnian ale(m1) +5860 - Asgarnian ale(m1) +5861 - Asgarnian ale(m2) +5862 - Asgarnian ale(m2) +5863 - Asgarnian ale(m3) +5864 - Asgarnian ale(m3) +5865 - Asgarnian ale(m4) +5866 - Asgarnian ale(m4) +5867 - Greenmans ale(m1) +5868 - Greenmans ale(m1) +5869 - Greenmans ale(m2) +5870 - Greenmans ale(m2) +5871 - Greenmans ale(m3) +5872 - Greenmans ale(m3) +5873 - Greenmans ale(m4) +5874 - Greenmans ale(m4) +5875 - Mind bomb(m1) +5876 - Mind bomb(m1) +5877 - Mind bomb(m2) +5878 - Mind bomb(m2) +5879 - Mind bomb(m3) +5880 - Mind bomb(m3) +5881 - Mind bomb(m4) +5882 - Mind bomb(m4) +5883 - Dragon bitter(m1) +5884 - Dragon bitter(m1) +5885 - Dragon bitter(m2) +5886 - Dragon bitter(m2) +5887 - Dragon bitter(m3) +5888 - Dragon bitter(m3) +5889 - Dragon bitter(m4) +5890 - Dragon bitter(m4) +5891 - M'light mead(m1) +5892 - M'light mead(m1) +5893 - M'light mead(m2) +5894 - M'light mead(m2) +5895 - M'light mead(m3) +5896 - M'light mead(m3) +5897 - M'light mead(m4) +5898 - M'light mead(m4) +5899 - Axeman's folly(m1) +5900 - Axeman's folly(m1) +5901 - Axeman's folly(m2) +5902 - Axeman's folly(m2) +5903 - Axeman's folly(m3) +5904 - Axeman's folly(m3) +5905 - Axeman's folly(m4) +5906 - Axeman's folly(m4) +5907 - Chef's delight(m1) +5908 - Chef's delight(m1) +5909 - Chef's delight(m2) +5910 - Chef's delight(m2) +5911 - Chef's delight(m3) +5912 - Chef's delight(m3) +5913 - Chef's delight(m4) +5914 - Chef's delight(m4) +5915 - Slayer respite(m1) +5916 - Slayer respite(m1) +5917 - Slayer respite(m2) +5918 - Slayer respite(m2) +5919 - Slayer respite(m3) +5920 - Slayer respite(m3) +5921 - Slayer respite(m4) +5922 - Slayer respite(m4) +5923 - Cider(m1) +5924 - Cider(m1) +5925 - Cider(m2) +5926 - Cider(m2) +5927 - Cider(m3) +5928 - Cider(m3) +5929 - Cider(m4) +5930 - Cider(m4) +5931 - Jute fibre +5932 - Jute fibre +5933 - Willow branch +5934 - Willow branch +5935 - Coconut milk +5936 - Weapon poison+(unf) +5937 - Weapon poison+ +5938 - Weapon poison+ +5939 - Weapon poison++(unf) +5940 - Weapon poison++ +5941 - Weapon poison++ +5942 - Antipoison+(unf) +5943 - Antipoison+(4) +5944 - Antipoison+(4) +5945 - Antipoison+(3) +5946 - Antipoison+(3) +5947 - Antipoison+(2) +5948 - Antipoison+(2) +5949 - Antipoison+(1) +5950 - Antipoison+(1) +5951 - Antipoison++(unf) +5952 - Antipoison++(4) +5953 - Antipoison++(4) +5954 - Antipoison++(3) +5955 - Antipoison++(3) +5956 - Antipoison++(2) +5957 - Antipoison++(2) +5958 - Antipoison++(1) +5959 - Antipoison++(1) +5960 - Tomatoes(1) +5961 - Tomatoes(1) +5962 - Tomatoes(2) +5963 - Tomatoes(2) +5964 - Tomatoes(3) +5965 - Tomatoes(3) +5966 - Tomatoes(4) +5967 - Tomatoes(4) +5968 - Tomatoes(5) +5969 - Tomatoes(5) +5970 - Curry leaf +5971 - Curry leaf +5972 - Papaya fruit +5973 - Papaya fruit +5974 - Coconut +5975 - Coconut +5976 - Coconut +5977 - Coconut +5978 - Coconut shell +5979 - Coconut shell +5980 - Calquat fruit +5981 - Calquat fruit +5982 - Watermelon +5983 - Watermelon +5984 - Watermelon slice +5985 - Watermelon slice +5986 - Sweetcorn +5987 - Sweetcorn +5988 - Cooked sweetcorn +5989 - Cooked sweetcorn +5990 - Burnt sweetcorn +5991 - Burnt sweetcorn +5992 - Apple mush +5993 - Apple mush +5994 - Hammerstone hops +5995 - Hammerstone hops +5996 - Asgarnian hops +5997 - Asgarnian hops +5998 - Yanillian hops +5999 - Yanillian hops +6000 - Krandorian hops +6001 - Krandorian hops +6002 - Wildblood hops +6003 - Wildblood hops +6004 - Mushroom +6005 - Mushroom +6006 - Barley +6007 - Barley +6008 - Barley malt +6009 - Barley malt +6010 - Marigolds +6011 - Marigolds +6012 - Nasturtiums +6013 - Nasturtiums +6014 - Rosemary +6015 - Rosemary +6016 - Cactus spine +6017 - Cactus spine +6018 - Poison ivy berries +6019 - Poison ivy berries +6020 - Leaves +6021 - Leaves +6022 - Leaves +6023 - Leaves +6024 - Leaves +6025 - Leaves +6026 - Leaves +6027 - Leaves +6028 - Leaves +6029 - Leaves +6030 - Leaves +6031 - Leaves +6032 - Compost +6033 - Compost +6034 - Supercompost +6035 - Supercompost +6036 - Plant cure +6037 - Plant cure +6038 - Magic string +6039 - Magic string +6040 - Amulet of nature +6041 - Pre-nature amulet +6042 - Pre-nature amulet +6043 - Oak roots +6044 - Oak roots +6045 - Willow roots +6046 - Willow roots +6047 - Maple roots +6048 - Maple roots +6049 - Yew roots +6050 - Yew roots +6051 - Magic roots +6052 - Magic roots +6053 - Spirit roots +6054 - Spirit roots +6055 - Weeds +6056 - Weeds +6057 - Hay sack +6058 - Hay sack +6059 - Scarecrow +5732 - Stool +6060 - Stool +6061 - Bronze bolts(p+) +6062 - Bronze bolts(p++) +6063 - Spirit tree +6064 - Bloody mourner top +6065 - Mourner top +6066 - Mourner trousers +6067 - Mourner trousers +6068 - Mourner gloves +6069 - Mourner boots +6070 - Mourner cloak +6071 - Mourner letter +6072 - Tegid's soap +6073 - Prifddinas' history +6074 - Picture +6075 - Eastern discovery +6076 - Picture +6077 - Eastern settlement +6078 - Picture +6079 - The great divide +6080 - Picture +6081 - Broken device +6082 - Fixed device +6083 - Tarnished key +6084 - Worn key +6085 - Red dye bellows +6086 - Blue dye bellows +6087 - Yellow dye bellows +6088 - Green dye bellows +6089 - Blue toad +6090 - Red toad +6091 - Yellow toad +6092 - Green toad +6093 - Rotten apples +6094 - Apple barrel +6095 - Naphtha apple mix +6096 - Toxic naphtha +6097 - Sieve +6098 - Toxic powder +6099 - Teleport crystal (4) +6100 - Teleport crystal (3) +6101 - Teleport crystal (2) +6102 - Teleport crystal (1) +6103 - Tiny elf crystal +6104 - New key +6105 - Elf +6106 - Ghostly boots +6107 - Ghostly robe +6108 - Ghostly robe +6109 - Ghostly hood +6110 - Ghostly gloves +6111 - Ghostly cloak +6112 - Kelda seed +6113 - Kelda hops +6114 - Not Existing +6115 - Not Existing +6116 - Not Existing +6117 - Not Existing +6118 - Kelda stout +6119 - Square stone +6120 - Square stone +6121 - Letter +6122 - A chair +6123 - Beer glass +799 - Not Existing +5935 - Coconut milk +6124 - Coconut milk +6125 - Enchanted lyre(2) +6126 - Enchanted lyre(3) +6127 - Enchanted lyre(4) +6128 - Rock-shell helm +6129 - Rock-shell plate +6130 - Rock-shell legs +6131 - Spined helm +6132 - Spined helm +6133 - Spined body +6134 - Spined body +6135 - Spined chaps +6136 - Spined chaps +6137 - Skeletal helm +6138 - Skeletal helm +6139 - Skeletal top +6140 - Skeletal top +6141 - Skeletal bottoms +6142 - Skeletal bottoms +6143 - Spined boots +6144 - Spined boots +6145 - Rock-shell boots +6146 - Rock-shell boots +6147 - Skeletal boots +6148 - Skeletal boots +6149 - Spined gloves +6150 - Spined gloves +6151 - Rock-shell gloves +6152 - Rock-shell gloves +6153 - Skeletal gloves +6154 - Skeletal gloves +6155 - Dagannoth hide +6156 - Dagannoth hide +6157 - Rock-shell chunk +6158 - Rock-shell chunk +6159 - Rock-shell shard +6160 - Rock-shell shard +6161 - Rock-shell splinter +6162 - Rock-shell splinter +6163 - Skull piece +6164 - Skull piece +6165 - Ribcage piece +6166 - Ribcage piece +6167 - Fibula piece +6168 - Fibula piece +6169 - Circular hide +6170 - Circular hide +6171 - Flattened hide +6172 - Flattened hide +6173 - Stretched hide +6174 - Stretched hide +6175 - Rock-shell helm +6176 - Rock-shell plate +6177 - Rock-shell legs +6178 - Raw pheasant +6179 - Raw pheasant +6180 - Lederhosen top +6181 - Lederhosen shorts +6182 - Lederhosen hat +6183 - Frog token +6184 - Prince tunic +6185 - Prince leggings +6186 - Princess blouse +6187 - Princess skirt +6188 - Frog mask +6189 - Not Existing +6190 - Not Existing +6191 - Not Existing +6192 - Not Existing +6193 - Not Existing +6194 - Not Existing +6195 - Not Existing +6196 - Not Existing +6197 - Not Existing +6198 - Not Existing +6199 - Mystery box +6200 - Raw fishlike thing +6201 - Picture +6202 - Fishlike thing +6203 - Picture +6204 - Raw fishlike thing +6205 - Picture +6206 - Fishlike thing +6207 - Picture +6208 - Man speak amulet +6209 - Small fishing net +6210 - Picture +6211 - Teak pyre logs +6212 - Teak pyre logs +6213 - Mahogany pyre log +6214 - Mahogany pyre log +6215 - Broodoo shield (10) +6216 - Broodoo shield (10) +6217 - Broodoo shield (9) +6218 - Broodoo shield (9) +6219 - Broodoo shield (8) +6220 - Broodoo shield (8) +6221 - Broodoo shield (7) +6222 - Broodoo shield (7) +6223 - Broodoo shield (6) +6224 - Broodoo shield (6) +6225 - Broodoo shield (5) +6226 - Broodoo shield (5) +6227 - Broodoo shield (4) +6228 - Broodoo shield (4) +6229 - Broodoo shield (3) +6230 - Broodoo shield (3) +6231 - Broodoo shield (2) +6232 - Broodoo shield (2) +6233 - Broodoo shield (1) +6234 - Broodoo shield (1) +6235 - Broodoo shield +6236 - Broodoo shield +6237 - Broodoo shield (10) +6238 - Broodoo shield (10) +6239 - Broodoo shield (9) +6240 - Broodoo shield (9) +6241 - Broodoo shield (8) +6242 - Broodoo shield (8) +6243 - Broodoo shield (7) +6244 - Broodoo shield (7) +6245 - Broodoo shield (6) +6246 - Broodoo shield (6) +6247 - Broodoo shield (5) +6248 - Broodoo shield (5) +6249 - Broodoo shield (4) +6250 - Broodoo shield (4) +6251 - Broodoo shield (3) +6252 - Broodoo shield (3) +6253 - Broodoo shield (2) +6254 - Broodoo shield (2) +6255 - Broodoo shield (1) +6256 - Broodoo shield (1) +6257 - Broodoo shield +6258 - Broodoo shield +6259 - Broodoo shield (10) +6260 - Broodoo shield (10) +6261 - Broodoo shield (9) +6262 - Broodoo shield (9) +6263 - Broodoo shield (8) +6264 - Broodoo shield (8) +6265 - Broodoo shield (7) +6266 - Broodoo shield (7) +6267 - Broodoo shield (6) +6268 - Broodoo shield (6) +6269 - Broodoo shield (5) +6270 - Broodoo shield (5) +6271 - Broodoo shield (4) +6272 - Broodoo shield (4) +6273 - Broodoo shield (3) +6274 - Broodoo shield (3) +6275 - Broodoo shield (2) +6276 - Broodoo shield (2) +6277 - Broodoo shield (1) +6278 - Broodoo shield (1) +6279 - Broodoo shield +6280 - Broodoo shield +6281 - Thatch spar light +6282 - Thatch spar light +6283 - Thatch spar med +6284 - Thatch spar med +6285 - Thatch spar dense +6286 - Thatch spar dense +6287 - Snake hide +6288 - Snake hide +6289 - Snakeskin +6290 - Snakeskin +6291 - Spider carcass +6292 - Spider carcass +6293 - Spider on stick +6294 - Spider on stick +6295 - Spider on shaft +6296 - Spider on shaft +6297 - Spider on stick +6298 - Spider on stick +6299 - Spider on shaft +6300 - Spider on shaft +6301 - Burnt spider +6302 - Burnt spider +6303 - Spider on shaft +6304 - Spider on shaft +6305 - Skewer stick +6306 - Trading sticks +6307 - Not Existing +6308 - Not Existing +6309 - Not Existing +6310 - Not Existing +6311 - Gout tuber +6312 - Gout tuber +6313 - Opal machete +6314 - Opal machete +6315 - Jade machete +6316 - Jade machete +6317 - Red topaz machete +6318 - Red topaz machete +6319 - Proboscis +6320 - Not Existing +6321 - Not Existing +6322 - Snakeskin body +6323 - Snakeskin body +6324 - Snakeskin chaps +6325 - Snakeskin chaps +6326 - Snakeskin bandana +6327 - Snakeskin bandana +6328 - Snakeskin boots +6329 - Snakeskin boots +6330 - Snakeskin v'brace +6331 - Snakeskin v'brace +6332 - Mahogany logs +6333 - Teak logs +6334 - Teak logs +6335 - Tribal mask +6336 - Tribal mask +6337 - Tribal mask +6338 - Tribal mask +6339 - Tribal mask +6340 - Tribal mask +6341 - Tribal top +6342 - Tribal top +6343 - Villager robe +6344 - Villager robe +6345 - Villager hat +6346 - Villager hat +6347 - Villager armband +6348 - Villager armband +6349 - Villager sandals +6350 - Villager sandals +6351 - Tribal top +6352 - Tribal top +6353 - Villager robe +6354 - Villager robe +6355 - Villager hat +6356 - Villager hat +6357 - Villager sandals +6358 - Villager sandals +6359 - Villager armband +6360 - Villager armband +6361 - Tribal top +6362 - Tribal top +6363 - Villager robe +6364 - Villager robe +6365 - Villager hat +6366 - Villager hat +6367 - Villager sandals +6368 - Villager sandals +6369 - Villager armband +6370 - Villager armband +6371 - Tribal top +6372 - Tribal top +6373 - Villager robe +6374 - Villager robe +6375 - Villager hat +6376 - Villager hat +6377 - Villager sandals +6378 - Villager sandals +6379 - Villager armband +6380 - Villager armband +6381 - Picture +6382 - Fez +6383 - Fez +6384 - Desert top +6385 - Desert top +6386 - Desert robes +6387 - Desert robes +6388 - Desert top +6389 - Desert top +6390 - Desert legs +6391 - Desert legs +6392 - Menap headgear +6393 - Menap headgear +6394 - Menaphite top +6395 - Menaphite top +6396 - Menaphite robe +6397 - Menaphite robe +6398 - Menap action kilt +6399 - Menap action kilt +6400 - Menap headgear +6401 - Menap headgear +6402 - Menaphite top +6403 - Menaphite top +6404 - Menaphite robe +6405 - Menaphite robe +6406 - Menap action kilt +6407 - Menap action kilt +6408 - Oak blackjack(o) +6409 - Oak blackjack(o) +6410 - Oak blackjack(d) +6411 - Oak blackjack(d) +6412 - Willow blackjack(o) +6413 - Willow blackjack(o) +6414 - Willow blackjack(d) +6415 - Willow blackjack(d) +6416 - Maple blackjack +6417 - Maple blackjack +6418 - Maple blackjack(o) +6419 - Maple blackjack(o) +6420 - Maple blackjack(d) +6421 - Maple blackjack(d) +6422 - Air rune +6423 - Air rune +6424 - Water rune +6425 - Water rune +6426 - Earth rune +6427 - Earth rune +6428 - Fire rune +6429 - Fire rune +6430 - Chaos rune +6431 - Chaos rune +6432 - Death rune +6433 - Death rune +6434 - Law rune +6435 - Law rune +6436 - Mind rune +6437 - Mind rune +6438 - Body rune +6439 - Body rune +6440 - Not Existing +6441 - Not Existing +6442 - Not Existing +6443 - Not Existing +6444 - Not Existing +6445 - Not Existing +6446 - Not Existing +6447 - Not Existing +6448 - Spadeful of coke +6449 - Not Existing +6450 - Not Existing +6451 - Not Existing +6452 - Not Existing +6453 - White rose seed +6454 - Red rose seed +6455 - Pink rose seed +6456 - Vine seed +6457 - Delphinium seed +6458 - Orchid seed +6459 - Orchid seed +6460 - Snowdrop seed +6461 - White tree shoot +6462 - White tree shoot +6463 - White tree shoot +6464 - White tree sapling +6465 - Ring of charos(a) +6466 - Rune shards +6467 - Rune dust +6468 - Plant cure +6469 - White tree fruit +6470 - Compost potion(4) +6471 - Compost potion(4) +6472 - Compost potion(3) +6473 - Compost potion(3) +6474 - Compost potion(2) +6475 - Compost potion(2) +6476 - Compost potion(1) +6477 - Compost potion(1) +6478 - Trolley +6479 - List +6480 - Not Existing +6481 - Not Existing +6482 - Not Existing +6483 - Not Existing +6484 - Not Existing +6485 - Not Existing +6486 - Not Existing +6487 - Not Existing +6488 - Not Existing +6489 - Not Existing +6490 - Not Existing +6491 - Not Existing +6492 - Not Existing +6493 - Not Existing +6494 - Not Existing +6495 - Not Existing +6496 - Not Existing +6497 - Not Existing +6498 - Not Existing +6499 - Not Existing +6500 - Not Existing +6501 - Not Existing +6502 - Not Existing +6503 - Not Existing +6504 - Not Existing +6505 - Not Existing +6506 - Not Existing +6507 - Not Existing +6508 - Not Existing +6509 - Not Existing +6510 - Not Existing +6511 - Not Existing +6512 - Not Existing +6513 - Not Existing +6514 - Agility jump +6515 - Agility balance +6516 - Agility contortion +6517 - Agility climb +6518 - Agility jump +6519 - Agility balance +6520 - Agility contortion +6521 - Agility climb +6522 - Toktz-xil-ul +6523 - Toktz-xil-ak +6524 - Toktz-ket-xil +6525 - Toktz-xil-ek +6526 - Toktz-mej-tal +6527 - Tzhaar-ket-em +6528 - Tzhaar-ket-om +6529 - Tokkul +6530 - Not Existing +6531 - Not Existing +6532 - Not Existing +6533 - Not Existing +6534 - Not Existing +6535 - Toktz-xil-ak +6536 - Toktz-ket-xil +6537 - Toktz-xil-ek +6538 - Toktz-mej-tal +6539 - Tzhaar-ket-em +6540 - Tzhaar-ket-om +6541 - Mouse toy +6542 - Present +6543 - Antique lamp +6544 - Catspeak amulet(e) +6545 - Chores +6546 - Recipe +6547 - Doctors hat +6548 - Nurse hat +6549 - Lazy cat +6550 - Lazy cat +6551 - Lazy cat +6552 - Lazy cat +6553 - Lazy cat +6554 - Lazy cat +6555 - Wily cat +6556 - Wily cat +6557 - Wily cat +6558 - Wily cat +6559 - Wily cat +6560 - Wily cat +6561 - Ahab's beer +6562 - Mud battlestaff +6563 - Mystic mud staff +6564 - Onyx ring +6565 - Onyx necklace +6566 - Onyx amulet +6567 - Not Existing +6568 - Obsidian cape +6569 - Obsidian cape +6570 - Fire cape +6571 - Uncut onyx +6572 - Uncut onyx +6573 - Onyx +6574 - Onyx +6575 - Onyx ring +6576 - Onyx ring +6577 - Onyx necklace +6578 - Onyx necklace +6579 - Onyx amulet +6580 - Onyx amulet +6581 - Onyx amulet +6582 - Onyx amulet +6583 - Ring of stone +6584 - Ring of stone +6585 - Amulet of fury +6586 - Amulet of fury +6587 - White claws +6588 - White claws +6589 - White battleaxe +6590 - White battleaxe +6591 - White dagger +6592 - White dagger +6593 - White dagger(p) +6594 - White dagger(p) +6595 - White dagger(p+) +6596 - White dagger(p+) +6597 - White dagger(p++) +6598 - White dagger(p++) +6599 - White halberd +6600 - White halberd +6601 - White mace +6602 - White mace +6603 - White magic staff +6604 - White magic staff +6605 - White sword +6606 - White sword +6607 - White longsword +6608 - White longsword +6609 - White 2h sword +6610 - White 2h sword +6611 - White scimitar +6612 - White scimitar +6613 - White warhammer +6614 - White warhammer +6615 - White chainbody +6616 - White chainbody +6617 - White platebody +6618 - White platebody +6619 - White boots +6620 - White boots +6621 - White med helm +6622 - White med helm +6623 - White full helm +6624 - White full helm +6625 - White platelegs +6626 - White platelegs +6627 - White plateskirt +6628 - White plateskirt +6629 - White gloves +6630 - White gloves +6631 - White sq shield +6632 - White sq shield +6633 - White kiteshield +6634 - White kiteshield +6635 - Commorb +6636 - Solus's hat +6637 - Dark beast +6638 - Colour wheel +6639 - Hand mirror +6640 - Red crystal +6641 - Yellow crystal +6642 - Green crystal +6643 - Cyan crystal +6644 - Blue crystal +6645 - Magenta crystal +6646 - Fractured crystal +6647 - Fractured crystal +6648 - Item list +6649 - Edern's journal +6650 - Blackened crystal +6651 - Newly made crystal +6652 - Newly made crystal +6653 - Crystal trinket +6654 - Camo top +6655 - Camo bottoms +6656 - Camo helmet +6657 - Camo top +6658 - Camo bottoms +6659 - Camo helmet +6660 - Fishing explosive +6661 - Mogre +6662 - Broken fishing rod +6663 - Forlorn boot +6664 - Fishing explosive +6665 - Mudskipper hat +6666 - Flippers +6667 - Fishbowl +6668 - Fishbowl +6669 - Fishbowl +6670 - Fishbowl +6671 - Fishbowl +6672 - Fishbowl +6673 - Fishbowl and net +6674 - Tiny net +6675 - An empty box +6676 - Tinderbox +6677 - Guam in a box +6678 - Guam in a box? +6679 - Seaweed in a box +6680 - Seaweed in a box? +6681 - Ground guam +6682 - Ground guam +6683 - Ground seaweed +6684 - Ground seaweed +6685 - Saradomin brew(4) +6686 - Saradomin brew(4) +6687 - Saradomin brew(3) +6688 - Saradomin brew(3) +6689 - Saradomin brew(2) +6690 - Saradomin brew(2) +6691 - Saradomin brew(1) +6692 - Saradomin brew(1) +6693 - Crushed nest +6694 - Crushed nest +6695 - Desert lizard +6696 - Ice cooler +6697 - Pat of butter +6698 - Pat of butter +6699 - Burnt potato +6700 - Burnt potato +6701 - Baked potato +6702 - Baked potato +6703 - Potato with butter +6704 - Potato with butter +6705 - Potato with cheese +6706 - Potato with cheese +6707 - Camulet +6708 - Slayer gloves +6709 - Fever spider +6710 - Blindweed seed +6711 - Blindweed +6712 - Bucket of water +6713 - Wrench +6714 - Holy wrench +6715 - Sluglings +6716 - Karamthulhu +6717 - Karamthulhu +6718 - Fever spider body +6719 - Unsanitary swill +6720 - Slayer gloves +6721 - Rusty scimitar +6722 - Zombie head +6723 - Fishbowl +6724 - Seercull +6725 - Seercull +6562 - Mud battlestaff +6726 - Mud battlestaff +6563 - Mystic mud staff +6727 - Mystic mud staff +6728 - Bonemeal +6729 - Dagannoth bones +6730 - Dagannoth bones +6731 - Seers ring +6732 - Seers ring +6733 - Archers ring +6734 - Archers ring +6735 - Warrior ring +6736 - Warrior ring +6737 - Berserker ring +6738 - Berserker ring +6739 - Dragon axe +6740 - Dragon axe +6741 - Broken axe +6742 - Broken axe +6743 - Picture +6744 - Picture +6745 - Silverlight +6746 - Darklight +6747 - Demonic sigil mould +6748 - Demonic sigil +6749 - Demonic tome +6750 - Black desert shirt +6751 - Tinderbox +6752 - Black desert robe +6753 - Picture +6754 - Enchanted key +6755 - Journal +6756 - Letter +6757 - Letter +6758 - Scroll +6759 - Chest +6760 - Guthix mjolnir +6761 - Guthix mjolnir +6762 - Saradomin mjolnir +6763 - Saradomin mjolnir +6764 - Zamorak mjolnir +6765 - Zamorak mjolnir +6766 - Cat antipoison +6767 - Book +6768 - Poisoned cheese +6769 - Music scroll +6770 - Directions +6771 - Pot of weeds +6772 - Smouldering pot +6773 - Rat pole +6774 - Rat pole +6775 - Rat pole +6776 - Rat pole +6777 - Rat pole +6778 - Rat pole +6779 - Rat pole +6780 - Menaphite thug +6781 - Bandit +6782 - Bandit +6783 - Not Existing +6784 - Not Existing +6785 - Statuette +6786 - Robe of elidinis +6787 - Robe of elidinis +6788 - Torn robe +6789 - Torn robe +6790 - Shoes +6791 - Sole +6792 - Ancestral key +6793 - Ballad +6794 - Choc-ice +6795 - Choc-ice +6796 - Lamp +6797 - Watering can +6798 - Champion scroll +6799 - Champion scroll +6800 - Champion scroll +6801 - Champion scroll +6802 - Champion scroll +6803 - Champion scroll +6804 - Champion scroll +6805 - Champion scroll +6806 - Champion scroll +6807 - Champion scroll +6808 - Champion scroll +6809 - Granite legs +6810 - Bonemeal +6811 - Skeletal wyvern +6812 - Wyvern bones +6813 - Granite legs +6814 - Fur +6815 - Fur +6816 - Wyvern bones +6817 - Slender blade +6818 - Bow-sword +6819 - Large pouch +6820 - Relic +6821 - Orb +6822 - Star bauble +6823 - Star bauble +6824 - Star bauble +6825 - Star bauble +6826 - Star bauble +6827 - Star bauble +6828 - Box bauble +6829 - Box bauble +6830 - Box bauble +6831 - Box bauble +6832 - Box bauble +6833 - Box bauble +6834 - Diamond bauble +6835 - Diamond bauble +6836 - Diamond bauble +6837 - Diamond bauble +6838 - Diamond bauble +6839 - Diamond bauble +6840 - Tree bauble +6841 - Tree bauble +6842 - Tree bauble +6843 - Tree bauble +6844 - Tree bauble +6845 - Tree bauble +6846 - Bell bauble +6847 - Bell bauble +6848 - Bell bauble +6849 - Bell bauble +6850 - Bell bauble +6851 - Bell bauble +6852 - Puppet box +6853 - Bauble box +6854 - Puppet box +6855 - Bauble box +6856 - Bobble hat +6857 - Bobble scarf +6858 - Jester hat +6859 - Jester scarf +6860 - Tri-jester hat +6861 - Tri-jester scarf +6862 - Woolly hat +6863 - Woolly scarf +6864 - Marionette handle +6865 - Blue marionette +6866 - Green marionette +6867 - Red marionette +6868 - Blue marionette +6869 - Green marionette +6870 - Red marionette +6871 - Red marionette +6872 - Red marionette +6873 - Red marionette +6874 - Red marionette +6875 - Blue marionette +6876 - Blue marionette +6877 - Blue marionette +6878 - Blue marionette +6879 - Green marionette +6880 - Green marionette +6881 - Green marionette +6882 - Green marionette +6883 - Peach +6884 - Not Existing +6885 - Progress hat +6886 - Progress hat +6887 - Progress hat +6888 - Guardian statue +6889 - Mage's book +799 - Not Existing +6890 - Mage's book +6891 - Arena book +6892 - Tinderbox +6893 - Leather boots +6894 - Adamant kiteshield +6895 - Adamant med helm +6896 - Emerald +6897 - Rune longsword +6898 - Cylinder +6899 - Cube +6900 - Icosahedron +6901 - Pentamid +6902 - Orb +6903 - Dragonstone +6904 - Animals' bones +6905 - Animals' bones +6906 - Animals' bones +6907 - Animals' bones +6908 - Beginner wand +6909 - Beginner wand +6910 - Apprentice wand +6911 - Apprentice wand +6912 - Teacher wand +6913 - Teacher wand +6914 - Master wand +6915 - Master wand +6916 - Infinity top +6917 - Infinity top +6918 - Infinity hat +6919 - Infinity hat +6920 - Infinity boots +6921 - Infinity boots +6922 - Infinity gloves +6923 - Infinity gloves +6924 - Infinity bottoms +6925 - Infinity bottoms +6926 - Bones to peaches +6927 - Not Existing +6928 - Not Existing +6929 - Not Existing +6930 - Not Existing +6931 - Not Existing +6932 - Not Existing +6933 - Not Existing +6934 - Not Existing +6935 - Not Existing +6936 - Not Existing +6937 - Not Existing +6938 - Not Existing +6939 - Not Existing +6940 - Not Existing +6941 - Not Existing +6942 - Not Existing +6943 - Not Existing +6944 - Not Existing +6945 - Sandy hand +6946 - Beer-soaked hand +6947 - Bert's rota +6948 - Sandy's rota +6949 - A magic scroll +6950 - Magical orb +6951 - Magical orb (a) +6952 - Truth serum +6953 - Bottled water +6954 - Redberry juice +6955 - Pink dye +6956 - Rose-tinted lens +6957 - Wizard's head +6958 - Sand +6959 - Cape +6960 - Cape +6961 - Baguette +6962 - Triangle sandwich +6963 - Roll +6964 - Coins +6965 - Square sandwich +6966 - Prison key +6967 - Dragon med helm +6968 - Triangle sandwich +6969 - Shark +6970 - Pyramid top +6971 - Sandstone (1kg) +6972 - Sandstone (1kg) +6973 - Sandstone (2kg) +6974 - Sandstone (2kg) +6975 - Sandstone (5kg) +6976 - Sandstone (5kg) +6977 - Sandstone (10kg) +6978 - Sandstone (10kg) +6979 - Granite (500g) +6980 - Granite (500g) +6981 - Granite (2kg) +6982 - Granite (2kg) +6983 - Granite (5kg) +6984 - Granite (5kg) +6985 - Sandstone (20kg) +6986 - Sandstone (32kg) +6987 - Sandstone body +6988 - Sandstone base +6989 - Stone head +6990 - Stone head +6991 - Stone head +6992 - Stone head +6993 - Z sigil +6994 - M sigil +6995 - R sigil +6996 - K sigil +6997 - Stone left arm +6998 - Stone right arm +6999 - Stone left leg +7000 - Stone right leg +7001 - Camel mould (p) +7002 - Stone head +7003 - Camel mask +7004 - Chisel +7005 - Not Existing +7006 - Not Existing +7007 - Not Existing +7008 - Not Existing +7009 - Not Existing +7010 - Not Existing +7011 - Not Existing +7012 - Not Existing +7013 - Not Existing +7014 - Not Existing +7015 - Not Existing +7016 - Not Existing +7017 - Not Existing +7018 - Not Existing +7019 - Not Existing +7020 - Not Existing +7021 - Not Existing +7022 - Not Existing +7023 - Not Existing +7024 - Not Existing +7025 - Not Existing +7026 - Not Existing +7027 - Not Existing +7028 - Not Existing +7029 - Not Existing +7030 - Not Existing +7031 - Not Existing +7032 - Not Existing +7033 - Not Existing +7034 - Not Existing +7035 - Not Existing +7036 - Not Existing +7037 - Not Existing +7038 - Not Existing +7039 - Not Existing +7040 - Not Existing +7041 - Not Existing +7042 - Not Existing +7043 - Not Existing +7044 - Not Existing +7045 - Not Existing +7046 - Not Existing +7047 - Not Existing +7048 - Not Existing +7049 - Not Existing +7050 - Swarm +7051 - Unlit bug lantern +799 - Not Existing +7052 - Unlit bug lantern +7053 - Lit bug lantern +7054 - Chilli potato +7055 - Chilli potato +7056 - Egg potato +7057 - Egg potato +7058 - Mushroom potato +7059 - Mushroom potato +7060 - Tuna potato +7061 - Tuna potato +7062 - Chilli con carne +7063 - Chilli con carne +7064 - Egg and tomato +7065 - Egg and tomato +7066 - Mushroom & onion +7067 - Mushroom & onion +7068 - Tuna and corn +7069 - Tuna and corn +7070 - Minced meat +7071 - Minced meat +7072 - Spicy sauce +7073 - Spicy sauce +7074 - Chopped garlic +7075 - Chopped garlic +7076 - Uncooked egg +7077 - Uncooked egg +7078 - Scrambled egg +7079 - Scrambled egg +7080 - Sliced mushrooms +7081 - Sliced mushrooms +7082 - Fried mushrooms +7083 - Fried mushrooms +7084 - Fried onions +7085 - Fried onions +7086 - Chopped tuna +7087 - Chopped tuna +7088 - Sweetcorn +7089 - Sweetcorn +7090 - Burnt egg +7091 - Burnt egg +7092 - Burnt onion +7093 - Burnt onion +7094 - Burnt mushroom +7095 - Burnt mushroom +7096 - Board game piece +7097 - Board game piece +7098 - Board game piece +7099 - Board game piece +7100 - Board game piece +7101 - Board game piece +7102 - Board game piece +7103 - Board game piece +7104 - Board game piece +7105 - Board game piece +7106 - Board game piece +7107 - Board game piece +7108 - Gunpowder +7109 - Fuse +7110 - Stripy pirate shirt +7111 - Stripy pirate shirt +7112 - Pirate bandana +7113 - Pirate bandana +7114 - Pirate boots +7115 - Pirate boots +7116 - Pirate leggings +7117 - Pirate leggings +7118 - Canister +7119 - Cannon ball +7120 - Ramrod +7121 - Repair plank +7122 - Stripy pirate shirt +7123 - Stripy pirate shirt +7124 - Pirate bandana +7125 - Pirate bandana +7126 - Pirate leggings +7127 - Pirate leggings +7128 - Stripy pirate shirt +7129 - Stripy pirate shirt +7130 - Pirate bandana +7131 - Pirate bandana +7132 - Pirate leggings +7133 - Pirate leggings +7134 - Stripy pirate shirt +7135 - Stripy pirate shirt +7136 - Pirate bandana +7137 - Pirate bandana +7138 - Pirate leggings +7139 - Pirate leggings +7140 - Lucky cutlass +7141 - Harry's cutlass +7142 - Rapier +7143 - Plunder +7144 - Book o' piracy +7145 - Cannon barrel +7146 - Broken cannon +7147 - Cannon balls +7148 - Repair plank +7149 - Canister +7150 - Tacks +7151 - Not Existing +7152 - Not Existing +7153 - Not Existing +7154 - Not Existing +7155 - Rope +7156 - Tinderbox +7157 - Braindeath 'rum' +7158 - Dragon 2h sword +7159 - Insulated boots +7160 - Killerwatt +7161 - Insulated boots +7162 - Pie recipe book +7163 - Pie recipe book +7164 - Part mud pie +7165 - Part mud pie +7166 - Part mud pie +7167 - Part mud pie +7168 - Raw mud pie +7169 - Raw mud pie +7170 - Mud pie +7171 - Mud pie +7172 - Part garden pie +7173 - Part garden pie +7174 - Part garden pie +7175 - Part garden pie +7176 - Raw garden pie +7177 - Raw garden pie +7178 - Garden pie +7179 - Garden pie +7180 - Half a garden pie +7181 - Half a garden pie +7182 - Part fish pie +7183 - Part fish pie +7184 - Part fish pie +7185 - Part fish pie +7186 - Raw fish pie +7187 - Raw fish pie +7188 - Fish pie +7189 - Fish pie +7190 - Half a fish pie +7191 - Half a fish pie +7192 - Part admiral pie +7193 - Part admiral pie +7194 - Part admiral pie +7195 - Part admiral pie +7196 - Raw admiral pie +7197 - Raw admiral pie +7198 - Admiral pie +7199 - Admiral pie +7200 - Half an admiral pie +7201 - Half an admiral pie +7202 - Part wild pie +7203 - Part wild pie +7204 - Part wild pie +7205 - Part wild pie +7206 - Raw wild pie +7207 - Raw wild pie +7208 - Wild pie +7209 - Wild pie +7210 - Half a wild pie +7211 - Half a wild pie +7212 - Part summer pie +7213 - Part summer pie +7214 - Part summer pie +7215 - Part summer pie +7216 - Raw summer pie +7217 - Raw summer pie +7218 - Summer pie +7219 - Summer pie +7220 - Half a summer pie +7221 - Half a summer pie +7222 - Burnt rabbit +7223 - Roast rabbit +7224 - Skewered rabbit +7225 - Iron spit +7226 - Burnt chompy +7227 - Burnt chompy +7228 - Cooked chompy +7229 - Cooked chompy +7230 - Skewered chompy +7231 - Burnt rabbit +7232 - Roast rabbit +7233 - Skewered rabbit +7234 - Iron spit +7235 - Skewered chompy +7236 - Clue scroll +7237 - Casket +7238 - Clue scroll +7239 - Clue scroll +7240 - Casket +7241 - Clue scroll +7242 - Casket +7243 - Clue scroll +7244 - Casket +7245 - Clue scroll +7246 - Casket +7247 - Clue scroll +7248 - Clue scroll +7249 - Clue scroll +7250 - Clue scroll +7251 - Clue scroll +7252 - Clue scroll +7253 - Clue scroll +7254 - Clue scroll +7255 - Clue scroll +7256 - Clue scroll +7257 - Casket +7258 - Clue scroll +7259 - Casket +7260 - Clue scroll +7261 - Casket +7262 - Clue scroll +7263 - Casket +7264 - Clue scroll +7265 - Casket +7266 - Clue scroll +7267 - Casket +7268 - Clue scroll +7269 - Challenge scroll +7270 - Clue scroll +7271 - Challenge scroll +7272 - Clue scroll +7273 - Challenge scroll +7274 - Clue scroll +7275 - Challenge scroll +7276 - Clue scroll +7277 - Challenge scroll +7278 - Clue scroll +7279 - Challenge scroll +7280 - Clue scroll +7281 - Challenge scroll +7282 - Clue scroll +7283 - Challenge scroll +7284 - Clue scroll +7285 - Challenge scroll +7286 - Clue scroll +7287 - Casket +7288 - Clue scroll +7289 - Casket +7290 - Clue scroll +7291 - Casket +7292 - Clue scroll +7293 - Casket +7294 - Clue scroll +7295 - Casket +7296 - Clue scroll +7297 - Key +7298 - Clue scroll +7299 - Key +7300 - Clue scroll +7301 - Clue scroll +7302 - Key +7303 - Clue scroll +7304 - Clue scroll +7305 - Clue scroll +7306 - Casket +7307 - Clue scroll +7308 - Casket +7309 - Clue scroll +7310 - Casket +7311 - Clue scroll +7312 - Casket +7313 - Clue scroll +7314 - Casket +7315 - Clue scroll +7316 - Casket +7317 - Clue scroll +7318 - Casket +7319 - Red boater +799 - Not Existing +7320 - Red boater +7321 - Orange boater +7322 - Orange boater +7323 - Green boater +7324 - Green boater +7325 - Blue boater +7326 - Blue boater +7327 - Black boater +7328 - Black boater +7329 - Red firelighter +7330 - Green firelighter +7331 - Blue firelighter +7332 - Black shield(h1) +7333 - Black shield(h1) +7334 - Adamant shield(h1) +7335 - Adamant shield(h1) +7336 - Rune shield(h1) +7337 - Rune shield(h1) +7338 - Black shield(h2) +7339 - Black shield(h2) +7340 - Adamant shield(h2) +7341 - Adamant shield(h2) +7342 - Rune shield(h2) +7343 - Rune shield(h2) +7344 - Black shield(h3) +7345 - Black shield(h3) +7346 - Adamant shield(h3) +7347 - Adamant shield(h3) +7348 - Rune shield(h3) +7349 - Rune shield(h3) +7350 - Black shield(h4) +7351 - Black shield(h4) +7352 - Adamant shield(h4) +7353 - Adamant shield(h4) +7354 - Rune shield(h4) +7355 - Rune shield(h4) +7356 - Black shield(h5) +7357 - Black shield(h5) +7358 - Adamant shield(h5) +7359 - Adamant shield(h5) +7360 - Rune shield(h5) +7361 - Rune shield(h5) +7362 - Studded body (g) +7363 - Studded body (g) +7364 - Studded body (t) +7365 - Studded body (t) +7366 - Studded chaps (g) +7367 - Studded chaps (g) +7368 - Studded chaps (t) +7369 - Studded chaps (t) +7370 - D'hide body(g) +7371 - D'hide body(g) +7372 - D'hide body (t) +7373 - D'hide body (t) +7374 - D'hide body (g) +7375 - D'hide body (g) +7376 - D'hide body (t) +7377 - D'hide body (t) +7378 - D'hide chaps (g) +7379 - D'hide chaps (g) +7380 - D'hide chaps (t) +7381 - D'hide chaps (t) +7382 - D'hide chaps (g) +7383 - D'hide chaps (g) +7384 - D'hide chaps (t) +7385 - D'hide chaps (t) +7386 - Blue skirt (g) +7387 - Blue skirt (g) +7388 - Blue skirt (t) +7389 - Blue skirt (t) +7390 - Wizard robe (g) +7391 - Wizard robe (g) +7392 - Wizard robe (t) +7393 - Wizard robe (t) +7394 - Wizard hat (g) +7395 - Wizard hat (g) +7396 - Wizard hat (t) +7397 - Wizard hat (t) +7398 - Enchanted robe +7399 - Enchanted top +7400 - Enchanted hat +7401 - Enchanted robe +7402 - Enchanted top +7403 - Enchanted hat +7404 - Red logs +7405 - Green logs +7406 - Blue logs +7158 - Dragon 2h sword +7407 - Dragon 2h sword +7408 - Draynor skull +7409 - Magic secateurs +7410 - Queen's secateurs +7411 - Symptoms list +7412 - Not Existing +7413 - Bird's nest +7414 - Paddle +7415 - Paddle +7416 - Mole claw +7417 - Mole claw +7418 - Mole skin +7419 - Mole skin +7420 - Mutated zygomite +7421 - Fungicide spray 10 +7422 - Fungicide spray 9 +7423 - Fungicide spray 8 +7424 - Fungicide spray 7 +7425 - Fungicide spray 6 +7426 - Fungicide spray 5 +7427 - Fungicide spray 4 +7428 - Fungicide spray 3 +7429 - Fungicide spray 2 +7430 - Fungicide spray 1 +7431 - Fungicide spray 0 +7432 - Fungicide +7433 - Wooden spoon +7434 - Wooden spoon +7435 - Egg whisk +7436 - Egg whisk +7437 - Spork +7438 - Spork +7439 - Spatula +7440 - Spatula +7441 - Frying pan +7442 - Frying pan +7443 - Skewer +7444 - Skewer +7445 - Rolling pin +7446 - Rolling pin +7447 - Kitchen knife +7448 - Kitchen knife +7449 - Meat tenderiser +7450 - Meat tenderiser +7451 - Cleaver +7452 - Cleaver +7453 - Gloves +7454 - Gloves +7455 - Gloves +7456 - Gloves +7457 - Gloves +7458 - Gloves +7459 - Gloves +7460 - Gloves +7461 - Gloves +7462 - Gloves +7463 - Cornflour +7464 - Book on chickens +7465 - Vanilla pod +7466 - Cornflour +7467 - Tinderbox +7468 - Pot of cornflour +7469 - Tinderbox +7470 - Cornflour mixture +7471 - Milky mixture +7472 - Cinnamon +7473 - Brulee +7474 - Brulee +7475 - Brulee +7476 - Brulee supreme +7477 - Evil chicken's egg +7478 - Dragon token +7479 - Spicy stew +7480 - Red spice (4) +7481 - Red spice (3) +7482 - Red spice (2) +7483 - Red spice (1) +7484 - Orange spice (4) +7485 - Orange spice (3) +7486 - Orange spice (2) +7487 - Orange spice (1) +7488 - Brown spice (4) +7489 - Brown spice (3) +7490 - Brown spice (2) +7491 - Brown spice (1) +7492 - Yellow spice (4) +7493 - Yellow spice (3) +7494 - Yellow spice (2) +7495 - Yellow spice (1) +7496 - Empty spice shaker +7497 - Dirty blast +7498 - Antique lamp +7499 - Evil dave +7500 - Dwarf +7501 - Goblins +7502 - Lumbridge guide +7503 - Monkey +7504 - Osman +7505 - Pirate pete +7506 - Sir amik varze +7507 - Skrach +7508 - Asgoldian ale +7509 - Dwarven rock cake +7510 - Dwarven rock cake +7511 - Slop of compromise +7512 - Soggy bread +7513 - Spicy maggots +7514 - Dyed orange +7515 - Breadcrumbs +7516 - Kelp +7517 - Ground kelp +7518 - Crab meat +7519 - Crab meat +7520 - Burnt crab meat +7521 - Cooked crab meat +799 - Not Existing +7522 - Cooked crab meat +7523 - Cooked crab meat +7524 - Cooked crab meat +7525 - Cooked crab meat +7526 - Cooked crab meat +7527 - Ground crab meat +7528 - Ground cod +7529 - Raw fishcake +7530 - Cooked fishcake +7531 - Burnt fishcake +7532 - Mudskipper hide +7533 - Rock +7534 - Fishbowl helmet +7535 - Diving apparatus +7536 - Fresh crab claw +7537 - Crab claw +7538 - Fresh crab shell +7539 - Crab helmet +7540 - Broken crab claw +7541 - Broken crab shell +7542 - Cake of guidance +7543 - Raw guide cake +7544 - Enchanted egg +7545 - Enchanted milk +7546 - Enchanted flour +7547 - Druid pouch +7548 - Potato seed +7549 - Potato seed +7550 - Onion seed +7551 - Onion seed +7552 - Mithril arrow +7553 - Mithril arrow +7554 - Fire rune +7555 - Fire rune +7556 - Water rune +7557 - Water rune +7558 - Air rune +7559 - Air rune +7560 - Chaos rune +7561 - Chaos rune +7562 - Tomato seed +7563 - Tomato seed +7564 - Balloon toad +7565 - Balloon toad +7566 - Raw jubbly +7567 - Raw jubbly +7568 - Cooked jubbly +7569 - Cooked jubbly +7570 - Burnt jubbly +7571 - Burnt jubbly +7572 - Red banana +7573 - Tchiki monkey nuts +7574 - Sliced red banana +7575 - Tchiki nut paste +7576 - Snake corpse +7577 - Raw stuffed snake +7578 - Odd stuffed snake +7579 - Stuffed snake +7580 - Snake over-cooked +7581 - Overgrown hellcat +7582 - Hell cat +7583 - Hell-kitten +7584 - Lazy hell cat +7585 - Wily hellcat +7586 - Dummy +7587 - Coffin +7588 - Coffin +7589 - Coffin +7590 - Coffin +7591 - Coffin +7592 - Zombie shirt +7593 - Zombie trousers +7594 - Zombie mask +7595 - Zombie gloves +7596 - Zombie boots +7597 - Item +7598 - Item +7599 - Item +7600 - Item +7601 - Item +7602 - Item +7603 - Item +7604 - Item +7605 - Item +7606 - Item +7607 - Item +7608 - Item +7609 - Item +7610 - Item +7611 - Item +7612 - Item +7613 - Item +7614 - Item +7615 - Item +7616 - Item +7617 - Item +7618 - Item +7619 - Not Existing +7620 - Silvthrill rod +7621 - Not Existing +7622 - Bucket of rubble +7623 - Tinderbox +7624 - Bucket of rubble +7625 - Tinderbox +7626 - Bucket of rubble +7627 - Tinderbox +7628 - Plaster fragment +7629 - Dusty scroll +7630 - Crate +7631 - Tinderbox +7632 - Temple library key +7633 - Ancient book +7634 - Battered tome +7635 - Leather book +7636 - Rod dust +7637 - Silvthrill rod +7638 - Silvthrill rod +7639 - Rod of ivandis(10) +7640 - Rod of ivandis(9) +7641 - Rod of ivandis(8) +7642 - Rod of ivandis(7) +7643 - Rod of ivandis(6) +7644 - Rod of ivandis(5) +7645 - Rod of ivandis(4) +7646 - Rod of ivandis(3) +7647 - Rod of ivandis(2) +7648 - Rod of ivandis(1) +7649 - Rod clay mould +7650 - Silver dust +799 - Not Existing +7651 - Silver dust +7652 - Guthix balance(unf) +7653 - Guthix balance(unf) +7654 - Guthix balance(unf) +7655 - Guthix balance(unf) +7656 - Guthix balance(unf) +7657 - Guthix balance(unf) +7658 - Guthix balance(unf) +7659 - Guthix balance(unf) +7660 - Guthix balance(4) +7661 - Guthix balance(4) +7662 - Guthix balance(3) +7663 - Guthix balance(3) +7664 - Guthix balance(2) +7665 - Guthix balance(2) +7666 - Guthix balance(1) +7667 - Guthix balance(1) +7668 - Gadderhammer +7669 - Gadderhammer +7670 - Not Existing +7671 - Boxing gloves +7672 - Picture +7673 - Boxing gloves +7674 - Perfect +7675 - Wooden sword +7676 - Wooden shield +7677 - Treasure stone +7678 - Prize key +7679 - Pugel +7680 - Pugel +7681 - Game book +7682 - Hoop +7683 - Hoop +7684 - Dart +7685 - Dart +7686 - Bow and arrow +7687 - Bow and arrow +7688 - Kettle +7689 - Kettle +7690 - Full kettle +7691 - Hot kettle +7692 - Pot of tea (4) +7693 - Pot of tea (4) +7694 - Pot of tea (3) +7695 - Pot of tea (3) +7696 - Pot of tea (2) +7697 - Pot of tea (2) +7698 - Pot of tea (1) +7699 - Pot of tea (1) +7700 - Teapot with leaves +7701 - Teapot with leaves +7702 - Teapot +7703 - Teapot +7704 - Pot of tea (4) +7705 - Pot of tea (4) +7706 - Pot of tea (3) +7707 - Pot of tea (3) +7708 - Pot of tea (2) +7709 - Pot of tea (2) +7710 - Pot of tea (1) +7711 - Pot of tea (1) +7712 - Teapot with leaves +7713 - Teapot with leaves +7714 - Teapot +7715 - Teapot +7716 - Pot of tea (4) +7717 - Pot of tea (4) +7718 - Pot of tea (3) +7719 - Pot of tea (3) +7720 - Pot of tea (2) +7721 - Pot of tea (2) +7722 - Pot of tea (1) +7723 - Pot of tea (1) +7724 - Teapot with leaves +7725 - Teapot with leaves +7726 - Teapot +7727 - Teapot +7728 - Empty cup +7729 - Empty cup +7730 - Cup of tea +7731 - Cup of tea +7732 - Porcelain cup +7733 - Cup of tea +7734 - Cup of tea +7735 - Porcelain cup +7736 - Cup of tea +7737 - Cup of tea +7738 - Tea leaves +7739 - Tea leaves +7740 - Beer +7741 - Beer +7742 - Beer glass +7743 - Beer glass +7744 - Asgarnian ale +7745 - Asgarnian ale +7746 - Greenman's ale +7747 - Greenman's ale +7748 - Dragon bitter +7749 - Dragon bitter +7750 - Moonlight mead +7751 - Moonlight mead +7752 - Cider +7753 - Cider +7754 - Chef's delight +7755 - Chef's delight +7756 - Paintbrush +7757 - Paintbrush +7758 - Rusty sword +7759 - Toy soldier +7760 - Toy soldier +7761 - Toy soldier (wound) +7762 - Toy soldier (wound) +7763 - Toy doll +7764 - Toy doll +7765 - Toy doll (wound) +7766 - Toy doll (wound) +7767 - Toy mouse +7768 - Toy mouse +7769 - Toy mouse (wound) +7770 - Toy mouse (wound) +7771 - Clockwork cat +7772 - Clockwork cat +7773 - Branch +7774 - Reward token +7775 - Reward token +7776 - Reward token +7777 - Long vine +7778 - Short vine +7779 - Fishing tome +7780 - Fishing tome +7781 - Fishing tome +7782 - Agility tome +7783 - Agility tome +7784 - Agility tome +7785 - Thieving tome +7786 - Thieving tome +7787 - Thieving tome +7788 - Slayer tome +7789 - Slayer tome +7790 - Slayer tome +7791 - Mining tome +7792 - Mining tome +7793 - Mining tome +7794 - Firemaking tome +7795 - Firemaking tome +7796 - Firemaking tome +7797 - Woodcutting tome +7798 - Woodcutting tome +7799 - Woodcutting tome +7800 - Snail shell +7801 - Snake hide +7802 - Snake hide +7803 - Yin yang amulet +7804 - Picture +7805 - Picture +7806 - Anger sword +7807 - Anger battleaxe +7808 - Anger mace +7809 - Anger spear +7810 - Jug of vinegar +7811 - Pot of vinegar +7812 - Goblin skull +7813 - Bone in vinegar +7814 - Goblin skull +7815 - Bear ribs +7816 - Bone in vinegar +7817 - Bear ribs +7818 - Ram skull +7819 - Bone in vinegar +7820 - Ram skull +7821 - Unicorn bone +7822 - Bone in vinegar +7823 - Unicorn bone +7824 - Giant rat bone +7825 - Bone in vinegar +7826 - Giant rat bone +7827 - Giant bat wing +7828 - Bone in vinegar +7829 - Giant bat wing +7830 - Wolf bone +7831 - Bone in vinegar +7832 - Wolf bone +7833 - Bat wing +7834 - Bone in vinegar +7835 - Bat wing +7836 - Rat bone +7837 - Bone in vinegar +7838 - Rat bone +7839 - Baby dragon bone +7840 - Bone in vinegar +7841 - Baby dragon bone +7842 - Ogre ribs +7843 - Bone in vinegar +7844 - Ogre ribs +7845 - Jogre bone +7846 - Bone in vinegar +7847 - Jogre bone +7848 - Zogre bone +7849 - Bone in vinegar +7850 - Zogre bone +7851 - Mogre bone +7852 - Bone in vinegar +7853 - Mogre bone +7854 - Monkey paw +7855 - Bone in vinegar +7856 - Monkey paw +7857 - Dagannoth ribs +7858 - Bone in vinegar +7859 - Dagannoth ribs +7860 - Snake spine +7861 - Bone in vinegar +7862 - Snake spine +7863 - Zombie bone +7864 - Bone in vinegar +7865 - Zombie bone +7866 - Werewolf bone +7867 - Bone in vinegar +7868 - Werewolf bone +7869 - Moss giant bone +7870 - Bone in vinegar +7871 - Moss giant bone +7872 - Fire giant bone +7873 - Bone in vinegar +7874 - Fire giant bone +7875 - Ice giant ribs +7876 - Bone in vinegar +7877 - Ice giant ribs +7878 - Terrorbird wing +7879 - Bone in vinegar +7880 - Terrorbird wing +7881 - Ghoul bone +7882 - Bone in vinegar +7883 - Ghoul bone +7884 - Troll bone +7885 - Bone in vinegar +7886 - Troll bone +7887 - Seagull wing +7888 - Bone in vinegar +7889 - Seagull wing +7890 - Undead cow ribs +7891 - Bone in vinegar +7892 - Undead cow ribs +7893 - Experiment bone +7894 - Bone in vinegar +7895 - Experiment bone +7896 - Rabbit bone +7897 - Bone in vinegar +7898 - Rabbit bone +7899 - Basilisk bone +7900 - Bone in vinegar +7901 - Basilisk bone +7902 - Desert lizard bone +7903 - Bone in vinegar +7904 - Desert lizard bone +7905 - Cave goblin skull +7906 - Bone in vinegar +7907 - Cave goblin skull +7908 - Big frog leg +7909 - Bone in vinegar +7910 - Big frog leg +7911 - Vulture wing +7912 - Bone in vinegar +7913 - Vulture wing +7914 - Jackal bone +7915 - Bone in vinegar +7916 - Jackal bone +7917 - Ram skull helm +7918 - Bonesack +7919 - Bottle of wine +799 - Not Existing +7920 - Bottle of wine +7921 - Empty wine bottle +7922 - Al kharid flyer +7923 - Not Existing +7924 - Not Existing +7925 - Not Existing +7926 - Not Existing +7927 - Easter ring +7928 - Easter egg +7929 - Easter egg +7930 - Easter egg +7931 - Easter egg +7932 - Easter egg +7933 - Easter egg +7934 - Field ration +7935 - Field ration +7936 - Pure essence +7937 - Pure essence +7938 - Bob +7939 - Tortoise shell +7940 - Tortoise shell +7941 - Iron sheet +7942 - Fresh monkfish +7943 - Fresh monkfish +7944 - Raw monkfish +7945 - Raw monkfish +7946 - Monkfish +7947 - Monkfish +7948 - Burnt monkfish +7949 - Burnt monkfish +7950 - Bone seeds +7951 - Herman's book +7952 - Picture +7953 - Picture +7954 - Burnt shrimp +7955 - Burnt shrimp +7956 - Casket +7957 - White apron +7958 - Mining prop +7959 - Heavy box +7960 - Empty box +7961 - Burnt diary +7962 - Burnt diary +7963 - Burnt diary +7964 - Burnt diary +7965 - Burnt diary +7966 - Letter +7967 - Engine +7968 - Scroll +7969 - Pulley beam +7970 - Long pulley beam +7971 - Longer pulley beam +7972 - Lift manual +7973 - Beam +7974 - Servant bell +7975 - Crawling hand +7976 - Cockatrice head +7977 - Basilisk head +7978 - Kurask head +7979 - Abyssal head +7980 - Kbd heads +7981 - Kq head +7982 - Crawling hand +7983 - Cockatrice head +7984 - Basilisk head +7985 - Kurask head +7986 - Abyssal head +7987 - Kbd heads +7988 - Kq head +7989 - Big bass +7990 - Big bass +7991 - Big swordfish +7992 - Big swordfish +7993 - Big shark +7994 - Big shark +7995 - Arthur portrait +7996 - Elena portrait +7997 - Keldagrim portrait +7998 - Misc. portrait +7999 - Desert painting +8000 - Isafdar painting +8001 - Karamja painting +8002 - Lumbridge painting +8003 - Morytania painting +8004 - Small map +8005 - Medium map +8006 - Large map +8007 - Varrock teleport +8008 - Lumbridge teleport +8009 - Falador teleport +8010 - Camelot teleport +8011 - Ardougne teleport +8012 - Watchtower t'port +8013 - Teleport to house +8014 - Bones to bananas +8015 - Bones to peaches +8016 - Enchant sapphire +8017 - Enchant emerald +8018 - Enchant ruby +8019 - Enchant diamond +8020 - Enchant dragonstn. +8021 - Enchant onyx +8022 - Telekinetic grab +8023 - Boxing ring +8024 - Fencing ring +8025 - Combat ring +8026 - Ranging pedestals +8027 - Balance beam +8028 - Glove rack +8029 - Weapons rack +8030 - Extra weapons rack +8031 - Wooden bed +8032 - Oak bed +8033 - Large oak bed +8034 - Teak bed +8035 - Large teak bed +8036 - 4-poster +8037 - Gilded 4-poster +8038 - Shoe box +8039 - Oak drawers +8040 - Oak wardrobe +8041 - Teak drawers +8042 - Teak wardrobe +8043 - Mahogany 'drobe +8044 - Gilded wardrobe +8045 - Shaving stand +8046 - Oak shaving stand +8047 - Oak dresser +8048 - Teak dresser +8049 - Fancy teak dresser +8050 - Mahogany dresser +8051 - Gilded dresser +8052 - Oak clock +8053 - Teak clock +8054 - Gilded clock +8055 - Saradomin symbol +8056 - Zamorak symbol +8057 - Guthix symbol +8058 - Saradomin icon +8059 - Zamorak icon +8060 - Guthix icon +8061 - Icon of bob +8062 - Oak altar +8063 - Teak altar +8064 - Cloth-cover'd altar +8065 - Mahogany altar +8066 - Limestone altar +8067 - Marble altar +8068 - Gilded altar +8069 - Wooden torches +8070 - Steel torches +8071 - Steel candlesticks +8072 - Gold candlesticks +8073 - Incense burners +8074 - Mahogany burners +8075 - Marble burners +8076 - Shuttered window +8077 - Decorative window +8078 - Stained glass +8079 - Windchimes +8080 - Bells +8081 - Organ +8082 - Small statues +8083 - Medium statues +8084 - Large statues +8085 - Suit of armour +8086 - Small portrait +8087 - Minor head +8088 - Medium head +8089 - Major head +8090 - Mounted sword +8091 - Small landscape +8092 - Guild trophy +8093 - Large portrait +8094 - Large landscape +8095 - Rune display case +8096 - Low-level plants +8097 - Mid-level plants +8098 - High-level plants +8099 - Rope bell-pull +8100 - Bell-pull +8101 - Posh bell-pull +8102 - Oak decoration +8103 - Teak decoration +8104 - Gilded decoration +8105 - Round shield +8106 - Square shield +8107 - Kite shield +8108 - Wooden bench +8109 - Oak bench +8110 - Carved oak bench +8111 - Teak dining bench +8112 - Carved teak bench +8113 - Mahogany bench +8114 - Gilded bench +8115 - Wood dining table +8116 - Oak dining table +8117 - Carved oak table +8118 - Teak table +8119 - Carved teak table +8120 - Mahogany table +8121 - Opulent table +8122 - Oak door +8123 - Steel-plated door +8124 - Marble door +8125 - Decorative blood +8126 - Decorative pipe +8127 - Hanging skeleton +8128 - Candles +8129 - Torches +8130 - Skull torches +8131 - Skeleton guard +8132 - Guard dog +8133 - Hobgoblin guard +8134 - Baby red dragon +8135 - Huge spider +8136 - Troll guard +8137 - Hellhound +8138 - Demon +8139 - Kalphite soldier +8140 - Tok-xil +8141 - Dagannoth +8142 - Steel dragon +8143 - Spike trap +8144 - Man trap +8145 - Tangle vine +8146 - Marble trap +8147 - Teleport trap +8148 - Wooden crate +8149 - Oak chest +8150 - Teak chest +8151 - Mahogany chest +8152 - Magic chest +8153 - Clay attack stone +8154 - Attack stone +8155 - Marble att. stone +8156 - Magical balance 1 +8157 - Magical balance 2 +8158 - Magical balance 3 +8159 - Jester +8160 - Treasure hunt +8161 - Hangman game +8162 - Hoop and stick +8163 - Dartboard +8164 - Archery target +8165 - Oak prize chest +8166 - Teak prize chest +8167 - Mahogany chest +8168 - Exit portal +8169 - Decorative rock +8170 - Pond +8171 - Imp statue +8172 - Dungeon entrance +8173 - Tree +8174 - Nice tree +8175 - Oak tree +8176 - Willow tree +8177 - Maple tree +8178 - Yew tree +8179 - Magic tree +8180 - Plant +8181 - Small fern +8182 - Fern +8183 - Dock leaf +8184 - Thistle +8185 - Reeds +8186 - Fern +8187 - Bush +8188 - Tall plant +8189 - Short plant +8190 - Large-leaf plant +8191 - Huge plant +8192 - Gazebo +8193 - Small fountain +8194 - Large fountain +8195 - Posh fountain +8196 - Boundary stones +8197 - Wooden fence +8198 - Stone wall +8199 - Iron railings +8200 - Picket fence +8201 - Garden fence +8202 - Marble wall +8203 - Thorny hedge +8204 - Nice hedge +8205 - Small box hedge +8206 - Topiary hedge +8207 - Fancy hedge +8208 - Tall fancy hedge +8209 - Tall box hedge +8210 - Rosemary +8211 - Daffodils +8212 - Bluebells +8213 - Sunflower +8214 - Marigolds +8215 - Roses +8216 - Firepit +8217 - Firepit with hook +8218 - Firepit with pot +8219 - Small oven +8220 - Large oven +8221 - Steel range +8222 - Fancy range +8223 - Wooden shelves 1 +8224 - Wooden shelves 2 +8225 - Wooden shelves 3 +8226 - Oak shelves 1 +8227 - Oak shelves 2 +8228 - Teak shelves 1 +8229 - Teak shelves 2 +8230 - Pump and drain +8231 - Pump and tub +8232 - Sink +8233 - Wooden larder +8234 - Oak larder +8235 - Teak larder +8236 - Cat blanket +8237 - Cat basket +8238 - Cushioned basket +8239 - Beer barrel +8240 - Cider barrel +8241 - Asgarnian ale +8242 - Greenman's ale +8243 - Dragon bitter +8244 - Chef's delight +8245 - Blank poh entity +8246 - Wood kitchen table +8247 - Oak kitchen table +8248 - Teak kitchen table +8249 - Oak staircase +8250 - Oak staircase +8251 - Oak staircase +8252 - Teak staircase +8253 - Teak staircase +8254 - Teak staircase +8255 - Marble staircase +8256 - Marble staircase +8257 - Marble staircase +8258 - Spiral staircase +8259 - Marble spiral +8260 - Crawling hand +8261 - Cockatrice head +8262 - Basilisk head +8263 - Kurask head +8264 - Abyssal head +8265 - Kbd heads +8266 - Kq head +8267 - Mounted bass +8268 - Mounted swordfish +8269 - Mounted shark +8270 - Mithril armour +8271 - Adamantite armour +8272 - Runite armour +8273 - Cw armour 1 +8274 - Cw armour 2 +8275 - Cw armour 3 +8276 - Rune case 1 +8277 - Rune case 2 +8278 - Rune case 3 +8279 - Silverlight +8280 - Excalibur +8281 - Darklight +8282 - Anti-dragon shield +8283 - Amulet of glory +8284 - Cape of legends +8285 - King arthur +8286 - Elena +8287 - Giant dwarf +8288 - Miscellanians +8289 - Lumbridge +8290 - The desert +8291 - Morytania +8292 - Karamja +8293 - Isafdar +8294 - Small map +8295 - Medium map +8296 - Large map +8297 - Oak cage +8298 - Oak and steel cage +8299 - Steel cage +8300 - Spiked cage +8301 - Bone cage +8302 - Spikes +8303 - Tentacle pool +8304 - Flame pit +8305 - Rocnar +8306 - Oak ladder +8307 - Teak ladder +8308 - Mahogany ladder +8309 - Crude wooden chair +8310 - Wooden chair +8311 - Rocking chair +8312 - Oak chair +8313 - Oak armchair +8314 - Teak armchair +8315 - Mahogany armchair +8316 - Brown rug +8317 - Rug +8318 - Opulent rug +8319 - Wooden bookcase +8320 - Oak bookcase +8321 - Mahogany b'kcase +8322 - Torn curtains +8323 - Curtains +8324 - Opulent curtains +8325 - Clay fireplace +8326 - Stone fireplace +8327 - Marble fireplace +8328 - Teak portal +8329 - Mahogany portal +8330 - Marble portal +8331 - Teleport focus +8332 - Greater focus +8333 - Scrying pool +8334 - Oak lectern +8335 - Eagle lectern +8336 - Demon lectern +8337 - Teak eagle lectern +8338 - Teak demon lectern +8339 - Mahogany eagle +8340 - Mahogany demon +8341 - Globe +8342 - Ornamental globe +8343 - Lunar globe +8344 - Celestial globe +8345 - Armillary sphere +8346 - Small orrery +8347 - Large orrery +8348 - Wooden telescope +8349 - Teak telescope +8350 - Mahogany 'scope +8351 - Crystal ball +8352 - Elemental sphere +8353 - Crystal of power +8354 - Alchemical chart +8355 - Astronomical chart +8356 - Infernal chart +8357 - Oak throne +8358 - Teak throne +8359 - Mahogany throne +8360 - Gilded throne +8361 - Skeleton throne +8362 - Crystal throne +8363 - Demonic throne +8364 - Oak lever +8365 - Teak lever +8366 - Mahogany lever +8367 - Trapdoor +8368 - Trapdoor +8369 - Trapdoor +8370 - Floor decoration +8371 - Steel cage +8372 - Trapdoor +8373 - Lesser magic cage +8374 - Greater magic cage +8375 - Wooden workbench +8376 - Oak workbench +8377 - Steel framed bench +8378 - Bench with vice +8379 - Bench with lathe +8380 - Crafting table 1 +8381 - Crafting table 2 +8382 - Crafting table 3 +8383 - Crafting table 4 +8384 - Tool store 1 +8385 - Tool store 2 +8386 - Tool store 3 +8387 - Tool store 4 +8388 - Tool store 5 +8389 - Repair bench +8390 - Whetstone +8391 - Armour stand +8392 - Pluming stand +8393 - Shield easel +8394 - Banner easel +8395 - Parlour +8396 - Kitchen +8397 - Dining room +8398 - Bedroom +8399 - Games room +8400 - Combat room +8401 - Hall +8402 - Hall +8403 - Hall +8404 - Hall +8405 - Chapel +8406 - Workshop +8407 - Study +8408 - Portal chamber +8409 - Throne room +8410 - Oubliette +8411 - Dungeon corridor +8412 - Dungeon cross +8413 - Dungeon stairs +8414 - Treasure room +8415 - Garden +8416 - Formal garden +8417 - Bagged dead tree +799 - Not Existing +8418 - Bagged dead tree +8419 - Bagged nice tree +8420 - Bagged nice tree +8421 - Bagged oak tree +8422 - Bagged oak tree +8423 - Bagged willow tree +8424 - Bagged willow tree +8425 - Bagged maple tree +8426 - Bagged maple tree +8427 - Bagged yew tree +8428 - Bagged yew tree +8429 - Bagged magic tree +8430 - Bagged magic tree +8431 - Bagged plant 1 +8432 - Bagged plant 1 +8433 - Bagged plant 2 +8434 - Bagged plant 2 +8435 - Bagged plant 3 +8436 - Bagged plant 3 +8437 - Thorny hedge +8438 - Thorny hedge +8439 - Nice hedge +8440 - Nice hedge +8441 - Small box hedge +8442 - Small box hedge +8443 - Topiary hedge +8444 - Topiary hedge +8445 - Fancy hedge +8446 - Fancy hedge +8447 - Tall fancy hedge +8448 - Tall fancy hedge +8449 - Tall box hedge +8450 - Tall box hedge +8451 - Bagged rosemary +8452 - Bagged rosemary +8453 - Bagged daffodils +8454 - Bagged daffodils +8455 - Bagged bluebells +8456 - Bagged bluebells +8457 - Bagged sunflower +8458 - Bagged sunflower +8459 - Bagged marigolds +8460 - Bagged marigolds +8461 - Bagged roses +8462 - Bagged roses +8463 - Construction guide +8464 - Rune heraldic helm +8465 - Not Existing +8466 - Rune heraldic helm +8467 - Not Existing +8468 - Rune heraldic helm +8469 - Not Existing +8470 - Rune heraldic helm +8471 - Not Existing +8472 - Rune heraldic helm +8473 - Not Existing +8474 - Rune heraldic helm +8475 - Not Existing +8476 - Rune heraldic helm +8477 - Not Existing +8478 - Rune heraldic helm +8479 - Not Existing +8480 - Rune heraldic helm +8481 - Not Existing +8482 - Rune heraldic helm +8483 - Not Existing +8484 - Rune heraldic helm +8485 - Not Existing +8486 - Rune heraldic helm +8487 - Not Existing +8488 - Rune heraldic helm +8489 - Not Existing +8490 - Rune heraldic helm +8491 - Not Existing +8492 - Rune heraldic helm +8493 - Not Existing +8494 - Rune heraldic helm +8495 - Not Existing +8496 - Crude wooden chair +8497 - Crude wooden chair +8498 - Wooden chair +8499 - Wooden chair +8500 - Rocking chair +8501 - Rocking chair +8502 - Oak chair +8503 - Oak chair +8504 - Oak armchair +8505 - Oak armchair +8506 - Teak armchair +8507 - Teak armchair +8508 - Mahogany armchair +8509 - Mahogany armchair +8510 - Wooden bookcase +8511 - Wooden bookcase +8512 - Oak bookcase +8513 - Oak bookcase +8514 - Mahogany b'kcase +8515 - Mahogany b'kcase +8516 - Beer barrel +8517 - Beer barrel +8518 - Cider barrel +8519 - Cider barrel +8520 - Asgarnian ale +8521 - Asgarnian ale +8522 - Greenman's ale +8523 - Greenman's ale +8524 - Dragon bitter +8525 - Dragon bitter +8526 - Chef's delight +8527 - Chef's delight +8528 - Wood kitchen table +8529 - Wood kitchen table +8530 - Oak kitchen table +8531 - Oak kitchen table +8532 - Teak kitchen table +8533 - Teak kitchen table +8534 - Oak lectern +8535 - Oak lectern +8536 - Eagle lectern +8537 - Eagle lectern +8538 - Demon lectern +8539 - Demon lectern +8540 - Teak eagle lectern +8541 - Teak eagle lectern +8542 - Teak demon lectern +8543 - Teak demon lectern +8544 - Mahogany eagle +8545 - Mahogany eagle +8546 - Mahogany demon +8547 - Mahogany demon +8548 - Wood dining table +8549 - Wood dining table +8550 - Oak dining table +8551 - Oak dining table +8552 - Carved oak table +8553 - Carved oak table +8554 - Teak table +8555 - Teak table +8556 - Carved teak table +8557 - Carved teak table +8558 - Mahogany table +8559 - Mahogany table +8560 - Opulent table +8561 - Opulent table +8562 - Wooden bench +8563 - Wooden bench +8564 - Oak bench +8565 - Oak bench +8566 - Carved oak bench +8567 - Carved oak bench +8568 - Teak dining bench +8569 - Teak dining bench +8570 - Carved teak bench +8571 - Carved teak bench +8572 - Mahogany bench +8573 - Mahogany bench +8574 - Gilded bench +8575 - Gilded bench +8576 - Wooden bed +8577 - Wooden bed +8578 - Oak bed +8579 - Oak bed +8580 - Large oak bed +8581 - Large oak bed +8582 - Teak bed +8583 - Teak bed +8584 - Large teak bed +8585 - Large teak bed +8586 - 4-poster +8587 - 4-poster +8588 - Gilded 4-poster +8589 - Gilded 4-poster +8590 - Oak clock +8591 - Oak clock +8592 - Teak clock +8593 - Teak clock +8594 - Gilded clock +8595 - Gilded clock +8596 - Shaving stand +8597 - Shaving stand +8598 - Oak shaving stand +8599 - Oak shaving stand +8600 - Oak dresser +8601 - Oak dresser +8602 - Teak dresser +8603 - Teak dresser +8604 - Fancy teak dresser +8605 - Fancy teak dresser +8606 - Mahogany dresser +8607 - Mahogany dresser +8608 - Gilded dresser +8609 - Gilded dresser +8610 - Shoe box +8611 - Shoe box +8612 - Oak drawers +8613 - Oak drawers +8614 - Oak wardrobe +8615 - Oak wardrobe +8616 - Teak drawers +8617 - Teak drawers +8618 - Teak wardrobe +8619 - Teak wardrobe +8620 - Mahogany 'drobe +8621 - Mahogany 'drobe +8622 - Gilded wardrobe +8623 - Gilded wardrobe +8624 - Crystal ball +8625 - Crystal ball +8626 - Elemental sphere +8627 - Elemental sphere +8628 - Crystal of power +8629 - Crystal of power +8630 - Globe +8631 - Globe +8632 - Ornamental globe +8633 - Ornamental globe +8634 - Lunar globe +8635 - Lunar globe +8636 - Celestial globe +8637 - Celestial globe +8638 - Armillary sphere +8639 - Armillary sphere +8640 - Small orrery +8641 - Small orrery +8642 - Large orrery +8643 - Large orrery +8644 - Wooden telescope +8645 - Wooden telescope +8646 - Teak telescope +8647 - Teak telescope +8648 - Mahogany 'scope +8649 - Mahogany 'scope +8650 - Banner +8651 - Not Existing +8652 - Banner +8653 - Not Existing +8654 - Banner +8655 - Not Existing +8656 - Banner +8657 - Not Existing +8658 - Banner +8659 - Not Existing +8660 - Banner +8661 - Not Existing +8662 - Banner +8663 - Not Existing +8664 - Banner +8665 - Not Existing +8666 - Banner +8667 - Not Existing +8668 - Banner +8669 - Not Existing +8670 - Banner +8671 - Not Existing +8672 - Banner +8673 - Not Existing +8674 - Banner +8675 - Not Existing +8676 - Banner +8677 - Not Existing +8678 - Banner +8679 - Not Existing +8680 - Banner +8681 - Not Existing +8682 - Steel heraldic helm +8683 - Not Existing +8684 - Steel heraldic helm +8685 - Not Existing +8686 - Steel heraldic helm +8687 - Not Existing +8688 - Steel heraldic helm +8689 - Not Existing +8690 - Steel heraldic helm +8691 - Not Existing +8692 - Steel heraldic helm +8693 - Not Existing +8694 - Steel heraldic helm +8695 - Not Existing +8696 - Steel heraldic helm +8697 - Not Existing +8698 - Steel heraldic helm +8699 - Not Existing +8700 - Steel heraldic helm +8701 - Not Existing +8702 - Steel heraldic helm +8703 - Not Existing +8704 - Steel heraldic helm +8705 - Not Existing +8706 - Steel heraldic helm +8707 - Not Existing +8708 - Steel heraldic helm +8709 - Not Existing +8710 - Steel heraldic helm +8711 - Not Existing +8712 - Steel heraldic helm +8713 - Not Existing +8714 - Rune kiteshield +8715 - Not Existing +8716 - Rune kiteshield +8717 - Not Existing +8718 - Rune kiteshield +8719 - Not Existing +8720 - Rune kiteshield +8721 - Not Existing +8722 - Rune kiteshield +8723 - Not Existing +8724 - Rune kiteshield +8725 - Not Existing +8726 - Rune kiteshield +8727 - Not Existing +8728 - Rune kiteshield +8729 - Not Existing +8730 - Rune kiteshield +8731 - Not Existing +8732 - Rune kiteshield +8733 - Not Existing +8734 - Rune kiteshield +8735 - Not Existing +8736 - Rune kiteshield +8737 - Not Existing +8738 - Rune kiteshield +8739 - Not Existing +8740 - Rune kiteshield +8741 - Not Existing +8742 - Rune kiteshield +8743 - Not Existing +8744 - Rune kiteshield +8745 - Not Existing +8746 - Steel kiteshield +8747 - Not Existing +8748 - Steel kiteshield +8749 - Not Existing +8750 - Steel kiteshield +8751 - Not Existing +8752 - Steel kiteshield +8753 - Not Existing +8754 - Steel kiteshield +8755 - Not Existing +8756 - Steel kiteshield +8757 - Not Existing +8758 - Steel kiteshield +8759 - Not Existing +8760 - Steel kiteshield +8761 - Not Existing +8762 - Steel kiteshield +8763 - Not Existing +8764 - Steel kiteshield +8765 - Not Existing +8766 - Steel kiteshield +8767 - Not Existing +8768 - Steel kiteshield +8769 - Not Existing +8770 - Steel kiteshield +8771 - Not Existing +8772 - Steel kiteshield +8773 - Not Existing +8774 - Steel kiteshield +8775 - Not Existing +8776 - Steel kiteshield +8777 - Not Existing +8778 - Oak plank +799 - Not Existing +8779 - Oak plank +8780 - Teak plank +8781 - Teak plank +8782 - Mahogany plank +8783 - Mahogany plank +8784 - Gold leaf +8785 - Gold leaf +8786 - Marble block +8787 - Marble block +8788 - Magic stone +8789 - Magic stone +8790 - Bolt of cloth +8791 - Bolt of cloth +8792 - Clockwork +8793 - Clockwork +8794 - Saw +8795 - Saw +8796 - Thing +8797 - Picture +8798 - Not Existing +8799 - Not Existing +8800 - Not Existing +8801 - Not Existing +8802 - Not Existing +8803 - Not Existing +8804 - Not Existing +8805 - Not Existing +8806 - Not Existing +8807 - Not Existing +8808 - Not Existing +8809 - Not Existing +8810 - Not Existing +8811 - Not Existing +8812 - Not Existing +8813 - Not Existing +8814 - Not Existing +8815 - Not Existing +8816 - Not Existing +8817 - Not Existing +8818 - Not Existing +8819 - Not Existing +8820 - Not Existing +8821 - Not Existing +8822 - Not Existing +8823 - Not Existing +8824 - Not Existing +8825 - Not Existing +8826 - Not Existing +8827 - Not Existing +8828 - Not Existing +8829 - Not Existing +8830 - Not Existing +8831 - Not Existing +8832 - Not Existing +8833 - Not Existing +8834 - Not Existing +8835 - Not Existing +6332 - Mahogany logs +8836 - Mahogany logs +8837 - Timber beam +8838 - Timber beam +8839 - Void knight top +8840 - Void knight robe +8841 - Void knight mace +8842 - Void knight gloves +8843 - Not Existing +8844 - Bronze defender +8845 - Iron defender +8846 - Steel defender +8847 - Black defender +8848 - Mithril defender +8849 - Adamant defender +8850 - Rune defender +8851 - Warrior guild token +8852 - Not Existing +8853 - Not Existing +8854 - Not Existing +8855 - Not Existing +8856 - Defensive shield +8857 - Shot +8858 - 18lb shot +8859 - 22lb shot +8860 - One barrel +8861 - Two barrels +8862 - Three barrels +8863 - Four barrels +8864 - Five barrels +8865 - Ground ashes +8866 - Steel key +8867 - Bronze key +8868 - Silver key +8869 - Iron key +8870 - Zanik +8871 - Crate with zanik +8872 - Bone dagger +8873 - Bone dagger +8874 - Bone dagger (p) +8875 - Bone dagger (p) +8876 - Bone dagger (p+) +8877 - Bone dagger (p+) +8878 - Bone dagger (p++) +8879 - Bone dagger (p++) +8880 - Dorgeshuun c'bow +8881 - Dorgeshuun c'bow +8882 - Bone bolts +8883 - Not Existing +8884 - Not Existing +8885 - Not Existing +8886 - Not Existing +8887 - Zanik +8888 - Zanik (ham) +8889 - Zanik (showdown) +8890 - Coins +8891 - Not Existing +8892 - Not Existing +8893 - Not Existing +8894 - Not Existing +8895 - Not Existing +8896 - Not Existing +8897 - Not Existing +8898 - Not Existing +8899 - Not Existing +8900 - Cave horror +8901 - Black mask (10) +8902 - Black mask (10) +8903 - Black mask (9) +8904 - Black mask (9) +8905 - Black mask (8) +8906 - Black mask (8) +8907 - Black mask (7) +8908 - Black mask (7) +8909 - Black mask (6) +8910 - Black mask (6) +8911 - Black mask (5) +8912 - Black mask (5) +8913 - Black mask (4) +8914 - Black mask (4) +8915 - Black mask (3) +8916 - Black mask (3) +8917 - Black mask (2) +8918 - Black mask (2) +8919 - Black mask (1) +8920 - Black mask (1) +8921 - Black mask +8922 - Black mask +8923 - Witchwood icon +8924 - Bandana and eyepatch +8925 - Bandana and eyepatch +8926 - Bandana and eyepatch +8927 - Bandana and eyepatch +8928 - Hat and eyepatch +8929 - Crabclaw and hook +8930 - Pipe section +8931 - Pipe section +8932 - Lumber patch +8933 - Lumber patch +8934 - Scrapey tree logs +8935 - Scrapey tree logs +8936 - Blue flowers +8937 - Blue flowers +8938 - Red flowers +8939 - Red flowers +8940 - Rum +8941 - Rum +8942 - Monkey +8943 - Blue monkey +8944 - Blue monkey +8945 - Blue monkey +8946 - Red monkey +8947 - Red monkey +8948 - Red monkey +8949 - Pirate bandana +8950 - Pirate hat +8951 - Pieces of eight +8952 - Blue naval shirt +8953 - Green naval shirt +8954 - Red naval shirt +8955 - Brown naval shirt +8956 - Black naval shirt +8957 - Purple naval shirt +8958 - Grey naval shirt +8959 - Blue tricorn hat +8960 - Green tricorn hat +8961 - Red tricorn hat +8962 - Brown tricorn hat +8963 - Black tricorn hat +8964 - Purple tricorn hat +8965 - Grey tricorn hat +8966 - Cutthroat flag +8967 - Guilded smile flag +8968 - Bronze fist flag +8969 - Lucky shot flag +8970 - Treasure flag +8971 - Phasmatys flag +8972 - Bowl of red water +8973 - Bowl of red water +8974 - Bowl of blue water +8975 - Bowl of blue water +8976 - Bitternut +8977 - Scrapey bark +8978 - Scrapey bark +8979 - Bridge section +8980 - Bridge section +8981 - Sweetgrubs +8982 - Sweetgrubs +8983 - Not Existing +8984 - Not Existing +8985 - Not Existing +8986 - Bucket +8987 - Torch +8988 - The stuff +8989 - Brewin' guide +8990 - Brewin' guide +8991 - Blue navy slacks +8992 - Green navy slacks +8993 - Red navy slacks +8994 - Brown navy slacks +8995 - Black navy slacks +8996 - Purple navy slacks +8997 - Grey navy slacks +8924 - Bandana and eyepatch +8998 - Bandana and eyepatch +8925 - Bandana and eyepatch +8999 - Bandana and eyepatch +8926 - Bandana and eyepatch +9000 - Bandana and eyepatch +8927 - Bandana and eyepatch +9001 - Bandana and eyepatch +8928 - Hat and eyepatch +9002 - Hat and eyepatch +9003 - Security book +9004 - Stronghold notes +9005 - Fancy boots +9006 - Fighting boots +9007 - Right skull half +9008 - Left skull half +9009 - Strange skull +9010 - Top of sceptre +9011 - Bottom of sceptre +9012 - Runed sceptre +9013 - Skull sceptre +9014 - Security book +9015 - Stronghold notes +9016 - Gorak claws +9017 - Star flower +9018 - Gorak claw powder +9019 - Magic essence(unf) +9020 - Queen's secateurs +9021 - Magic essence(4) +9022 - Magic essence(3) +9023 - Magic essence(2) +9024 - Magic essence(1) +9025 - Nuff's certificate +9026 - Ivory comb +9027 - Ivory comb +9028 - Golden scarab +9029 - Golden scarab +9030 - Stone scarab +9031 - Stone scarab +9032 - Pottery scarab +9033 - Pottery scarab +9034 - Golden statuette +9035 - Golden statuette +9036 - Pottery statuette +9037 - Pottery statuette +9038 - Stone statuette +9039 - Stone statuette +9040 - Gold seal +9041 - Gold seal +9042 - Stone seal +9043 - Stone seal +9044 - Pharaoh's sceptre +9045 - Pharaoh's sceptre +9046 - Pharaoh's sceptre +9047 - Pharaoh's sceptre +9048 - Pharaoh's sceptre +9049 - Pharaoh's sceptre +9050 - Pharaoh's sceptre +9051 - Pharaoh's sceptre +9052 - Locust meat +9053 - Locust meat +9054 - Red goblin mail +9055 - Black goblin mail +9056 - Yellow goblin mail +9057 - Green goblin mail +9058 - Purple goblin mail +9059 - Pink goblin mail +9060 - Not Existing +9061 - Not Existing +9062 - Not Existing +9063 - Not Existing +9064 - Emerald lantern +9065 - Emerald lantern +9066 - Emerald lens +9067 - Dream log +9068 - Moonclan helm +9069 - Moonclan hat +9070 - Moonclan armour +9071 - Moonclan skirt +9072 - Moonclan gloves +9073 - Moonclan boots +9074 - Moonclan cape +9075 - Astral rune +9076 - Lunar ore +9077 - Lunar bar +9078 - Moonclan manual +9079 - Suqah tooth +9080 - Suqah hide +9081 - Suqah leather +9082 - Ground tooth +9083 - Seal of passage +9084 - Lunar staff +9085 - Empty vial +9086 - Vial of water +9087 - Waking sleep vial +9088 - Guam vial +9089 - Marr vial +9090 - Guam-marr vial +9091 - Lunar staff - pt1 +9092 - Lunar staff - pt2 +9093 - Lunar staff - pt3 +9094 - Kindling +9095 - Soaked kindling +9096 - Lunar helm +9097 - Lunar torso +9098 - Lunar legs +9099 - Lunar gloves +9100 - Lunar boots +9101 - Lunar cape +9102 - Lunar amulet +9103 - A special tiara +9104 - Lunar ring +9105 - Suqah monster +9106 - Astral tiara +9107 - Not Existing +9108 - Not Existing +9109 - Not Existing +9110 - Not Existing +9111 - Not Existing +9112 - Not Existing +9113 - Not Existing +9114 - Not Existing +9115 - Not Existing +9116 - Not Existing +9117 - Not Existing +9118 - Not Existing +9119 - Not Existing +9120 - Not Existing +9121 - Not Existing +9122 - Not Existing +9123 - Not Existing +9124 - Not Existing +9125 - Not Existing +9126 - Not Existing +9127 - Not Existing +9128 - Not Existing +9129 - Not Existing +9130 - Not Existing +9131 - Not Existing +9132 - Not Existing +9133 - Not Existing +9134 - Not Existing +9135 - Not Existing +9136 - Not Existing +9137 - Not Existing +9138 - Not Existing +9139 - Blurite bolts +9140 - Iron bolts +9141 - Steel bolts +9142 - Mithril bolts +9143 - Adamant bolts +9144 - Runite bolts +9145 - Silver bolts +9146 - Not Existing +9147 - Not Existing +9148 - Not Existing +9149 - Not Existing +9150 - Not Existing +9151 - Not Existing +9152 - Not Existing +9153 - Not Existing +9154 - Not Existing +9155 - Not Existing +9156 - Not Existing +9157 - Not Existing +9158 - Not Existing +9159 - Not Existing +9160 - Not Existing +9161 - Not Existing +9162 - Not Existing +9163 - Not Existing +9164 - Not Existing +9165 - Not Existing +9166 - Not Existing +9167 - Not Existing +9168 - Not Existing +9169 - Not Existing +9170 - Not Existing +9171 - Not Existing +9172 - Not Existing +9173 - Not Existing +9174 - Bronze c'bow +799 - Not Existing +9175 - Bronze c'bow +9176 - Blurite c'bow +9177 - Iron c'bow +9178 - Iron c'bow +9179 - Steel c'bow +9180 - Steel c'bow +9181 - Mith c'bow +9182 - Mith c'bow +9183 - Adamant c'bow +9184 - Adamant c'bow +9185 - Rune c'bow +9186 - Rune c'bow +9187 - Jade bolt tips +9188 - Topaz bolt tips +9189 - Sapphire bolt tips +9190 - Emerald bolt tips +9191 - Ruby bolt tips +9192 - Diamond bolt tips +9193 - Dragon bolt tips +9194 - Onyx bolt tips +9195 - Not Existing +9196 - Not Existing +9197 - Not Existing +9198 - Not Existing +9199 - Not Existing +9200 - Not Existing +9201 - Not Existing +9202 - Not Existing +9203 - Not Existing +9204 - Not Existing +9205 - Not Existing +9206 - Not Existing +9207 - Not Existing +9208 - Not Existing +9209 - Not Existing +9210 - Not Existing +9211 - Not Existing +9212 - Not Existing +9213 - Not Existing +9214 - Not Existing +9215 - Not Existing +9216 - Not Existing +9217 - Not Existing +9218 - Not Existing +9219 - Not Existing +9220 - Not Existing +9221 - Not Existing +9222 - Not Existing +9223 - Not Existing +9224 - Not Existing +9225 - Not Existing +9226 - Not Existing +9227 - Not Existing +9228 - Not Existing +9229 - Not Existing +9230 - Not Existing +9231 - Not Existing +9232 - Not Existing +9233 - Not Existing +9234 - Not Existing +9235 - Not Existing +9236 - Opal bolts (e) +9237 - Jade bolts (e) +9238 - Pearl bolts (e) +9239 - Topaz bolts (e) +9240 - Sapphire bolts (e) +9241 - Emerald bolts (e) +9242 - Ruby bolts (e) +9243 - Diamond bolts (e) +9244 - Dragon bolts (e) +9245 - Onyx bolts (e) +9246 - Not Existing +9247 - Not Existing +9248 - Not Existing +9249 - Not Existing +9250 - Not Existing +9251 - Not Existing +9252 - Not Existing +9253 - Not Existing +9254 - Not Existing +9255 - Not Existing +9256 - Not Existing +9257 - Not Existing +9258 - Not Existing +9259 - Not Existing +9260 - Not Existing +9261 - Not Existing +9262 - Not Existing +9263 - Not Existing +9264 - Not Existing +9265 - Not Existing +9266 - Not Existing +9267 - Not Existing +9268 - Not Existing +9269 - Not Existing +9270 - Not Existing +9271 - Not Existing +9272 - Not Existing +9273 - Not Existing +9274 - Not Existing +9275 - Not Existing +9276 - Not Existing +9277 - Not Existing +9278 - Not Existing +9279 - Not Existing +9280 - Not Existing +9281 - Not Existing +9282 - Not Existing +9283 - Not Existing +9284 - Not Existing +9285 - Not Existing +9286 - Blurite bolts(p) +9287 - Iron bolts (p) +9288 - Steel bolts (p) +9289 - Mithril bolts (p) +9290 - Addy bolts (p) +9291 - Runite bolts (p) +9292 - Silver bolts (p) +9293 - Blurite bolts(p+) +9294 - Iron bolts(p+) +9295 - Steel bolts(p+) +9296 - Mithril bolts(p+) +9297 - Addy bolts(p+) +9298 - Runite bolts(p+) +9299 - Silver bolts(p+) +9300 - Blurite bolts(p++) +9301 - Iron bolts(p++) +9302 - Steel bolts(p++) +9303 - Mithril bolts(p++) +9304 - Addy bolts(p++) +9305 - Runite bolts(p++) +9306 - Silver bolts(p++) +9307 - Not Existing +9308 - Not Existing +9309 - Not Existing +9310 - Not Existing +9311 - Not Existing +9312 - Not Existing +9313 - Not Existing +9314 - Not Existing +9315 - Not Existing +9316 - Not Existing +9317 - Not Existing +9318 - Not Existing +9319 - Not Existing +9320 - Not Existing +9321 - Not Existing +9322 - Not Existing +9323 - Not Existing +9324 - Not Existing +9325 - Not Existing +9326 - Not Existing +9327 - Not Existing +9328 - Not Existing +9329 - Not Existing +9330 - Not Existing +9331 - Not Existing +9332 - Not Existing +9333 - Not Existing +9334 - Not Existing +9335 - Jade bolts +9336 - Topaz bolts +9337 - Sapphire bolts +9338 - Emerald bolts +9339 - Ruby bolts +9340 - Diamond bolts +9341 - Dragon bolts +9342 - Onyx bolts +9343 - Not Existing +9344 - Not Existing +9345 - Not Existing +9346 - Not Existing +9347 - Not Existing +9348 - Not Existing +9349 - Not Existing +9350 - Not Existing +9351 - Not Existing +9352 - Not Existing +9353 - Not Existing +9354 - Not Existing +9355 - Not Existing +9356 - Not Existing +9357 - Not Existing +9358 - Not Existing +9359 - Not Existing +9360 - Not Existing +9361 - Not Existing +9362 - Not Existing +9363 - Not Existing +9364 - Not Existing +9365 - Not Existing +9366 - Not Existing +9367 - Not Existing +9368 - Not Existing +9369 - Not Existing +9370 - Not Existing +9371 - Not Existing +9372 - Not Existing +9373 - Not Existing +9374 - Not Existing +9375 - Bronze bolts (unf) +9376 - Blurite bolts (unf) +9377 - Iron bolts (unf) +9378 - Steel bolts (unf) +9379 - Mithril bolts (unf) +9380 - Adamant bolts(unf) +9381 - Runite bolts (unf) +9382 - Silver bolts (unf) +9383 - Not Existing +9384 - Not Existing +9385 - Not Existing +9386 - Not Existing +9387 - Not Existing +9388 - Not Existing +9389 - Not Existing +9390 - Not Existing +9391 - Not Existing +9392 - Not Existing +9393 - Not Existing +9394 - Not Existing +9395 - Not Existing +9396 - Not Existing +9397 - Not Existing +9398 - Not Existing +9399 - Not Existing +9400 - Not Existing +9401 - Not Existing +9402 - Not Existing +9403 - Not Existing +9404 - Not Existing +9405 - Not Existing +9406 - Not Existing +9407 - Not Existing +9408 - Not Existing +9409 - Not Existing +9410 - Not Existing +9411 - Not Existing +9412 - Not Existing +9413 - Not Existing +9414 - Not Existing +9415 - Grapple +9416 - Mith grapple tip +799 - Not Existing +9417 - Mith grapple tip +9418 - Mith grapple +9419 - Mith grapple +9420 - Bronze limbs +9421 - Bronze limbs +9422 - Blurite limbs +9423 - Iron limbs +9424 - Iron limbs +9425 - Steel limbs +9426 - Steel limbs +9427 - Mithril limbs +9428 - Mithril limbs +9429 - Adamantite limbs +9430 - Adamantite limbs +9431 - Runite limbs +9432 - Runite limbs +9433 - Bolt pouch +9434 - Bolt mould +9435 - Bolt mould +9436 - Sinew +9437 - Sinew +9438 - Crossbow string +9439 - Crossbow string +9440 - Wooden stock +9441 - Wooden stock +9442 - Oak stock +9443 - Oak stock +9444 - Willow stock +9445 - Willow stock +9446 - Teak stock +9447 - Teak stock +9448 - Maple stock +9449 - Maple stock +9450 - Mahogany stock +9451 - Mahogany stock +9452 - Yew stock +9453 - Yew stock +9454 - Bronze c'bow (u) +9455 - Bronze c'bow (u) +9456 - Blurite c'bow (u) +9457 - Iron c'bow (u) +9458 - Iron c'bow (u) +9459 - Steel c'bow (u) +9460 - Steel c'bow (u) +9461 - Mithril c'bow (u) +9462 - Mithril c'bow (u) +9463 - Adamant c'bow (u) +9464 - Adamant c'bow (u) +9465 - Runite c'bow (u) +9466 - Runite c'bow (u) +9467 - Blurite bar +9468 - Sawdust +9469 - Grand seed pod +9470 - Gnome scarf +9471 - Gnome scarf +9472 - Gnome goggles +9473 - Gnome goggles +9474 - Reward token +9475 - Mint cake +9476 - Mint cake +9477 - Aluft aloft box +9478 - Half made batta +9479 - Unfinished batta +9480 - Half made batta +9481 - Unfinished batta +9482 - Half made batta +9483 - Half made batta +9484 - Unfinished batta +9485 - Half made batta +9486 - Unfinished batta +9487 - Wizard blizzard +9488 - Wizard blizzard +9489 - Wizard blizzard +9490 - Picture +9491 - Not Existing +9492 - Not Existing +9493 - Not Existing +9494 - Not Existing +9495 - Not Existing +9496 - Not Existing +9497 - Not Existing +9498 - Not Existing +9499 - Not Existing +9500 - Not Existing +9501 - Not Existing +9502 - Not Existing +9503 - Not Existing +9504 - Not Existing +9505 - Not Existing +9506 - Not Existing +9507 - Not Existing +9508 - Wizard blizzard +9509 - Wizard blizzard +9510 - Short green guy +9511 - Short green guy +9512 - Pineapple punch +9513 - Pineapple punch +9514 - Fruit blast +9515 - Fruit blast +9516 - Drunk dragon +9517 - Drunk dragon +9518 - Choc saturday +9519 - Choc saturday +9520 - Blurberry special +9521 - Blurberry special +9522 - Batta tin +9523 - Batta tin +9524 - Batta tin +9525 - Batta tin +9526 - Not Existing +9527 - Fruit batta +9528 - Fruit batta +9529 - Toad batta +9530 - Toad batta +9531 - Worm batta +9532 - Worm batta +9533 - Vegetable batta +9534 - Vegetable batta +9535 - Cheese+tom batta +9536 - Cheese+tom batta +9537 - Not Existing +9538 - Toad crunchies +9539 - Toad crunchies +9540 - Spicy crunchies +9541 - Spicy crunchies +9542 - Worm crunchies +9543 - Worm crunchies +9544 - Chocchip crunchies +9545 - Chocchip crunchies +9546 - Not Existing +9547 - Worm hole +9548 - Worm hole +9549 - Veg ball +9550 - Veg ball +9551 - Tangled toads' legs +9552 - Tangled toads' legs +9553 - Chocolate bomb +9554 - Chocolate bomb +9555 - Not Existing +9556 - Not Existing +9557 - Not Existing +9558 - Half made bowl +9559 - Half made bowl +9560 - Unfinished bowl +9561 - Half made bowl +9562 - Unfinished bowl +9563 - Half made bowl +9564 - Unfinished bowl +2025 - Cocktail shaker +9565 - Cocktail shaker +9566 - Mixed blizzard +9567 - Mixed sgg +9568 - Mixed blast +9569 - Mixed punch +9570 - Mixed blurberry special +9571 - Mixed saturday +9572 - Mixed saturday +9573 - Mixed saturday +9574 - Mixed dragon +9575 - Mixed dragon +9576 - Mixed dragon +9577 - Half made crunchy +9578 - Unfinished crunchy +9579 - Half made crunchy +9580 - Unfinished crunchy +9581 - Half made crunchy +9582 - Unfinished crunchy +9583 - Half made crunchy +9584 - Unfinished crunchy +2164 - Batta tin +9585 - Batta tin +2165 - Crunchy tray +9586 - Crunchy tray +2166 - Gnomebowl mould +9587 - Gnomebowl mould +2202 - Raw crunchies +9588 - Raw crunchies +9589 - Dossier +9590 - Dossier +9591 - Broken cauldron +9592 - Magic glue +9593 - Weird gloop +9594 - Ground mud runes +9595 - Hazelmere's book +9596 - Picture +9597 - Red circle +9598 - Red triangle +9599 - Red square +9600 - Red pentagon +9601 - Orange circle +9602 - Orange triangle +9603 - Orange square +9604 - Orange pentagon +9605 - Yellow circle +9606 - Yellow triangle +9607 - Yellow square +9608 - Yellow pentagon +9609 - Green circle +9610 - Green triangle +9611 - Green square +9612 - Green pentagon +9613 - Blue circle +9614 - Blue triangle +9615 - Blue square +9616 - Blue pentagon +9617 - Indigo circle +9618 - Indigo triangle +9619 - Indigo square +9620 - Indigo pentagon +9621 - Violet circle +9622 - Violet triangle +9623 - Violet square +9624 - Violet pentagon +9625 - Crystal saw +9626 - Small crystal seed +9627 - A handwritten book +9628 - Not Existing +9629 - Tyras helm +9630 - Tyras helm +9631 - Not Existing +9632 - Daeyalt ore +9633 - Message +9634 - Vyrewatch top +9635 - Vyrewatch top +9636 - Vyrewatch legs +9637 - Vyrewatch legs +9638 - Vyrewatch shoes +9639 - Vyrewatch shoes +9640 - Citizen top +9641 - Citizen top +9642 - Citizen trousers +9643 - Citizen trousers +9644 - Citizen shoes +9645 - Citizen shoes +9646 - Castle sketch 1 +9647 - Castle sketch 2 +9648 - Castle sketch 3 +9649 - Message +9650 - Blood tithe pouch +9651 - Large ornate key +9652 - Haemalchemy +9653 - Sealed message +9654 - Door key +9655 - Ladder top +9656 - Tome of xp (3) +9657 - Tome of xp (2) +9658 - Tome of xp (1) +9659 - Bucket of water +9660 - Bucket +9661 - Not Existing +9662 - Shortcut key +9663 - Not Existing +9664 - Not Existing +9665 - Torch +9666 - Pros'yte harness m +9667 - Pros'yte harness m +9668 - Initiate harness m +9669 - Initiate harness m +9670 - Pros'yte harness f +9671 - Pros'yte harness f +9672 - Proselyte sallet +9673 - Proselyte sallet +9674 - Proselyte hauberk +9675 - Proselyte hauberk +9676 - Proselyte cuisse +9677 - Proselyte cuisse +9678 - Proselyte tasset +9679 - Proselyte tasset +9680 - Sea slug glue +9681 - Commorb v2 +9682 - Door transcription +9683 - Dead sea slug +9684 - Page 1 +9685 - Page 2 +9686 - Page 3 +9687 - Fragment 1 +9688 - Fragment 2 +9689 - Fragment 3 +9690 - Blank water rune +9691 - Water rune +9692 - Blank air rune +9693 - Air rune +9694 - Blank earth rune +9695 - Earth rune +9696 - Blank mind rune +9697 - Mind rune +9698 - Blank fire rune +9699 - Fire rune +9700 - Picture +9701 - Torch +9702 - Stick +9703 - Training sword +9704 - Training shield +9705 - Training bow +9706 - Training arrows +9707 - Not Existing +9708 - Not Existing +9709 - Not Existing +9710 - Not Existing +9711 - Not Existing +9712 - Not Existing +9713 - Not Existing +9714 - Not Existing +9715 - Slashed book +9716 - Rock +9717 - Beaten book +9718 - Crane schematic +9719 - Lever schematic +9720 - Crane claw +9721 - Scroll +9722 - Key +9723 - Pipe +9724 - Large cog +9725 - Medium cog +9726 - Small cog +9727 - Primed bar +9728 - Elemental mind bar +9729 - Elemental helmet +9730 - Elemental helmet +9731 - Mind shield +9732 - Mind shield +9733 - Mind helmet +9734 - Mind helmet +9735 - Desert goat horn +9736 - Goat horn dust +9737 - Goat horn dust +9738 - Desert goat horn +9739 - Combat potion(4) +9740 - Combat potion(4) +9741 - Combat potion(3) +9742 - Combat potion(3) +9743 - Combat potion(2) +9744 - Combat potion(2) +9745 - Combat potion(1) +9746 - Combat potion(1) +9747 - Attack cape +9748 - Attack cape(t) +9749 - Attack hood +9750 - Strength cape +9751 - Strength cape(t) +9752 - Strength hood +9753 - Defence cape +9754 - Defence cape(t) +9755 - Defence hood +9756 - Ranging cape +9757 - Ranging cape(t) +9758 - Ranging hood +9759 - Prayer cape +9760 - Prayer cape(t) +9761 - Prayer hood +9762 - Magic cape +9763 - Magic cape(t) +9764 - Magic hood +9765 - Runecraft cape +9766 - Runecraft cape(t) +9767 - Runecrafting hood +9768 - Hitpoints cape +9769 - Hitpoints cape(t) +9770 - Hitpoints hood +9771 - Agility cape +9772 - Agility cape(t) +9773 - Agility hood +9774 - Herblore cape +9775 - Herblore cape(t) +9776 - Herblore hood +9777 - Thieving cape +9778 - Thieving cape(t) +9779 - Thieving hood +9780 - Crafting cape +9781 - Crafting cape(t) +9782 - Crafting hood +9783 - Fletching cape +9784 - Fletching cape(t) +9785 - Fletching hood +9786 - Slayer cape +9787 - Slayer cape(t) +9788 - Slayer hood +9789 - Construct. cape +9790 - Construct. cape(t) +9791 - Construct. hood +9792 - Mining cape +9793 - Mining cape(t) +9794 - Mining hood +9795 - Smithing cape +9796 - Smithing cape(t) +9797 - Smithing hood +9798 - Fishing cape +9799 - Fishing cape(t) +9800 - Fishing hood +9801 - Cooking cape +9802 - Cooking cape(t) +9803 - Cooking hood +9804 - Firemaking cape +9805 - Firemaking cape(t) +9806 - Firemaking hood +9807 - Woodcutting cape +9808 - Woodcut. cape(t) +9809 - Woodcutting hood +9810 - Farming cape +9811 - Farming cape(t) +9812 - Farming hood +9813 - Quest point cape +9814 - Quest point hood +9815 - Bobble hat +9816 - Bobble scarf +9817 - Oak cape rack +9818 - Teak cape rack +9819 - M'gany cape rack +9820 - Gilded cape rack +9821 - Marble cape rack +9822 - Magical cape rack +9823 - Oak costume box +9824 - Teak costume box +9825 - Mahogany cos box +9826 - Oak armour case +9827 - Teak armour case +9828 - M'gany arm'r case +9829 - Oak magic wardrobe +9830 - Carved oak magic wardrobe +9831 - Teak magic wardrobe +9832 - Carved teak magic wardrobe +9833 - Mahogany magic wardrobe +9834 - Gilded magic wardrobe +9835 - Marble magic wardrobe +9836 - Oak toy box +9837 - Teak toy box +9838 - Mahogany toy box +9839 - Oak treasure chest +9840 - Teak treas' chest +9841 - M'gany treas' chest +9842 - Costume room +9843 - Oak cape rack +9844 - Teak cape rack +9845 - M'gany cape rack +9846 - Gilded cape rack +9847 - Marble cape rack +9848 - Magical cape rack +9849 - Oak toy box +9850 - Teak toy box +9851 - Mahogany toy box +9852 - Oak magic wardrobe +9853 - Carved oak magic wardrobe +9854 - Teak magic wardrobe +9855 - Carved teak magic wardrobe +9856 - Mahogany magic wardrobe +9857 - Gilded magic wardrobe +9858 - Marble magic wardrobe +9859 - Oak armour case +9860 - Teak armour case +9861 - M'gany arm'r case +9862 - Oak treasure chest +9863 - Teak treas' chest +9864 - M'gany treas' chest +9865 - Oak costume box +9866 - Teak costume box +9867 - Mahogany cos box +799 - Not Existing +9868 - Oak cape rack +9869 - Teak cape rack +9870 - M'gany cape rack +9871 - Gilded cape rack +9872 - Marble cape rack +9873 - Magical cape rack +9874 - Oak toy box +9875 - Teak toy box +9876 - Mahogany toy box +9877 - Oak magic wardrobe +9878 - Carved oak magic wardrobe +9879 - Teak magic wardrobe +9880 - Carved teak magic wardrobe +9881 - Mahogany magic wardrobe +9882 - Gilded magic wardrobe +9883 - Marble magic wardrobe +9884 - Oak armour case +9885 - Teak armour case +9886 - M'gany arm'r case +9887 - Oak treasure chest +9888 - Teak treas' chest +9889 - M'gany treas' chest +9890 - Oak costume box +9891 - Teak costume box +9892 - Mahogany cos box +9893 - Not Existing +9894 - Not Existing +9895 - Not Existing +9896 - Not Existing +9897 - Not Existing +9898 - Not Existing +9899 - Not Existing +9900 - Not Existing +9901 - Goutweedy lump +9902 - Hardy gout tubers +9903 - Farming manual +9904 - Sailing book +9905 - Not Existing +9906 - Ghost buster 500 +9907 - Ghost buster 500 +9908 - Ghost buster 500 +9909 - Ghost buster 500 +9910 - Ghost buster 500 +9911 - Ghost buster 500 +9912 - Ghost buster 500 +9913 - White destabiliser +9914 - Red destabiliser +9915 - Blue destabiliser +9916 - Green destabiliser +9917 - Yellow destabiliser +9918 - Black destabiliser +9919 - Evil root +9920 - Jack lantern mask +9921 - Skeleton boots +9922 - Skeleton gloves +9923 - Skeleton leggings +9924 - Skeleton shirt +9925 - Skeleton mask +9926 - Not Existing +9927 - Not Existing +9928 - Not Existing +9929 - Not Existing +9930 - Not Existing +9931 - Not Existing +9932 - Auguste's sapling +9933 - Balloon structure +9934 - Origami balloon +9935 - Yellow balloon +9936 - Blue balloon +9937 - Red balloon +9938 - Orange balloon +9939 - Green balloon +9940 - Purple balloon +9941 - Pink balloon +9942 - Black balloon +9943 - Sandbag +9944 - Bomber jacket +9945 - Bomber cap +9946 - Cap and goggles +9947 - Old red disk +9948 - Hunter cape +9949 - Hunter cape(t) +9950 - Hunter hood +9951 - Footprint +9952 - Imp +9953 - Kebbit +9954 - Kebbit +9955 - Kebbit +9956 - Kebbit +9957 - Kebbit +9958 - Kebbit +9959 - Kebbit +9960 - Kebbit +9961 - Kebbit +9962 - Kebbit +9963 - Kebbit +9964 - Kebbit +9965 - Crimson swift +9966 - Copper longtail +9967 - Cerulean twitch +9968 - Golden warbler +9969 - Tropical wagtail +9970 - Butterfly +9971 - Butterfly +9972 - Butterfly +9973 - Butterfly +9974 - Giant eagle +9975 - Rabbit +9976 - Chinchompa +9977 - Red chinchompa +9978 - Raw bird meat +799 - Not Existing +9979 - Raw bird meat +9980 - Roast bird meat +9981 - Roast bird meat +9982 - Burnt bird meat +9983 - Burnt bird meat +9984 - Skewered bird meat +9985 - Skewered bird meat +9986 - Raw beast meat +9987 - Raw beast meat +9988 - Roast beast meat +9989 - Roast beast meat +9990 - Burnt beast meat +9991 - Burnt beast meat +9992 - Skewered beast +9993 - Skewered beast +9994 - Spicy tomato +9995 - Spicy tomato +9996 - Spicy minced meat +9997 - Spicy minced meat +9998 - Hunter potion(4) +9999 - Hunter potion(4) +10000 - Hunter potion(3) +10001 - Hunter potion(3) +10002 - Hunter potion(2) +10003 - Hunter potion(2) +10004 - Hunter potion(1) +10005 - Hunter potion(1) +10006 - Bird snare +10007 - Bird snare +10008 - Box trap +10009 - Box trap +10010 - Butterfly net +10011 - Butterfly net +10012 - Butterfly jar +10013 - Butterfly jar +10014 - Black warlock +10015 - Black warlock +10016 - Snowy knight +10017 - Snowy knight +10018 - Sapphire glacialis +10019 - Sapphire glacialis +10020 - Ruby harvest +10021 - Ruby harvest +10022 - Not Existing +10023 - Falconer's glove +10024 - Falconer's glove +10025 - Magic box +10026 - Magic box +10027 - Imp-in-a-box(2) +10028 - Imp-in-a-box(1) +10029 - Teasing stick +10030 - Teasing stick +10031 - Rabbit snare +10032 - Rabbit snare +10033 - Chinchompa +10034 - Red chinchompa +10035 - Kyatt legs +10036 - Kyatt legs +10037 - Kyatt top +10038 - Kyatt top +10039 - Kyatt hat +10040 - Kyatt hat +10041 - Larupia legs +10042 - Larupia legs +10043 - Larupia top +10044 - Larupia top +10045 - Larupia hat +10046 - Larupia hat +10047 - Graahk legs +10048 - Graahk legs +10049 - Graahk top +10050 - Graahk top +10051 - Graahk headdress +10052 - Graahk headdress +10053 - Wood camo top +10054 - Wood camo top +10055 - Wood camo legs +10056 - Wood camo legs +10057 - Jungle camo top +10058 - Jungle camo top +10059 - Jungle camo legs +10060 - Jungle camo legs +10061 - Desert camo top +10062 - Desert camo top +10063 - Desert camo legs +10064 - Desert camo legs +10065 - Polar camo top +10066 - Polar camo top +10067 - Polar camo legs +10068 - Polar camo legs +10069 - Spotted cape +10070 - Spotted cape +10071 - Spottier cape +10072 - Spottier cape +10073 - Spotted cape +10074 - Spottier cape +10075 - Gloves of silence +10076 - Gloves of silence +10077 - Spiky vambraces +10078 - Spiky vambraces +10079 - Green spiky vambs +10080 - Green spiky vambs +10081 - Blue spiky vambs +10082 - Blue spiky vambs +10083 - Red spiky vambs +10084 - Red spiky vambs +10085 - Black spiky vambs +10086 - Black spiky vambs +10087 - Stripy feather +10088 - Red feather +10089 - Blue feather +10090 - Yellow feather +10091 - Orange feather +10092 - Ferret +10093 - Tatty larupia fur +10094 - Tatty larupia fur +10095 - Larupia fur +10096 - Larupia fur +10097 - Tatty graahk fur +10098 - Tatty graahk fur +10099 - Graahk fur +10100 - Graahk fur +10101 - Tatty kyatt fur +10102 - Tatty kyatt fur +10103 - Kyatt fur +10104 - Kyatt fur +10105 - Kebbit spike +10106 - Kebbit spike +10107 - Long kebbit spike +10108 - Long kebbit spike +10109 - Kebbit teeth +10110 - Kebbit teeth +10111 - Kebbit teeth dust +10112 - Kebbit teeth dust +10113 - Kebbit claws +10114 - Kebbit claws +10115 - Dark kebbit fur +10116 - Dark kebbit fur +10117 - Polar kebbit fur +10118 - Polar kebbit fur +10119 - Feldip weasel fur +10120 - Feldip weasel fur +10121 - Common kebbit fur +10122 - Common kebbit fur +10123 - Desert devil fur +10124 - Desert devil fur +10125 - Spotted kebbit fur +10126 - Spotted kebbit fur +10127 - Dashing kebbit fur +10128 - Dashing kebbit fur +10129 - Barb-tail harpoon +10130 - Barb-tail harpoon +10131 - Not Existing +10132 - Strung rabbit foot +10133 - Strung rabbit foot +10134 - Rabbit foot +10135 - Rabbit foot +10136 - Rainbow fish +10137 - Rainbow fish +10138 - Raw rainbow fish +10139 - Raw rainbow fish +10140 - Burnt rainbow fish +10141 - Burnt rainbow fish +10142 - Guam tar +10143 - Marrentill tar +10144 - Tarromin tar +10145 - Harralander tar +10146 - Orange salamander +10147 - Red salamander +10148 - Black salamander +10149 - Swamp lizard +10150 - Noose wand +10151 - Noose wand +10152 - Not Existing +10153 - Not Existing +10154 - Not Existing +10155 - Not Existing +10156 - Hunters' crossbow +10157 - Hunters' crossbow +10158 - Kebbit bolts +10159 - Long kebbit bolts +10160 - Orange salamander +10161 - Red salamander +10162 - Black salamander +10163 - Swamp lizard +10164 - Not Existing +10165 - More... +10166 - Back... +10167 - Eagle feather +10168 - Not Existing +10169 - Not Existing +10170 - Not Existing +10171 - Eagle cape +10172 - Fake beak +10173 - Bird book +10174 - Metal feather +10175 - Golden feather +10176 - Silver feather +10177 - Bronze feather +10178 - Odd bird seed +10179 - Feathered journal +10180 - Clue scroll +10181 - Casket +10182 - Clue scroll +10183 - Casket +10184 - Clue scroll +10185 - Casket +10186 - Clue scroll +10187 - Casket +10188 - Clue scroll +10189 - Casket +10190 - Clue scroll +10191 - Casket +10192 - Clue scroll +10193 - Casket +10194 - Clue scroll +10195 - Casket +10196 - Clue scroll +10197 - Casket +10198 - Clue scroll +10199 - Casket +10200 - Clue scroll +10201 - Casket +10202 - Clue scroll +10203 - Casket +10204 - Clue scroll +10205 - Casket +10206 - Clue scroll +10207 - Casket +10208 - Clue scroll +10209 - Casket +10210 - Clue scroll +10211 - Casket +10212 - Clue scroll +10213 - Casket +10214 - Clue scroll +10215 - Casket +10216 - Clue scroll +10217 - Casket +10218 - Clue scroll +10219 - Casket +10220 - Clue scroll +10221 - Casket +10222 - Clue scroll +10223 - Casket +10224 - Clue scroll +10225 - Casket +10226 - Clue scroll +10227 - Casket +10228 - Clue scroll +10229 - Casket +10230 - Clue scroll +10231 - Casket +10232 - Clue scroll +10233 - Casket +10234 - Clue scroll +10235 - Casket +10236 - Clue scroll +10237 - Casket +10238 - Clue scroll +10239 - Casket +10240 - Clue scroll +10241 - Casket +10242 - Clue scroll +10243 - Casket +10244 - Clue scroll +10245 - Casket +10246 - Clue scroll +10247 - Casket +10248 - Clue scroll +10249 - Casket +10250 - Clue scroll +10251 - Casket +10252 - Clue scroll +10253 - Casket +10254 - Clue scroll +10255 - Casket +10256 - Clue scroll +10257 - Casket +10258 - Clue scroll +10259 - Casket +10260 - Clue scroll +10261 - Casket +10262 - Clue scroll +10263 - Casket +10264 - Clue scroll +10265 - Casket +10266 - Clue scroll +10267 - Casket +10268 - Clue scroll +10269 - Casket +10270 - Clue scroll +10271 - Casket +10272 - Clue scroll +10273 - Casket +10274 - Clue scroll +10275 - Casket +10276 - Clue scroll +10277 - Casket +10278 - Clue scroll +10279 - Casket +10280 - Willow comp bow +799 - Not Existing +10281 - Willow comp bow +10282 - Yew comp bow +10283 - Yew comp bow +10284 - Magic comp bow +10285 - Magic comp bow +10286 - Rune helm (h1) +10287 - Rune helm (h1) +10288 - Rune helm (h2) +10289 - Rune helm (h2) +10290 - Rune helm (h3) +10291 - Rune helm (h3) +10292 - Rune helm (h4) +10293 - Rune helm (h4) +10294 - Rune helm (h5) +10295 - Rune helm (h5) +10296 - Adamant helm (h1) +10297 - Adamant helm (h1) +10298 - Adamant helm (h2) +10299 - Adamant helm (h2) +10300 - Adamant helm (h3) +10301 - Adamant helm (h3) +10302 - Adamant helm (h4) +10303 - Adamant helm (h4) +10304 - Adamant helm (h5) +10305 - Adamant helm (h5) +10306 - Black helm (h1) +10307 - Black helm (h1) +10308 - Black helm (h2) +10309 - Black helm (h2) +10310 - Black helm (h3) +10311 - Black helm (h3) +10312 - Black helm (h4) +10313 - Black helm (h4) +10314 - Black helm (h5) +10315 - Black helm (h5) +10316 - Bob shirt +10317 - Bob shirt +10318 - Bob shirt +10319 - Bob shirt +10320 - Bob shirt +10321 - Bob shirt +10322 - Bob shirt +10323 - Bob shirt +10324 - Bob shirt +10325 - Bob shirt +10326 - Purple firelighter +10327 - White firelighter +10328 - White logs +10329 - Purple logs +10330 - 3rd age range top +10331 - 3rd age range top +10332 - 3rd age range legs +10333 - 3rd age range legs +10334 - 3rd age range coif +10335 - 3rd age range coif +10336 - 3rd age vambraces +10337 - 3rd age vambraces +10338 - 3rd age robe top +10339 - 3rd age robe top +10340 - 3rd age robe +10341 - 3rd age robe +10342 - 3rd age mage hat +10343 - 3rd age mage hat +10344 - 3rd age amulet +10345 - 3rd age amulet +10346 - 3rd age platelegs +10347 - 3rd age platelegs +10348 - 3rd age platebody +10349 - 3rd age platebody +10350 - 3rd age full helmet +10351 - 3rd age full helmet +10352 - 3rd age kiteshield +10353 - 3rd age kiteshield +10354 - Amulet of glory(t4) +10355 - Amulet of glory(t4) +10356 - Amulet of glory(t3) +10357 - Amulet of glory(t3) +10358 - Amulet of glory(t2) +10359 - Amulet of glory(t2) +10360 - Amulet of glory(t1) +10361 - Amulet of glory(t1) +10362 - Amulet of glory(t) +10363 - Amulet of glory(t) +10364 - Strength amulet(t) +10365 - Strength amulet(t) +10366 - Amulet of magic(t) +10367 - Amulet of magic(t) +10368 - Zamorak bracers +10369 - Zamorak bracers +10370 - Zamorak d'hide +10371 - Zamorak d'hide +10372 - Zamorak chaps +10373 - Zamorak chaps +10374 - Zamorak coif +10375 - Zamorak coif +10376 - Guthix bracers +10377 - Guthix bracers +10378 - Guthix dragonhide +10379 - Guthix dragonhide +10380 - Guthix chaps +10381 - Guthix chaps +10382 - Guthix coif +10383 - Guthix coif +10384 - Saradomin bracers +10385 - Saradomin bracers +10386 - Saradomin d'hide +10387 - Saradomin d'hide +10388 - Saradomin chaps +10389 - Saradomin chaps +10390 - Saradomin coif +10391 - Saradomin coif +10392 - A powdered wig +10393 - A powdered wig +10394 - Flared trousers +10395 - Flared trousers +10396 - Pantaloons +10397 - Pantaloons +10398 - Sleeping cap +10399 - Sleeping cap +10400 - Black ele' shirt +10401 - Black ele' shirt +10402 - Black ele' legs +10403 - Black ele' legs +10404 - Red ele' shirt +10405 - Red ele' shirt +10406 - Red ele' legs +10407 - Red ele' legs +10408 - Blue ele' shirt +10409 - Blue ele' shirt +10410 - Blue ele' legs +10411 - Blue ele' legs +10412 - Green ele' shirt +10413 - Green ele' shirt +10414 - Green ele' legs +10415 - Green ele' legs +10416 - Purple ele' shirt +10417 - Purple ele' shirt +10418 - Purple ele' legs +10419 - Purple ele' legs +10420 - White ele' blouse +10421 - White ele' blouse +10422 - White ele' skirt +10423 - White ele' skirt +10424 - Red ele' blouse +10425 - Red ele' blouse +10426 - Red ele' skirt +10427 - Red ele' skirt +10428 - Blue ele' blouse +10429 - Blue ele' blouse +10430 - Blue ele' skirt +10431 - Blue ele' skirt +10432 - Green ele' blouse +10433 - Green ele' blouse +10434 - Green ele' skirt +10435 - Green ele' skirt +10436 - Purple ele' blouse +10437 - Purple ele' blouse +10438 - Purple ele' skirt +10439 - Purple ele' skirt +10440 - Saradomin crozier +10441 - Saradomin crozier +10442 - Guthix crozier +10443 - Guthix crozier +10444 - Zamorak crozier +10445 - Zamorak crozier +10446 - Saradomin cloak +10447 - Saradomin cloak +10448 - Guthix cloak +10449 - Guthix cloak +10450 - Zamorak cloak +10451 - Zamorak cloak +10452 - Saradomin mitre +10453 - Saradomin mitre +10454 - Guthix mitre +10455 - Guthix mitre +10456 - Zamorak mitre +10457 - Zamorak mitre +10458 - Saradomin robe top +10459 - Saradomin robe top +10460 - Zamorak robe top +10461 - Zamorak robe top +10462 - Guthix robe top +10463 - Guthix robe top +10464 - Saradomin robe legs +10465 - Saradomin robe legs +10466 - Guthix robe legs +10467 - Guthix robe legs +10468 - Zamorak robe legs +10469 - Zamorak robe legs +10470 - Saradomin stole +10471 - Saradomin stole +10472 - Guthix stole +10473 - Guthix stole +10474 - Zamorak stole +10475 - Zamorak stole +10476 - Purple sweets +10477 - Not Existing +10478 - Not Existing +10479 - Not Existing +10480 - Not Existing +10481 - Not Existing +10482 - Not Existing +10483 - Not Existing +10484 - Not Existing +10485 - Scroll +10486 - Empty sack +10487 - Undead chicken +10488 - Selected iron +10489 - Bar magnet +10490 - Undead twigs +10491 - Blessed axe +10492 - Research notes +10493 - Translated notes +10494 - A pattern +10495 - A container +10496 - Polished buttons +10497 - Tinderbox +10498 - Ava's attractor +10499 - Ava's accumulator +10500 - Crone-made amulet +10501 - Snowball +10502 - Not Existing +10503 - Not Existing +10504 - Not Existing +10505 - Not Existing +10506 - Gublinch shards +10507 - Reindeer hat +10508 - Wintumber tree +10509 - Snowball +10510 - Snowball +10511 - Zanaris choir +10512 - Scroll +10513 - Crackers +10514 - Tofu +10515 - Worms +10516 - Attacker horn +10517 - Attacker horn +10518 - Attacker horn +10519 - Attacker horn +10520 - Attacker horn +10521 - Collection bag +10522 - Collection bag +10523 - Collection bag +10524 - Collection bag +10525 - Collection bag +10526 - Healer horn +10527 - Healer horn +10528 - Healer horn +10529 - Healer horn +10530 - Healer horn +10531 - Green egg +10532 - Red egg +10533 - Blue egg +10534 - Yellow egg +10535 - Poisoned egg +10536 - Spiked/pois. egg +10537 - Omega egg +10538 - Defender horn +10539 - Poisoned tofu +10540 - Poisoned worms +10541 - Poisoned meat +10542 - Healing vial(4) +10543 - Healing vial(3) +10544 - Healing vial(2) +10545 - Healing vial(1) +10546 - Healing vial +10547 - Healer hat +10548 - Fighter hat +10549 - Runner hat +10550 - Ranger hat +10551 - Fighter torso +10552 - Runner boots +10553 - Penance gloves +10554 - Penance gloves +10555 - Penance skirt +10556 - Picture +10557 - Picture +10558 - Picture +10559 - Picture +10560 - Collector horn +10561 - Spikes +10562 - Queen help book +10563 - No eggs +10564 - Granite body +10565 - Granite body +10566 - Fire cape +10567 - Picture +10568 - Picture +10569 - Picture +10570 - Picture +10571 - Picture +10572 - Picture +10573 - Picture +10574 - Picture +10575 - Picture +10576 - Picture +10577 - Picture +10578 - Picture +10579 - Picture +10580 - Picture +10581 - Keris +10582 - Keris(p) +10583 - Keris(p+) +10584 - Keris(p++) +10585 - Parchment +10586 - Combat lamp +10587 - Tarn's diary +10588 - Salve amulet(e) +10589 - Granite helm +10590 - Granite helm +10591 - Terror dog +10592 - Penguin bongos +10593 - Cowbells +10594 - Clockwork book +10595 - Clockwork suit +10596 - Clockwork suit +10597 - Mission report +10598 - Mission report +10599 - Mission report +10600 - Kgp id card +10601 - Mystic hat +10602 - Mystic hat +10603 - Mystic hat +10604 - Skeletal helm +10605 - Infinity top +10606 - Splitbark helm +10607 - Ghostly boots +10608 - Moonclan hat +10609 - Lunar helm +10610 - Decorative armour +10611 - Void knight top +10612 - Rogue mask +10613 - Rock-shell helm +10614 - Spined helm +10615 - Tribal mask +10616 - Tribal mask +10617 - Tribal mask +10618 - White platebody +10619 - Initiate hauberk +10620 - Proselyte hauberk +10621 - Mourner top +10622 - Kyatt top +10623 - Larupia top +10624 - Graahk top +10625 - Wood camo top +10626 - Jungle camo top +10627 - Desert camo top +10628 - Polar camo top +10629 - Mime mask +10630 - Princess blouse +10631 - Zombie shirt +10632 - Camo top +10633 - Lederhosen top +10634 - Shade robe +10635 - Cape of legends +10636 - Obsidian cape +10637 - Fire cape +10638 - Team-1 cape +10639 - Attack cape +10640 - Strength cape +10641 - Defence cape +10642 - Ranging cape +10643 - Prayer cape +10644 - Magic cape +10645 - Runecraft cape +10646 - Hunter cape +10647 - Hitpoints cape +10648 - Agility cape +10649 - Herblore cape +10650 - Thieving cape +10651 - Crafting cape +10652 - Fletching cape +10653 - Slayer cape +10654 - Construct. cape +10655 - Mining cape +10656 - Smithing cape +10657 - Fishing cape +10658 - Cooking cape +10659 - Firemaking cape +10660 - Woodcutting cape +10661 - Farming cape +10662 - Quest point cape +10663 - Spotted cape +10664 - Spottier cape +10665 - Black shield(h1) +10666 - Adamant shield(h1) +10667 - Rune shield(h1) +10668 - Black shield(h2) +10669 - Adamant shield(h2) +10670 - Rune shield(h2) +10671 - Black shield(h3) +10672 - Adamant shield(h3) +10673 - Rune shield(h3) +10674 - Black shield(h4) +10675 - Adamant shield(h4) +10676 - Rune shield(h4) +10677 - Black shield(h5) +10678 - Adamant shield(h5) +10679 - Rune shield(h5) +10680 - Studded body (g) +10681 - Studded body (t) +10682 - D'hide body(g) +10683 - D'hide body (t) +10684 - D'hide body (g) +10685 - D'hide body (t) +10686 - Wizard robe (g) +10687 - Wizard robe (t) +10688 - Enchanted top +10689 - Wizard boots +10690 - Black platebody (t) +10691 - Black platebody (g) +10692 - Highwayman mask +10693 - Blue beret +10694 - Black beret +10695 - White beret +10696 - Ranger boots +10697 - Adam platebody (t) +10698 - Adam platebody (g) +10699 - Black helm (h1) +10700 - Black helm (h2) +10701 - Black helm (h3) +10702 - Black helm (h4) +10703 - Black helm (h5) +10704 - Rune helm (h1) +10705 - Rune helm (h2) +10706 - Rune helm (h3) +10707 - Rune helm (h4) +10708 - Rune helm (h5) +10709 - Adamant helm (h1) +10710 - Adamant helm (h2) +10711 - Adamant helm (h3) +10712 - Adamant helm (h4) +10713 - Adamant helm (h5) +10714 - Bob shirt +10715 - Bob shirt +10716 - Bob shirt +10717 - Bob shirt +10718 - Bob shirt +10719 - Amulet of glory(t) +10720 - Guthix cape +10721 - Frog mask +10722 - Reindeer hat +10723 - Jack lantern mask +10724 - Skeleton boots +10725 - Skeleton gloves +10726 - Skeleton leggings +10727 - Skeleton shirt +10728 - Skeleton mask +10729 - Easter ring +10730 - Blue marionette +10731 - Zombie head +10732 - Rubber chicken +10733 - Yo-yo +10734 - Bunny ears +10735 - Scythe +10736 - Strength amulet(t) +10737 - Picture +10738 - Amulet of magic(t) +10739 - Picture +10740 - A powdered wig +10741 - Picture +10742 - Flared trousers +10743 - Picture +10744 - Pantaloons +10745 - Picture +10746 - Sleeping cap +10747 - Picture +10748 - Elegant shirt +10749 - Picture +10750 - Elegant shirt +10751 - Picture +10752 - Elegant shirt +10753 - Picture +10754 - Elegant shirt +10755 - Picture +10756 - Elegant shirt +10757 - Picture +10758 - Red boater +10759 - Picture +10760 - Orange boater +10761 - Picture +10762 - Green boater +10763 - Picture +10764 - Blue boater +10765 - Picture +10766 - Black boater +10767 - Picture +10768 - Red headband +10769 - Picture +10770 - Black headband +10771 - Picture +10772 - Brown headband +10773 - Picture +10774 - Pirate's hat +10775 - Picture +10776 - Zamorak platebody +10777 - Picture +10778 - Saradomin plate +10779 - Picture +10780 - Guthix platebody +10781 - Picture +10782 - Gilded platebody +10783 - Picture +10784 - Saradomin robe top +10785 - Picture +10786 - Zamorak robe top +10787 - Picture +10788 - Guthix robe top +10789 - Picture +10790 - Zamorak d'hide +10791 - Picture +10792 - Saradomin d'hide +10793 - Picture +10794 - Guthix dragonhide +10795 - Picture +10796 - Robin hood hat +10797 - Picture +10798 - Rune platebody (g) +10799 - Picture +10800 - Rune platebody (t) +10801 - Picture +10802 - Tan cavalier +10803 - Picture +10804 - Dark cavalier +10805 - Picture +10806 - Black cavalier +10807 - Picture +10808 - Arctic pyre logs +799 - Not Existing +10809 - Arctic pyre logs +10810 - Arctic pine logs +10811 - Arctic pine logs +10812 - Split log +10813 - Split log +10814 - Hair +10815 - Hair +10816 - Raw yak meat +10817 - Raw yak meat +10818 - Yak-hide +10819 - Yak-hide +10820 - Cured yak-hide +10821 - Cured yak-hide +10822 - Yak-hide armour +10823 - Yak-hide armour +10824 - Yak-hide armour +10825 - Yak-hide armour +10826 - Fremennik round shield +10827 - Fremennik round shield +10828 - Helm of neitiznot +10829 - Documents +10830 - Royal decree +10831 - Empty tax bag +10832 - Light tax bag +10833 - Normal tax bag +10834 - Hefty tax bag +10835 - Bulging taxbag +10836 - Silly jester hat +10837 - Silly jester top +10838 - Silly jester tights +10839 - Silly jester boots +10840 - A jester stick +10841 - Apricot cream pie +10842 - Decapitated head +10843 - Helm of neitiznot +10844 - Spring sq'irk +10845 - Summer sq'irk +10846 - Autumn sq'irk +10847 - Winter sq'irk +10848 - Spring sq'irkjuice +10849 - Summer sq'irkjuice +10850 - Autumn sq'irkjuice +10851 - Winter sq'irkjuice +10852 - Summer garden +10853 - Spring garden +10854 - Autumn garden +10855 - Winter garden +10856 - Sin seer's note +10857 - Severed leg +10858 - Shadow sword +10859 - Tea flask +10860 - Tea flask +10861 - Tea flask +10862 - Hard hat +10863 - Builder's shirt +10864 - Builder's trousers +10865 - Builder's boots +10866 - Rivets +10867 - Not Existing +10868 - Not Existing +10869 - Not Existing +10870 - Binding fluid +10871 - Pipe +10872 - Pipe ring +10873 - Metal sheet +10874 - Coloured ball +10875 - Valve wheel +10876 - Metal bar +10877 - Plain satchel +10878 - Green satchel +10879 - Red satchel +10880 - Black satchel +10881 - Gold satchel +10882 - Rune satchel +10883 - Hard hat +10884 - Fuse +10885 - Keg +10886 - Prayer book +10887 - Barrelchest anchor +10888 - Barrelchest anchor +10889 - Blessed lamp +10890 - Prayer book +10891 - Wooden cat +10892 - Wooden cat +10893 - Cranial clamp +10894 - Brain tongs +10895 - Bell jar +10896 - Wolf whistle +10897 - Shipping order +10898 - Keg +10899 - Crate part +10900 - Not Existing +10901 - Not Existing +10902 - Not Existing +10903 - Not Existing +10904 - Skull staple +10905 - Not Existing +10906 - Not Existing +10907 - Not Existing +10908 - Not Existing +10909 - Mixture - step 1(4) +10910 - Mixture - step 1(4) +10911 - Mixture - step 1(3) +10912 - Mixture - step 1(3) +10913 - Mixture - step 1(2) +10914 - Mixture - step 1(2) +10915 - Mixture - step 1(1) +10916 - Mixture - step 1(1) +10917 - Mixture - step 2(4) +10918 - Mixture - step 2(4) +10919 - Mixture - step 2(3) +10920 - Mixture - step 2(3) +10921 - Mixture - step 2(2) +10922 - Mixture - step 2(2) +10923 - Mixture - step 2(1) +10924 - Mixture - step 2(1) +10925 - Sanfew serum(4) +10926 - Sanfew serum(4) +10927 - Sanfew serum(3) +10928 - Sanfew serum(3) +10929 - Sanfew serum(2) +10930 - Sanfew serum(2) +10931 - Sanfew serum(1) +10932 - Sanfew serum(1) +10933 - Lumberjack boots +10934 - Reward token +10935 - Reward token +10936 - Reward token +10937 - Nail beast nails +10938 - Nail beast nails +10939 - Lumberjack top +10940 - Lumberjack legs +10941 - Lumberjack hat +10942 - Reward token +10943 - Reward token +10944 - Reward token +10945 - Lumberjack top +10946 - Pushup +10947 - Run +10948 - Situp +10949 - Starjump +10950 - Skull staples +10951 - Skull staples +10952 - Slayer bell +10953 - Slayer bell +10954 - Frog-leather body +10955 - Frog-leather body +10956 - Frog-leather chaps +10957 - Frog-leather chaps +10958 - Frog-leather boots +10959 - Frog-leather boots +10960 - Green gloop soup +10961 - Frogspawn gumbo +10962 - Frogburger +10963 - Coated frogs' legs +10964 - Bat shish +10965 - Fingers +10966 - Grubs ? la mode +10967 - Roast frog +10968 - Mushrooms +10969 - Fillets +10970 - Loach +10971 - Eel sushi +10972 - Dorgesh-kaan sphere +10973 - Light orb +10974 - Light orb +10975 - Spanner +10976 - Long bone +10977 - Curved bone +10978 - Swamp weed +10979 - Swamp weed +10980 - Empty light orb +10981 - Cave goblin wire +10982 - Cave goblin wire +10983 - Cog +10984 - Cog +10985 - Fuse +10986 - Fuse +10987 - Meter +10988 - Meter +10989 - Capacitor +10990 - Capacitor +10991 - Lever +10992 - Lever +10993 - Powerbox +10994 - Powerbox +10995 - Perfect shell +10996 - Perfect snail shell +10997 - Molanisk +10998 - Cave goblin +10999 - Goblin book +11000 - Picture +11001 - Dagon'hai history +11002 - Sin'keth's diary +11003 - An empty folder +11004 - Not Existing +11005 - Not Existing +11006 - Used folder +11007 - Full folder +11008 - Rat's paper +11009 - Rat's letter +11010 - Surok's letter +11011 - Zaff's instructions +11012 - Wand +11013 - Infused wand +11014 - Beacon ring +11015 - Chicken head +11016 - Chicken feet +11017 - Chicken wings +11018 - Chicken legs +11019 - Chicken feet +11020 - Chicken wings +11021 - Chicken head +11022 - Chicken legs +11023 - Magic egg +11024 - Rabbit mould +11025 - Chocolate chunks +11026 - Chocolate kebbit +11027 - Easter egg +11028 - Easter egg +11029 - Easter egg +11030 - Easter egg +11031 - Damp planks +11032 - Crude carving +11033 - Cruder carving +11034 - Sven's last map +11035 - Windswept logs +11036 - Parchment +11037 - Brine sabre +11038 - Brine sabre +11039 - Key +11040 - Key +11041 - Key +11042 - Key +11043 - Key +11044 - Rotten barrel +11045 - Rotten barrel +11046 - Rope +11047 - Brine rat +11048 - Armour shard +11049 - Artefact +11050 - Axe head +11051 - Artefact +11052 - Helmet fragment +11053 - Artefact +11054 - Shield fragment +11055 - Artefact +11056 - Sword fragment +11057 - Artefact +11058 - Mace +11059 - Artefact +11060 - Goblin village sphere +11061 - Ancient mace +11062 - Zanik (slice) +11063 - Not Existing +11064 - Ancient mace +11065 - Bracelet mould +11066 - Bracelet mould +11067 - Not Existing +11068 - Not Existing +11069 - Gold bracelet +11070 - Gold bracelet +11071 - Not Existing +11072 - Sapphire bracelet +11073 - Sapphire bracelet +11074 - Bracelet of clay +11075 - Bracelet of clay +11076 - Emerald bracelet +11077 - Emerald bracelet +11078 - Not Existing +11079 - Castlewar brace(3) +11080 - Castlewar brace(3) +11081 - Castlewar brace(2) +11082 - Castlewar brace(2) +11083 - Castlewar brace(1) +11084 - Castlewar brace(1) +11085 - Ruby bracelet +11086 - Ruby bracelet +11087 - Not Existing +11088 - Inoculation brace +11089 - Inoculation brace +11090 - Phoenix necklace +11091 - Phoenix necklace +11092 - Diamond bracelet +11093 - Diamond bracelet +11094 - Not Existing +11095 - Forinthry brace(5) +11096 - Forinthry brace(5) +11097 - Forinthry brace(4) +11098 - Forinthry brace(4) +11099 - Forinthry brace(3) +11100 - Forinthry brace(3) +11101 - Forinthry brace(2) +11102 - Forinthry brace(2) +11103 - Forinthry brace(1) +11104 - Forinthry brace(1) +11105 - Skills necklace(4) +11106 - Skills necklace(4) +11107 - Skills necklace(3) +11108 - Skills necklace(3) +11109 - Skills necklace(2) +11110 - Skills necklace(2) +11111 - Skills necklace(1) +11112 - Skills necklace(1) +11113 - Skills necklace +11114 - Skills necklace +11115 - Dragon bracelet +11116 - Dragon bracelet +11117 - Not Existing +11118 - Combat bracelet(4) +11119 - Combat bracelet(4) +11120 - Combat bracelet(3) +11121 - Combat bracelet(3) +11122 - Combat bracelet(2) +11123 - Combat bracelet(2) +11124 - Combat bracelet(1) +11125 - Combat bracelet(1) +11126 - Combat bracelet +11127 - Combat bracelet +11128 - Berserker necklace +11129 - Berserker necklace +11130 - Onyx bracelet +11131 - Onyx bracelet +11132 - Not Existing +11133 - Regen bracelet +11134 - Regen bracelet +11135 - Bomber jacket +11136 - Karamja gloves 1 +11137 - Antique lamp +11138 - Karamja gloves 2 +11139 - Antique lamp +11140 - Karamja gloves 3 +11141 - Antique lamp +11142 - Not Existing +11143 - Not Existing +11144 - Not Existing +11145 - Not Existing +11146 - Not Existing +11147 - Not Existing +11148 - Not Existing +11149 - Not Existing +11150 - Not Existing +11151 - Dream vial (empty) +11152 - Dream vial (water) +11153 - Dream vial (herb) +11154 - Dream potion +11155 - Ground astral rune +11156 - Astral rune shards +11157 - Dreamy lamp +11158 - Cyrisus's chest +11159 - Hunter kit +11160 - Not Existing +11161 - Not Existing +11162 - Not Existing +11163 - Not Existing +11164 - Restored shield +11165 - Phoenix crossbow +11166 - Phoenix crossbow +11167 - Phoenix crossbow +11168 - Phoenix crossbow +11169 - Newspaper +11170 - Newspaper +11171 - Newspaper +11172 - Newspaper +11173 - Half certificate +11174 - Half certificate +11175 - Uncleaned find +11176 - Arrowheads +11177 - Jewellery +11178 - Pottery +11179 - Old coin +11180 - Ancient coin +11181 - Ancient symbol +11182 - Old symbol +11183 - Old chipped vase +11184 - Museum map +11185 - Antique lamp +11186 - Antique lamp +11187 - Antique lamp +11188 - Antique lamp +11189 - Antique lamp +11190 - Digsite pendant (1) +11191 - Digsite pendant (2) +11192 - Digsite pendant (3) +11193 - Digsite pendant (4) +11194 - Digsite pendant (5) +11195 - Clean necklace +11196 - Griffin feather +11197 - Miazrqa's pendant +11198 - Music sheet +11199 - Rupert's helmet +11200 - Dwarven helmet +11201 - Dwarven helmet +11202 - Shrinking recipe +11203 - To-do list +11204 - Shrink-me-quick +11205 - Shrunk ogleroot +11206 - Not Existing +11207 - Not Existing +11208 - Not Existing +11209 - Not Existing +11210 - Golden goblin +11211 - Magic beans +11212 - Dragon arrow +11213 - Not Existing +11214 - Not Existing +11215 - Not Existing +11216 - Not Existing +11217 - Dragon fire arrows +11218 - Not Existing +11219 - Not Existing +11220 - Not Existing +11221 - Not Existing +11222 - Dragon fire arrows +11223 - Not Existing +11224 - Not Existing +11225 - Not Existing +11226 - Not Existing +11227 - Dragon arrow(p) +11228 - Dragon arrow(p+) +11229 - Dragon arrow(p++) +11230 - Dragon dart +11231 - Dragon dart(p) +11232 - Dragon dart tip +11233 - Dragon dart(p+) +11234 - Dragon dart(p++) +11235 - Dark bow +11236 - Dark bow +11237 - Dragon arrowtips +11238 - Baby impling jar +11239 - Baby impling jar +11240 - Young impling jar +11241 - Young impling jar +11242 - Gourm' impling jar +11243 - Gourm' impling jar +11244 - Earth impling jar +11245 - Earth impling jar +11246 - Ess' impling jar +11247 - Ess' impling jar +11248 - Eclectic impling jar +11249 - Eclectic impling jar +11250 - Nature impling jar +11251 - Nature impling jar +11252 - Magpie impling jar +11253 - Magpie impling jar +11254 - Ninja impling jar +11255 - Ninja impling jar +11256 - Dragon impling jar +11257 - Dragon impling jar +11258 - Jar generator +11259 - Magic butterfly net +11260 - Impling jar +11261 - Impling jar +11262 - Imp repellent +11263 - Imp repellent +11264 - Anchovy oil +11265 - Anchovy oil +11266 - Anchovy paste +11267 - Picture +11268 - Picture +11269 - Picture +11270 - Picture +11271 - Picture +11272 - Picture +11273 - Impling scroll +11274 - Ham shirt +9418 - Mith grapple +11275 - Mith grapple +9419 - Mith grapple +11276 - Mith grapple +11277 - Cavalier mask +11278 - Beret mask +11279 - Elvarg's head +11280 - Cavalier and mask +11281 - Cavalier and mask +11282 - Beret and mask +11283 - Dragonfire shield +11284 - Dragonfire shield +11285 - Dragonfire shield +11286 - Draconic visage +11287 - Draconic visage +11288 - Not Existing +11289 - Not Existing +11290 - Not Existing +11291 - Not Existing +11292 - Not Existing +11293 - Not Existing +11294 - Not Existing +11295 - Not Existing +11296 - Not Existing +11297 - Not Existing +11298 - Not Existing +11299 - Not Existing +11300 - Not Existing +11301 - Not Existing +11302 - Not Existing +11303 - Not Existing +11304 - Not Existing +11305 - Not Existing +11306 - Not Existing +11307 - Not Existing +11308 - Not Existing +11309 - Not Existing +11310 - Not Existing +11311 - Not Existing +11312 - Not Existing +11313 - Not Existing +11314 - Not Existing +11315 - Not Existing +11316 - Not Existing +11317 - Not Existing +11318 - Not Existing +11319 - Not Existing +11320 - Not Existing +11321 - Not Existing +11322 - Not Existing +11323 - Barbarian rod +11324 - Roe +11325 - Roe +11326 - Caviar +11327 - Caviar +11328 - Leaping trout +11329 - Leaping trout +11330 - Leaping salmon +11331 - Leaping salmon +11332 - Leaping sturgeon +11333 - Leaping sturgeon +11334 - Fish offcuts +11335 - Dragon full helm +11336 - Dragon full helm +11337 - Mangled bones +11338 - Chewed bones +11339 - My notes +11340 - Barbarian skills +11341 - Ancient page +11342 - Ancient page +11343 - Ancient page +11344 - Ancient page +11345 - Ancient page +11346 - Ancient page +11347 - Ancient page +11348 - Ancient page +11349 - Ancient page +11350 - Ancient page +11351 - Ancient page +11352 - Ancient page +11353 - Ancient page +11354 - Ancient page +11355 - Ancient page +11356 - Ancient page +11357 - Ancient page +11358 - Ancient page +11359 - Ancient page +11360 - Ancient page +11361 - Ancient page +11362 - Ancient page +11363 - Ancient page +11364 - Ancient page +11365 - Ancient page +11366 - Ancient page +11367 - Bronze hasta +11368 - Bronze hasta +11369 - Iron hasta +11370 - Iron hasta +11371 - Steel hasta +11372 - Steel hasta +11373 - Mithril hasta +11374 - Mithril hasta +11375 - Adamant hasta +11376 - Adamant hasta +11377 - Rune hasta +11378 - Rune hasta +11379 - Bronze hasta(p) +11380 - Bronze hasta(p) +11381 - Bronze hasta(kp) +11382 - Bronze hasta(p+) +11383 - Bronze hasta(p+) +11384 - Bronze hasta(p++) +11385 - Bronze hasta(p++) +11386 - Iron hasta(p) +11387 - Iron hasta(p) +11388 - Iron hasta(kp) +11389 - Iron hasta(p+) +11390 - Iron hasta(p+) +11391 - Iron hasta(p++) +11392 - Iron hasta(p++) +11393 - Steel hasta(p) +11394 - Steel hasta(p) +11395 - Steel hasta(kp) +11396 - Steel hasta(p+) +11397 - Steel hasta(p+) +11398 - Steel hasta(p++) +11399 - Steel hasta(p++) +11400 - Mithril hasta(p) +11401 - Mithril hasta(p) +11402 - Mithril hasta(kp) +11403 - Mithril hasta(p+) +11404 - Mithril hasta(p+) +11405 - Mithril hasta(p++) +11406 - Mithril hasta(p++) +11407 - Adamant hasta(p) +11408 - Adamant hasta(p) +11409 - Adamant hasta(kp) +11410 - Adamant hasta(p+) +11411 - Adamant hasta(p+) +11412 - Addy hasta(p++) +11413 - Addy hasta(p++) +11414 - Rune hasta(p) +11415 - Rune hasta(p) +11416 - Rune hasta(kp) +11417 - Rune hasta(p+) +11418 - Rune hasta(p+) +11419 - Rune hasta(p++) +11420 - Rune hasta(p++) +11421 - Not Existing +11422 - Not Existing +11423 - Not Existing +11424 - Not Existing +11425 - Not Existing +11426 - Not Existing +11427 - Fish vial +11428 - Fish vial +11429 - Attack mix(2) +11430 - Attack mix(2) +11431 - Attack mix(1) +11432 - Attack mix(1) +11433 - Antipoison mix(2) +11434 - Antipoison mix(2) +11435 - Antipoison mix(1) +11436 - Antipoison mix(1) +11437 - Relicym's mix(2) +11438 - Relicym's mix(2) +11439 - Relicym's mix(1) +11440 - Relicym's mix(1) +11441 - Strength mix(1) +11442 - Strength mix(1) +11443 - Strength mix(2) +11444 - Strength mix(2) +11445 - Combat mix(2) +11446 - Combat mix(2) +11447 - Combat mix(1) +11448 - Combat mix(1) +11449 - Restore mix(2) +11450 - Restore mix(2) +11451 - Restore mix(1) +11452 - Restore mix(1) +11453 - Energy mix(2) +11454 - Energy mix(2) +11455 - Energy mix(1) +11456 - Energy mix(1) +11457 - Defence mix(2) +11458 - Defence mix(2) +11459 - Defence mix(1) +11460 - Defence mix(1) +11461 - Agility mix(2) +11462 - Agility mix(2) +11463 - Agility mix(1) +11464 - Agility mix(1) +11465 - Prayer mix(2) +11466 - Prayer mix(2) +11467 - Prayer mix(1) +11468 - Prayer mix(1) +11469 - Superattack mix(2) +11470 - Superattack mix(2) +11471 - Superattack mix(1) +11472 - Superattack mix(1) +11473 - Anti-p supermix(2) +11474 - Anti-p supermix(2) +11475 - Anti-p supermix(1) +11476 - Anti-p supermix(1) +11477 - Fishing mix(2) +11478 - Fishing mix(2) +11479 - Fishing mix(1) +11480 - Fishing mix(1) +11481 - Sup. energy mix(2) +11482 - Sup. energy mix(2) +11483 - Sup. energy mix(1) +11484 - Sup. energy mix(1) +11485 - Sup. str. mix(2) +11486 - Sup. str. mix(2) +11487 - Sup. str. mix(1) +11488 - Sup. str. mix(1) +11489 - Magic ess. mix(2) +11490 - Magic ess. mix(2) +11491 - Magic ess. mix(1) +11492 - Magic ess. mix(1) +11493 - Sup. restore mix(2) +11494 - Sup. restore mix(2) +11495 - Sup. restore mix(1) +11496 - Sup. restore mix(1) +11497 - Sup. def. mix(2) +11498 - Sup. def. mix(2) +11499 - Sup. def. mix(1) +11500 - Sup. def. mix(1) +11501 - Antidote+ mix(2) +11502 - Antidote+ mix(2) +11503 - Antidote+ mix(1) +11504 - Antidote+ mix(1) +11505 - Antifire mix(2) +11506 - Antifire mix(2) +11507 - Antifire mix(1) +11508 - Antifire mix(1) +11509 - Ranging mix(2) +11510 - Ranging mix(2) +11511 - Ranging mix(1) +11512 - Ranging mix(1) +11513 - Magic mix(2) +11514 - Magic mix(2) +11515 - Magic mix(1) +11516 - Magic mix(1) +11517 - Hunting mix(2) +11518 - Hunting mix(2) +11519 - Hunting mix(1) +11520 - Hunting mix(1) +11521 - Zamorak mix(2) +11522 - Zamorak mix(2) +11523 - Zamorak mix(1) +11524 - Zamorak mix(1) +11525 - Wimpy feather +11526 - Not Existing +11527 - Not Existing +11528 - Not Existing +11529 - Not Existing +11530 - Not Existing +11531 - Not Existing +11532 - Not Existing +11533 - Not Existing +11534 - Not Existing +11535 - Not Existing +11536 - Not Existing +11537 - Not Existing +11538 - Not Existing +11539 - Not Existing +11540 - Not Existing +11541 - Not Existing +11542 - Not Existing +11543 - Not Existing +11544 - Not Existing +11545 - Not Existing +11546 - Not Existing +11547 - Not Existing +11548 - Not Existing +11549 - Not Existing +11550 - Not Existing +11551 - Not Existing +11552 - Not Existing +11553 - Not Existing +11554 - Not Existing +11555 - Not Existing +11556 - Not Existing +11557 - Not Existing +11558 - Not Existing +11559 - Not Existing +11560 - Not Existing +11561 - Not Existing +11562 - Not Existing +11563 - Not Existing +11564 - Not Existing +11565 - Not Existing +11566 - Not Existing +11567 - Not Existing +11568 - Not Existing +11569 - Not Existing +11570 - Not Existing +11571 - Not Existing +11572 - Not Existing +11573 - Not Existing +11574 - Not Existing +11575 - Not Existing +11576 - Not Existing +11577 - Not Existing +11578 - Not Existing +11579 - Not Existing +11580 - Not Existing +11581 - Not Existing +11582 - Not Existing +11583 - Not Existing +11584 - Not Existing +11585 - Not Existing +11586 - Not Existing +11587 - Not Existing +11588 - Not Existing +11589 - Not Existing +11590 - Not Existing +11591 - Not Existing +11592 - Not Existing +11593 - Not Existing +11594 - Not Existing +11595 - Not Existing +11596 - Not Existing +11597 - Not Existing +11598 - Not Existing +11599 - Not Existing +11600 - Not Existing +11601 - Not Existing +11602 - Not Existing +11603 - Not Existing +11604 - Not Existing +11605 - Not Existing +11606 - Not Existing +11607 - Not Existing +11608 - Not Existing +11609 - Not Existing +11610 - Not Existing +11611 - Not Existing +11612 - Not Existing +11613 - Not Existing +11614 - Not Existing +11615 - Not Existing +11616 - Not Existing +11617 - Not Existing +11618 - Not Existing +11619 - Not Existing +11620 - Not Existing +11621 - Not Existing +11622 - Not Existing +11623 - Not Existing +11624 - Not Existing +11625 - Not Existing +11626 - Not Existing +11627 - Not Existing +11628 - Not Existing +11629 - Not Existing +11630 - Not Existing +11631 - Not Existing +11632 - Not Existing +11633 - Not Existing +11634 - Not Existing +11635 - Not Existing +11636 - Not Existing +11637 - Not Existing +11638 - Not Existing +11639 - Not Existing +11640 - Book of knowledge +11641 - Not Existing +11642 - Not Existing +11643 - Not Existing +11644 - Not Existing +11645 - Not Existing +11646 - Not Existing +11647 - Not Existing +11648 - Not Existing +11649 - Not Existing +11650 - Not Existing +11651 - Not Existing +11652 - Not Existing +11653 - Not Existing +11654 - Not Existing +799 - Not Existing +600 - Astronomy book +11655 - Astronomy book +11656 - Glassblowing book +11657 - Glassblowing book +11658 - Not Existing +11659 - Not Existing +11660 - Not Existing +11661 - Not Existing +11662 - Not Existing +11663 - Void mage helm +11664 - Void ranger helm +11665 - Void melee helm +11666 - Void seal(8) +11667 - Void seal(7) +11668 - Void seal(6) +11669 - Void seal(5) +11670 - Void seal(4) +11671 - Void seal(3) +11672 - Void seal(2) +11673 - Void seal(1) +11674 - Void mage helm +11675 - Void ranger helm +11676 - Void melee helm +11677 - Explorer's notes +11678 - Black knight helm +11679 - Antique lamp +11680 - Address form +11681 - Scrap paper +11682 - Hair clip +11683 - Not Existing +11684 - Not Existing +11685 - Not Existing +11686 - Godsword shards +11687 - Godsword shards +11688 - Godsword shards +11689 - Godsword shards +11690 - Godsword blade +11691 - Godsword blade +11692 - Godsword shards +11693 - Godsword shards +11694 - Armadyl godsword +11695 - Armadyl godsword +11696 - Bandos godsword +11697 - Bandos godsword +11698 - Saradomin godsword +11699 - Saradomin godsword +11700 - Zamorak godsword +11701 - Zamorak godsword +11702 - Armadyl hilt +11703 - Armadyl hilt +11704 - Bandos hilt +11705 - Bandos hilt +11706 - Saradomin hilt +11707 - Saradomin hilt +11708 - Zamorak hilt +11709 - Zamorak hilt +11710 - Godsword shard 1 +11711 - Godsword shard 1 +11712 - Godsword shard 2 +11713 - Godsword shard 2 +11714 - Godsword shard 3 +11715 - Godsword shard 3 +11716 - Zamorakian spear +11717 - Zamorakian spear +11718 - Armadyl helmet +11719 - Armadyl helmet +11720 - Armadyl chestplate +11721 - Armadyl chestplate +11722 - Armadyl plateskirt +11723 - Armadyl plateskirt +11724 - Bandos chestplate +11725 - Bandos chestplate +11726 - Bandos tassets +11727 - Bandos tassets +11728 - Bandos boots +11729 - Bandos boots +11730 - Saradomin sword +11731 - Saradomin sword +11732 - Dragon boots +11733 - Dragon boots +11734 - Knight's notes +11735 - Knight's notes +11736 - Steam battlestaff +11737 - Steam battlestaff +11738 - Mystic steam staff +11739 - Mystic steam staff +11740 - Picture +11741 - Picture +11742 - Picture +11743 - Picture +11744 - Picture +11745 - Picture +11746 - Agility jump +11747 - A key to a chest +11748 - Strongroom key +11749 - Crystal chime +11750 - Yewnock's notes +11751 - Not Existing +11752 - Not Existing +11753 - Antique lamp +11754 - Antique lamp +11755 - Antique lamp +11756 - Varrock armour 1 +11757 - Varrock armour 2 +11758 - Varrock armour 3 +11759 - Not Existing +11760 - Logs +11761 - Locked diary +11762 - Unlocked diary +11763 - Hand +11764 - Foot +11765 - Torso +11766 - Left arm +11767 - Right arm +11768 - Left leg +11769 - Right leg +11770 - Root cutting +11771 - Root cutting +11772 - Root cutting +11773 - Root cutting +11774 - Root cutting +11775 - Wilted cutting +11776 - Potted root +11777 - Sealed pot +11778 - Jade vine seed +11779 - Not Existing +11780 - The grim reaper's diary +11781 - Grim's robe +11782 - Last will and testament +11783 - Human bones +11784 - Servant's skull +11785 - Hourglass +11786 - Scythe sharpener +11787 - Human eye +11788 - 'voice of doom' potion +11789 - Grim reaper hood +11790 - Grim reaper hood +11791 - White goblin mail +11792 - Grubfoot +11793 - Zanik +11794 - Plain of mud sphere +11795 - Ekeleshuun key +11796 - Narogoshuun key +11797 - Huzamogaarb key +11798 - Saragorgak key +11799 - Horogothgar key +11800 - Yurkolgokh key +11801 - Not Existing +11802 - Snothead's bone +11803 - Snailfeet's bone +11804 - Mosschin's bone +11805 - Redeyes's bone +11806 - Strongbones's bone +11807 - Pharmakos berries +11808 - Whitefish +11809 - Goblin potion (4) +11810 - Goblin potion (3) +11811 - Goblin potion (2) +11812 - Goblin potion (1) +11813 - Tinderbox +11814 - Bronze armour set (l) +11815 - Bronze armour set (l) +11816 - Bronze armour set (sk) +11817 - Bronze armour set (sk) +11818 - Iron armour set (l) +11819 - Iron armour set (l) +11820 - Iron armour set (sk) +11821 - Iron armour set (sk) +11822 - Steel armour set (l) +11823 - Steel armour set (l) +11824 - Steel armour set (sk) +11825 - Steel armour set (sk) +11826 - Black armour set (l) +11827 - Black armour set (l) +11828 - Black armour set (sk) +11829 - Black armour set (sk) +11830 - Mithril armour set (l) +11831 - Mithril armour set (l) +11832 - Mithril armour set (sk) +11833 - Mithril armour set (sk) +11834 - Adamant armour set (l) +11835 - Adamant armour set (l) +11836 - Adamant armour set (sk) +11837 - Adamant armour set (sk) +11838 - Rune armour set (l) +11839 - Rune armour set (l) +11840 - Rune armour set (sk) +11841 - Rune armour set (sk) +11842 - Dragon armour set (l) +11843 - Dragon armour set (l) +11844 - Dragon armour set (sk) +11845 - Dragon armour set (sk) +11846 - Barrows - ahrim's set +11847 - Barrows - ahrim's set +11848 - Barrows - dharok's set +11849 - Barrows - dharok's set +11850 - Barrows - guthan's set +11851 - Barrows - guthan's set +11852 - Barrows - karil's set +11853 - Barrows - karil's set +11854 - Barrows - torag's set +11855 - Barrows - torag's set +11856 - Barrows - verac's set +11857 - Barrows - verac's set +11858 - Third age melee set +11859 - Third age melee set +11860 - Third age ranger set +11861 - Third age ranger set +11862 - Third age mage set +11863 - Third age mage set +11864 - Green dragonhide set +11865 - Green dragonhide set +11866 - Blue dragonhide set +11867 - Blue dragonhide set +11868 - Red dragonhide set +11869 - Red dragonhide set +11870 - Black dragonhide set +11871 - Black dragonhide set +11872 - Mystic robes set +11873 - Mystic robes set +11874 - Infinity robes set +11875 - Infinity robes set +11876 - Splitbark armour set +11877 - Splitbark armour set +11878 - Black trimmed armour set (l) +11879 - Black trimmed armour set (l) +11880 - Black trimmed armour set (sk) +11881 - Black trimmed armour set (sk) +11882 - Black gold-trimmed armour set (l) +11883 - Black gold-trimmed armour set (l) +11884 - Black gold-trimmed armour set (sk) +11885 - Black gold-trimmed armour set (sk) +11886 - Adamant trimmed armour set (l) +11887 - Adamant trimmed armour set (l) +11888 - Adamant trimmed armour set (sk) +11889 - Adamant trimmed armour set (sk) +11890 - Adamant gold-trimmed armour set (l) +11891 - Adamant gold-trimmed armour set (l) +11892 - Adamant gold-trimmed armour set (sk) +11893 - Adamant gold-trimmed armour set (sk) +11894 - Rune trimmed armour set (l) +11895 - Rune trimmed armour set (l) +11896 - Rune trimmed armour set (sk) +11897 - Rune trimmed armour set (sk) +11898 - Rune gold-trimmed armour set (l) +11899 - Rune gold-trimmed armour set (l) +11900 - Rune gold-trimmed armour set (sk) +11901 - Rune gold-trimmed armour set (sk) +11902 - Enchanted set +11903 - Enchanted set +11904 - Trimmed blue wizard set +11905 - Trimmed blue wizard set +11906 - Gold-trimmed blue wizard set +11907 - Gold-trimmed blue wizard set +11908 - Trimmed leather armour set +11909 - Trimmed leather armour set +11910 - Gold-trimmed leather armour set +11911 - Gold-trimmed leather armour set +11912 - Green d'hide trimmed set +11913 - Green d'hide trimmed set +11914 - Green d'hide gold-trimmed set +11915 - Green d'hide gold-trimmed set +11916 - Blue d'hide trimmed set +11917 - Blue d'hide trimmed set +11918 - Blue d'hide gold-trimmed set +11919 - Blue d'hide gold-trimmed set +11920 - Green d'hide blessed set +11921 - Green d'hide blessed set +11922 - Blue d'hide blessed set +11923 - Blue d'hide blessed set +11924 - Red d'hide blessed set +11925 - Red d'hide blessed set +11926 - Guthix armour set (l) +11927 - Guthix armour set (l) +11928 - Saradomin armour set (l) +11929 - Saradomin armour set (l) +11930 - Zamorak armour set (l) +11931 - Zamorak armour set (l) +11932 - Guthix armour set (sk) +11933 - Guthix armour set (sk) +11934 - Saradomin armour set (sk) +11935 - Saradomin armour set (sk) +11936 - Zamorak armour set (sk) +11937 - Zamorak armour set (sk) +11938 - Gilded armour set (l) +11939 - Gilded armour set (l) +11940 - Gilded armour set (sk) +11941 - Gilded armour set (sk) +11942 - Rockshell armour set +11943 - Rockshell armour set +11944 - Spined armour set +11945 - Spined armour set +11946 - Skeletal armour set +11947 - Skeletal armour set +11948 - Not Existing +11949 - Snow globe +11950 - Snow globe +11951 - Snowball +11952 - Ice sword +11953 - Winter staff +11954 - Holly bow +11955 - Barbarian snowman hat +11956 - Dragon snowman hat +11957 - Dwarf snowman hat +11958 - Pirate snowman hat +11959 - Snowman top hat +11960 - Light mystic robes set +11961 - Light mystic robes set +11962 - Dark mystic robes set +11963 - Dark mystic robes set +11964 - Raven egg +11965 - Vulture egg +11966 - Bird's nest +11967 - Dwarf cannon set +11968 - Dwarf cannon set +11969 - Enchanted water tiara +11970 - Smelly crate +11971 - Full crate +11972 - Empty crate +11973 - Scabaras research +11974 - Artefact receipt +11975 - Scabarite notes +11976 - Scabarite notes +11977 - Scabarite notes +11978 - Scabarite notes +11979 - Scabarite notes +11980 - Scabarite notes +11981 - Scabarite notes +11982 - Scabarite notes +11983 - Scabarite notes +11984 - Scabarite notes +11985 - Scabarite notes +11986 - Scabarite notes +11987 - Scabarite notes +11988 - Scabarite notes +11989 - Scabarite notes +11990 - Scabarite notes +11991 - Scabarite notes +11992 - Scabarite notes +11993 - Scabarite notes +11994 - Scabarite key +11995 - Oxidised dagger +11996 - Oxidised medium helm +11997 - Oxidised sword +11998 - Oxidised scimitar +11999 - Oxidised longsword +12000 - Oxidised full helm +12001 - Oxidised square shield +12002 - Oxidised chainbody +12003 - Oxidised kiteshield +12004 - Oxidised two-handed sword +12005 - Oxidised platelegs +12006 - Oxidised plateskirt +12007 - Spirit terrorbird pouch +12008 - Spirit terrorbird pouch +12009 - Granite crab pouch +12010 - Granite crab pouch +12011 - Praying mantis pouch +12012 - Praying mantis pouch +12013 - Giant ent pouch +12014 - Giant ent pouch +12015 - Spirit cobra pouch +12016 - Spirit cobra pouch +12017 - Spirit dagannoth pouch +12018 - Spirit dagannoth pouch +12019 - Thorny snail pouch +12020 - Thorny snail pouch +12021 - Beaver pouch +12022 - Beaver pouch +12023 - Karam. overlord pouch +12024 - Karam. overlord pouch +12025 - Hydra pouch +12026 - Hydra pouch +12027 - Spirit jelly pouch +12028 - Spirit jelly pouch +12029 - Bunyip pouch +12030 - Bunyip pouch +12031 - War tortoise pouch +12032 - War tortoise pouch +12033 - Fruit bat pouch +12034 - Fruit bat pouch +12035 - Abyssal parasite pouch +12036 - Abyssal parasite pouch +12037 - Abyssal lurker pouch +12038 - Abyssal lurker pouch +12039 - Unicorn stallion pouch +12040 - Unicorn stallion pouch +12041 - Magpie pouch +12042 - Magpie pouch +12043 - Dreadfowl pouch +12044 - Dreadfowl pouch +12045 - Stranger plant pouch +12046 - Stranger plant pouch +12047 - Spirit wolf pouch +12048 - Spirit wolf pouch +12049 - Desert wyrm pouch +12050 - Desert wyrm pouch +12051 - Evil turnip pouch +12052 - Evil turnip pouch +12053 - Vampire bat pouch +12054 - Vampire bat pouch +12055 - Spirit scorpion pouch +12056 - Spirit scorpion pouch +12057 - Arctic bear pouch +12058 - Arctic bear pouch +12059 - Spirit spider pouch +12060 - Spirit spider pouch +12061 - Bloated leech pouch +12062 - Bloated leech pouch +12063 - Spirit kalphite pouch +12064 - Spirit kalphite pouch +12065 - Honey badger pouch +12066 - Honey badger pouch +12067 - Albino rat pouch +12068 - Albino rat pouch +12069 - Granite lobster pouch +12070 - Granite lobster pouch +12071 - Macaw pouch +12072 - Macaw pouch +12073 - Bronze minotaur pouch +12074 - Bronze minotaur pouch +12075 - Iron minotaur pouch +12076 - Iron minotaur pouch +12077 - Steel minotaur pouch +12078 - Steel minotaur pouch +12079 - Mithril minotaur pouch +12080 - Mithril minotaur pouch +12081 - Adamant minotaur pouch +12082 - Adamant minotaur pouch +12083 - Rune minotaur pouch +12084 - Rune minotaur pouch +12085 - Smoke devil pouch +12086 - Smoke devil pouch +12087 - Bull ant pouch +12088 - Bull ant pouch +12089 - Wolpertinger pouch +12090 - Wolpertinger pouch +12091 - Compost mound pouch +12092 - Compost mound pouch +12093 - Pack yak pouch +12094 - Pack yak pouch +12095 - Sp. cockatrice pouch +12096 - Sp. cockatrice pouch +12097 - Sp. guthatrice pouch +12098 - Sp. guthatrice pouch +12099 - Sp. saratrice pouch +12100 - Sp. saratrice pouch +12101 - Sp. zamatrice pouch +12102 - Sp. zamatrice pouch +12103 - Sp. pengatrice pouch +12104 - Sp. pengatrice pouch +12105 - Sp. coraxatrice pouch +12106 - Sp. coraxatrice pouch +12107 - Sp. vulatrice pouch +12108 - Sp. vulatrice pouch +12109 - Cockatrice egg +12110 - Cockatrice egg +12111 - Guthatrice egg +12112 - Guthatrice egg +12113 - Saratrice egg +12114 - Saratrice egg +12115 - Zamatrice egg +12116 - Zamatrice egg +12117 - Pengatrice egg +12118 - Pengatrice egg +12119 - Coraxatrice egg +12120 - Coraxatrice egg +12121 - Vulatrice egg +12122 - Vulatrice egg +12123 - Barker toad pouch +12124 - Barker toad pouch +12125 - Flies +12126 - Flies +12127 - Beetle bits +12128 - Beetle bits +12129 - Ground fishing bait +12130 - Nuts +12131 - Nuts +12132 - Truffle +12133 - Truffle +12134 - Evil turnip +12135 - Evil turnip +12136 - 2/3 evil turnip +12137 - 2/3 evil turnip +12138 - 1/3 evil turnip +12139 - 1/3 evil turnip +12140 - Summoning potion(4) +12141 - Summoning potion(4) +12142 - Summoning potion(3) +12143 - Summoning potion(3) +12144 - Summoning potion(2) +12145 - Summoning potion(2) +12146 - Summoning potion(1) +12147 - Summoning potion(1) +12148 - Evil turnip seed +12149 - Not Existing +12150 - Not Existing +12151 - Not Existing +12152 - Not Existing +12153 - Carved evil turnip +12154 - Carved evil turnip +12155 - Pouch +12156 - Honeycomb +12157 - Honeycomb +12158 - Gold charm +12159 - Green charm +12160 - Crimson charm +12161 - Abyssal charm +12162 - Talon beast charm +12163 - Blue charm +12164 - Ravager charm +12165 - Shifter charm +12166 - Spinner charm +12167 - Torcher charm +12168 - Obsidian charm +12169 - Summoning skillcape +12170 - Summoning skillcape(t) +12171 - Summoning hood +12172 - Clean spirit weed +12173 - Clean spirit weed +12174 - Grimy spirit weed +12175 - Grimy spirit weed +12176 - Spirit weed seed +12177 - Not Existing +12178 - Not Existing +12179 - Not Existing +12180 - Not Existing +12181 - Spirit weed potion(unf) +12182 - Spirit weed potion(unf) +12183 - Spirit shards +12184 - Gecko +12185 - Saradomin owl +12186 - Zamorak hawk +12187 - Guthix raptor +12188 - Penguin +12189 - Bird +12190 - Vulture +12191 - Terrier puppy +12192 - Greyhound puppy +12193 - Labrador puppy +12194 - Dalmatian puppy +12195 - Sheepdog puppy +12196 - Bulldog puppy +12197 - Dragon hatchling +12198 - Baby giant crab +12199 - Baby raccoon +12200 - Squirrel +12201 - Monkey +12202 - Not Existing +12203 - Chameleon +12204 - Antlers +12205 - Antlers +12206 - Antlers (charged) +12207 - Lizard skull +12208 - Lizard skull +12209 - Lizard skull (charged) +12210 - Feather headdress +12211 - Feather headdress +12212 - Feather headdress (charged) +12213 - Feather headdress +12214 - Feather headdress +12215 - Feather headdress (charged) +12216 - Feather headdress +12217 - Feather headdress +12218 - Feather headdress (charged) +12219 - Feather headdress +12220 - Feather headdress +12221 - Feather headdress (charged) +12222 - Feather headdress +12223 - Feather headdress +12224 - Feather headdress (charged) +12225 - Pouch +12226 - Pouch +12227 - Pouch +12228 - Pouch +12229 - Pouch +12230 - Pouch +12231 - Pouch +12232 - Pouch +12233 - Pouch +12234 - Pouch +12235 - Pouch +12236 - Pouch +12237 - Pouch +12238 - Pouch +12239 - Pouch +12240 - Pouch +12241 - Pouch +12242 - Pouch +12243 - Pouch +12244 - Pouch +12245 - Pouch +12246 - Pouch +12247 - Pouch +12248 - Pouch +12249 - Pouch +12250 - Pouch +12251 - Pouch +12252 - Pouch +12253 - Pouch +12254 - Pouch +12255 - Pouch +12256 - Pouch +12257 - Pouch +12258 - Pouch +12259 - Pouch +12260 - Pouch +12261 - Pouch +12262 - Pouch +12263 - Pouch +12264 - Pouch +12265 - Pouch +12266 - Pouch +12267 - Pouch +12268 - Pouch +12269 - Pouch +12270 - Pouch +12271 - Pouch +12272 - Pouch +12273 - Pouch +12274 - Pouch +12275 - Pouch +12276 - Pouch +12277 - Pouch +12278 - Pouch +12279 - Pouch +12280 - Pouch +12281 - Pouch +12282 - Pouch +12283 - Pouch +12284 - Pouch +12285 - Pouch +12286 - Pouch +12287 - Pouch +12288 - Pouch +12289 - Pouch +12290 - Pouch +12291 - Pouch +12292 - Pouch +12293 - Pouch +799 - Not Existing +12294 - Pouch +12295 - Pouch +12296 - Pouch +12297 - Pouch +12298 - Pouch +12299 - Pouch +12300 - Pouch +12301 - Pouch +12302 - Pouch +12303 - Pouch +12304 - Pouch +12305 - Pouch +12306 - Pouch +12307 - Pouch +12308 - Pouch +12309 - Pouch +12310 - Pouch +12311 - Pouch +12312 - Pouch +12313 - Pouch +12314 - Pouch +12315 - Pouch +12316 - Pouch +12317 - Pouch +12318 - Pouch +12319 - Pouch +12320 - Pouch +12321 - Pouch +12322 - Pouch +12323 - Pouch +12324 - Pouch +12325 - Pouch +12326 - Pouch +12327 - Pouch +12328 - Pouch +12329 - Pouch +12330 - Pouch +12331 - Pouch +12332 - Pouch +12333 - Pouch +12334 - Pouch +12335 - Pouch +12336 - Pouch +12337 - Pouch +12338 - Pouch +12339 - Pouch +12340 - Pouch +12341 - Pouch +12342 - Pouch +12343 - Pouch +12344 - Pouch +12345 - Pouch +12346 - Pouch +12347 - Pouch +12348 - Pouch +12349 - Pouch +12350 - Pouch +12351 - Pouch +12352 - Pouch +12353 - Pouch +12354 - Pouch +12355 - Pouch +12356 - Pouch +12357 - Pouch +12358 - Pouch +12359 - Pouch +12360 - Pouch +12361 - Pouch +12362 - Pouch +12363 - Pouch +12364 - Pouch +12365 - Pouch +12366 - Pouch +12367 - Pouch +12368 - Pouch +12369 - Pouch +12370 - Pouch +12371 - Pouch +12372 - Pouch +12373 - Pouch +12374 - Pouch +12375 - Pouch +12376 - Pouch +12377 - Pouch +12378 - Pouch +12379 - Pouch +12380 - Pouch +12381 - Pouch +12382 - Pouch +12383 - Pouch +12384 - Pouch +12385 - Pouch +12386 - Pouch +12387 - Pouch +12388 - Pouch +12389 - Pouch +12390 - Pouch +12391 - Pouch +12392 - Pouch +12393 - Pouch +12394 - Pouch +12395 - Pouch +12396 - Pouch +12397 - Pouch +12398 - Pouch +12399 - Pouch +12400 - Pouch +12401 - Pouch +12402 - Pouch +12403 - Pouch +12404 - Pouch +12405 - Pouch +12406 - Pouch +12407 - Pouch +12408 - Pouch +12409 - Pouch +12410 - Pouch +12411 - Pouch +12412 - Pouch +12413 - Pouch +12414 - Pouch +12415 - Pouch +12416 - Pouch +12417 - Pouch +12418 - Pouch +12419 - Pouch +12420 - Pouch +12421 - Scroll +12422 - Herbcall scroll +12423 - Fruitfall scroll +12424 - Fish rain scroll +12425 - Howl scroll +12426 - Thieving fingers scroll +12427 - Abyssal stealth scroll +12428 - Egg spawn scroll +12429 - Multichop scroll +12430 - Cheese feast scroll +12431 - Unburden scroll +12432 - Venom shot scroll +12433 - Insane ferocity scroll +12434 - Healing aura scroll +12435 - Winter storage scroll +12436 - Oph. incubation scroll +12437 - Magic focus scroll +12438 - Swallow whole scroll +12439 - Testudo scroll +12440 - Generate compost scroll +12441 - Tireless run scroll +12442 - Regrowth scroll +12443 - Call to arms scroll +12444 - Blood drain scroll +12445 - Dreadfowl strike scroll +12446 - Sandstorm scroll +12447 - Vampire touch scroll +12448 - Evil flames scroll +12449 - Crushing claw scroll +12450 - Mantis strike scroll +12451 - Arctic blast scroll +12452 - Toad bark scroll +12453 - Dissolve scroll +12454 - Abyssal drain scroll +12455 - Doomsphere scroll +12456 - Spike shot scroll +12457 - Acorn missile scroll +12458 - Petrifying gaze scroll +12459 - Slime spray scroll +12460 - Electric lash scroll +12461 - Bronze bull rush scroll +12462 - Iron bull rush scroll +12463 - Steel bull rush scroll +12464 - Mith bull rush scroll +12465 - Addy bull rush scroll +12466 - Rune bull rush scroll +12467 - Poisonous blast scroll +12468 - Dust cloud scroll +12469 - Hatchling dragon +12470 - Baby dragon +12471 - Hatchling dragon +12472 - Baby dragon +12473 - Hatchling dragon +12474 - Baby dragon +12475 - Hatchling dragon +12476 - Baby dragon +12477 - Red dragon egg +12478 - Blue dragon egg +12479 - Green dragon egg +12480 - Black dragon egg +12481 - Baby penguin +12482 - Penguin +12483 - Penguin egg +12484 - Raven chick +12485 - Raven +12486 - Baby raccoon +12487 - Raccoon +12488 - Baby gecko +12489 - Gecko +12490 - Baby squirrel +12491 - Squirrel +12492 - Baby chameleon +12493 - Chameleon +12494 - Chameleon egg +12495 - Chameleon egg +12496 - Baby monkey +12497 - Monkey +12498 - Vulture chick +12499 - Vulture +12500 - Baby giant crab +12501 - Giant crab +12502 - Crunchy claw token +12503 - Saradomin chick +12504 - Saradomin bird +12505 - Saradomin owl +12506 - Zamorak chick +12507 - Zamorak bird +12508 - Zamorak hawk +12509 - Guthix chick +12510 - Guthix bird +12511 - Guthix raptor +12512 - Terrier puppy +12513 - Terrier +12514 - Greyhound puppy +12515 - Greyhound +12516 - Labrador puppy +12517 - Labrador +12518 - Dalmatian puppy +12519 - Dalmatian +12520 - Sheepdog puppy +12521 - Sheepdog +12522 - Bulldog puppy +12523 - Bulldog +12524 - Summoning cape +12525 - Pouch +12526 - Spirit wolf pouch +12527 - Gold charm +12528 - Trapdoor key +12529 - Howl scroll +12530 - Spirit shards +12531 - Ibis pouch +799 - Not Existing +12532 - Ibis pouch +12533 - Stony shell scroll +12534 - Not Existing +12535 - Raw pawya meat +12536 - Raw pawya meat +12537 - Picture +12538 - Picture +12539 - Grenwall spikes +12540 - Not Existing +12541 - Not Existing +12542 - Not Existing +12543 - Not Existing +12544 - Picture +12545 - Picture +12546 - Enchanted pawya meat +12547 - Platypus +12548 - Platypus +12549 - Platypus +12550 - Platypus +12551 - Baby platypus +12552 - Baby platypus +12553 - Baby platypus +12554 - Patrick +12555 - Penelope +12556 - Peter +12557 - Peanut +12558 - Mud +12559 - Ogre wig +12560 - Ogre wig +12561 - Ogre kilt +12562 - Ogre kilt +12563 - Ogre top +12564 - Ogre top +12565 - Ogre boots +12566 - Ogre boots +12567 - Diseased kebbit fur +12568 - Davy kebbit hat +12569 - Davy kebbit hat +12570 - Ogre club +12571 - Ogre club +12572 - Lavender +12573 - Lavender +12574 - Fever grass +12575 - Fever grass +12576 - Tansymum +12577 - Tansymum +12578 - Smouldering fever grass +12579 - Smouldering lavender +12580 - Smouldering tansymum +12581 - Eucalyptus logs +12582 - Eucalyptus logs +12583 - Eucalyptus pyre logs +12584 - Eucalyptus pyre logs +12585 - Not Existing +12586 - Not Existing +12587 - Not Existing +12588 - Primweed +12589 - Primweed +12590 - Stinkbloom +12591 - Stinkbloom +12592 - Diseased kebbit fur +12593 - Catapult schematics +12594 - Engineer's letter +12595 - Sailor's hat +12596 - Metal catapult parts +12597 - Mahogany catapult part +12598 - Mahogany catapult part +12599 - Mahogany catapult part +12600 - Mahogany catapult part +12601 - Mahogany catapult part +12602 - Mahogany catapult part +12603 - Mahogany catapult part +12604 - Mahogany catapult part +12605 - Mahogany catapult part +12606 - Mahogany catapult part +12607 - Picture +12608 - Amulet of farming(1) +12609 - Amulet of farming(1) +12610 - Amulet of farming(2) +12611 - Amulet of farming(2) +12612 - Amulet of farming(3) +12613 - Amulet of farming(3) +12614 - Amulet of farming(4) +12615 - Amulet of farming(4) +12616 - Amulet of farming(5) +12617 - Amulet of farming(5) +12618 - Amulet of farming(6) +12619 - Amulet of farming(6) +12620 - Amulet of farming(7) +12621 - Amulet of farming(7) +12622 - Amulet of farming(8) +12623 - Amulet of farming(8) +12624 - Ogleroot +12625 - Flag +12626 - Test paper +12627 - Antique lamp +12628 - Antique lamp +12629 - Safety gloves +12630 - Rubium +12631 - Toy train +12632 - Note +12633 - Super fishing explosive +12634 - Chocatrice cape +12635 - Easter egg +12636 - Easter egg +12637 - Easter egg +12638 - Easter egg +12639 - Easter egg +12640 - Easter egg +12641 - Easter egg +12642 - Easter egg +12643 - Easter egg +12644 - Easter egg +12645 - Chocatrice cape +12646 - Chocolate egg +12647 - Chocolate egg +12648 - Chocolate egg +12649 - Bucket +12650 - Bucket of water +12651 - Bucket of water +12652 - Bucket of coal +12653 - Bucket of coal +12654 - Cockatrice egg +12655 - Chocatrice egg +12656 - Chocatrice object +12657 - Chocolate chunks +12658 - Adamant full helm (e) +12659 - Adamant full helm (charged) +12660 - Snakeskin bandana (e) +12661 - Snakeskin bandana (charged) +12662 - Splitbark helm (e) +12663 - Splitbark helm (charged) +12664 - Rune full helm (e) +12665 - Rune full helm (charged) +12666 - Dragon med helm (e) +12667 - Dragon med helm (charged) +12668 - Lunar helm (e) +12669 - Lunar helm (charged) +12670 - Armadyl helmet (e) +12671 - Armadyl helmet (charged) +12672 - Archer helm (e) +12673 - Archer helm (charged) +12674 - Berserker helm (e) +12675 - Berserker helm (charged) +12676 - Warrior helm (e) +12677 - Warrior helm (charged) +12678 - Farseer helm (e) +12679 - Farseer helm (charged) +12680 - Helm of neitiznot (e) +12681 - Helm of neitiznot (charged) +12682 - Baby monkey +12683 - Monkey +12684 - Baby monkey +12685 - Monkey +12686 - Baby monkey +12687 - Monkey +12688 - Baby monkey +12689 - Monkey +12690 - Baby monkey +12691 - Monkey +12692 - Baby monkey +12693 - Monkey +12694 - Baby monkey +12695 - Monkey +12696 - Baby monkey +12697 - Monkey +12698 - Baby monkey +12699 - Monkey +12700 - Terrier puppy +12701 - Terrier +12702 - Terrier puppy +12703 - Terrier +12704 - Greyhound puppy +12705 - Greyhound +12706 - Greyhound puppy +12707 - Greyhound +12708 - Labrador puppy +12709 - Labrador +12710 - Labrador puppy +12711 - Labrador +12712 - Dalmatian puppy +12713 - Dalmatian +12714 - Dalmatian puppy +12715 - Dalmatian +12716 - Sheepdog puppy +12717 - Sheepdog +12718 - Sheepdog puppy +12719 - Sheepdog +12720 - Bulldog puppy +12721 - Bulldog +12722 - Bulldog puppy +12723 - Bulldog +12724 - Raven chick +12725 - Raven +12726 - Raven chick +12727 - Raven +12728 - Raven chick +12729 - Raven +12730 - Raven chick +12731 - Raven +12732 - Raven chick +12733 - Raven +12734 - Baby raccoon +12735 - Raccoon +12736 - Baby raccoon +12737 - Raccoon +12738 - Baby gecko +12739 - Baby gecko +12740 - Baby gecko +12741 - Baby gecko +12742 - Gecko +12743 - Gecko +12744 - Gecko +12745 - Gecko +12746 - Baby giant crab +12747 - Giant crab +12748 - Baby giant crab +12749 - Giant crab +12750 - Baby giant crab +12751 - Giant crab +12752 - Baby giant crab +12753 - Giant crab +12754 - Baby squirrel +12755 - Squirrel +12756 - Baby squirrel +12757 - Squirrel +12758 - Baby squirrel +12759 - Squirrel +12760 - Baby squirrel +12761 - Squirrel +12762 - Penguin +12763 - Baby penguin +12764 - Penguin +12765 - Baby penguin +12766 - Vulture chick +12767 - Vulture +12768 - Vulture chick +12769 - Vulture +12770 - Vulture chick +12771 - Vulture +12772 - Vulture chick +12773 - Vulture +12774 - Vulture chick +12775 - Vulture +12776 - Swamp titan pouch +799 - Not Existing +12777 - Swamp titan pouch +12778 - Spirit mosquito pouch +12779 - Spirit mosquito pouch +12780 - Void spinner pouch +12781 - Void spinner pouch +12782 - Forge regent pouch +12783 - Forge regent pouch +12784 - Spirit larupia pouch +12785 - Spirit larupia pouch +12786 - Geyser titan pouch +12787 - Geyser titan pouch +12788 - Lava titan pouch +12789 - Lava titan pouch +12790 - Steel titan pouch +12791 - Steel titan pouch +12792 - Obsidian golem pouch +12793 - Obsidian golem pouch +12794 - Talon beast pouch +12795 - Talon beast pouch +12796 - Abyssal titan pouch +12797 - Abyssal titan pouch +12798 - Void torcher pouch +12799 - Void torcher pouch +12800 - Giant chinchompa pouch +12801 - Giant chinchompa pouch +12802 - Fire titan pouch +12803 - Fire titan pouch +12804 - Moss titan pouch +12805 - Moss titan pouch +12806 - Ice titan pouch +12807 - Ice titan pouch +12808 - Spirit tz-kih pouch +12809 - Spirit tz-kih pouch +12810 - Spirit graahk pouch +12811 - Spirit graahk pouch +12812 - Spirit kyatt pouch +12813 - Spirit kyatt pouch +12814 - Void shifter pouch +12815 - Void shifter pouch +12816 - Pyrelord pouch +12817 - Pyrelord pouch +12818 - Void ravager pouch +12819 - Void ravager pouch +12820 - Ravenous locust pouch +12821 - Ravenous locust pouch +12822 - Iron titan pouch +12823 - Iron titan pouch +12824 - Titan's con. scroll +12825 - Steel of legends scroll +12826 - Volcanic str. scroll +12827 - Essence shipment scroll +12828 - Iron within scroll +12829 - Immense heat scroll +12830 - Famine scroll +12831 - Deadly claw scroll +12832 - Swamp plague scroll +12833 - Boil scroll +12834 - Explode scroll +12835 - Goad scroll +12836 - Ambush scroll +12837 - Ebon thunder scroll +12838 - Pester scroll +12839 - Fireball assault scroll +12840 - Rending scroll +12841 - Inferno scroll +12842 - Gnomecopter +12843 - Gnomecopter ticket +12844 - Toy kite +12845 - Stone of power +12846 - Stone of power +12847 - Stone of power +12848 - Stone of power +12849 - Stone of power +12850 - Elemental rune +12851 - Catalytic rune +12852 - Fist of guthix token +12853 - Bandages +12854 - Not Existing +12855 - Tele-orb +12856 - Irit gloves +12857 - Avantoe gloves +12858 - Kwuarm gloves +12859 - Cadantine gloves +12860 - Swordfish gloves +12861 - Shark gloves +12862 - Dragon slayer gloves +12863 - Air runecrafting gloves +12864 - Water runecrafting gloves +12865 - Earth runecrafting gloves +12866 - Battle hood 100 +12867 - Battle hood 80 +12868 - Battle hood 60 +12869 - Battle hood 40 +12870 - Battle hood 20 +12871 - Battle hood 0 +12872 - Battle hood 0 +12873 - Battle robe top 100 +12874 - Battle robe top 80 +12875 - Battle robe top 60 +12876 - Battle robe top 40 +12877 - Battle robe top 20 +12878 - Battle robe top 0 +12879 - Battle robe top 0 +12880 - Battle robe bottom 100 +12881 - Battle robe bottom 80 +12882 - Battle robe bottom 60 +12883 - Battle robe bottom 40 +12884 - Battle robe bottom 20 +12885 - Battle robe bottom 0 +12886 - Battle robe bottom 0 +12887 - Druidic mage hood 100 +12888 - Druidic mage hood 80 +12889 - Druidic mage hood 60 +12890 - Druidic mage hood 40 +12891 - Druidic mage hood 20 +12892 - Druidic mage hood 0 +12893 - Druidic mage hood 0 +12894 - Druidic mage top 100 +12895 - Druidic mage top 80 +12896 - Druidic mage top 60 +12897 - Druidic mage top 40 +12898 - Druidic mage top 20 +12899 - Druidic mage top 0 +12900 - Druidic mage top 0 +12901 - Druidic mage bottom 100 +12902 - Druidic mage bottom 80 +12903 - Druidic mage bottom 60 +12904 - Druidic mage bottom 40 +12905 - Druidic mage bottom 20 +12906 - Druidic mage bottom 0 +12907 - Druidic mage bottom 0 +12908 - Adamant spikeshield 100 +12909 - Adamant spikeshield 80 +12910 - Adamant spikeshield 60 +12911 - Adamant spikeshield 40 +12912 - Adamant spikeshield 20 +12913 - Adamant spikeshield 0 +12914 - Adamant spikeshield 0 +12915 - Adamant berserker shield 100 +12916 - Adamant berserker shield 80 +12917 - Adamant berserker shield 60 +12918 - Adamant berserker shield 40 +12919 - Adamant berserker shield 20 +12920 - Adamant berserker shield 0 +12921 - Adamant berserker shield 0 +12922 - Rune spikeshield 100 +12923 - Rune spikeshield 80 +12924 - Rune spikeshield 60 +12925 - Rune spikeshield 40 +12926 - Rune spikeshield 20 +12927 - Rune spikeshield 0 +12928 - Rune spikeshield 0 +12929 - Rune berserker shield 100 +12930 - Rune berserker shield 80 +12931 - Rune berserker shield 60 +12932 - Rune berserker shield 40 +12933 - Rune berserker shield 20 +12934 - Rune berserker shield 0 +12935 - Rune berserker shield 0 +12936 - Green d'hide co if 100 +12937 - Green d'hide co if 80 +12938 - Green d'hide co if 60 +12939 - Green d'hide co if 40 +12940 - Green d'hide co if 20 +12941 - Green d'hide co if 0 +12942 - Green d'hide co if 0 +12943 - Blue d'hide co if 100 +12944 - Blue d'hide co if 80 +12945 - Blue d'hide co if 60 +12946 - Blue d'hide co if 40 +12947 - Blue d'hide co if 20 +12948 - Blue d'hide co if 0 +12949 - Blue d'hide co if 0 +12950 - Red d'hide co if 100 +12951 - Red d'hide co if 80 +12952 - Red d'hide co if 60 +12953 - Red d'hide co if 40 +12954 - Red d'hide co if 20 +12955 - Red d'hide co if 0 +12956 - Red d'hide co if 0 +12957 - Black d'hide co if 100 +12958 - Black d'hide co if 80 +12959 - Black d'hide co if 60 +12960 - Black d'hide co if 40 +12961 - Black d'hide co if 20 +12962 - Black d'hide co if 0 +12963 - Black d'hide co if 0 +12964 - Combat hood 100 +12965 - Combat hood 80 +12966 - Combat hood 60 +12967 - Combat hood 40 +12968 - Combat hood 20 +12969 - Combat hood 0 +12970 - Combat hood 0 +12971 - Combat robe top 100 +12972 - Combat robe top 80 +12973 - Combat robe top 60 +12974 - Combat robe top 40 +12975 - Combat robe top 20 +12976 - Combat robe top 0 +12977 - Combat robe top 0 +12978 - Combat robe bottom 100 +12979 - Combat robe bottom 80 +12980 - Combat robe bottom 60 +12981 - Combat robe bottom 40 +12982 - Combat robe bottom 20 +12983 - Combat robe bottom 0 +12984 - Combat robe bottom 0 +12985 - Bronze gauntlets +12986 - Worn-out bronze gauntlets +12987 - Worn-out bronze gauntlets +12988 - Iron gauntlets +12989 - Worn-out iron gauntlets +12990 - Worn-out iron gauntlets +12991 - Steel gauntlets +12992 - Worn-out steel gauntlets +12993 - Worn-out steel gauntlets +12994 - Black gauntlets +12995 - Worn-out black gauntlets +12996 - Worn-out black gauntlets +12997 - Mithril gauntlets +12998 - Worn-out mithril gauntlets +12999 - Worn-out mithril gauntlets +13000 - Adamant gauntlets +13001 - Worn-out adamant gauntlets +13002 - Worn-out adamant gauntlets +13003 - Rune gauntlets +13004 - Worn-out rune gauntlets +13005 - Worn-out rune gauntlets +13006 - Dragon gauntlets +13007 - Worn-out dragon gauntlets +13008 - Worn-out dragon gauntlets +13009 - Not Existing +13010 - Clue scroll +13011 - Puzzle box +13012 - Clue scroll +13013 - Puzzle box +13014 - Clue scroll +13015 - Puzzle box +13016 - Clue scroll +13017 - Puzzle box +13018 - Clue scroll +13019 - Puzzle box +13020 - Clue scroll +13021 - Puzzle box +13022 - Clue scroll +13023 - Puzzle box +13024 - Clue scroll +13025 - Puzzle box +13026 - Clue scroll +13027 - Puzzle box +13028 - Clue scroll +13029 - Puzzle box +13030 - Clue scroll +13031 - Puzzle box +13032 - Clue scroll +13033 - Puzzle box +13034 - Clue scroll +13035 - Puzzle box +13036 - Clue scroll +13037 - Casket +13038 - Clue scroll +13039 - Casket +13040 - Clue scroll +13041 - Clue scroll +13042 - Clue scroll +13043 - Casket +13044 - Clue scroll +13045 - Casket +13046 - Clue scroll +13047 - Casket +13048 - Clue scroll +13049 - Clue scroll +13050 - Clue scroll +13051 - Clue scroll +13052 - Casket +13053 - Clue scroll +13054 - Casket +13055 - Clue scroll +13056 - Clue scroll +13057 - Casket +13058 - Clue scroll +13059 - Casket +13060 - Clue scroll +13061 - Clue scroll +13062 - Casket +13063 - Clue scroll +13064 - Casket +13065 - Clue scroll +13066 - Casket +13067 - Clue scroll +13068 - Clue scroll +13069 - Clue scroll +13070 - Clue scroll +13071 - Clue scroll +13072 - Clue scroll +13073 - Key +13074 - Clue scroll +13075 - Clue scroll +13076 - Clue scroll +13077 - Casket +13078 - Clue scroll +13079 - Clue scroll +13080 - Clue scroll +13081 - Black crossbow +799 - Not Existing +13082 - Black crossbow +13083 - Black bolts +13084 - Black bolts(p) +13085 - Black bolts(p+) +13086 - Black bolts(p++) +13087 - Not Existing +13088 - Not Existing +13089 - Not Existing +13090 - Not Existing +13091 - Not Existing +13092 - Not Existing +13093 - Not Existing +13094 - Not Existing +13095 - Black cane +13096 - Black cane +13097 - Adamant cane +13098 - Adamant cane +13099 - Rune cane +13100 - Rune cane +13101 - Top hat +13102 - Top hat +13103 - Pith helmet +13104 - Pith helmet +13105 - Spiked helmet +13106 - Spiked helmet +13107 - Sheep mask +13108 - Sheep mask +13109 - Penguin mask +13110 - Penguin mask +13111 - Bat mask +13112 - Bat mask +13113 - Cat mask +13114 - Cat mask +13115 - Wolf mask +13116 - Wolf mask +13117 - Ivandis flail (30) +13118 - Ivandis flail (29) +13119 - Ivandis flail(28) +13120 - Ivandis flail (27) +13121 - Ivandis flail (26) +13122 - Ivandis flail (25) +13123 - Ivandis flail (24) +13124 - Ivandis flail (23) +13125 - Ivandis flail (22) +13126 - Ivandis flail (21) +13127 - Ivandis flail (20) +13128 - Ivandis flail (19) +13129 - Ivandis flail (18) +13130 - Ivandis flail (17) +13131 - Ivandis flail (16) +13132 - Ivandis flail (15) +13133 - Ivandis flail (14) +13134 - Ivandis flail (13) +13135 - Ivandis flail (12) +13136 - Ivandis flail (11) +13137 - Ivandis flail (10) +13138 - Ivandis flail (9) +13139 - Ivandis flail (8) +13140 - Ivandis flail (7) +13141 - Ivandis flail (6) +13142 - Ivandis flail (5) +13143 - Ivandis flail (4) +13144 - Ivandis flail (3) +13145 - Ivandis flail (2) +13146 - Ivandis flail (1) +13147 - Flail dust +13148 - Glove +13149 - Book page +13150 - Crate +13151 - Combat book +13152 - Not Existing +13153 - Chain link mould +13154 - Silvthril chain +13155 - Silver sickle emerald(b) +13156 - Enchanted sickle emerald(b) +13157 - Vyre corpse +13158 - Columbarium key +13159 - Ornate tomb key +13160 - Tome of xp 2nd ed (3) +13161 - Tome of xp 2nd ed (2) +13162 - Tome of xp 2nd ed (1) +13163 - Black cane +13164 - Adamant cane +13165 - Rune cane +13166 - Top hat +13167 - Pith helmet +13168 - Spiked helmet +13169 - Sheep mask +13170 - Penguin mask +13171 - Bat mask +13172 - Cat mask +13173 - Wolf mask +13174 - Blue navy slacks +13175 - Green navy slacks +13176 - Red navy slacks +13177 - Brown navy slacks +13178 - Black navy slacks +13179 - Purple navy slacks +13180 - Grey navy slacks +13181 - Blue naval shirt +13182 - Green naval shirt +13183 - Red naval shirt +13184 - Brown naval shirt +13185 - Black naval shirt +13186 - Purple naval shirt +13187 - Grey naval shirt +13188 - Blue tricorn hat +13189 - Green tricorn hat +13190 - Red tricorn hat +13191 - Brown tricorn hat +13192 - Black tricorn hat +13193 - Purple tricorn hat +13194 - Grey tricorn hat +13195 - Not Existing +13196 - Not Existing +13197 - Not Existing +13198 - Not Existing +13199 - Not Existing +13200 - Not Existing +13201 - Not Existing +13202 - Not Existing +13203 - Not Existing +13204 - Not Existing +13205 - Not Existing +13206 - Not Existing +13207 - Not Existing +13208 - Not Existing +13209 - Not Existing +13210 - Not Existing +13211 - Not Existing +13212 - Not Existing +13213 - Not Existing +13214 - Not Existing +13215 - Not Existing +13216 - Not Existing +13217 - Not Existing +13218 - Not Existing +13219 - Not Existing +13220 - Not Existing +13221 - Not Existing +13222 - Not Existing +13223 - Not Existing +13224 - Not Existing +13225 - Not Existing +13226 - Not Existing +13227 - Mysterious lamp +13228 - Crate +13229 - Letter +13230 - Icefiend net +13231 - Baby icefiend +13232 - Tent +13233 - Plans +13234 - Dwarven key +13235 - Not Existing +13236 - Three little kittens +13237 - Not Existing +13238 - Treated oak plank +13239 - Chisel +13240 - . +13241 - Treated plank +13242 - . +13243 - Stone tablet +13244 - Tzhaar tourist guide +13245 - Stone slab +13246 - Pillar +13247 - Splat +13248 - Splat +13249 - Splat +13250 - Splat +13251 - Not Existing +13252 - Not Existing +13253 - Not Existing +13254 - Not Existing +13255 - Not Existing +13256 - Not Existing +13257 - Not Existing +13258 - Not Existing +13259 - Ranged path key +13260 - Magic path key +13261 - Not Existing +13262 - Not Existing +13263 - Slayer helmet +13264 - Not Existing +13265 - Not Existing +13266 - Not Existing +13267 - Not Existing +13268 - Not Existing +13269 - Not Existing +13270 - Not Existing +13271 - Not Existing +13272 - Not Existing +13273 - Not Existing +13274 - Not Existing +13275 - Not Existing +13276 - Banshee voice +13277 - Masked earmuffs +13278 - Broad arrow heads +13279 - Unfinished broad bolts +13280 - Broad-tipped bolts +13281 - Ring of slaying(8) +13282 - Ring of slaying(7) +13283 - Ring of slaying(6) +13284 - Ring of slaying(5) +13285 - Ring of slaying(4) +13286 - Ring of slaying(3) +13287 - Ring of slaying(2) +13288 - Ring of slaying(1) +13289 - Not Existing +13290 - Leaf-bladed sword +13291 - Leaf-bladed sword +13292 - Letter +13293 - Plans +13294 - Charcoal rubbing +13295 - Frank's mark +13296 - Crude lockpick +13297 - Customs shirt +13298 - Customs trousers +13299 - Customs hat +13300 - File +13301 - File +13302 - Brooch +13303 - Izzy's mark +13304 - Key +13305 - Crowbar +13306 - Not Existing +13307 - Idol of many heads +13308 - Bill teach's mark +13309 - Paper +13310 - Confession +13311 - Note +13312 - Ink bottle +13313 - Inky paper +13314 - Ink bottle +13315 - Smashed bottle +13316 - Prison uniform top +13317 - Prison uniform trousers +13318 - Fishy prison uniform top +13319 - Tin cup +13320 - Tin cup +13321 - Pipe +13322 - Accordion +13323 - Accordion +13324 - Accordion +13325 - Vacuum pump +13326 - Vacuum pump and gull +13327 - Quill +13328 - Inky quill +13329 - File +13330 - File +13331 - Ex-parrot +13332 - Magical cage +13333 - Ex-parrot in a magic cage +13334 - Ex-ex-parrot in a magic cage +13335 - Ex-ex-parrot +13336 - Ex-ex-parrot +13337 - Pirate impling jar +13338 - Pirate impling jar +13339 - Bandana and eyepatch +13340 - Bandana and eyepatches +13341 - Bandana and eyepatch +13342 - Bandana and eyepatches +13343 - Bandana and eyepatch +13344 - Bandana and eyepatches +13345 - Bandana and eyepatch +13346 - Bandana and eyepatches +13347 - Bandana and eyepatch +13348 - Bandana and eyepatches +13349 - Bandana and eyepatch +13350 - Bandana and eyepatches +13351 - Bandana and eyepatch +13352 - Bandana and eyepatches +13353 - Double eyepatches/ +13354 - Pirate hat and eyepatches +13355 - Left eyepatch +13356 - Left eyepatch +13357 - Pirate hat and eyepatch +13358 - Stripy pirate shirt +13359 - Stripy pirate shirt +13360 - Stripy pirate shirt +13361 - Stripy pirate shirt +13362 - Stripy pirate shirt +13363 - Stripy pirate shirt +13364 - Pirate leggings +13365 - Pirate leggings +13366 - Pirate leggings +13367 - Pirate leggings +13368 - Pirate leggings +13369 - Pirate leggings +13370 - Bandana +13371 - Bandana +13372 - Bandana +13373 - Bandana +13374 - Bandana +13375 - Bandana +13376 - Bandana and eyepatch +13377 - Bandana and eyepatch +13378 - Bandana and eyepatch +13379 - Rock fragments +13380 - Introduction letter +13381 - Broken hand +13382 - Broken hand +13383 - Broken hand +13384 - Broken hand +13385 - Broken hand +13386 - Fingers +13387 - Thumb +13388 - Hand +13389 - Wrist +13390 - Brace +13391 - Brass hand +13392 - Ink pad +13393 - Inky hand +13394 - Paper +13395 - Brass hand harry's mark +13396 - Fake beard +13397 - Fake moustache and nose +13398 - Fake monocle, moustache and nose +13399 - Curly wig +13400 - Straight wig +13401 - Order +13402 - Braindeath's mark +13403 - Golden tinderbox +13404 - null +13405 - Dark bow +13406 - Ancient staff +13407 - Archer helm +13408 - Berserker helm +13409 - Warrior helm +13410 - Farseer helm +13411 - Rock-shell helm +13412 - Rock-shell plate +13413 - Rock-shell legs +13414 - Spined helm +13415 - Spined body +13416 - Spined chaps +13417 - Skeletal helm +13418 - Skeletal top +13419 - Skeletal bottoms +13420 - Spined boots +13421 - Rock-shell boots +13422 - Skeletal boots +13423 - Spined gloves +13424 - Rock-shell gloves +13425 - Skeletal gloves +13426 - Seers ring +13427 - Archers ring +13428 - Warrior ring +13429 - Berserker ring +13430 - Dragon 2h sword +13431 - Crayfish cage +13432 - Crayfish cage (Noted) +13433 - Crayfish +13434 - Crayfish (Noted) +13435 - Raw crayfish +13436 - Raw crayfish (Noted) +13437 - Burnt crayfish +13438 - Burnt crayfish (Noted) +13439 - Antique lamp +13440 - Bag of runes +13441 - null +13442 - Amulet of fury +13443 - Obsidian cape +13444 - Abyssal whip +13445 - Granite maul +13446 - Antique lamp +13447 - Antique lamp +13448 - Antique lamp +13449 - Dragon full helm +13450 - Armadyl godsword +13451 - Bandos godsword +13452 - Saradomin godsword +13453 - Zamorak godsword +13454 - Zamorakian spear +13455 - Armadyl helmet +13456 - Armadyl chestplate +13457 - Armadyl plateskirt +13458 - Bandos chestplate +13459 - Bandos tassets +13460 - Bandos boots +13461 - Saradomin sword +13462 - Dragon boots +13463 - Antique lamp +13464 - Task list +13465 - Dragon dagger +13466 - Dragon dagger(p) +13467 - Dragon dagger(p+) +13468 - Dragon dagger(p++) +13469 - Rune axe +13470 - Dragon axe +13471 - Rune battleaxe +13472 - Dragon battleaxe +13473 - Rune warhammer +13474 - Rune longsword +13475 - Dragon longsword +13476 - Rune scimitar +13477 - Dragon scimitar +13478 - Dragon halberd +13479 - Dragon mace +13480 - Rune pickaxe +13481 - Dragon chainbody +13482 - Rune platebody +13483 - Green d'hide body +13484 - Blue d'hide body +13485 - Red d'hide body +13486 - Black d'hide body +13487 - Rune platelegs +13488 - Dragon platelegs +13489 - Rune plateskirt +13490 - Dragon plateskirt +13491 - Green d'hide chaps +13492 - Blue d'hide chaps +13493 - Red d'hide chaps +13494 - Black d'hide chaps +13495 - Dragon med helm +13496 - Rune full helm +13497 - Green d'hide vamb +13498 - Blue d'hide vamb +13499 - Red d'hide vamb +13500 - Black d'hide vamb +13501 - Splitbark helm +13502 - Splitbark body +13503 - Splitbark legs +13504 - Splitbark gauntlets +13505 - Splitbark boots +13506 - Dragon sq shield +13507 - Rune kiteshield +13508 - Mystic hat +13509 - Mystic robe top +13510 - Mystic robe bottom +13511 - Mystic gloves +13512 - Mystic boots +13513 - Mystic hat +13514 - Mystic robe top +13515 - Mystic robe bottom +13516 - Mystic gloves +13517 - Mystic boots +13518 - Mystic hat +13519 - Mystic robe top +13520 - Mystic robe bottom +13521 - Mystic gloves +13522 - Mystic boots +13523 - Maple longbow +13524 - Maple shortbow +13525 - Yew longbow +13526 - Yew shortbow +13527 - Magic longbow +13528 - Magic shortbow +13529 - Seercull +13530 - Rune c'bow +13531 - Red partyhat +13532 - Yellow partyhat +13533 - Blue partyhat +13534 - Green partyhat +13535 - Purple partyhat +13536 - White partyhat +13537 - Santa hat +13538 - Green h'ween mask +13539 - Blue h'ween mask +13540 - Red h'ween mask +13541 - Willow comp bow +13542 - Yew comp bow +13543 - Magic comp bow +13544 - 3rd age range top +13545 - 3rd age range legs +13546 - 3rd age range coif +13547 - 3rd age vambraces +13548 - 3rd age robe top +13549 - 3rd age robe +13550 - 3rd age mage hat +13551 - 3rd age amulet +13552 - 3rd age platelegs +13553 - 3rd age platebody +13554 - 3rd age full helmet +13555 - 3rd age kiteshield +13556 - Ranger boots +13557 - Wizard boots +13558 - Robin hood hat +13559 - null +13560 - Explorer's ring 1 +13561 - Explorer's ring 2 +13562 - Explorer's ring 3 +13563 - Button mushroom +13564 - Button mushroom (Noted) +13565 - Doll +13566 - Jennica's ring +13567 - Cursed magic logs +13568 - Cursed magic logs (Noted) +13569 - Enchanted key notes +13570 - Bowl +13571 - Bucket of milk +13572 - Clean guam +13573 - Bowl of honey +13574 - Bowl of milk and honey +13575 - Bowl of honey, milk and guam +13576 - Map of runescape +13577 - Papyrus +13578 - Charcoal +13579 - Spade +13580 - Plant pot +13581 - Pear tree seedling +13582 - Mango tree seedling +13583 - Quince tree seedling +13584 - Lemon tree seedling +13585 - Avocado tree seedling +13586 - Plum tree seedling +13587 - Pestle and mortar +13588 - Ground guam +13589 - Bucket +13590 - null +13591 - Enchanted key +13592 - A brooch +13593 - Old tome +13594 - null +13595 - null +13596 - null +13597 - null +13598 - Runecrafting guild teleport +13599 - Air altar teleport +13600 - Mind altar teleport +13601 - Water altar teleport +13602 - Earth altar teleport +13603 - Fire altar teleport +13604 - Body altar teleport +13605 - Cosmic altar teleport +13606 - Chaos altar teleport +13607 - Nature altar teleport +13608 - Law altar teleport +13609 - Death altar teleport +13610 - Blood altar teleport +13611 - Astral altar teleport +13612 - Runecrafter hat +13613 - Runecrafter hat +13614 - Runecrafter robe +13615 - Runecrafter hat +13616 - Runecrafter hat +13617 - Runecrafter skirt +13618 - Runecrafter gloves +13619 - Runecrafter robe +13620 - Runecrafter hat +13621 - Runecrafter hat +13622 - Runecrafter skirt +13623 - Runecrafter gloves +13624 - Runecrafter robe +13625 - Runecrafter hat +13626 - Runecrafter hat +13627 - Runecrafter skirt +13628 - Runecrafter gloves +13629 - Runecrafting staff +13630 - Air talisman staff +13631 - Mind talisman staff +13632 - Water talisman staff +13633 - Earth talisman staff +13634 - Fire talisman staff +13635 - Body talisman staff +13636 - Cosmic talisman staff +13637 - Chaos talisman staff +13638 - Nature talisman staff +13639 - Law talisman staff +13640 - Death talisman staff +13641 - Blood talisman staff +13642 - Omni-talisman staff +13643 - Yellow attractor +13644 - Yellow repeller +13645 - Green attractor +13646 - Green repeller +13647 - Green barrier generator +13648 - Yellow barrier generator +13649 - Omni-talisman +13650 - Runecrafting guild token +13651 - Runecrafting guild token +13652 - Runecrafting guild token +13653 - Runecrafting guild token +13654 - Runecrafting guild token +13655 - Omni-tiara +13656 - Runecrafter hat +13657 - Runecrafter hat +13658 - Runecrafter hat +13659 - null \ No newline at end of file diff --git a/server508/lists/npc-animation.txt b/server508/lists/npc-animation.txt new file mode 100644 index 0000000..ac3b5c8 --- /dev/null +++ b/server508/lists/npc-animation.txt @@ -0,0 +1,446 @@ +tzhaar emote list with chaos elemental,demon,abyssal demon,dragon,giants,giants mole,dark beast,dagnnoth +daggnoth kings,azinian avatar,strange plant,baby dragon,kurask,dust devil and gargoyle.ghost,ninja and zombie monkey,all slayer monster and more but i dont type it lol +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +made 100% by me Mr.ROFLMA w00t. Don't leech it please +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +normal tzhaar npc + +2602 = walk +2603 = stand +2604 = stand with staff +2605 = block +2606 = block but fast +2607 = dead +2608 = dead +2609 = atck with non wep only arm +2610 = hit with wep +2611 = range atk +2612 = dagger atk +2613 = mage atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +tz-kih emote + +2619 = stand = too walk :P +2620 = dead +2621 = atk +2622 = block +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +tz-kek emote id 2737 + +2623 = walk +2624 = stand +2625 = atk +2626 = block +2627 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +tok-xil emote + +2628 = atk +2629 = block +2630 = dead +2631 = stand +2632 = walk +2633 = range atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +yt-mejkot emote + +2634 = walk +2635 = block +2636 = stand +2636 = atk +2637 = atk too lol +2638 = dead +2639 = heal like barrage rofl! +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +ket-zek emote + +2642 = stand +2643 = walk +2644 = melee atk +2645 = block +2646 = dead +2647 = mage atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +tztok-jad + +2650 = stand +2651 = walk +2652 = range atk +2653 = block +2654 = dead +2655 = melee atk +2656 = mage atk + +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +end of the tzhaar emote +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +k.B.D or dragon emote + +79 = walk +80 = melee atk with claw +81 = fire breath atk +89 = block +90 = stand +91 = melee atk with head +92 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +demon emote + +63 = walk +64 = atk slash +65 = block +66 = stand +67-68= dead +69 = mage atk with strik-blast +70 = block but is not normal +71 = shrink +72 = re Grow +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +chaos elemental emote! + +3144 = walk +3146 = mage atk +3147 = dead +3148 = stand +3149 = tele atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +giant emote! + +127 = walk +128 = slash with sword +129 = block +130 = stand +131 = dead +132 = mage atk like god spell +133 = tele shrink +134 = tele re-Grow +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +abyssal demon emote + +1536 = stand +1537 = atk +1538 = die +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +giants mole emote + +3309 = stand +3310 = die +3311 = block +3312 = atk +3313 = walk +3314 = make a hole and in :P +3315 = out the hole! +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +dark beast emote + +2729 = stand +2730 = block +2731 = walk +2732 = dead +2733 = atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +dagnnoth emote + +1338 = stand +1339 = walk +1340 = block +1341 = melee atk +1342 = dead +1343 = range atk +1344 = swim +1345 = swim +1346 = swim +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +dagnnoth kings emote! + +2849 = walk +2850 = stand +2851 = melee atk1 +2852 = block +2853 = melee atk2 +2854 = mage atk +2855 = range atk +2856 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +monkey guard (Gorila) + +1400 = run +1401 = stand +1402 = atk +1403 = block +1404 = dead +1405 = heal he self +1406 = stam +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +azinian avatar emote! + +1838 = stand +1839 = walk +1840 = melee atk +1841 = dead +1842 = block +1843 = range atk +1844 = magic atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +strange plant emote + +352 = stand +353 = atk +354 = block +355 = dead +356 = walk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +baby dragon emote + +21 = walk +25 = atk +26 = block +27 = stand +28 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +kurask emote + +1510 = walk +1511 = stand +1512 = atk +1513 = dead +1514 = idk what he do like stand lol +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +dust devil + +1555 = block +1556 = stand +1557 = atk +1558 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +gargoyle + +1515 = stand-walk +1516 = stand-walk +1517 = atk +1518 = dead +1519 = block +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +ghost emote + +120 = walk +121 = walk +122 = walk +123 = atk +124 = block +125 = stand +126 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +ninja and zombie monkey emote + +1380 = walk +1381 = run +1382 = zombie walk +1383 = atk with non wep +1384 = dead +1385 = walk +1386 = stand +1387 = stand +1388 = stand (best stand beter use this) +1389 = ????? +1390 = dead real one dead +1391 = dead fake dead +1392 = melee atk +1393 = block +1394 = range atk +1395 = range block +1396 = spin atk +1397 = walk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Basilisk + +1544 = walk +1545 = stand +1546 = attack +1547 = block +1548 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +bloodveld + +1549 = walk +1550 = block +1551 = stand +1552 = attack +1553 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Cockatrice + +1559 = walk +1560 = idk i think atk +1561 = stand +1562 = attk +1563 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Rock slug + +1564 = walk +1565 = stand +1566 = stand2 +1567 = atk +1568 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +banshee + +1521 = stand +1522 = stand too +1523 = atk +1524 = dead +1525 = block +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Nechryael + +1526 = walk +1527 = stand +1528 = attk +1529 = lol he can mage barrage +1530 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Pyrefiend + +1578 = stand +1579 = walk +1580 = dead +1581 = block +1582 = atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +jellie + +1583 = stand +1584 = walk +1585 = block +1586 = attk +1587 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Crawling hand + +1588 = stand +1589 = walk +1590 = dead +1591 = block +1592 = atk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Turoth + +1593 = walk +1594 = stand +1595 = atk +1596 = block +1597 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Agrith-Na-Na + +3498 = stand +3499 = walk +3500 = block +3501 = atk +3502 = magic atk +3503 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Dessourt + +3504 = stand +3505 = block +3506 = walk +3507 = walk +3508 = atk +3509 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +wolfman + +1079 = walk +1080 = atk +1081 = block +1082 = dead +1083 = stand +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +ghast + +1085 = walk +1086 = stand +1087 = atk +1088 = block +1089 = dead +1090 = dead 2 +1091 = walk but it ghostly +1092 = stand it ghostly +1093 = atk it ghosly +1094 = block it ghosly +1095 = dead ghosly +1096 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +troll emote + +1139 = walk +1140 = walk +1141 = walk +1142 = atk + +not full! +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +gnome + +189 = walk +190 = range atk +191 = atk non wep +192 = atk with wep +193 = idk +194 = block +195 = stand +196 = dead +197 = god spell atk +198 = idk he clap +199 = stand +200 = idk he clap and it fast +201 = atk fast +202 = he got something walk +203 = lol idk what he done!!!! he fall with something +204 = gnome matrix lol +205 = he fall dooood +206 = he using busing down +207 = he fall dood again +208 = doood fall doood again... +209 = fall dood fall dood fall dood... +210 = football gnome ftw!! +211 = gnome cheeeeer +212 = gnome that want fly... +213 = bush +214 = idk what.... +215 = same one but not same way... +216 = he say something block... +217 = i hate gnome idk what this is... +218 = spin +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +shost shade + +1281 = walk +1282 = stand +1283 = magic atk +1284 = atk +1285 = dead +1286 = block +1287 = dead +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Spinolyp + +2863 = walk +2864 = bove water +2865 = under water +2866 = under water long +2867 = stand +2868 = atk +2869 = block +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +killerwatt + +3160 = stand +3161 = walk +3162 = dead +3163 = atk +3164 = atk2 +3165 = block +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ \ No newline at end of file diff --git a/server508/lists/npcs.txt b/server508/lists/npcs.txt new file mode 100644 index 0000000..d077fa7 --- /dev/null +++ b/server508/lists/npcs.txt @@ -0,0 +1,7439 @@ +0 Hans +1 Man +2 Man +3 Man +4 Woman +5 Woman +6 Woman +7 Farmer +8 Thief +9 Guard +10 Schoolgirl +11 Tramp +12 Barbarian +13 Wizard +14 Druid +15 Warrior woman +16 Man +17 Schoolgirl +18 Al-Kharid warrior +19 White Knight +20 Paladin +21 Hero +22 Forester +23 Knight of Ardougne +24 Man +25 Woman +26 Knight of Ardougne +27 Archer +28 Zoo keeper +29 Chuck +30 Barman +31 Priest +32 Guard +33 Door man +34 Watchman +35 Soldier +36 Wyson the gardener +37 Sigbert the Adventurer +38 Shipyard worker +39 Shipyard worker +40 Shark +41 Chicken +42 Sheep +43 Sheep +44 Banker +45 Banker +46 Duck +47 Rat +48 Oomlie bird +49 Hellhound +50 King Black Dragon +51 Baby dragon +52 Baby blue dragon +53 Red dragon +54 Black dragon +55 Blue dragon +56 Dryad +57 Fairy +58 Shadow spider +59 Giant spider +60 Giant spider +61 Spider +62 Jungle spider +63 Deadly red spider +64 Ice spider +65 Leprechaun +66 Gnome +67 Gnome +68 Gnome +69 Lizard man +70 Turael +71 Orc +72 Troll +73 Zombie +74 Zombie +75 Zombie +76 Zombie +77 Summoned Zombie +78 Giant bat +79 Death wing +80 Camel +81 Cow +82 Lesser demon +83 Greater demon +84 Black demon +85 Golem +86 Giant rat +87 Giant rat +88 Dungeon rat +89 Unicorn +90 Skeleton +91 Skeleton +92 Skeleton +93 Skeleton +94 Skeleton Mage +95 Wolf +96 White wolf +97 White wolf +98 Dog +99 Guard dog +100 Goblin +101 Goblin +102 Goblin +103 Ghost +104 Ghost +105 Grizzly bear +106 Black bear +107 Scorpion +108 Poison Scorpion +109 Pit Scorpion +110 Fire giant +111 Ice giant +112 Moss giant +113 Jogre +114 Mogre +115 Ogre +116 Cyclops +117 Hill Giant +118 Dwarf +119 Chaos dwarf +120 Dwarf +121 Dwarf +122 Hobgoblin +123 Hobgoblin +124 Earth warrior +125 Ice warrior +126 Otherworldly being +127 Magic axe +128 Snake +129 Skavid +130 Yeti +131 Penguin +132 Monkey +133 Black unicorn +134 Poison spider +135 Mammoth +136 Mounted terrorchick gnome +137 Terrorchick gnome +138 Terrorbird +139 Terrorbird +140 Souless +141 Big Wolf +142 Wolf +143 Jungle Wolf +144 King Scorpion +145 Ice warrior +146 Gull +147 Cormorant +148 Pelican +149 Gull +150 Gull +151 Fly trap +153 Butterfly +154 Butterfly +155 Butterfly +156 Butterfly +157 Butterfly +158 Shadow warrior +159 Gnome child +160 Gnome child +161 Gnome child +162 Gnome trainer +163 Gnome guard +164 Gnome guard +165 Gnome shop keeper +166 Gnome banker +167 Gnome baller +168 Gnome woman +169 Gnome woman +170 Man +171 Brimstail +172 Dark wizard +173 Invrigar the Necromancer +174 Dark wizard +175 Mugger +176 Witch +177 Witch +178 Black Knight +179 Black Knight +180 Highwayman +181 Chaos druid +182 Pirate +183 Pirate +184 Pirate +185 Pirate +186 Thug +187 Rogue +188 Monk of Zamorak +189 Monk of Zamorak +190 Monk of Zamorak +191 Tribesman +192 Dark warrior +193 Chaos druid warrior +194 Necromancer +195 Bandit +196 Guard Bandit +197 Barbarian guard +198 Guildmaster +199 Gunthor the Brave +200 Lord Daquarius +201 Jailer +202 Black Heather +203 Donny the Lad +204 Speedy Keith +205 Salarin the Twisted +206 Guard +207 Lollk +208 Captain Lawgof +209 Nulodion +210 Grail Maiden +211 Sir Percival +212 King Percival +213 Merlin +214 Peasant +215 Peasant +216 High Priest +217 Crone +218 Galahad +219 Fisherman +220 The Fisher King +221 Black Knight Titan +222 Monk +223 Brother Kojo +224 Dungeon rat +225 Bonzo +227 Morris +228 Big Dave +229 Joshua +230 Grandpa Jack +231 Forester +232 Austri +233 Fishing spot +234 Fishing spot +235 Fishing spot +236 Fishing spot +237 Renegade Knight +238 Thrantax the Mighty +239 Sir Lancelot +240 Sir Gawain +241 Sir Kay +242 Sir Bedivere +243 Sir Tristram +244 Sir Pelleas +245 Sir Lucan +246 Teapotspout +247 Sir Mordred +248 Morgan Le Faye +249 Merlin +250 The Lady of the Lake +251 King Arthur +252 Beggar +253 Khazard Guard +254 Khazard Guard +255 Khazard Guard +256 Khazard Guard +257 Khazard Guard +258 General Khazard +259 Khazard barman +260 Kelvin +261 Joe +262 Fightslave +263 Hengrad +264 Lady Servil +265 Jeremy Servil +266 Jeremy Servil +267 Justin Servil +268 Local +269 Bouncer +270 Khazard Ogre +271 Khazard Scorpion +272 Lucien +273 Lucien +274 Guardian of Armadyl +275 Guardian of Armadyl +276 Winelda +277 Fire Warrior of Lesarkus +278 Cook +279 Brother Omad +280 Brother Cedric +281 Monk +282 Thief +283 Head Thief +284 Doric +285 Veronica +286 Professor Oddenstein +287 Ernest +288 Chicken +289 Councillor Halgrive +290 Doctor Orbon +291 Farmer Brumty +296 Guard +297 Guard +298 Guard +299 Guard +300 Sedridor +301 Twig +302 Hadley +303 Gerald +304 Almera +305 Hudon +306 Golrie +307 Hetty +308 Master fisher +309 Fishing spot +310 Fishing spot +311 Fishing spot +312 Fishing spot +313 Fishing spot +314 Fishing spot +315 Fishing spot +316 Fishing spot +317 Fishing spot +318 Fishing spot +319 Fishing spot +320 Fishing spot +321 Fishing spot +322 Fishing spot +323 Fishing spot +324 Fishing spot +325 Fishing spot +326 Fishing spot +327 Fishing spot +328 Fishing spot +329 Fishing spot +330 Fishing spot +331 Fishing spot +332 Fishing spot +333 Fishing spot +334 Fishing spot +336 Da Vinci +337 Da Vinci +338 Chancy +339 Chancy +340 Hops +341 Hops +342 Guidor's wife +343 Guidor +344 Guard +345 Guard +346 Guard +347 Mourner +348 Mourner +349 Kilron +350 Omart +351 Man +352 Woman +353 Woman +354 Woman +355 Child +356 Child +357 Mourner +358 Priest +359 Man +360 Woman +361 Woman +362 Woman +363 Woman +364 King Lathas +365 Paladin +366 Jerico +367 Chemist +368 Guard +369 Mourner +370 Mourner +371 Mourner +372 Mourner +373 Nurse Sarah +374 Ogre +375 Redbeard Frank +376 Captain Tobias +377 Seaman Lorris +378 Seaman Thresnor +379 Luthas +380 Customs officer +382 Dwarf +383 Stankers +384 Barbarian guard +385 Kharid Scorpion +386 Kharid Scorpion +387 Kharid Scorpion +388 Seer +389 Thormac +390 Big fish +391 River troll +392 River troll +393 River troll +394 River troll +395 River troll +396 River troll +397 Cow +398 Legends guard +399 Legends guard +400 Radimus Erkle +401 Jungle forester +402 Jungle forester +403 Fishing spot +404 Fishing spot +405 Fishing spot +406 Fishing spot +407 Strange plant +408 Strange plant +409 Genie +410 Mysterious Old Man +411 Swarm +412 Bat +413 Rock Golem +414 Rock Golem +415 Rock Golem +416 Rock Golem +417 Rock Golem +418 Rock Golem +419 Zombie +420 Zombie +421 Zombie +422 Zombie +423 Zombie +424 Zombie +425 Shade +426 Shade +427 Shade +428 Shade +429 Shade +430 Shade +432 Cyrisus +433 Cyrisus +434 Cyrisus +435 Fallen Man +436 Fallen Man +437 Cap'n Izzy No-Beard +438 Tree spirit +439 Tree spirit +440 Tree spirit +441 Tree spirit +442 Tree spirit +443 Tree spirit +444 Goblin +445 Goblin +446 Giant rat +447 Jail guard +448 Jail guard +449 Jail guard +450 Gull +451 Gull +452 Seth Groats +453 Suit of armour +454 Sanfew +455 Kaqemeex +456 Father Aereck +457 Restless ghost +458 Father Urhney +459 Skeleton +460 Wizard Frumscone +461 Magic Store owner +462 Wizard Distentor +463 Murphy +464 Murphy +465 Murphy +466 Murphy +467 Shark +468 Shark +469 King Bolren +470 Commander Montai +471 Bolkoy +472 Remsai +475 Khazard trooper +476 Khazard trooper +477 Khazard warlord +478 Khazard commander +479 Gnome troop +480 Gnome troop +481 Tracker gnome 1 +482 Tracker gnome 2 +483 Tracker gnome 3 +484 Local Gnome +485 Local Gnome +486 Kalron +487 Giant +488 Observatory professor +489 Goblin guard +490 Mummy +491 Ghost +492 Spirit of Scorpius +493 Grave scorpion +494 Banker +495 Banker +496 Banker +497 Banker +498 Banker +499 Banker +500 Mosol Rei +501 Spirit of Zadimus +502 Undead one +503 Undead one +504 Undead one +505 Undead one +506 Rashiliyia +507 Nazastarool +508 Nazastarool +509 Nazastarool +510 Hajedy +511 Vigroy +512 Kaleb Paramaya +513 Yohnus +514 Seravel +515 Yanni Salika +516 Obli +517 Fernahei +518 Captain Shanks +519 Bob +520 Shopkeeper +521 Shop assistant +522 Shopkeeper +523 Shop assistant +524 Shopkeeper +525 Shop assistant +526 Shopkeeper +527 Shop assistant +528 Shopkeeper +529 Shop assistant +530 Shopkeeper +531 Shop assistant +532 Shopkeeper +533 Shop assistant +534 Fairy shopkeeper +535 Fairy shop assistant +536 Valaine +537 Scavvo +538 Peksa +539 Silk trader +540 Gem trader +541 Zeke +542 Louie Legs +543 Karim +544 Ranael +545 Dommik +546 Zaff +547 Baraek +548 Thessalia +549 Horvik +550 Lowe +551 Shopkeeper +552 Shop assistant +553 Aubury +554 Fancy-dress shop owner +555 Shopkeeper +556 Grum +557 Wydin +558 Gerrant +559 Brian +560 Jiminua +561 Shopkeeper +562 Candle-maker +563 Arhein +564 Jukat +565 Lunderwin +566 Irksol +567 Fairy +568 Zambo +569 Silver merchant +570 Gem merchant +571 Baker +572 Spice seller +573 Fur trader +574 Silk merchant +575 Hickton +576 Harry +577 Cassie +578 Frincos +579 Drogo dwarf +580 Flynn +581 Wayne +582 Dwarf +583 Betty +584 Herquin +585 Rommik +586 Gaius +587 Jatix +588 Davon +589 Zenesha +590 Aemad +591 Kortan +592 Roachey +593 Frenita +594 Nurmof +595 Tea seller +596 Fat Tony +597 Noterazzo +598 Hairdresser +599 Make-over Mage +600 Hudo +601 Rometti +602 Gulluck +603 Heckel Funch +604 Thurgo +605 Sir Vyvin +606 Squire +607 Gunnjorn +608 Sir Amik Varze +609 Fortress Guard +610 Black Knight Captain +611 Witch +612 Greldo +613 Digsite workman +614 Doug Deeping +615 Student +616 Student +617 Student +618 Examiner +619 Archaeological expert +620 Panning guide +621 Gnome baller +622 Gnome baller +623 Gnome baller +624 Gnome baller +625 Gnome baller +626 Gnome baller +627 Gnome baller +628 Gnome baller +629 Gnome baller +630 Gnome baller +631 Gnome baller +632 Gnome baller +633 Gnome winger +634 Gnome winger +635 Gnome ball referee +636 Cheerleader +637 Juliet +638 Apothecary +639 Romeo +640 Father Lawrence +641 Charlie the Tramp +642 Katrine +643 Weaponsmaster +644 Straven +645 Jonny the beard +646 Curator Haig Halen +648 King Roald +649 Archer +650 Warrior +651 Monk +652 Wizard +653 Fairy Queen +654 Shamus +655 Tree spirit +656 Cave monk +657 Monk of Entrana +658 Monk of Entrana +659 Party Pete +660 Knight +661 Megan +662 Lucy +663 Man +664 Dimintheis +665 Boot +666 Caleb +667 Chronozon +668 Johnathon +669 Hazelmere +670 King Narnode Shareen +671 Glough +672 Anita +673 Charlie +674 Foreman +675 Shipyard worker +676 Femi +677 Black demon +678 Guard +679 Ranging Guild Doorman +680 Leatherworker +681 Held vampyre juvinate +682 Armour salesman +683 Bow and Arrow salesman +684 Tower Advisor +685 Tower Advisor +686 Tower Advisor +687 Tower Advisor +688 Tower Archer +689 Tower Archer +690 Tower Archer +691 Tower Archer +692 Tribal Weapon Salesman +693 Competition Judge +694 Ticket Merchant +695 Bailey +696 Caroline +698 Holgart +699 Holgart +700 Holgart +701 Kent +702 Fisherman +703 Fisherman +704 Fisherman +705 Melee Tutor +706 Wizard Mizgog +707 Wizard Grayzag +708 Imp +709 Imp +710 Alrena +711 Bravek +712 Carla +713 Clerk +714 Edmond +716 Head mourner +717 Mourner +718 Mourner +719 Mourner +720 Recruiter +721 Ted Rehnison +722 Martha Rehnison +723 Billy Rehnison +724 Milli Rehnison +725 Jethick +726 Man +727 Man +728 Man +729 Man +730 Man +731 Bartender +732 Bartender +733 Bartender +734 Bartender +735 Bartender +736 Emily +737 Bartender +738 Bartender +739 Bartender +740 Trufitus +741 Duke Horacio +742 Elvarg +743 Ned +744 Klarense +745 Wormbrain +746 Oracle +747 Oziach +749 Angry barbarian spirit +750 Enraged barbarian spirit +751 Berserk barbarian spirit +752 Ferocious barbarian spirit +753 Melzar the Mad +754 Peaceful barbarian spirit +755 Morgan +756 Dr Harlow +757 Count Draynor +758 Fred the Farmer +760 Kittens +761 Kitten +762 Kitten +763 Kitten +764 Kitten +765 Kitten +766 Kitten +767 Crate +768 Cat +769 Cat +770 Cat +771 Cat +772 Cat +773 Cat +774 Overgrown cat +775 Overgrown cat +776 Overgrown cat +777 Overgrown cat +778 Overgrown cat +779 Overgrown cat +780 Gertrude +781 Shilop +782 Philop +783 Wilough +784 Kanel +785 Civilian +786 Civilian +787 Civilian +788 Garv +789 Grubor +790 Letham +791 Seth +792 Grip +793 Alfonse the waiter +794 Charlie the cook +795 Ice Queen +796 Achietties +797 Helemos +798 Velrak the explorer +799 Pirate Guard +800 Fishing spot +801 Abbot Langley +802 Brother Jered +803 Monk +804 Tanner +805 Master Crafter +806 Donovan the Family Handyman +807 Pierre +808 Hobbes +809 Louisa +810 Mary +811 Stanford +812 Guard +813 Gossip +814 Anna +815 Bob +816 Carol +817 David +818 Elizabeth +819 Frank +820 Poison Salesman +821 Sinclair Guard dog +822 Ana +823 Ana +824 Female slave +825 Male slave +826 Escaping slave +827 Rowdy slave +828 Shanty Claws +830 Mercenary Captain +831 Captain Siad +832 Al Shabim +833 Bedabin Nomad +834 Bedabin Nomad Guard +835 Irena +836 Shantay +837 Shantay Guard +838 Shantay Guard +839 Desert Wolf +840 Ugthanki +841 Mine cart driver +842 Rowdy Guard +843 RPDT employee +845 Horacio +846 Kangai Mau +847 Head chef +848 Blurberry +849 Barman +850 Aluft Gianne snr. +851 Gnome Waiter +852 Ogre chieftain +853 Og +854 Grew +855 Toban +856 Gorad +857 Ogre guard +858 Ogre guard +859 Ogre guard +860 Ogre guard +861 Ogre guard +862 City guard +863 Scared skavid +864 Mad skavid +865 Skavid +866 Skavid +867 Skavid +868 Skavid +869 Skavid +870 Enclave guard +872 Watchtower Wizard +873 Ogre trader +874 Ogre merchant +875 Ogre trader +876 Ogre trader +877 Tower guard +878 Colonel Radick +879 Delrith +880 Weakened Delrith +881 Traiborn +882 Gypsy Aris +883 Sir Prysin +884 Captain Rovin +885 Ceril Carnillean +886 Claus the chef +887 Guard +888 Philipe Carnillean +889 Henryeta Carnillean +890 Butler Jones +891 Alomone +892 Hazeel +893 Clivet +894 Hazeel Cultist +895 Boy +896 Nora T. Hagg +897 Witch's experiment +898 Witch's experiment (second form) +899 Witch's experiment (third form) +900 Witch's experiment (fourth form) +901 Mouse +902 Gundai +903 Lundail +904 Chamber guardian +905 Kolodion +906 Kolodion +907 Kolodion +908 Kolodion +909 Kolodion +910 Kolodion +911 Kolodion +912 Battle mage +913 Battle mage +914 Battle mage +915 Leela +916 Joe +917 Jail guard +918 Ned +919 Lady Keli +920 Prince Ali +921 Prince Ali +922 Aggie +923 Hassan +924 Osman +925 Border Guard +926 Border Guard +927 Fishing spot +928 Gujuo +929 Ungadulu +930 Ungadulu +931 Jungle savage +932 Fionella +933 Siegfried Erkle +934 Nezikchened +935 Viyeldi +936 San Tojalon +937 Irvig Senay +938 Ranalph Devere +939 Boulder +940 Echned Zekin +941 Green dragon +942 Master chef +943 Survival expert +944 Combat instructor +945 RuneScape guide +946 Magic instructor +947 Financial advisor +948 Mining instructor +949 Quest guide +950 Giant rat +951 Chicken +952 Fishing spot +953 Banker +954 Brother Brace +955 Cow +956 Drunken Dwarf +957 Mubariz +958 Fadli +959 A'abla +960 Sabreen +961 Surgeon General Tafani +962 Jaraah +963 Zahwa +964 Ima +965 Sabeil +966 Jadid +967 Dalal +968 Afrah +969 Jeed +970 Diango +971 Chadwell +972 Koftik +973 Koftik +974 Koftik +975 Koftik +976 Koftik +977 Blessed spider +978 Blessed giant rat +979 Slave +980 Slave +981 Slave +982 Slave +983 Slave +984 Slave +985 Slave +986 Boulder +987 Unicorn +988 Sir Jerro +989 Sir Carl +990 Sir Harry +991 Half-soulless +992 Kardia +993 Witch's cat +994 Niloof +995 Klank +996 Kamen +997 Kalrag +998 Othainian +999 Doomion +1000 Holthion +1001 Dark mage +1002 Disciple of Iban +1003 Lord Iban +1004 Spider +1005 Giant bat +1006 Sea slug +1007 Zamorak wizard +1008 Hamid +1009 Poison spider +1010 Rantz +1011 Fycie +1012 Bugs +1013 Swamp toad +1014 Bloated Toad +1015 Iron pickaxe +1016 Chompy bird +1017 Chicken +1018 Rooster +1019 Fire elemental +1020 Earth elemental +1021 Air elemental +1022 Water elemental +1023 Vampire +1028 Baby impling +1029 Young impling +1030 Gourmet impling +1031 Earth impling +1032 Essence impling +1033 Eclectic impling +1034 Nature impling +1035 Magpie impling +1036 Banker +1037 Prissy Scilla +1038 Rufus +1039 Barker +1040 Fidelio +1041 Sbott +1042 Roavar +1043 Will o' the wisp +1044 Monk of Zamorak +1045 Monk of Zamorak +1046 Monk of Zamorak +1049 Drezel +1050 Filliman Tarlock +1051 Nature Spirit +1052 Ghast +1053 Ghast +1054 Ulizius +1055 Pirate Jackie the Fruit +1056 Mime +1057 Strange watcher +1058 Strange watcher +1059 Strange watcher +1060 Denulth +1061 Sergeant +1062 Sergeant +1063 Soldier +1064 Soldier +1065 Soldier +1066 Soldier +1067 Soldier +1068 Soldier +1069 Soldier +1070 Saba +1071 Tenzing +1072 Eadburg +1073 Archer +1074 Archer +1075 Archer +1076 Guard +1077 Guard +1078 Harold +1079 Tostig +1080 Eohric +1081 Servant +1082 Dunstan +1083 Wistan +1084 Breoca +1085 Ocga +1086 Man +1087 Penda +1088 Hygd +1089 Ceolburg +1090 Hild +1091 Bob +1092 White Knight +1093 Billy +1094 Mountain goat +1095 Rock +1096 Stick +1097 Pee Hat +1098 Kraka +1099 Dung +1100 Ash +1101 Thrower Troll +1102 Thrower Troll +1103 Thrower Troll +1104 Thrower Troll +1105 Thrower Troll +1106 Mountain troll +1107 Mountain troll +1108 Mountain troll +1109 Mountain troll +1110 Mountain troll +1111 Mountain troll +1112 Mountain troll +1113 Eadgar +1114 Godric +1115 Troll general +1116 Troll general +1117 Troll general +1118 Troll spectator +1119 Troll spectator +1120 Troll spectator +1121 Troll spectator +1122 Troll spectator +1123 Troll spectator +1124 Troll spectator +1125 Dad +1126 Twig +1127 Berry +1128 Twig +1129 Berry +1130 Thrower troll +1131 Thrower troll +1132 Thrower troll +1133 Thrower troll +1134 Thrower troll +1135 Cook +1136 Cook +1137 Cook +1138 Mountain troll +1139 Mushroom +1140 Mountain goat +1141 Mountain goat +1142 Guard +1143 Guard +1144 Guard +1145 Guard +1146 Guard +1147 Guard +1148 Guard +1149 Guard +1150 Guard +1151 Burntmeat +1152 Weird Old Man +1153 Kalphite Worker +1154 Kalphite Soldier +1155 Kalphite Guardian +1156 Kalphite Worker +1157 Kalphite Guardian +1158 Kalphite Queen +1159 Kalphite Queen +1160 Kalphite Queen +1161 Kalphite Larva +1162 Timfraku +1163 Tiadeche +1164 Tiadeche +1165 Tinsay +1166 Tinsay +1167 Tamayu +1168 Tamayu +1169 Tamayu +1170 Tamayu +1171 Lubufu +1172 The Shaikahan +1173 The Shaikahan +1174 Fishing spot +1175 Fishing spot +1176 Fishing spot +1177 Fishing spot +1178 Fishing spot +1179 Gull +1180 Cormorant +1181 Pelican +1182 Lord Iorwerth +1183 Elf warrior +1184 Elf warrior +1185 Elven city guard +1186 Idris +1187 Essyllt +1188 Morvran +1189 Fishing spot +1190 Fishing spot +1191 Fishing spot +1192 Rabbit +1193 Rabbit +1194 Rabbit +1195 Grizzly bear +1196 Grizzly bear cub +1197 Grizzly bear cub +1198 Dire Wolf +1199 Elf Tracker +1200 Tyras guard +1201 Elf warrior +1202 Arianwyn +1203 Tyras guard +1204 Tyras guard +1206 Tyras guard +1208 Quartermaster +1209 Koftik +1210 Kings messenger +1211 Will o' the wisp +1212 Will o' the wisp +1213 Tegid +1214 Thistle +1215 Parrots +1216 Parroty Pete +1217 Gardener +1218 Ghoul +1219 Leech +1220 Vampire +1221 Spider +1222 Mist +1223 Vampire +1224 Vampyric hound +1225 Vampire +1226 Tree +1227 Myre Blamish Snail +1228 Blood Blamish Snail +1229 Ochre Blamish Snail +1230 Bruise Blamish Snail +1231 Bark Blamish Snail +1232 Myre Blamish Snail +1233 Blood Blamish Snail +1234 Ochre Blamish Snail +1235 Bruise Blamish Snail +1236 Fishing spot +1237 Fishing spot +1238 Fishing spot +1239 Bedabin Nomad Fighter +1240 Loar Shadow +1241 Loar Shade +1242 Shade Spirit +1243 Phrin Shadow +1244 Phrin Shade +1245 Riyl Shadow +1246 Riyl Shade +1247 Asyn Shadow +1248 Asyn Shade +1249 Fiyr Shadow +1250 Fiyr Shade +1251 Afflicted(Ulsquire) +1252 Ulsquire Shauncy +1253 Afflicted(Razmire) +1254 Razmire Keelgan +1255 Mort'ton Local +1256 Mort'ton Local +1257 Afflicted +1258 Afflicted +1259 Mort'ton local +1260 Mort'ton local +1261 Afflicted +1262 Afflicted +1263 Wizard +1264 Saradomin wizard +1265 Rock Crab +1266 Rocks +1267 Rock Crab +1268 Rocks +1269 Olaf the Bard +1270 Lalli +1271 Golden sheep +1272 Golden sheep +1273 Fossegrimen +1274 Ospak +1275 Styrmir +1276 Torbrund +1277 Fridgeir +1278 Longhall Bouncer +1279 The Draugen +1280 Butterfly +1281 Sigli the Huntsman +1282 Sigmund The Merchant +1283 Swensen the Navigator +1284 Bjorn +1285 Eldgrim +1286 Manni the Reveller +1287 Council workman +1288 Peer the Seer +1289 Thorvald the Warrior +1290 Koschei the deathless +1291 Koschei the deathless +1292 Koschei the deathless +1293 Koschei the deathless +1294 Brundt the Chieftain +1295 Askeladden +1296 Guard +1297 Guard +1298 Town Guard +1299 Town Guard +1300 Thora the Barkeep +1301 Yrsa +1302 Fisherman +1303 Skulgrimen +1304 Sailor +1305 Agnar +1306 Freidir +1307 Borrokar +1308 Lanzig +1309 Pontak +1310 Freygerd +1311 Lensa +1312 Jennella +1313 Sassilik +1314 Inga +1315 Fish monger +1316 Fur trader +1317 Market Guard +1318 Warrior +1319 Fox +1320 Bunny +1321 Bunny +1322 Gull +1323 Gull +1324 Gull +1325 Gull +1326 Bear Cub +1327 Bear Cub +1328 Unicorn Foal +1329 Black unicorn Foal +1330 Wolf +1331 Fishing spot +1332 Fishing spot +1333 Fishing spot +1334 Jossik +1335 Jossik +1336 Larrissa +1337 Larrissa +1338 Dagannoth +1339 Dagannoth +1340 Dagannoth +1341 Dagannoth +1342 Dagannoth +1343 Dagannoth +1344 Dagannoth +1345 Dagannoth +1346 Dagannoth +1347 Dagannoth +1348 Dagannoth mother +1349 Dagannoth mother +1350 Dagannoth mother +1351 Dagannoth mother +1352 Dagannoth mother +1353 Dagannoth mother +1354 Dagannoth mother +1355 Dagannoth mother +1356 Dagannoth mother +1357 Sam +1358 Rachael +1359 Queen Sigrid +1360 Banker +1361 Arnor +1362 Haming +1363 Moldof +1364 Helga +1365 Matilda +1366 Ashild +1367 Skraeling +1368 Skraeling +1369 Fishmonger +1370 Greengrocer +1371 Prince Brand +1372 Princess Astrid +1373 King Vargas +1374 Guard +1375 Advisor Ghrim +1376 Derrik +1377 Farmer +1378 Flower Girl +1379 Ragnar +1380 Einar +1381 Alrik +1382 Thorhild +1383 Halla +1384 Yrsa +1385 Sailor +1386 Rannveig +1387 Thora +1388 Valgerd +1389 Skraeling +1390 Broddi +1391 Skraeling +1392 Ragnvald +1393 Fishmonger +1394 Greengrocer +1395 Lumberjack Leif +1396 Miner Magnus +1397 Fisherman Frodi +1398 Gardener Gunnhild +1399 Fishing spot +1400 Gull +1401 Chicken +1402 Chicken +1403 Rooster +1404 Rabbit +1405 Fishing spot +1406 Fishing spot +1407 Daero +1408 Waydar +1409 Waydar +1410 Waydar +1411 Garkor +1412 Garkor +1413 Lumo +1414 Lumo +1415 Bunkdo +1416 Bunkdo +1417 Carado +1418 Carado +1419 Lumdo +1420 Karam +1421 Karam +1422 Karam +1423 Bunkwicket +1424 Waymottin +1425 Zooknock +1426 Zooknock +1427 G.L.O. Caranock +1428 G.L.O. Caranock +1429 Dugopul +1430 Salenab +1431 Trefaji +1432 Aberab +1433 Solihib +1434 Daga +1435 Tutab +1436 Ifaba +1437 Hamab +1438 Hafuba +1439 Denadu +1440 Lofu +1441 Kruk +1442 Duke +1443 Oipuis +1444 Uyoro +1445 Ouhai +1446 Uodai +1447 Padulah +1448 Awowogei +1449 Uwogo +1450 Muruwoi +1451 Sleeping Monkey +1452 Monkey Child +1453 The Monkey's Uncle +1454 The Monkey's Aunt +1455 Monkey Guard +1456 Monkey Archer +1457 Monkey Archer +1458 Monkey Archer +1459 Monkey Guard +1460 Monkey Guard +1461 Elder Guard +1462 Elder Guard +1463 Monkey +1464 Monkey +1465 Monkey Zombie +1466 Monkey Zombie +1467 Monkey Zombie +1468 Bonzara +1469 Monkey minder +1470 Foreman +1471 Skeleton +1472 Jungle demon +1473 Spider +1474 Spider +1475 Bird +1476 Bird +1477 Scorpion +1478 Jungle spider +1479 Snake +1480 Small ninja monkey +1481 Medium ninja monkey +1482 Gorilla +1483 Bearded gorilla +1484 Ancient monkey +1485 Small zombie monkey +1486 Large zombie monkey +1487 Monkey +1488 Dummy +1489 Dummy +1490 Dummy +1491 Dummy +1492 Dummy +1493 Dummy +1494 Dummy +1495 Dummy +1496 Dummy +1497 Dummy +1498 Dummy +1499 Dummy +1500 Dummy +1501 Dummy +1502 Dummy +1503 Dummy +1504 Dummy +1505 Dummy +1506 Dummy +1507 Dummy +1508 Forester +1509 Woman-at-arms +1510 Apprentice +1511 Ranger +1512 Adventurer +1513 Mage +1514 Hiylik Myna +1521 Nail beast +1522 Nail beast +1523 Nail beast +1524 Undead Lumberjack +1525 Undead Lumberjack +1526 Lanthus +1527 Mine cart +1528 Zealot +1529 Sheep +1530 Rabbit +1531 Imp +1532 Barricade +1533 Barricade +1534 Barricade +1535 Barricade +1536 Possessed pickaxe +1537 Haze +1538 Corpse +1539 Skeletal miner +1540 Treus Dayth +1541 Ghost +1542 Loading crane +1543 Innocent-looking key +1544 Mine cart +1545 Mine cart +1546 Mine cart +1547 Mine cart +1548 Mine cart +1549 Ghost +1550 Chompy bird +1551 Mischievous ghost +1552 Santa +1553 Ug +1554 Aga +1555 Arrg +1556 Arrg +1557 Ug +1558 Ice wolf +1559 Ice wolf +1560 Ice Troll +1561 Ice Troll +1562 Ice Troll +1563 Ice Troll +1564 Ice Troll +1565 Ice Troll +1566 Ice Troll +1567 Cyreg Paddlehorn +1568 Curpile Fyod +1569 Veliaf Hurtz +1570 Sani Piliu +1571 Harold Evans +1572 Radigad Ponfit +1573 Polmafi Ferdygris +1574 Ivan Strom +1575 Skeleton Hellhound +1576 Stranger +1577 Vanstrom Klause +1578 Mist +1579 Vanstrom Klause +1580 Vanstrom Klause +1581 Vanstrom Klause +1582 Fire giant +1583 Fire giant +1584 Fire giant +1585 Fire giant +1586 Fire giant +1587 Moss giant +1588 Moss giant +1589 Baby red dragon +1590 Bronze dragon +1591 Iron dragon +1592 Steel dragon +1593 Wild dog +1594 Wild dog +1595 Saniboch +1596 Mazchna +1597 Vannaka +1598 Chaeldar +1599 Duradel +1600 Cave crawler +1601 Cave crawler +1602 Cave crawler +1603 Cave crawler +1604 Aberrant spectre +1605 Aberrant spectre +1606 Aberrant spectre +1607 Aberrant spectre +1608 Kurask +1609 Kurask +1610 Gargoyle +1611 Swarming turoth +1612 Banshee +1613 Nechryael +1614 Death spawn +1615 Abyssal demon +1616 Basilisk +1617 Basilisk +1618 Bloodveld +1619 Bloodveld +1620 Cockatrice +1621 Cockatrice +1622 Turoth +1623 Turoth +1624 Dust devil +1625 Smokedevil +1626 Turoth +1627 Turoth +1628 Turoth +1629 Turoth +1630 Turoth +1631 Rockslug +1632 Rockslug +1633 Pyrefiend +1634 Pyrefiend +1635 Pyrefiend +1636 Pyrefiend +1637 Jelly +1638 Jelly +1639 Jelly +1640 Jelly +1641 Jelly +1642 Jelly +1643 Infernal Mage +1644 Infernal Mage +1645 Infernal Mage +1646 Infernal Mage +1647 Infernal Mage +1648 Crawling Hand +1649 Crawling Hand +1650 Crawling Hand +1651 Crawling Hand +1652 Crawling Hand +1653 Crawling Hand +1654 Crawling Hand +1655 Crawling Hand +1656 Crawling Hand +1657 Crawling Hand +1658 Robe Store owner +1659 Skullball +1660 Skullball Boss +1661 Agility Boss +1662 Skullball Trainer +1663 Agility Trainer +1664 Agility Trainer +1665 Werewolf +1670 Dr Fenkenstrain +1673 Fenkenstrain's Monster +1674 Lord Rologarth +1675 Gardener Ghost +1676 Experiment +1677 Experiment +1678 Experiment +1679 Eluned +1680 Islwyn +1681 Moss giant +1682 Golrie +1683 Velorina +1684 Necrovarus +1685 Gravingas +1686 Ghost disciple +1688 Ak-Haranu +1691 Undead cow +1692 Undead chicken +1693 Giant lobster +1694 Robin +1695 Old crone +1696 Old man +1697 Ghost villager +1698 Tortured soul +1699 Ghost shopkeeper +1700 Ghost innkeeper +1701 Ghost farmer +1702 Ghost banker +1703 Ghost sailor +1704 Ghost captain +1705 Ghost captain +1706 Ghost guard +1707 Ghost (?) +1708 Ghost (?) +1709 Johanhus Ulsbrecht +1710 H.A.M. Guard +1711 H.A.M. Guard +1712 H.A.M. Guard +1713 H.A.M. Deacon +1714 H.A.M. Member +1715 H.A.M. Member +1716 H.A.M. Member +1717 H.A.M. Member +1718 Jimmy the Chisel +1719 Tree +1720 Tree +1721 Tree +1722 Dead tree +1723 Dead tree +1724 Dead tree +1725 Dead tree +1726 Dead tree +1727 Dead tree +1728 Dead tree +1729 Dead tree +1730 Dead tree +1731 Dead tree +1733 Dramen tree +1734 Magic tree +1735 Maple tree +1736 Willow +1737 Willow +1738 Willow +1739 Oak +1740 Yew +1741 Evergreen +1742 Evergreen +1743 Evergreen +1744 Tree +1745 Dead tree +1746 Achey Tree +1747 Tree +1748 Tree +1749 Hollow tree +1750 Hollow tree +1751 Terrorbird +1752 Mounted terrorbird gnome +1753 Mounted terrorbird gnome +1754 Crow +1755 Crow +1756 Crow +1757 Farmer +1758 Farmer +1759 Farmer +1760 Farmer +1761 Farmer +1762 Sheep +1763 Sheep +1764 Sheep +1765 Sheep +1766 Cow calf +1767 Cow +1768 Cow calf +1769 Goblin +1770 Goblin +1771 Goblin +1772 Goblin +1773 Goblin +1774 Goblin +1775 Goblin +1776 Goblin +1777 Ilfeen +1778 William +1779 Ian +1780 Larry +1781 Darren +1782 Edward +1783 Richard +1784 Neil +1785 Edmond +1786 Simon +1787 Sam +1788 Lumdo +1789 Bunkwicket +1790 Waymottin +1791 Jungle Tree +1792 Jungle Tree +1793 Tassie Slipcast +1794 Hammerspike Stoutbeard +1795 Dwarf gang member +1796 Dwarf gang member +1797 Dwarf gang member +1798 Phantuwti Fanstuwi Farsight +1799 Tindel Marchant +1800 Gnormadium Avlafrim +1801 Petra Fiyed +1802 Slagilith +1803 Rock pile +1804 Slagilith +1805 Guard +1806 Guard +1807 Hamal the Chieftain +1808 Ragnar +1809 Svidi +1810 Jokul +1812 The Kendal +1813 The Kendal +1814 Camp dweller +1815 Camp dweller +1816 Camp dweller +1817 Camp dweller +1818 Camp dweller +1819 Mountain Goat +1820 Mountain Goat +1821 Bald Headed Eagle +1822 Cave goblin +1823 Cave goblin +1824 Cave goblin +1825 Cave goblin +1826 Zombie +1827 Gargoyle +1828 Giant frog +1829 Big frog +1830 Frog +1831 Cave slime +1832 Cave bug +1833 Cave bug larva +1834 Candle seller +1835 Easter Bunny +1837 Dondakan the Dwarf +1838 Dondakan the Dwarf +1839 Dondakan the Dwarf +1840 Dwarven Engineer +1841 Rolad +1842 Khorvak, a dwarven engineer +1843 Dwarven Ferryman +1844 Dwarven Ferryman +1846 Dwarven Boatman +1847 Miodvetnir +1848 Dernu +1849 Derni +1850 Arzinian Avatar of Strength +1851 Arzinian Avatar of Strength +1852 Arzinian Avatar of Strength +1853 Arzinian Avatar of Ranging +1854 Arzinian Avatar of Ranging +1855 Arzinian Avatar of Ranging +1856 Arzinian Avatar of Magic +1857 Arzinian Avatar of Magic +1858 Arzinian Avatar of Magic +1859 Arzinian Being of Bordanzan +1860 Brian +1861 Ranged Tutor +1862 Ali Morrisane +1863 Drunken Ali +1864 Ali The barman +1865 Ali the Kebab seller +1866 Market seller +1867 Ali the Camel Man +1868 Street urchin +1870 Ali the Mayor +1871 Ali the Hag +1872 Ali the Snake Charmer +1873 Ali the Camel +1874 Desert snake +1875 Snake +1878 Bandit Leader +1880 Bandit +1881 Bandit +1882 Sir Palomedes +1883 Sir Palomedes +1884 Trobert +1885 Bandit champion +1886 Cowardly Bandit +1888 Villager +1889 Villager +1890 Villager +1892 Villager +1893 Villager +1894 Villager +1896 Villager +1897 Villager +1898 Villager +1901 Menaphite Leader +1902 Ali the Operator +1904 Menaphite Thug +1905 Menaphite Thug +1906 Tough Guy +1908 Broken clay golem +1909 Damaged clay golem +1910 Clay golem +1911 Desert Phoenix +1912 Elissa +1913 Kamil +1914 Dessous +1915 Dessous +1916 Ruantun +1917 Bandit shopkeeper +1918 Archaeologist +1919 Stranger +1920 Malak +1921 Bartender +1923 Eblis +1925 Eblis +1926 Bandit +1927 Bandit +1928 Bandit +1929 Bandit +1930 Bandit +1931 Bandit +1933 Troll child +1934 Troll child +1935 Ice troll +1936 Ice troll +1937 Ice troll +1938 Ice troll +1939 Ice troll +1940 Ice troll +1941 Ice troll +1942 Ice troll +1944 Ice block +1946 Ice block +1948 Troll father +1950 Troll mother +1951 Ice wolf +1952 Ice wolf +1953 Ice wolf +1954 Ice wolf +1955 Ice wolf +1956 Ice wolf +1958 Mummy +1959 Mummy +1960 Mummy ashes +1961 Mummy +1962 Mummy +1963 Mummy +1964 Mummy +1965 Mummy +1966 Mummy +1967 Mummy +1968 Mummy +1969 Scarabs +1971 Azzanadra +1972 Rasolo +1973 Giant skeleton +1974 Damis +1975 Damis +1976 Shadow Hound +1977 Fareed +1978 Slave +1979 Slave +1980 Embalmer +1981 Carpenter +1982 Raetul +1983 Siamun +1986 High Priest +1988 Priest +1989 Priest +1990 Sphinx +1991 Possessed Priest +1992 Neite +1993 Crocodile +1994 Jackal +1995 Locust +1996 Vulture +1997 Plague frog +1998 Plague cow +1999 Plague cow +2000 Plague cow +2001 Scarab swarm +2005 Wanderer +2006 Wanderer +2007 Het +2008 Apmeken +2009 Scabaras +2010 Crondis +2012 Icthlarin +2014 Klenter +2015 Mummy +2016 Mummy +2017 Mummy +2018 Mummy +2019 Mummy +2021 Light creature +2022 Light creature +2023 Juna +2024 Strange Old Man +2025 Ahrim the Blighted +2026 Dharok the Wretched +2027 Guthan the Infested +2028 Karil the Tainted +2029 Torag the Corrupted +2030 Verac the Defiled +2031 Bloodworm +2032 Crypt rat +2033 Giant crypt rat +2034 Crypt spider +2035 Giant crypt spider +2036 Skeleton +2037 Skeleton +2038 Grish +2039 Uglug Nar +2040 Pilg +2041 Grug +2042 Ogre guard +2043 Ogre guard +2044 Zogre +2045 Zogre +2046 Zogre +2047 Zogre +2048 Zogre +2049 Zogre +2050 Skogre +2051 Zogre +2052 Zogre +2053 Zogre +2054 Zogre +2055 Zogre +2056 Skogre +2057 Skogre +2058 Hole in the wall +2059 Zavistic Rarve +2060 Slash Bash +2061 Sithik Ints +2062 Sithik Ints +2063 Gargh +2064 Scarg +2065 Gruh +2066 Irwin Feaselbaum +2067 Fishing spot +2068 Fishing spot +2069 Cave goblin miner +2070 Cave goblin miner +2071 Cave goblin miner +2072 Cave goblin miner +2073 Cave goblin guard +2074 Cave goblin guard +2075 Cave goblin miner +2076 Cave goblin miner +2077 Cave goblin miner +2078 Cave goblin miner +2082 Sigmund +2083 Sigmund +2084 Mistag +2086 Kazgar +2087 Ur-tag +2088 Duke Horacio +2089 Mistag +2090 Sigmund +2091 Secretary +2092 Purple Pewter Secretary +2093 Yellow Fortune Secretary +2094 Blue Opal Secretary +2095 Green Gemstone Secretary +2096 White Chisel Secretary +2097 Silver Cog Secretary +2098 Brown Engine Secretary +2099 Red Axe Secretary +2100 Purple Pewter Director +2101 Blue Opal Director +2102 Yellow Fortune Director +2103 Green Gemstone Director +2104 White Chisel Director +2105 Silver Cog Director +2106 Brown Engine Director +2107 Red Axe Director +2108 Red Axe Cat +2109 Trader +2110 Trader +2111 Trader +2112 Trader +2113 Trader +2114 Trader +2115 Trader +2116 Trader +2117 Trader +2118 Trader +2119 Trader +2120 Trader +2121 Trader +2122 Trader +2124 Trader +2126 Trader +2127 Trade Referee +2128 Supreme Commander +2129 Commander Veldaban +2130 Black Guard +2131 Black Guard +2132 Black Guard +2133 Black Guard +2134 Black Guard Berserker +2135 Black Guard Berserker +2136 Black Guard Berserker +2137 Gnome emissary +2138 Gnome traveller +2139 Gnome traveller +2140 Dromund's cat +2141 Blasidar the sculptor +2143 Riki the sculptor's model +2144 Riki the sculptor's model +2145 Riki the sculptor's model +2146 Riki the sculptor's model +2147 Riki the sculptor's model +2148 Riki the sculptor's model +2149 Riki the sculptor's model +2150 Riki the sculptor's model +2151 Vigr +2152 Santiri +2153 Saro +2154 Gunslik +2155 Wemund +2156 Randivor +2157 Hervi +2158 Nolar +2159 Gulldamar +2160 Tati +2161 Agmundi +2162 Vermundi +2163 Banker +2164 Banker +2165 Librarian +2166 Assistant +2167 Customer +2168 Customer +2169 Dromund +2170 Rind the gardener +2171 Factory Manager +2172 Factory Worker +2173 Factory Worker +2174 Factory Worker +2175 Factory Worker +2176 Inn Keeper +2177 Inn Keeper +2178 Barmaid +2179 Barman +2180 Cart conductor +2181 Cart conductor +2182 Cart conductor +2183 Cart conductor +2184 Cart conductor +2185 Cart conductor +2186 Cart conductor +2187 Rowdy dwarf +2188 Hegir +2189 Haera +2190 Runvastr +2191 Sune +2192 Bentamir +2193 Ulifed +2194 Reinald +2195 Karl +2196 Gauss +2197 Myndill +2198 Kjut +2199 Tombar +2200 Odmar +2201 Audmann +2203 Drunken Dwarf +2204 Drunken Dwarf +2205 Dwarven Boatman +2206 Dwarven Boatman +2207 Dwarven Miner +2208 Dwarven Miner +2209 Dwarven Miner +2210 Dwarven Miner +2211 Dwarven Miner +2212 Dwarven Miner +2213 Dwarven Miner +2214 Dwarven Miner +2215 Dwarven Miner +2216 Dwarven Miner +2217 Dwarven Miner +2218 Dwarven Miner +2219 Purple Pewter Director +2220 Purple Pewter Director +2221 Blue Opal Director +2222 Yellow Fortune Director +2223 Green Gemstone Director +2224 White Chisel Director +2225 Silver Cog Director +2226 Brown Engine Director +2227 Red Axe Director +2228 Commander Veldaban +2229 Red Axe Cat +2230 Red Axe Cat +2232 Black Guard Berserker +2233 Olivia +2234 Master Farmer +2235 Master Farmer +2236 Market Guard +2237 Gee +2238 Donie +2239 Pig +2240 Pig +2241 Piglet +2242 Piglet +2243 Piglet +2244 Lumbridge Guide +2245 Khazard trooper +2246 Khazard trooper +2247 Gnome troop +2248 Gnome troop +2249 Gnome +2250 Gnome +2251 Gnome +2252 Crow +2253 Wise Old Man +2254 Bed +2255 Thing under the bed +2256 Paladin +2258 Mage of Zamorak +2259 Mage of Zamorak +2261 Mage of Zamorak +2262 Dark mage +2263 Abyssal leech +2264 Abyssal guardian +2265 Abyssal walker +2266 Brian O'Richard +2267 Rogue Guard +2268 Rogue Guard +2269 Rogue Guard +2270 Martin Thwait +2271 Emerald Benedict +2272 Spin Blades +2273 Spin Blades +2274 Goblin +2275 Goblin +2276 Goblin +2277 Goblin +2278 Goblin +2279 Goblin +2280 Goblin +2281 Goblin +2282 Sir Spishyus +2283 Lady Table +2284 Sir Kuam Ferentse +2285 Sir Leye +2286 Sir Tinley +2287 Sir Ren Itchood +2288 Miss Cheevers +2289 Ms. Hynn Terprett +2290 Sir Tiffy Cashien +2291 Rug Merchant +2292 Rug Merchant +2293 Rug Merchant +2294 Rug Merchant +2296 Rug Merchant +2298 Rug Merchant +2300 Rug Station Attendant +2301 Monkey +2304 Sarah +2305 Vanessa +2306 Richard +2307 Alice +2308 Capt' Arnav +2310 Cow calf +2311 Sheepdog +2312 Rooster +2313 Chicken +2314 Chicken +2315 Chicken +2316 Pig +2317 Pig +2318 Piglet +2319 Piglet +2320 Piglet +2321 Blandebir +2322 Metarialus +2323 Elstan +2324 Dantaera +2325 Kragen +2326 Lyra +2327 Francis +2328 Wizard Cromperty +2329 Muncher +2330 Garth +2331 Ellena +2332 Selena +2333 Vasquen +2334 Rhonen +2335 Dreven +2336 Taria +2337 Rhazien +2338 Torrell +2339 Alain +2340 Heskel +2341 Treznor +2342 Fayeth +2343 Bolongo +2344 Gileth +2345 Sick-looking sheep (1) +2346 Sick-looking sheep (2) +2347 Sick-looking sheep (3) +2348 Sick-looking sheep (4) +2349 Mourner +2350 Mourner +2351 Mourner +2352 Eudav +2353 Oronwen +2354 Banker +2355 Banker +2356 Dalldav +2357 Gethin +2358 Arianwyn +2359 Elf warrior +2360 Elf warrior +2361 Elf warrior +2362 Elf warrior +2363 Goreu +2364 Ysgawyn +2365 Arvel +2366 Mawrth +2367 Kelyn +2368 Eoin +2369 Iona +2371 Gnome +2372 Head mourner +2373 Mourner +2374 Mourner +2376 Eluned +2377 Sick-looking sheep (1) +2378 Sick-looking sheep (2) +2379 Sick-looking sheep (3) +2380 Sick-looking sheep (4) +2397 Mysterious ghost +2398 Mysterious ghost +2399 Mysterious ghost +2400 Mysterious ghost +2401 Mysterious ghost +2402 Mysterious ghost +2409 Cart conductor +2410 Red Axe Director +2411 Red Axe Director +2412 Red Axe Henchman +2413 Red Axe Henchman +2414 Red Axe Henchman +2415 Colonel Grimsson +2416 Colonel Grimsson +2417 Ogre shaman +2418 Ogre shaman +2419 Grunsh +2420 Gnome emissary +2421 Gnome companion +2422 Gnome companion +2423 Chaos dwarf +2424 Gunslik +2425 Nolar +2426 Factory Worker +2427 Cart conductor +2428 Gauss +2429 Drunken Dwarf +2430 Rowdy dwarf +2431 Ulifed +2432 Red Axe Henchman +2433 Red Axe Henchman +2434 Ogre shaman +2436 Jarvald +2437 Jarvald +2438 Jarvald +2439 Askeladden +2440 Door-support +2441 Door +2442 Door +2443 Door-support +2444 Door +2445 Door +2446 Door-support +2447 Door +2448 Door +2449 Egg +2450 Egg +2451 Egg +2452 Giant Rock Crab +2453 Boulder +2454 Dagannoth spawn +2455 Dagannoth +2456 Dagannoth +2457 Wallasalki +2458 Freaky Forester +2459 Pheasant +2460 Pheasant +2461 Pheasant +2462 Pheasant +2463 Evil Chicken +2464 Evil Chicken +2465 Evil Chicken +2466 Evil Chicken +2467 Evil Chicken +2468 Evil Chicken +2469 Frog +2470 Frog +2471 Frog +2472 Frog +2473 Frog +2474 Frog prince +2475 Frog princess +2476 Rick Turpentine +2477 Quiz Master +2478 Evil Bob +2479 Evil Bob +2480 Servant +2481 Servant +2482 Giant bat +2489 Bush snake +2490 Bush snake +2491 Jungle spider +2492 Jungle spider +2493 Large mosquito +2494 Mosquito swarm +2495 Mosquito swarm +2496 Tribesman +2497 Tribesman +2498 Broodoo victim +2499 Broodoo victim +2500 Broodoo victim +2501 Broodoo victim +2502 Broodoo victim +2503 Broodoo victim +2505 Sharimika +2506 Sharimika +2508 Mamma Bufetta +2509 Mamma Bufetta +2511 Layleen +2512 Layleen +2514 Karaday +2515 Karaday +2517 Safta Doc +2518 Safta Doc +2520 Gabooty +2521 Gabooty +2523 Fanellaman +2524 Fanellaman +2526 Jagbakoba +2527 Jagbakoba +2529 Murcaily +2530 Murcaily +2532 Rionasta +2533 Rionasta +2534 Mahogany +2535 Teak +2536 Niles +2537 Miles +2538 Giles +2539 Cap'n Hand +2540 Dr Jekyll +2541 Mr Hyde +2542 Mr Hyde +2543 Mr Hyde +2544 Mr Hyde +2545 Mr Hyde +2546 Mr Hyde +2547 Chaos druid +2548 Blackjack seller +2549 Ali the dyer +2550 Dwarven Miner +2551 Dwarven Miner +2552 Dwarven Miner +2553 Blast Furnace Foreman +2554 Tin ore +2555 Copper ore +2556 Iron ore +2557 Mithril ore +2558 Adamantite ore +2559 Runite ore +2560 Silver ore +2561 Gold ore +2562 Coal +2563 Perfect gold ore +2564 Ordan +2565 Jorzik +2566 Wise Old Man +2567 Wise Old Man +2568 Banker +2569 Banker +2570 Banker +2571 Market Guard +2572 Olivia +2573 Pillory Guard +2574 Bank guard +2575 Purepker895 +2576 Qutiedoll +2577 1337sp34kr +2578 Elfinlocks +2579 Cool Mom227 +2580 Bernald +2581 Ellamaria +2582 Trolley +2583 Trolley +2584 Trolley +2586 Billy, a guard of Falador +2587 Bob, another guard of Falador +2588 Brother Althric +2589 PKMaster0036 +2590 King Roald +2591 TzHaar-Mej +2592 TzHaar-Mej +2593 TzHaar-Mej +2594 TzHaar-Mej +2595 TzHaar-Mej +2596 TzHaar-Mej +2597 TzHaar-Mej +2598 TzHaar-Hur +2599 TzHaar-Hur +2600 TzHaar-Hur +2601 TzHaar-Hur +2602 TzHaar-Hur +2603 TzHaar-Hur +2604 TzHaar-Xil +2605 TzHaar-Xil +2606 TzHaar-Xil +2607 TzHaar-Xil +2608 TzHaar-Xil +2609 TzHaar-Xil +2610 TzHaar-Ket +2611 TzHaar-Ket +2612 TzHaar-Ket +2613 TzHaar-Ket +2614 TzHaar-Ket +2615 TzHaar-Ket +2616 TzHaar-Ket +2617 TzHaar-Mej-Jal +2618 TzHaar-Mej-Kah +2619 TzHaar-Ket-Zuh +2620 TzHaar-Hur-Tel +2621 Olaf Hradson +2622 TzHaar-Hur-Lek +2623 TzHaar-Mej-Roh +2624 TzHaar-Ket +2625 TzHaar-Ket +2626 Rocks +2627 Tz-Kih +2628 Tz-Kih +2629 Tz-Kek +2630 Tz-Kek +2631 Tok-Xil +2632 Tok-Xil +2633 Wise Old Man +2634 Miss Schism +2635 Bob +2636 Bob +2637 Sphinx +2638 Neite +2639 Robert the Strong +2640 Odysseus +2641 Dragonkin +2642 King Black Dragon +2643 R4ng3rNo0b889 +2644 Love Cats +2645 Love Cats +2646 Neite +2647 Bob +2648 Beite +2649 Gnome +2650 Gnome +2651 Odysseus +2653 Neite +2655 Unferth +2656 Unferth +2657 Unferth +2658 Unferth +2659 Unferth +2660 Reldo +2661 Reldo +2662 Lazy cat +2663 Lazy cat +2664 Lazy cat +2665 Lazy cat +2666 Lazy cat +2667 Lazy cat +2668 Wily cat +2669 Wily cat +2670 Wily cat +2671 Wily cat +2672 Wily cat +2673 Wily cat +2674 Thief +2675 Man +2676 Make-over Mage +2677 Highwayman +2678 Goblin +2679 Goblin +2680 Goblin +2681 Goblin +2682 Rat +2683 Hengel +2684 Anja +2685 Hobgoblin +2686 Hobgoblin +2687 Hobgoblin +2688 Hobgoblin +2689 Frog +2690 Jack Seagull +2691 Longbow Ben +2692 Ahab +2693 Duck +2694 Duckling +2695 Pirate +2696 Thief +2697 Mugger +2698 Black knight +2699 Guard +2700 Guard +2701 Guard +2702 Guard +2703 Guard +2704 Guard +2705 Guard +2706 Crab +2707 Seagull +2708 Seagull +2709 Fire wizard +2710 Water wizard +2711 Earth wizard +2712 Air wizard +2713 Malignius Mortifer +2714 Zombie +2715 Skeleton +2716 Ghost +2717 Skeleton mage +2718 Betty +2719 Grum +2720 Gerrant +2721 Wydin +2722 Fishing spot +2723 Fishing spot +2724 Fishing spot +2725 Otto Godblessed +2726 Gull +2727 Gull +2728 Monk of Entrana +2729 Monk of Entrana +2730 Monk of Entrana +2731 Monk of Entrana +2732 Master Crafter +2733 Master Crafter +2734 Tz-Kih +2735 Tz-Kih +2736 Tz-Kek +2737 Tz-Kek +2738 Tz-Kek +2739 Tok-Xil +2740 Tok-Xil +2741 Yt-MejKot +2742 Yt-MejKot +2743 Ket-Zek +2744 Ket-Zek +2745 TzTok-Jad +2746 Yt-HurKot +2747 Solus Dellagar +2748 Savant +2749 Lord Daquarius +2750 Solus Dellagar +2751 Black Knight +2752 Lord Daquarius +2753 Mage of Zamorak +2754 Mage of Zamorak +2755 Mage of Zamorak +2776 Woman +2777 Black Knight +2778 Black Knight +2779 Ranger +2780 Solus Dellagar +2781 Gnome guard +2782 Shadow +2783 Dark beast +2784 Mourner +2785 Slave +2786 Slave +2787 Slave +2789 Thorgel +2790 Sergeant Damien +2791 Pillory Guard +2792 Tramp +2793 Tramp +2794 Tramp +2796 Skippy +2797 Skippy +2798 Skippy +2799 Skippy +2800 A pile of broken glass +2801 Ogre +2802 Gnome Coach +2803 Lizard +2804 Desert Lizard +2805 Desert Lizard +2806 Desert Lizard +2807 Small Lizard +2808 Small Lizard +2809 Al the Camel +2810 Elly the Camel +2811 Ollie the Camel +2812 Cam the Camel +2814 Alice the Camel +2815 Neferti the Camel +2820 Ali the Smith +2821 Ali the Farmer +2822 Ali the Tailor +2823 Ali the Guard +2824 Ellis +2825 Pirate Pete +2826 Pirate Pete +2827 Captain Braindeath +2828 50% Luke +2829 Davey +2830 Captain Donnie +2831 Zombie protester +2832 Zombie protester +2833 Zombie protester +2834 Zombie protester +2835 Zombie protester +2836 Zombie protester +2837 Zombie pirate +2838 Zombie pirate +2839 Zombie pirate +2840 Zombie pirate +2841 Zombie pirate +2842 Zombie pirate +2843 Zombie swab +2844 Zombie swab +2845 Zombie swab +2846 Zombie swab +2847 Zombie swab +2848 Zombie swab +2849 Evil spirit +2850 Fever spider +2851 Brewer +2852 Brewer +2853 Brewer +2854 Brewer +2855 Brewer +2856 Brewer +2857 Brewer +2858 Brewer +2859 Fishing spot +2860 Amaethwr +2861 Teclyn +2862 Death +2863 Zombie +2864 Most of a Zombie +2865 Most of a Zombie +2866 Zombie +2867 Most of a Zombie +2868 Zombie Head +2869 Zombie +2870 Half-Zombie +2871 Other Half-Zombie +2872 Child +2873 Child +2874 Child +2875 Child +2876 Child +2877 Child +2878 Zombie +2879 Bardur +2880 Dagannoth fledgeling +2881 Dagannoth Supreme +2882 Dagannoth Prime +2883 Dagannoth Rex +2884 Wallasalki +2885 Giant Rock Crab +2886 Boulder +2887 Dagannoth +2888 Dagannoth +2889 Rock lobster +2890 Rock +2891 Suspicious water +2892 Spinolyp +2893 Suspicious water +2894 Spinolyp +2895 Suspicious water +2896 Spinolyp +2899 Father Reen +2900 Father Reen +2902 Father Badden +2903 Father Badden +2904 Denath +2905 Denath +2906 Eric +2907 Eric +2909 Evil Dave +2910 Evil Dave +2911 Matthew +2912 Matthew +2913 Jennifer +2914 Jennifer +2915 Tanya +2916 Tanya +2917 Patrick +2918 Patrick +2919 Agrith Naar +2921 Sand storm +2927 Clay golem +2928 Clay golem +2931 Ghost +2932 Jorral +2934 Melina +2935 Melina +2937 Droalak +2938 Droalak +2939 Dron +2940 Blanin +2941 The Beast +2942 Bellemorde +2943 Pox +2944 Pox +2945 Bones +2946 Grimesquit +2947 Phingspet +2948 Hooknosed Jack +2949 Jimmy Dazzler +2950 The Face +2951 Felkrash +2952 Smokin' Joe +2953 Ceril Carnillean +2954 Councillor Halgrive +2955 Spice seller +2956 Fur trader +2957 Gem merchant +2958 Silver merchant +2959 Silk merchant +2960 Zenesha +2961 Ali Morrisane +2962 Guard +2963 Guard +2964 Guard +2965 Guard +2966 Guard +2967 Guard +2968 Guard +2969 Guard +2970 Guard +2971 Guard +2972 Guard +2973 Guard +2980 Rat +2981 Rat +2982 King rat +2983 Turbogroomer +2984 Pusskins +2985 Loki +2986 Captain Tom +2987 Treacle +2988 Mittens +2989 Claude +2990 Topsy +2991 Rauborn +2992 Vaeringk +2993 Oxi +2994 Fior +2995 Sagira +2996 Anleif +2997 Gertrude's cat +2998 Gambler +2999 Gambler +3000 Barman +3001 Gambler +3002 Gambler +3003 Gambler +3004 Gambler +3005 Gambler +3006 Gambler +3007 Rat +3008 Rat +3009 Rat +3010 Rat +3011 Rat +3012 Rat +3013 Rat +3014 Rat +3015 Rat +3016 Rat +3017 Rat +3018 Rat +3019 Fishing spot +3020 Rug Merchant +3021 Tool leprechaun +3022 Genie +3023 Nirrie +3024 Tirrie +3025 Hallak +3026 Black golem +3027 White golem +3028 Grey golem +3029 Ghaslor the Elder +3030 Ali the Carter +3031 Usi +3032 Nkuku +3033 Garai +3034 Habibah +3035 Meskhenet +3036 Zahra +3037 Zahur +3038 Seddu +3039 Kazemde +3040 Awusah the Mayor +3041 Tarik +3042 Poltenip +3043 Radat +3044 Shiratti the Custodian +3045 Rokuh +3046 Nardah Banker +3047 Target +3048 Target +3050 Larxus +3051 Mystery figure +3052 Mystery figure +3053 Mystery figure +3054 Mystery figure +3055 Mystery figure +3056 Mystery figure +3057 Earth Warrior Champion +3058 Giant Champion +3059 Ghoul Champion +3060 Goblin Champion +3061 Hobgoblin Champion +3062 Imp Champion +3063 Jogre Champion +3064 Lesser Demon Champion +3065 Skeleton Champion +3066 Zombies Champion +3067 Leon d'Cour +3068 Skeletal Wyvern +3069 Skeletal Wyvern +3070 Skeletal Wyvern +3071 Skeletal Wyvern +3072 Ice giant +3073 Ice warrior +3075 Monk +3077 Dead Monk +3078 High Priest +3079 Monk +3080 Monk +3081 Assassin +3082 Rosie +3083 Sorcha +3084 Cait +3085 Cormac +3086 Fionn +3087 Donnacha +3088 Ronan +3092 Hooded Stranger +3094 Flying Book +3095 Flying Book +3096 Pizzaz Hat +3097 Entrance Guardian +3098 Telekinetic Guardian +3099 Alchemy Guardian +3100 Enchantment Guardian +3101 Graveyard Guardian +3102 Maze Guardian +3103 Rewards Guardian +3104 Charmed Warrior +3105 Charmed Warrior +3106 Charmed Warrior +3107 Charmed Warrior +3108 Bert +3109 Guard Captain +3112 Sandy +3113 Sandy +3114 Mazion +3115 Blaec +3116 Reeso +3117 Sandwich lady +3118 Prison Pete +3119 Balloon Animal +3120 Balloon Animal +3121 Balloon Animal +3122 Balloon Animal +3123 Simon Templeton +3124 Pyramid block +3125 Pyramid block +3126 Pentyn +3127 Aristarchus +3129 Boneguard +3130 Pile of bones +3131 Desert Spirit +3133 Crust of ice +3135 Furnace grate +3137 Enakhra +3138 Enakhra +3140 Boneguard +3141 Akthanakos +3142 Akthanakos +3147 Lazim +3148 Enakhra +3149 Akthanakos +3150 Knight +3151 Skeleton +3153 Harpie Bug Swarm +3154 Count Draynor +3155 Bill Teach +3156 Bill Teach +3157 Bill Teach +3158 Bill Teach +3159 Bill Teach +3160 Bill Teach +3161 Charley +3162 Smith +3163 Joe +3164 Mama +3165 Mama +3166 Mike +3167 Pirate +3168 Pirate +3169 Pirate +3170 Pirate +3171 Pirate +3172 Pirate +3173 Pirate +3174 Pirate +3175 Pirate +3176 Pirate +3177 Pirate +3178 Pirate +3179 Pirate +3180 Pirate +3181 Pirate +3182 Pirate +3183 Pirate +3184 Pirate +3185 Pirate +3186 Pirate +3187 Pirate +3188 Pirate +3189 Pirate +3190 Pirate +3191 Pirate +3192 Pirate +3193 Pirate +3194 Pirate +3195 Pirate +3196 Pirate +3197 Gull +3198 Banker +3199 Banker +3200 Chaos Elemental +3201 Killerwatt +3202 Killerwatt +3203 Storm Cloud +3204 Storm Cloud +3205 Romily Weaklax +3206 Priest +3207 Pious Pete +3208 Taper +3209 Elena +3210 Alrena +3211 Alrena +3212 Bravek +3215 Elena +3216 Mourner +3217 Kaylee +3218 Tina +3219 Dwarf +3220 Dwarf +3221 Dwarf +3222 Drunken man +3223 Man +3224 Man +3225 Man +3226 Woman +3227 Woman +3228 Guard +3229 Guard +3230 Guard +3231 Guard +3232 Guard +3233 Guard +3234 Gardener +3235 Apprentice workman +3236 Workman +3237 Cuffs +3238 Narf +3239 Rusty +3240 Jeff +3241 Guard +3242 Dark wizard +3243 Dark wizard +3244 Dark wizard +3245 Dark wizard +3246 Barbarian +3247 Barbarian +3248 Barbarian +3249 Barbarian +3250 Barbarian +3251 Barbarian +3252 Barbarian +3253 Barbarian +3254 Hunding +3255 Barbarian +3256 Barbarian +3257 Barbarian +3258 Barbarian +3259 Barbarian +3260 Barbarian +3261 Barbarian +3262 Barbarian +3263 Barbarian +3264 Goblin +3265 Goblin +3266 Goblin +3267 Goblin +3268 Dwarf +3269 Dwarf +3270 Dwarf +3271 Dwarf +3272 Dwarf +3273 Dwarf +3274 Dwarf +3275 Dwarf +3276 Black Guard +3277 Black Guard +3278 Black Guard +3279 Black Guard +3280 Engineering assistant +3281 Engineering assistant +3282 Engineer +3283 Squirrel +3284 Squirrel +3285 Squirrel +3286 Raccoon +3287 Raccoon +3288 Raccoon +3291 Skeleton +3292 Witch +3294 Dwarf +3295 Dwarf +3296 Swan +3297 Black swan +3298 Sweeper +3299 Martin the Master Gardener +3300 Frog +3301 Storm cloud +3302 Co-ordinator +3303 Fairy Nuff +3304 Fairy Godfather +3305 Slim Louie +3306 Fat Rocco +3307 Gatekeeper +3308 Zandar Horfyre +3309 Cow +3310 Sheep +3311 Sheep +3312 Zanaris choir +3313 Tanglefoot +3319 Baby tanglefoot +3320 Baby tanglefoot +3321 Gatekeeper +3322 Fairy chef +3324 Draul Leptoc +3325 Phillipa +3326 Martina Scorsby +3327 Jeremy Clerksin +3328 Tarquin +3329 Sigurd +3330 Hari +3331 Barfy Bill +3332 Trees +3333 Trees +3334 Cavemouth +3335 Bullrush +3336 Bullrush +3337 Cave scenery +3338 Cave scenery +3339 Cave scenery +3340 Giant Mole +3341 Baby Mole +3342 Baby Mole +3343 Baby Mole +3344 Fungi +3345 Fungi +3346 Zygomite +3347 Zygomite +3348 White Knight +3349 White Knight +3350 White Knight +3351 Genie +3352 Mysterious Old Man +3353 Swarm +3354 Cap'n Hand +3355 Rick Turpentine +3356 Niles +3357 Miles +3358 Giles +3359 Dr Jekyll +3360 Mr Hyde +3361 Mr Hyde +3362 Mr Hyde +3363 Mr Hyde +3364 Mr Hyde +3365 Mr Hyde +3366 Evil Chicken +3367 Evil Chicken +3368 Evil Chicken +3369 Evil Chicken +3370 Evil Chicken +3371 Evil Chicken +3372 Sir Amik Varze +3374 Sir Amik Varze +3375 Evil Chicken +3376 Baby black dragon +3377 K'klik +3378 Evil Dave +3380 Evil Dave +3381 Doris +3382 Hell-Rat +3385 Gypsy +3386 Gypsy +3387 Culinaromancer +3388 Osman +3389 Pirate Pete +3390 Mountain Dwarf +3391 General Wartface +3392 General Bentnoze +3393 Lumbridge Guide +3394 Evil Dave +3395 Sir Amik Varze +3396 Awowogei +3397 Awowogei +3398 Skrach Uglogwee +3400 Culinaromancer +3402 An old Dwarf +3403 Rohak +3405 Rohak +3406 Icefiend +3407 Guard +3408 Guard +3409 Wild jade vine +3410 Wild jade vine +3411 Wild jade vine +3412 Wild jade vine +3413 Goblin Cook +3414 Goblin Cook +3415 Goblin Cook +3416 Pirate Pete +3418 Pirate Pete +3419 Ogre +3420 Mogre Guard +3421 Crab +3422 Mudskipper +3423 Mudskipper +3424 Crab +3425 Fish +3426 Fish +3427 Fish +3428 Fish +3429 Fish +3430 Fish +3431 Fish +3432 Fish +3433 Fish +3434 Fish +3435 Fish +3436 Fish +3437 Fish +3438 Fish +3439 Fish +3440 Fish +3441 Fish +3442 Fish +3443 Fish +3444 Fish +3445 Fish +3446 Fish +3447 Fish +3448 Fish +3449 Lumbridge Guide +3451 Lumbridge Guide +3452 ? ? ? ? +3453 ? ? ? ? +3454 ? ? ? ? +3455 ? ? ? ? +3456 ? ? ? ? +3457 ? ? ? ? +3458 ? ? ? ? +3459 ? ? ? ? +3460 ? ? ? ? +3461 ? ? ? ? +3463 Skrach Uglogwee +3464 Skrach Uglogwee +3465 Nung +3466 Ogre +3467 Rantz +3468 Rantz +3471 Ogre boat +3472 Ogre boat +3473 Balloon Toad +3474 Balloon Toad +3475 Balloon Toad +3476 Jubbly bird +3477 Jubbly bird +3478 King Awowogei +3480 King Awowogei +3481 Mizaru +3482 Kikazaru +3483 Iwazaru +3484 Big Snake +3485 Culinaromancer +3486 Culinaromancer +3487 Culinaromancer +3488 Culinaromancer +3489 Culinaromancer +3490 Culinaromancer +3491 Culinaromancer +3492 Culinaromancer +3493 Agrith-Na-Na +3494 Flambeed +3495 Karamel +3496 Dessourt +3497 Gelatinnoth Mother +3498 Gelatinnoth Mother +3499 Gelatinnoth Mother +3500 Gelatinnoth Mother +3501 Gelatinnoth Mother +3502 Gelatinnoth Mother +3503 Overgrown hellcat +3504 Hellcat +3505 Hell-kitten +3506 Lazy hellcat +3507 Wily hellcat +3508 Leo +3509 Sorin +3511 Wiskit +3514 Vampyre Juvinate +3515 Vampyre Juvinate +3517 Gadderanks +3518 Gadderanks +3519 Gadderanks +3520 Vampyre Juvinate +3521 Vampyre Juvinate +3522 Vampyre Juvinate +3523 Vampyre Juvinate +3524 Vampyre Juvinate +3525 Vampyre Juvinate +3526 Vampyre Juvinate +3527 Held Vampyre Juvinate +3528 Vampyre Juvinate +3529 Vampyre Juvinate +3530 Mist +3531 Vampyre Juvenile +3532 Vampyre Juvenile +3533 Vampyre Juvenile +3534 Held Vampyre Juvenile +3535 Ivan Strom +3536 Ivan Strom +3537 Vampyre Juvinate +3538 Vampyre Juvinate +3539 Veliaf Hurtz +3540 Elisabeta +3541 Aurel +3542 Sorin +3543 Luscion +3544 Sergiu +3545 Radu +3546 Grigore +3547 Ileana +3548 Valeria +3549 Emilia +3550 Florin +3551 Catalina +3552 Ivan +3553 Victor +3554 Helena +3555 Teodor +3556 Marius +3557 Gabriela +3558 Vladimir +3559 Calin +3560 Mihail +3561 Nicoleta +3562 Simona +3563 Vasile +3564 Razvan +3565 Luminata +3568 Cornelius +3569 Cornelius +3570 Benjamin +3571 Liam +3572 Miala +3573 Verak +3574 Fishing spot +3575 Fishing spot +3576 Juvinate +3577 Juvinate +3578 Juvinate +3579 Sheep +3580 Tentacle +3581 Skeleton +3582 Guard dog +3583 Hobgoblin +3584 Troll +3585 Huge spider +3586 Hellhound +3587 Rantz +3588 Baby red dragon +3589 Kalphite Soldier +3590 Steel dragon +3591 Dagannoth +3592 Tok-Xil +3593 Demon +3594 Rocnar +3595 Toy Soldier +3596 Toy Doll +3597 Toy Mouse +3598 Clockwork cat +3599 Swamp snake +3600 Swamp snake +3601 Swamp snake +3602 Swamp snake +3603 Dead swamp snake +3604 Dead swamp snake +3605 Dead swamp snake +3606 Ghast +3607 Ghast +3608 Ghast +3609 Ghast +3610 Ghast +3611 Ghast +3612 Giant snail +3613 Giant snail +3614 Giant snail +3615 Riyl shadow +3616 Asyn shadow +3617 Shade +3618 Tentacle +3619 Head +3620 Head +3621 Tentacle +3622 Zombie +3624 Smiddi Ryak +3626 Rolayne Twickit +3628 Jayene Kliyn +3630 Valantay Eppel +3632 Dalcian Fang +3634 Fyiona Fray +3635 Abidor Crank +3636 Spirit tree +3637 Spirit tree +3639 Launa +3640 Launa +3641 Brana +3642 Mawnis Burowgar +3643 Tolna +3644 Tolna +3645 Angry bear +3646 Angry unicorn +3647 Angry giant rat +3648 Angry goblin +3649 Fear reaper +3650 Confusion beast +3651 Confusion beast +3652 Confusion beast +3653 Confusion beast +3654 Confusion beast +3655 Hopeless creature +3656 Hopeless creature +3657 Hopeless creature +3658 Tolna +3659 Tolna +3660 Tolna +3661 Angry unicorn +3662 Angry giant rat +3663 Angry goblin +3664 Angry bear +3665 Fear reaper +3666 Confusion beast +3667 Hopeless creature +3668 Hopeless beast +3669 Hopeless beast +3670 Odd Old Man +3671 Fortunato +3672 Ram +3673 Ram +3674 Bones +3675 Vulture +3676 Vulture +3677 Sinister Stranger +3678 Sinister Stranger +3679 Vestri +3680 Ali the Leaflet Dropper +3681 Nigel +3682 Egg +3683 Egg +3684 Egg +3685 Egg +3686 Chocolate kebbit +3687 Chocolate kebbit +3688 Easter Bunny +3689 Egg +3690 Egg +3691 Egg +3692 Egg +3693 Egg +3694 Egg +3695 Volf Olafson +3696 Ingrid Hradson +3697 Skeleton fremennik +3698 Skeleton fremennik +3699 Skeleton fremennik +3700 Skeleton fremennik +3701 Skeleton fremennik +3702 Skeleton fremennik +3703 Skeleton fremennik +3704 Skeleton fremennik +3705 Skeleton fremennik +3706 Ulfric +3707 Brine rat +3708 Boulder +3709 Boulder +3710 Ulfric +3711 Giant bat +3712 Zanik +3713 Sigmund +3714 Zanik +3715 Guard +3716 Sigmund +3717 Sigmund +3718 Sigmund +3719 Sigmund +3720 Sigmund +3721 Zanik +3722 Zanik +3723 General Bentnoze +3724 General Wartface +3725 Grubfoot +3726 Goblin +3727 Splatter +3728 Splatter +3729 Splatter +3730 Splatter +3731 Splatter +3732 Shifter +3733 Shifter +3734 Shifter +3735 Shifter +3736 Shifter +3737 Shifter +3738 Shifter +3739 Shifter +3740 Shifter +3741 Shifter +3742 Ravager +3743 Ravager +3744 Ravager +3745 Ravager +3746 Ravager +3747 Spinner +3748 Spinner +3749 Spinner +3750 Spinner +3751 Spinner +3752 Torcher +3753 Torcher +3754 Torcher +3755 Torcher +3756 Torcher +3757 Torcher +3758 Torcher +3759 Torcher +3760 Torcher +3761 Torcher +3762 Defiler +3763 Defiler +3764 Defiler +3765 Defiler +3766 Defiler +3767 Defiler +3768 Defiler +3769 Defiler +3770 Defiler +3771 Defiler +3772 Brawler +3773 Brawler +3774 Brawler +3775 Brawler +3776 Brawler +3777 Doomsayer +3779 Arthur +3781 Squire +3782 Void Knight +3783 Frog +3784 Void Knight +3785 Void Knight +3786 Void Knight +3787 Sir Palomedes +3788 Void Knight +3789 Void Knight +3790 Squire +3791 Squire +3792 Squire +3793 Squire +3794 Squire +3795 Squire +3796 Squire +3797 Squire +3798 Squire +3799 Squire +3800 Squire +3801 Squire +3802 Squire (Novice) +3804 Fishing spot +3805 Postie Pete +3806 Millie Miller +3807 Gillie Groats +3808 Tortoise +3809 Captain Dalbur +3810 Captain Bleemadge +3811 Captain Errdo +3812 Captain Klemfoodle +3813 Captain Wimto +3814 Gnome Archer +3815 Gnome Driver +3816 Gnome Mage +3817 Lieutenant Schepbur +3818 Trainer Nacklepen +3819 Tortoise +3821 Wise Old Man +3822 Herman Caranos +3823 Franklin Caranos +3824 Arnold Lydspor +3825 Devin Mendelberg +3826 George Laxmeister +3827 Ramara du Croissant +3830 Kathy Corkat +3831 Kathy Corkat +3835 Kalphite Queen +3836 Kalphite Queen +3837 Drunken Dwarf +3838 Wise Old Man +3839 Wise Old Man +3840 Sea troll +3841 Sea troll +3842 Sea troll +3843 Sea troll +3844 Skeleton Mage +3845 Sea troll +3846 Sea Troll General +3847 Sea Troll Queen +3848 Fishing spot +3849 Fishing spot +3850 Skeleton Mage +3851 Skeleton Mage +3852 Suspect +3853 Suspect +3854 Suspect +3855 Suspect +3856 Suspect +3857 Suspect +3858 Suspect +3859 Suspect +3860 Suspect +3861 Suspect +3862 Suspect +3863 Suspect +3864 Suspect +3865 Suspect +3866 Suspect +3867 Suspect +3868 Suspect +3869 Suspect +3870 Suspect +3871 Suspect +3872 Suspect +3873 Suspect +3874 Suspect +3875 Suspect +3876 Suspect +3877 Suspect +3878 Suspect +3879 Suspect +3880 Suspect +3881 Suspect +3882 Suspect +3883 Suspect +3884 Suspect +3885 Suspect +3886 Suspect +3887 Suspect +3888 Suspect +3889 Suspect +3890 Suspect +3891 Suspect +3892 Molly +3893 Molly +3894 Molly +3895 Molly +3896 Molly +3897 Molly +3898 Molly +3899 Molly +3900 Molly +3901 Molly +3902 Molly +3903 Molly +3904 Molly +3905 Molly +3906 Molly +3907 Molly +3908 Molly +3909 Molly +3910 Molly +3911 Molly +3912 Flippa +3913 Tilt +3914 Gardener +3915 Man +3916 Carpenter Kjallak +3917 Farmer Fromund +3918 Prince Brand +3919 Princess Astrid +3920 Runa +3921 Halla +3922 Finn +3923 Osvald +3924 Runolf +3925 Tjorvi +3926 Ingrid +3927 Thora +3928 Signy +3929 Hild +3930 Armod +3931 Beigarth +3932 Reinn +3933 Alviss +3934 Fullangr +3935 Jari +3936 Thorodin +3937 Ferd +3938 Donal +3939 Sea Snake Young +3940 Sea Snake Hatchling +3941 Guard +3942 Guard +3943 Giant Sea Snake +3944 Hangman game +3945 Hangman game +3946 Hangman game +3947 Hangman game +3948 Hangman game +3949 Hangman game +3950 Hangman game +3951 Hangman game +3952 Hangman game +3953 Hangman game +3954 Treasure fairy +3955 Jacky Jester +3956 Combat stone +3957 Combat stone +3958 Combat stone +3959 Combat stone +3960 Combat stone +3961 Combat stone +3962 Combat stone +3963 Combat stone +3964 Combat stone +3965 Combat stone +3966 Combat stone +3967 Combat stone +3968 Combat stone +3969 Combat stone +3970 Combat stone +3971 Combat stone +3972 Combat stone +3973 Combat stone +3974 Combat stone +3975 Combat stone +3976 Combat stone +3977 Combat stone +3978 Combat stone +3979 Combat stone +3980 Combat stone +3981 Combat stone +3982 Combat stone +3983 Combat stone +3984 Combat stone +3985 Combat stone +3986 Combat stone +3987 Combat stone +3988 Combat stone +3989 Combat stone +3990 Combat stone +3991 Combat stone +3992 Combat stone +3993 Combat stone +3994 Combat stone +3995 Combat stone +3996 Combat stone +3997 Combat stone +3998 Combat stone +3999 Combat stone +4000 Combat stone +4001 Combat stone +4002 Combat stone +4003 Combat stone +4004 Combat stone +4005 Combat stone +4006 Combat stone +4007 Combat stone +4008 Combat stone +4009 Combat stone +4010 Combat stone +4011 Combat stone +4012 Combat stone +4013 Combat stone +4014 Combat stone +4015 Combat stone +4016 Combat stone +4017 Combat stone +4018 Combat stone +4019 Combat stone +4020 Combat stone +4021 Elemental balance +4022 Elemental balance +4023 Elemental balance +4024 Elemental balance +4025 Elemental balance +4026 Elemental balance +4027 Elemental balance +4028 Elemental balance +4029 Elemental balance +4030 Elemental balance +4031 Elemental balance +4032 Elemental balance +4033 Elemental balance +4034 Elemental balance +4035 Elemental balance +4036 Elemental balance +4037 Elemental balance +4038 Elemental balance +4039 Elemental balance +4040 Elemental balance +4041 Elemental balance +4042 Elemental balance +4043 Elemental balance +4044 Elemental balance +4045 Elemental balance +4046 Elemental balance +4047 Elemental balance +4048 Elemental balance +4049 Elemental balance +4050 Elemental balance +4051 Elemental balance +4052 Elemental balance +4053 Elemental balance +4054 Elemental balance +4055 Elemental balance +4056 Elemental balance +4057 Elemental balance +4058 Elemental balance +4059 Elemental balance +4060 Elemental balance +4061 Elemental balance +4062 Elemental balance +4063 Elemental balance +4064 Elemental balance +4065 Elemental balance +4066 Elemental balance +4067 Elemental balance +4068 Elemental balance +4069 Elemental balance +4070 Elemental balance +4071 Elemental balance +4072 Elemental balance +4073 Elemental balance +4074 Elemental balance +4075 Elemental balance +4076 Elemental balance +4077 Elemental balance +4078 Elemental balance +4079 Elemental balance +4080 Elemental balance +4081 Elemental balance +4082 Elemental balance +4083 Elemental balance +4084 Elemental balance +4085 Elemental balance +4086 Elemental balance +4087 Elemental balance +4088 Elemental balance +4089 Elemental balance +4090 Elemental balance +4091 Elemental balance +4092 Elemental balance +4093 Elemental balance +4094 Elemental balance +4095 Elemental balance +4096 Combat stone +4097 Combat stone +4098 Combat stone +4099 Combat stone +4100 Combat stone +4101 Combat stone +4102 Combat stone +4103 Combat stone +4104 Combat stone +4105 Combat stone +4106 Combat stone +4107 Combat stone +4108 Combat stone +4109 Combat stone +4110 Combat stone +4111 Combat stone +4112 Combat stone +4113 Combat stone +4114 Combat stone +4115 Combat stone +4116 Combat stone +4117 Combat stone +4118 Combat stone +4119 Combat stone +4120 Combat stone +4121 Combat stone +4122 Combat stone +4123 Combat stone +4124 Combat stone +4125 Combat stone +4126 Combat stone +4127 Combat stone +4128 Combat stone +4129 Combat stone +4130 Combat stone +4131 Combat stone +4132 Combat stone +4133 Combat stone +4134 Combat stone +4135 Combat stone +4136 Combat stone +4137 Combat stone +4138 Combat stone +4139 Combat stone +4140 Combat stone +4141 Combat stone +4142 Combat stone +4143 Combat stone +4144 Combat stone +4145 Combat stone +4146 Combat stone +4147 Combat stone +4148 Combat stone +4149 Combat stone +4150 Combat stone +4151 Combat stone +4152 Combat stone +4153 Combat stone +4154 Combat stone +4155 Combat stone +4156 Combat stone +4157 Combat stone +4158 Combat stone +4159 Combat stone +4160 Combat stone +4161 Combat stone +4162 Combat stone +4163 Combat stone +4164 Combat stone +4165 Combat stone +4166 Combat stone +4167 Combat stone +4168 Combat stone +4169 Combat stone +4170 Combat stone +4171 Combat stone +4172 Combat stone +4173 Combat stone +4174 Combat stone +4175 Combat stone +4176 Combat stone +4177 Combat stone +4178 Combat stone +4179 Combat stone +4180 Combat stone +4181 Combat stone +4182 Combat stone +4183 Combat stone +4184 Combat stone +4185 Combat stone +4186 Combat stone +4187 Combat stone +4188 Combat stone +4189 Combat stone +4190 Combat stone +4191 Combat stone +4192 Combat stone +4193 Combat stone +4194 Combat stone +4195 Combat stone +4196 Combat stone +4197 Combat stone +4198 Combat stone +4199 Combat stone +4200 Combat stone +4201 Combat stone +4202 Combat stone +4203 Combat stone +4204 Combat stone +4205 Combat stone +4206 Combat stone +4207 Combat stone +4208 Combat stone +4209 Combat stone +4210 Combat stone +4211 Combat stone +4212 Combat stone +4213 Combat stone +4214 Combat stone +4215 Combat stone +4216 Combat stone +4217 Combat stone +4218 Combat stone +4219 Combat stone +4220 Combat stone +4221 Combat stone +4222 Combat stone +4223 Combat stone +4224 Combat stone +4225 Combat stone +4226 Crawling hand +4227 Cockatrice +4228 Basilisk +4229 Kurask +4230 Abyssal demon +4231 Left head +4232 Middle head +4233 Right head +4234 Kalphite Queen +4235 Rick +4237 Maid +4239 Cook +4241 Butler +4243 Demon butler +4245 Chief servant +4246 Taxidermist +4247 Estate agent +4248 Stonemason +4249 Sir Renitee +4250 Sawmill operator +4251 Garden supplier +4252 Macaroni Penguin +4257 Guard +4258 Guard +4259 Guard +4260 Guard +4261 Goblin +4262 Goblin +4263 Goblin +4264 Goblin +4265 Goblin +4266 Goblin +4267 Goblin +4268 Goblin +4269 Goblin +4270 Goblin +4271 Goblin +4272 Goblin +4273 Goblin +4274 Goblin +4275 Goblin +4276 Goblin +4277 Buinn +4278 Animated Bronze Armour +4279 Animated Iron Armour +4280 Animated Steel Armour +4281 Animated Black Armour +4282 Animated Mithril Armour +4283 Animated Adamant Armour +4284 Animated Rune Armour +4285 Ghommal +4286 Harrallak Menarous +4287 Gamfred +4288 Ajjat +4289 Kamfreena +4290 Shanomi +4291 Cyclops +4292 Cyclops +4293 Lidio +4294 Lilly +4295 Anton +4296 Jade +4297 Sloane +4298 Jimmy +4299 Ref +4300 Ref +4301 Guard +4302 Guard +4303 Guard +4304 Guard +4305 Guard +4306 Guard +4307 Guard +4308 Guard +4309 Guard +4310 Guard +4311 Guard +4312 Nardok +4314 Dartog +4316 Dwarf +4318 H.A.M. Member +4320 H.A.M. Member +4322 Zanik +4323 Zanik +4324 Zanik +4325 Light creature +4326 Zanik +4327 HAM member +4328 Sigmund +4329 H.A.M. Deacon +4330 Johanhus Ulsbrecht +4331 Sigmund +4332 Sigmund +4333 Sigmund +4334 Sigmund +4335 Sigmund +4336 Guard +4337 Zanik +4339 Zanik +4340 Zanik +4341 Zanik +4342 Zanik +4343 Snake +4344 Monkey +4345 Albino bat +4346 Crab +4347 Giant mosquito +4348 Jungle horror +4349 Jungle horror +4350 Jungle horror +4351 Jungle horror +4352 Jungle horror +4353 Cave horror +4354 Cave horror +4355 Cave horror +4356 Cave horror +4357 Cave horror +4358 Cavey Davey +4359 Patchy +4360 San Fan +4361 Fancy Dan +4362 Honest Jimmy +4363 Monkey +4364 Swarm +4371 Blue Monkey +4372 Red Monkey +4373 Parrot +4374 Parrot +4375 Security Guard +4376 Litara +4377 Gate of War +4378 Ricketty door +4379 Oozing barrier +4380 Portal of Death +4381 Ankou +4382 Ankou +4383 Ankou +4384 Skeleton +4385 Skeleton +4386 Skeleton +4387 Ghost +4388 Ghost +4389 Flesh Crawler +4390 Flesh Crawler +4391 Flesh Crawler +4392 Zombie +4393 Zombie +4394 Zombie +4395 Giant rat +4396 Rat +4397 Catablepon +4398 Catablepon +4399 Catablepon +4400 Giant spider +4401 Spider +4402 Scorpion +4403 Scorpion +4404 Minotaur +4405 Minotaur +4406 Minotaur +4407 Goblin +4408 Goblin +4409 Goblin +4410 Goblin +4411 Goblin +4412 Goblin +4413 Wolf +4414 Wolf +4415 Rat +4416 Bee keeper +4417 Bees! +4418 Gorak +4419 Cosmic Being +4433 Fairy Godfather +4434 Fairy Nuff +4437 Fairy Queen +4438 Centaur +4439 Centaur +4440 Stag +4441 Wood Dryad +4442 Fairy Very Wise +4443 Fairy +4444 Fairy +4445 Fairy +4446 Fairy +4447 Rabbit +4448 Rabbit +4449 Butterfly +4450 Butterfly +4451 Starflower +4452 Starflower +4455 Fairy Fixit +4456 Ork +4457 Ork +4458 Ork +4459 Ork +4460 Fake Man +4461 Held vampyre juvinate +4462 Held vampyre juvinate +4463 Angry juvinate +4464 Angry juvinate +4465 Angry juvinate +4466 Benjamin +4467 Liam +4468 Miala +4469 Verak +4470 Tree spirit +4472 Bogrog +4473 Woman +4474 Magic dummy +4475 Ned +4476 Guardian mummy +4477 Annoyed guardian mummy +4478 Tarik +4479 Goblin +4480 Goblin +4481 Goblin +4482 Goblin +4483 Goblin +4484 Goblin +4485 Goblin +4486 Goblin +4487 Goblin +4488 Goblin +4489 Goblin +4490 Goblin +4491 Goblin +4492 Goblin +4493 General Bentnoze +4494 General Wartface +4496 Grubfoot +4497 Grubfoot +4498 Grubfoot +4499 Goblin +4500 Scarab swarm +4501 Ethereal Man +4502 Ethereal Lady +4503 Ethereal Numerator +4504 Ethereal Expert +4505 Ethereal Perceptive +4506 Ethereal Guide +4507 Ethereal Fluke +4508 Ethereal Mimic +4509 Me +4510 Me +4511 Oneiromancer +4512 House +4513 Baba Yaga +4514 Pauline Polaris +4515 Meteora +4516 Melana Moonlander +4517 Selene +4518 Rimae Sirsalis +4519 Sirsal Banker +4520 Clan Guard +4521 Enchanted Broom +4522 Enchanted Broom +4523 Enchanted Broom +4524 Enchanted Bucket +4525 Enchanted Bucket +4526 Bouquet Mac Hyacinth +4527 Suqah +4528 Suqah +4529 Suqah +4530 Suqah +4531 Suqah +4532 Suqah +4533 Suqah +4534 Moss giant +4535 Parrot +4536 Lokar Searunner +4537 Lokar Searunner +4539 Cabin boy +4540 Captain Bentley +4541 'Beefy' Burns +4542 'Eagle-eye' Shultz +4543 First mate 'Davey-boy' +4544 'Bird's-Eye' Jack +4545 'Picarron' Pete +4546 Jake +4547 Bedread the bold +4548 Wilson +4549 Tommy 2-times +4550 Murky Pat +4551 Jack Sails +4552 Palmer +4553 'Betty' B.Boppin +4554 'Beedy-eye' Jones +4555 Jenny Blade +4556 'Lecherous' Lee +4557 'Sticky' Sanders +4558 Hirko +4559 Holoy +4560 Frizzy Skernip +4561 Yulf Squecks +4562 Praistan Ebola +4563 Hura +4564 Digsite workman +4565 Digsite workman +4566 Examiner +4567 Examiner +4568 Researcher +4569 Nick +4570 Crow +4571 Crow +4572 Gianne jnr. +4573 Timble +4574 Tamble +4575 Spang +4576 Brambickle +4577 Wingstone +4578 Penwie +4579 Generic Diplomat +4580 Ambassador Gimblewap +4581 Ambassador Spanfipple +4582 Ambassador Ferrnook +4583 Professor Manglethorp +4584 Damwin +4585 Professor Onglewip +4586 Professor Imblewyn +4587 Perrdur +4588 Dalila +4589 Sorrn +4590 Mimm +4591 Eebel +4592 Ermin +4593 Portobello +4594 Captain Ninto +4595 Captain Daerkin +4596 Captain Lamdoo +4597 Meegle +4598 Wurbel +4599 Sarble +4600 Guard Vemmeldo +4601 Burkor +4602 Froono +4603 Fortress Guard +4604 Fortress Guard +4605 Fortress Guard +4606 Fortress Guard +4607 Black Cat +4608 Monk +4610 Brimstail +4611 Saboteur +4612 Gnome shop keeper +4614 Cute creature +4615 Evil creature +4617 Cute creature +4618 Evil creature +4620 Cute creature +4621 Evil creature +4623 Cute creature +4624 Evil creature +4626 Cute creature +4627 Evil creature +4629 Cute creature +4630 Evil creature +4631 fluffie +4632 fluffie +4633 Goblin +4634 Goblin +4635 Goblin +4636 Goblin +4637 Goblin +4638 Gnome soldier +4639 Gnome soldier +4640 Gnome soldier +4641 Gnome soldier +4642 Gnome soldier +4643 Healthorg and tortoise +4644 Oaknock the Engineer +4645 Glouphrie the Untrusted +4646 King Healthorg +4647 Hazelmere +4648 Nisha +4649 Tyras guard +4650 Trader Stan +4651 Trader Crewmember +4652 Trader Crewmember +4653 Trader Crewmember +4654 Trader Crewmember +4655 Trader Crewmember +4656 Trader Crewmember +4657 Sir Prysin +4658 Dark wizard +4659 Dark wizard +4660 Dark wizard +4661 Dark wizard +4662 Denath +4663 Denath +4664 Wally +4665 Baby blue dragon +4666 Baby blue dragon +4667 Baby red dragon +4668 Baby red dragon +4669 Red dragon +4670 Red dragon +4671 Red dragon +4672 Red dragon +4673 Black dragon +4674 Black dragon +4675 Black dragon +4676 Black dragon +4677 Green dragon +4678 Green dragon +4679 Green dragon +4680 Green dragon +4681 Blue dragon +4682 Blue dragon +4683 Blue dragon +4684 Blue dragon +4685 Ice giant +4686 Ice giant +4687 Ice giant +4688 Moss giant +4689 Hill Giant +4690 Hill Giant +4691 Hill Giant +4692 Hill Giant +4693 Hill Giant +4694 Lesser demon +4695 Lesser demon +4696 Lesser demon +4697 Lesser demon +4698 Greater demon +4699 Greater demon +4700 Greater demon +4701 Greater demon +4702 Black demon +4703 Black demon +4704 Black demon +4705 Black demon +4706 Moss giant +4707 Magic Tutor +4708 Old Man Ral +4709 Vertida Sefalatis +4710 Aeonisig Raispher +4713 Safalaan +4715 Sarius Guile +4716 Trader Sven +4717 Meiyerditch citizen +4718 Meiyerditch citizen +4719 Meiyerditch citizen +4720 Meiyerditch citizen +4721 Meiyerditch citizen +4722 Meiyerditch citizen +4723 Meiyerditch citizen +4724 Meiyerditch citizen +4725 Meiyerditch citizen +4726 Meiyerditch citizen +4727 Meiyerditch citizen +4728 Meiyerditch citizen +4729 Meiyerditch citizen +4730 Meiyerditch citizen +4731 Meiyerditch citizen +4732 Meiyerditch citizen +4733 Meiyerditch citizen +4734 Meiyerditch citizen +4735 Meiyerditch citizen +4736 Meiyerditch citizen +4737 Meiyerditch citizen +4738 Meiyerditch citizen +4739 Meiyerditch citizen +4740 Meiyerditch citizen +4741 Meiyerditch citizen +4742 Meiyerditch citizen +4743 Meiyerditch citizen +4744 Meiyerditch citizen +4745 Meiyerditch citizen +4746 A Meiyerditch child +4747 A Meiyerditch child +4748 A Meiyerditch child +4749 A Meiyerditch child +4750 A Meiyerditch child +4751 A Meiyerditch child +4752 A Meiyerditch child +4753 A Meiyerditch child +4754 A Meiyerditch child +4755 A Meiyerditch child +4756 Meiyerditch miner +4757 Meiyerditch miner +4758 Meiyerditch miner +4759 Meiyerditch miner +4760 Meiyerditch miner +4761 Meiyerditch miner +4762 Shadowy figure +4763 Shadowy figure +4764 Shadowy figure +4766 Stray dog +4767 Stray dog +4768 Cat +4769 Cat +4770 Boat +4771 Boat +4772 Juvinate guard +4773 Juvinate guard +4774 Vampyre juvenile +4775 Vampyre juvenile +4776 Vampyre juvinate +4777 Vampyre juvinate +4778 Held vampyre juvenile +4779 Held vampyre juvenile +4780 Held vampyre juvinate +4781 Held vampyre juvinate +4782 Vampyre juvinate +4783 Former vampyre +4784 Former vampyre +4785 Former vampyre +4786 Former vampyre +4787 Former vampyre +4788 Former vampyre +4789 Angry vampyre +4790 Angry vampyre +4791 Vanstrom Klause +4792 Vanstrom Klause +4793 Vanstrom Klause +4794 Vanstrom Klause +4795 Vanstrom Klause +4796 Vanstrom Klause +4797 Vanescula Drakan +4798 Vanescula Drakan +4799 Vanescula Drakan +4800 Vanescula Drakan +4801 Ranis Drakan +4802 Ranis Drakan +4803 Ranis Drakan +4804 Ranis Drakan +4805 Vyrewatch +4806 Vyrewatch +4807 Vyrewatch +4808 Vyrewatch +4809 Flying female vampire +4810 Flying female vampire +4811 Flying female vampire +4812 Flying female vampire +4813 Vyrewatch +4814 Vyrewatch +4815 Vyrewatch +4816 Vyrewatch +4817 Vyrewatch +4818 Vyrewatch +4819 Vyrewatch +4820 Vyrewatch +4821 Vyrewatch +4822 Vyrewatch +4823 Vyrewatch +4824 Vyrewatch +4825 Vyrewatch +4826 Vyrewatch +4827 Vyrewatch +4828 Vyrewatch +4829 Vyrewatch +4830 Vyrewatch +4831 Vyrewatch +4832 Vyrewatch +4833 Vyrewatch +4834 Vyrewatch +4835 Vyrewatch +4836 Vyrewatch +4837 Vyrewatch +4838 Vyrewatch +4839 Vyrewatch +4840 Vyrewatch +4841 Vyrewatch +4842 Vyrewatch +4843 Vyrewatch +4844 Vyrewatch +4845 Flying female vampire +4846 Flying female vampire +4847 Flying female vampire +4848 Flying female vampire +4849 Vyrewatch +4850 Vyrewatch +4851 Vyrewatch +4852 Vyrewatch +4856 Ezekial Lovecraft +4861 Sarius Guile +4862 Vanstrom Klause +4863 Kennith +4864 Kennith +4866 Holgart +4867 Holgart +4868 Holgart +4870 Fisherman +4872 Col. O'Niall +4873 Col. O'Niall +4874 Mayor Hobb +4875 Mayor Hobb +4878 Brother Maledict +4879 Brother Maledict +4883 Witchaven villager +4884 Witchaven villager +4885 Witchaven villager +4886 Witchaven villager +4887 Witchaven villager +4888 Witchaven villager +4889 Mother Mallum +4890 Slug Prince +4892 Giant lobster +4893 Giant Lobster +4894 Sea slug +4895 Jeb +4896 Jeb +4897 Sir Tinley +4898 Hobgoblin +4899 Cooking Tutor +4900 Crafting Tutor +4901 Fishing Tutor +4902 Mining Tutor +4903 Prayer Tutor +4904 Smelting Tutor +4905 Smithing Tutor +4906 Woodcutting Tutor +4907 Bank Tutor +4908 Fishing spot +4909 Fritz the Glassblower +4910 Earth elemental +4911 Elemental rock +4913 Jig cart +4914 Jig cart +4915 Jig cart +4916 Jig cart +4917 Jig cart +4918 Jig cart +4919 Abidor Crank +4920 Giant crypt rat +4921 Giant crypt rat +4922 Giant rat +4923 Giant rat +4924 Giant rat +4925 Giant rat +4926 Giant rat +4927 Giant rat +4928 Dungeon rat +4929 Dungeon rat +4930 Goat +4931 Goat +4932 Billy Goat +4933 Goat +4934 Goat +4935 Billy Goat +4936 Dungeon rat +4937 Dungeon rat +4938 Angry giant rat +4939 Angry giant rat +4940 Angry giant rat +4941 Blessed giant rat +4942 Giant rat +4943 Giant rat +4944 Giant rat +4945 Giant rat +4946 Ignatius Vulcan +4947 My Arm +4948 My Arm +4949 My Arm +4957 My Arm +4958 My Arm +4959 My Arm +4960 Adventurer +4962 Captain Barnaby +4963 Murcaily +4964 Jagbakoba +4965 Tool Leprechaun +4967 Flies +4968 Unnamed troll child +4969 Drunken dwarf's leg +4971 Baby Roc +4972 Giant Roc +4973 Shadow +4974 Captain Barnaby +4975 Male slave +4976 Male slave +4977 Female slave +4978 Female slave +4979 Cart Camel +4980 Mine Cart +4981 Mine Cart +4982 Ana +4983 Mercenary +4988 Irena +4989 Mercenary +4990 Mercenary +4991 Mercenary +4992 Mercenary +4993 Guard +4994 Guard +4995 Guard +4996 Guard +4997 Guard +4998 Guard +4999 Guard +5000 Guard +5001 Guard +5002 Guard +5017 Gublinch +5018 Gublinch +5019 Gublinch +5023 Jack +5024 Jill +5025 Jeff +5026 Egg launcher +5027 Egg launcher +5028 Egg launcher +5029 Commander Connad +5030 Captain Cain +5031 Private Paldo +5032 Private Pendron +5033 Private Pierreb +5034 Private Paldon +5035 Major Attack +5036 Major Collect +5037 Major Defend +5038 Major Heal +5039 Sergeant Sambur +5040 Penance Fighter +5041 Penance Ranger +5042 Penance Runner +5043 Penance Healer +5044 Penance Fighter +5045 Penance Fighter +5046 Jack +5047 Jill +5048 Jeff +5049 Auguste +5050 Auguste +5051 Auguste +5052 Auguste +5053 Assistant Serf +5054 Assistant Brock +5055 Assistant Marrow +5056 Assistant Le Smith +5057 Assistant Stan +5058 Bob +5059 Curly +5060 Moe +5061 Larry +5067 Shark +5068 Shark +5069 Shark +5072 Tropical wagtail +5073 Crimson swift +5074 Cerulean twitch +5075 Golden warbler +5076 Copper longtail +5079 Chinchompa +5080 Carnivorous chinchompa +5081 Ferret +5082 Black warlock +5083 Snowy knight +5084 Sapphire glacialis +5085 Ruby harvest +5086 Prickly kebbit +5087 Sabre-toothed kebbit +5088 Barb-tailed kebbit +5089 Wild kebbit +5092 Matthias +5093 Matthias +5094 Gyr Falcon +5095 Gyr Falcon +5096 Gyr Falcon +5097 Gyr Falcon +5098 Spotted kebbit +5099 Dark kebbit +5100 Dashing kebbit +5103 Sabre-toothed kyatt +5104 Spined larupia +5105 Horned graahk +5109 Artimeus +5110 Aleck +5111 Leon +5112 Hunting expert +5113 Hunting expert +5114 Orange salamander +5115 Red salamander +5116 Black salamander +5117 Swamp lizard +5120 Eagle +5121 Eagle +5122 Eagle +5123 Eagle +5126 Nickolaus +5127 Nickolaus +5128 Nickolaus +5129 Nickolaus +5130 Desert eagle +5131 Jungle eagle +5132 Polar eagle +5133 Eagle +5137 Kebbit +5138 Charlie +5140 Boulder +5141 Uri +5142 Uri +5143 Uri +5144 Double agent +5145 Double agent +5146 Li'l lamb +5147 Lamb +5148 Sheep +5149 Sheep +5150 Sheep +5151 Sheep +5152 Sheep +5153 Sheep +5154 Sheep +5155 Sheep +5156 Sheep +5157 Sheep +5158 Sheep +5159 Sheep +5160 Sheep +5161 Sheep +5162 Sheep +5163 Sheep +5164 Sheep +5165 Sheep +5166 Mountain Goat +5167 Mountain Goat +5168 Ram +5169 Ram +5170 Ram +5171 Mountain goat +5172 Golden sheep +5173 Golden sheep +5174 Ogre chieftain +5176 Ogre shaman +5177 Ogre shaman +5178 Blue dragon +5179 Elkoy +5181 Ogre shaman +5182 Elkoy +5184 Ogre shaman +5185 Biggleswade +5187 Ogre shaman +5188 Saff Waldon +5190 Ogre shaman +5193 Ogre shaman +5195 Wizard +5196 Wizard +5197 Wizard +5198 Ava +5200 Witch +5202 Alice's husband +5203 Alice's husband +5204 Alice's husband +5205 Alice's husband +5207 Tree +5208 Undead tree +5209 Sneaky undead fowl +5210 Cow1337killr +5211 Undead cow +5212 Alice +5213 Penance Fighter +5214 Penance Fighter +5215 Penance Fighter +5216 Penance Fighter +5217 Penance Fighter +5218 Penance Fighter +5219 Penance Fighter +5220 Penance Runner +5221 Penance Runner +5222 Penance Runner +5223 Penance Runner +5224 Penance Runner +5225 Penance Runner +5226 Penance Runner +5227 Penance Runner +5228 Penance Runner +5229 Penance Ranger +5230 Penance Ranger +5231 Penance Ranger +5232 Penance Ranger +5233 Penance Ranger +5234 Penance Ranger +5235 Penance Ranger +5236 Penance Ranger +5237 Penance Ranger +5238 Penance Healer +5239 Penance Healer +5240 Penance Healer +5241 Penance Healer +5242 Penance Healer +5243 Penance Healer +5244 Penance Healer +5245 Penance Healer +5246 Penance Healer +5247 Penance Queen +5248 Queen spawn +5249 Captain Errdo +5250 Scarab mage +5251 Locust rider +5252 Locust rider +5253 Giant scarab +5254 Scarab mage +5255 Locust rider +5256 Locust rider +5258 Banker +5260 Banker +5262 Stonemason +5264 Nathifa +5266 Urbi +5268 Jamila +5270 Sophanem guard +5272 Sophanem guard +5274 Sophanem guard +5276 Sophanem guard +5277 Menaphite guard +5278 Coenus +5279 Jex +5281 Maisa +5284 Osman +5285 Osman +5286 Osman +5287 Osman +5288 Embalmer +5289 Carpenter +5290 Linen worker +5291 Priest +5292 Giant scarab +5293 Zombie +5294 Zombie +5295 Zombie +5296 Zombie +5297 Zombie +5298 Zombie +5299 Zombie +5300 Zombie +5301 Zombie +5302 Zombie +5303 Zombie +5304 Zombie +5305 Zombie +5306 Zombie +5307 Zombie +5308 Zombie +5309 Zombie +5310 Zombie +5311 Zombie +5312 Zombie +5313 Zombie +5314 Zombie +5315 Zombie +5316 Zombie +5317 Zombie +5318 Zombie +5319 Zombie +5320 Zombie +5321 Zombie +5322 Zombie +5323 Zombie +5324 Zombie +5325 Zombie +5326 Zombie +5327 Zombie +5328 Zombie +5329 Zombie +5330 Zombie +5331 Zombie +5332 Skeleton +5333 Skeleton +5334 Skeleton +5335 Skeleton +5336 Skeleton +5337 Skeleton +5338 Skeleton +5339 Skeleton +5340 Skeleton +5341 Skeleton +5342 Ghost +5343 Ghost +5344 Ghost +5345 Ghost +5346 Ghost +5347 Ghost +5348 Ghost +5349 Ghost +5350 Ghost +5351 Ghost +5352 Ghost +5353 Undead one +5354 Undead one +5355 Undead one +5356 Undead one +5357 Undead one +5358 Undead one +5359 Giant skeleton +5360 Mummy ashes +5361 Waterfiend +5362 Brutal green dragon +5363 Mithril dragon +5364 Confused barbarian +5365 Skeleton +5366 Skeleton +5367 Skeleton +5368 Skeleton +5369 Ghost +5370 Ghost +5371 Ghost +5372 Ghost +5373 Ghost +5374 Ghost +5375 Zombie +5376 Zombie +5377 Zombie +5378 Zombie +5379 Zombie +5380 Zombie +5381 Skeleton +5382 Animated steel armour +5383 Odovacar +5384 Giant skeleton +5385 Skeleton +5386 Skeleton +5387 Skeleton +5388 Skeleton +5389 Skeleton +5390 Skeleton +5391 Skeleton +5392 Skeleton +5393 Zombie +5394 Zombie +5395 Zombie +5396 Zombie +5397 Zombie +5398 Zombie +5399 Zombie +5400 Zombie +5401 Zombie +5402 Zombie +5403 Zombie +5404 Zombie +5405 Zombie +5406 Zombie +5407 Zombie +5408 Zombie +5409 Zombie +5410 Zombie +5411 Skeleton +5412 Skeleton +5413 Possessed pickaxe +5414 Animated spade +5415 Terror dog statue +5416 Terror dog statue +5417 Terror dog +5418 Terror dog +5419 Tarn +5420 Tarn +5421 Mutant tarn +5422 Skeleton +5424 Larry +5425 Larry +5426 Larry +5428 Penguin +5429 Penguin +5430 Penguin +5431 KGP Guard +5432 Pescaling Pax +5433 Ping +5434 Ping +5435 Pong +5436 Pong +5437 Ping +5438 Pong +5441 KGP Agent +5442 KGP Agent +5444 Noodle +5445 Penguin +5446 Penguin suit +5447 Agility Instructor +5448 Army Commander +5449 Penguin +5450 Penguin +5451 Penguin +5452 Icelord +5453 Icelord +5454 Icelord +5455 Icelord +5456 Crusher +5457 Crusher +5458 Crusher +5459 Crusher +5460 Tree +5461 Jungle Tree +5462 Tolna +5463 Honour guard +5464 Honour guard +5465 Fridleif Shieldson +5466 Thakkrad Sigmundson +5467 Iceberg +5468 Iceberg +5469 Arctic Pine +5470 Fishing spot +5471 Fishing spot +5472 Ice Troll King +5473 Ice troll runt +5474 Ice troll male +5475 Ice troll female +5476 Ice troll grunt +5477 Bork Sigmundson +5478 King Gjuki Sorvott IV +5479 HRH Hrafn +5480 Thorkel Silkbeard +5481 Mord Gunnars +5482 Mord Gunnars +5483 Hring Hring +5484 Flosi Dalksson +5485 Raum Urda-Stein +5486 Skuli Myrka +5487 Keepa Kettilon +5488 Magnus Gram +5489 Guard +5490 Guard +5491 Guard +5492 Guard +5493 Freygerd +5494 Lensa +5495 Vanligga Gastfrihet +5496 Sassilik +5497 Miner +5498 Miner +5499 Eric +5500 Gruva Patrull +5501 Brendt +5502 Grundt +5503 Mawnis Burowgar +5504 Mawnis Burowgar +5505 Fridleif Shieldson +5506 Thakkrad Sigmundson +5507 Maria Gunnars +5508 Maria Gunnars +5509 Jofridr Mordstatter +5510 Morten Holdstrom +5511 Gunnar Holdstrom +5512 Anne Isaakson +5513 Lisse Isaakson +5514 Honour guard +5515 Honour guard +5516 Honour guard +5517 Honour guard +5518 Kjedelig Uppsen +5519 Trogen Konungarde +5520 Slug Hemligssen +5521 Ice troll runt +5522 Ice troll male +5523 Ice troll female +5524 Ice troll grunt +5525 Ice troll runt +5526 Ice troll male +5527 Ice troll female +5528 Ice troll grunt +5529 Yak +5531 Sorceress +5532 Apprentice +5533 Autumn Elemental +5534 Autumn Elemental +5535 Autumn Elemental +5536 Autumn Elemental +5537 Autumn Elemental +5538 Autumn Elemental +5539 Spring Elemental +5540 Spring Elemental +5541 Spring Elemental +5542 Spring Elemental +5543 Spring Elemental +5544 Spring Elemental +5545 Spring Elemental +5546 Spring Elemental +5547 Summer Elemental +5548 Summer Elemental +5549 Summer Elemental +5550 Summer Elemental +5551 Summer Elemental +5552 Summer Elemental +5553 Winter Elemental +5554 Winter Elemental +5555 Winter Elemental +5556 Winter Elemental +5557 Winter Elemental +5558 Winter Elemental +5559 Osman +5560 Osman +5561 Osman +5563 Del-Monty +5564 Bouncer +5565 Bouncer +5566 General Khazard +5567 Scout +5568 Scout +5569 Scout +5570 Scout +5571 Sin Seer +5572 Ghost +5578 Effigy +5579 Effigy +5580 Bonafido +5581 Homunculus +5582 Homunculus +5583 Homunculus +5584 Cage +5585 'Transmute' The Alchemist +5586 'Transmute' The Alchemist +5587 'Currency' The Alchemist +5588 'Currency' The Alchemist +5589 'Black-eye' +5590 'No fingers' +5591 'Gummy' +5592 'The Guns' +5593 Frogeel +5594 Spidine +5595 Swordchick +5596 Jubster +5597 Newtroost +5603 Unicow +5604 Elfinlocks +5605 Clockwork cat +5607 Clockwork cat +5608 Monk +5609 Monk +5610 Monk +5611 Monk +5612 Rufus +5613 Mi-Gor +5614 Puffin +5615 Puffin +5616 Brother Tranquility +5617 Brother Tranquility +5618 Brother Tranquility +5619 Monk +5620 Monk +5621 Monk +5622 Monk +5623 Zombie monk +5624 Zombie monk +5625 Zombie monk +5626 Zombie monk +5627 Sorebones +5628 Sorebones +5629 Zombie pirate +5630 Zombie pirate +5631 Zombie pirate +5632 Zombie pirate +5633 Zombie pirate +5634 Zombie pirate +5635 Zombie pirate +5636 Zombie pirate +5637 Zombie pirate +5638 Zombie pirate +5639 Zombie pirate +5640 Zombie pirate +5641 Zombie pirate +5642 Zombie pirate +5643 Zombie pirate +5644 Zombie pirate +5645 Zombie pirate +5646 Zombie pirate +5647 Zombie pirate +5648 Zombie pirate +5649 Zombie pirate +5650 Zombie pirate +5651 Zombie pirate +5652 Zombie pirate +5653 Zombie pirate +5654 Zombie pirate +5655 Zombie pirate +5656 Zombie pirate +5657 Zombie pirate +5658 Zombie pirate +5659 Zombie pirate +5660 Zombie pirate +5661 Zombie pirate +5662 Zombie pirate +5663 Zombie pirate +5664 Zombie pirate +5665 Zombie pirate +5666 Barrelchest +5678 Undead Lumberjack +5679 Undead Lumberjack +5680 Undead Lumberjack +5681 Undead Lumberjack +5682 Undead Lumberjack +5683 Undead Lumberjack +5684 Undead Lumberjack +5685 Undead Lumberjack +5686 Undead Lumberjack +5687 Undead Lumberjack +5688 Undead Lumberjack +5689 Undead Lumberjack +5690 Undead Lumberjack +5691 Undead Lumberjack +5692 Undead Lumberjack +5693 Undead Lumberjack +5694 Undead Lumberjack +5695 Undead Lumberjack +5696 Undead Lumberjack +5697 Undead Lumberjack +5698 Undead Lumberjack +5699 Undead Lumberjack +5700 Undead Lumberjack +5701 Undead Lumberjack +5702 Undead Lumberjack +5703 Undead Lumberjack +5704 Undead Lumberjack +5705 Undead Lumberjack +5706 Undead Lumberjack +5707 Undead Lumberjack +5708 Undead Lumberjack +5709 Undead Lumberjack +5710 Undead Lumberjack +5711 Undead Lumberjack +5712 Undead Lumberjack +5713 Undead Lumberjack +5714 Undead Lumberjack +5715 Undead Lumberjack +5716 Undead Lumberjack +5717 Undead Lumberjack +5718 Undead Lumberjack +5719 Undead Lumberjack +5720 Undead Lumberjack +5721 Undead Lumberjack +5722 Undead Lumberjack +5723 Undead Lumberjack +5724 Undead Lumberjack +5725 Undead Lumberjack +5726 Undead Lumberjack +5727 Undead Lumberjack +5728 Undead Lumberjack +5729 Undead Lumberjack +5730 Undead Lumberjack +5731 Undead Lumberjack +5732 Undead Lumberjack +5733 Undead Lumberjack +5734 Undead Lumberjack +5735 Undead Lumberjack +5736 Undead Lumberjack +5737 Undead Lumberjack +5738 Undead Lumberjack +5739 Undead Lumberjack +5740 Undead Lumberjack +5741 Undead Lumberjack +5742 Undead Lumberjack +5743 Undead Lumberjack +5744 Undead Lumberjack +5745 Undead Lumberjack +5746 Undead Lumberjack +5747 Undead Lumberjack +5748 Fishing spot +5749 Fishing spot +5750 Cave bug +5751 Molanisk +5752 Cave goblin +5753 Cave goblin +5754 Cave goblin +5755 Cave goblin +5756 Cave goblin +5757 Cave goblin +5758 Cave goblin +5759 Cave goblin +5760 Cave goblin +5761 Cave goblin +5762 Cave goblin +5763 Cave goblin +5764 Cave goblin +5765 Cave goblin +5766 Cave goblin +5767 Cave goblin +5768 Cave goblin +5769 Cave goblin +5770 Ur-zek +5771 Ur-vass +5772 Ur-taal +5773 Ur-meg +5774 Ur-lun +5775 Ur-pel +5776 Banker +5777 Banker +5778 Bartak +5779 Turgall +5780 Reldak +5781 Miltog +5782 Mernik +5783 Cave goblin +5784 Crate goblin +5785 Cave goblin +5786 Goblin scribe +5788 Gourmet +5789 Gourmet +5790 Gourmet +5791 Gourmet +5792 Turgok +5793 Markog +5794 Durgok +5795 Tindar +5796 Gundik +5797 Zenkog +5798 Lurgon +5799 Ur-tag +5800 Guard +5801 Guard +5803 Young 'un +5804 Tyke +5805 Nipper +5806 Nipper +5807 Cave goblin child +5808 Cave goblin child +5809 Cave goblin child +5810 Cave goblin child +5811 Cave goblin child +5812 Cave goblin child +5813 Cave goblin child +5814 Cave goblin child +5815 Cave goblin child +5816 Cave goblin child +5817 Cave goblin child +5818 Cave goblin child +5819 Cave goblin child +5820 Cave goblin child +5821 Cave goblin child +5822 Cave goblin child +5823 Spit goblin +5824 Goblin fish +5825 Movario +5826 Darve +5827 Moths +5828 Barlak +5829 Rabbit +5833 Rat Burgiss +5834 Surok Magis +5835 Surok Magis +5836 Zaff +5837 Anna Jones +5838 King Roald +5839 Mishkal'un Dorn +5840 Dakh'thoulan Aegis +5841 Sil'as Dahcsnu +5842 Outlaw +5843 Outlaw +5844 Outlaw +5845 Outlaw +5846 Outlaw +5847 Outlaw +5848 Outlaw +5849 Outlaw +5850 Outlaw +5851 Outlaw +5852 Monkey +5854 Bench +5855 Goblin +5856 Goblin +5857 Zanik +5858 Ur-tag +5859 H.A.M. Archer +5860 H.A.M. Mage +5861 Zanik +5862 Sigmund and Zanik +5863 Ambassador Alvijar +5864 Builder +5865 Builder +5866 Builder +5867 Builder +5868 Tegdak +5870 Zanik +5871 Sergeant Mossfists +5872 Sergeant Slimetoes +5873 Cave goblin +5874 Cave goblin +5875 Cave goblin +5876 Cave goblin +5877 Cave goblin +5878 Cave goblin +5879 Ticket goblin +5880 Dwarf +5881 Dwarf +5882 Dwarf +5883 Dwarf +5884 Dwarf +5885 Dwarf +5886 Ticket dwarf +5893 Cyrisus +5894 Cyrisus +5895 Cyrisus +5896 Cyrisus +5897 Cyrisus +5898 'Bird's-Eye' Jack +5902 The Inadequacy +5903 The Everlasting +5904 The Untouchable +5905 The Illusive +5906 A Doubt +5907 The Illusive +5908 Dying tree +5909 Barbarian +5910 Cook +5911 Cook +5912 Banker +5913 Banker +5914 Iffie +5915 Elsie +5916 Cleaner +5917 Stray dog +5918 Stray dog +5919 Guard +5920 Guard +5921 Trainee Guard +5922 Captain +5923 Man +5924 Woman +5925 Benny +5926 Thief +5927 Thief +5928 Thief +5929 Thief +5930 Art Critic Jacques +5931 Historian Minas +5932 Barnabus Hurma +5933 Marius Giste +5934 Caden Azro +5935 Thias Leacke +5936 Sinco Doar +5937 Tinse Torpe +5938 Information clerk +5939 Torrcs +5940 Marfet +5941 Museum guard +5942 Museum guard +5943 Museum guard +5944 Teacher and pupil +5945 Schoolboy +5946 Schoolboy +5947 Teacher and pupil +5948 Teacher and pupil +5949 Schoolboy +5950 Teacher +5951 Schoolgirl +5952 Workman +5953 Workman +5954 Workman +5955 Workman +5956 Void Knight +5957 Schoolgirl +5958 Digsite workman +5959 Barge workman +5960 Barge workman +5961 Barge workman +5962 Barge workman +5963 Barge foreman +5964 Ed Wood +5965 Orlando Smith +5966 Natural historian +5967 Natural historian +5968 Natural historian +5969 Natural historian +5970 Natural historian +5971 Leech display +5972 Sea slugs display +5973 Snail display +5974 Monkey display +5975 Lizard display +5976 Penguin display +5977 Camel display +5978 Terrorbird display +5979 Dragon display +5980 Wyvern display +5981 Battle tortoise display +5982 Mole display +5983 Schoolgirl +5984 Schoolgirl +5985 Schoolgirl +5986 Workman +5987 Sylas +5988 Miazrqa +5989 Grimgnash +5990 Rupert the Beard +5991 Drain pipe +5992 Rupert the Beard +5993 Experiment No.2 +5994 Mouse +5995 Mouse +5996 Glod +5999 Rupert the Beard +6001 Rupert the Beard +6002 Gnome +6003 Winkin +6004 Gnome +6005 Cage +6006 Werewolf +6007 Werewolf +6008 Werewolf +6009 Werewolf +6010 Werewolf +6011 Werewolf +6012 Werewolf +6013 Werewolf +6014 Werewolf +6015 Werewolf +6016 Werewolf +6017 Werewolf +6018 Werewolf +6019 Werewolf +6020 Werewolf +6021 Werewolf +6022 Werewolf +6023 Werewolf +6024 Werewolf +6025 Werewolf +6026 Boris +6027 Imre +6028 Yuri +6029 Joseph +6030 Nikolai +6031 Eduard +6032 Lev +6033 Georgy +6034 Svetlana +6035 Irina +6036 Alexis +6037 Milla +6038 Galina +6039 Sofiya +6040 Ksenia +6041 Yadviga +6042 Nikita +6043 Vera +6044 Zoja +6045 Liliya +6046 Big Wolf +6047 Wolf +6048 Wolf +6049 Wolf +6050 Desert Wolf +6051 Desert Wolf +6052 Ice wolf +6053 Ninja impling +6054 Dragon impling +6055 Baby impling +6056 Young impling +6057 Gourmet impling +6058 Earth impling +6059 Essence impling +6060 Eclectic impling +6061 Nature impling +6062 Magpie impling +6063 Ninja impling +6064 Dragon impling +6070 Elnock Inquisitor +6071 Immenizz +6072 Fairy Aeryka +6073 Wandering impling +6074 Imp defender +6078 Cyclops +6079 Cyclops +6080 Cyclops +6081 Cyclops +6084 Captain Ned +6085 Cabin boy Jenkins +6086 Cabin boy Jenkins +6087 Elvarg +6088 Zombie rat +6089 Zombie rat +6090 Zombie rat +6091 Skeleton +6092 Skeleton +6093 Skeleton +6094 Ghost +6095 Ghost +6096 Ghost +6097 Ghost +6098 Ghost +6099 Zombie +6100 Zombie +6101 Lesser demon +6102 Lost barbarian +6103 Skeleton hero +6104 Skeleton brute +6105 Skeleton warlord +6106 Skeleton heavy +6107 Skeleton thug +6108 Entrana firebird +6109 Mounted terrorbird gnome +6110 Mounted terrorbird gnome +6111 Mounted terrorbird gnome +6112 Ducklings +6113 Duck +6114 Drake +6115 Seagull +6116 Seagull +6117 Mr. Mordaut +6118 Observatory assistant +6121 Observatory professor +6122 Sleeping guard +6123 Naghead +6124 Wagchin +6125 Goblin +6126 Goblin +6127 Greasycheeks +6128 Smellytoes +6129 Creakyknees +6130 Clothears +6131 Zombie +6132 Goblin +6133 Goblin +6134 Dunce +6135 Town crier +6136 Town crier +6137 Town crier +6138 Town crier +6139 Town crier +6140 Squire (Intermediate) +6141 Squire (Veteran) +6142 Portal +6143 Portal +6144 Portal +6145 Portal +6146 Portal +6147 Portal +6148 Portal +6149 Portal +6150 Portal +6151 Portal +6152 Portal +6153 Portal +6154 Portal +6155 Portal +6156 Portal +6157 Portal +6158 Sir Lucan +6159 Workman +6160 Sir Lancelot +6161 Sir Bedivere +6162 Sir Tristram +6163 Sir Pelleas +6164 Sir Gawain +6165 Sir Kay +6166 Sir Pelleas +6167 Sir Gawain +6168 Sir Kay +6169 Squire +6170 Sir Lancelot +6171 Sir Kay +6172 Sir Gawain +6173 Sir Lucan +6174 Bandit +6175 Sir Tristram +6176 Sir Pelleas +6177 Sir Bedivere +6178 Anna +6179 David +6180 Anna +6181 Court judge +6182 Jury +6183 Guard +6184 Guard +6185 Prosecutor +6187 Morgan Le Faye +6188 Renegade knight +6189 Black Knight +6190 Guard +6198 Sinclair +6200 Banker +6201 Knight +6203 K'ril Tsutsaroth +6204 Tstanon Karlak +6206 Zakl'n Gritch +6208 Balfrug Kreeyath +6210 Hellhound +6211 Imp +6212 Werewolf +6213 Werewolf +6214 Vampire +6215 Bloodveld +6216 Pyrefiend +6217 Icefiend +6218 Gorak +6219 Spiritual warrior +6220 Spiritual ranger +6221 Spiritual mage +6222 Kree'arra +6223 Wingman Skree +6225 Flockleader Geerin +6227 Flight Kilisa +6229 Spiritual warrior +6230 Spiritual ranger +6231 Spiritual mage +6232 Aviansie +6233 Aviansie +6234 Aviansie +6235 Aviansie +6236 Aviansie +6237 Aviansie +6238 Aviansie +6239 Aviansie +6240 Aviansie +6241 Aviansie +6242 Aviansie +6243 Aviansie +6244 Aviansie +6245 Aviansie +6246 Aviansie +6247 Commander Zilyana +6248 Starlight +6250 Growler +6252 Bree +6254 Saradomin priest +6255 Spiritual warrior +6256 Spiritual ranger +6257 Spiritual mage +6258 Knight of Saradomin +6259 Knight of Saradomin +6260 General Graardor +6261 Sergeant Strongstack +6263 Sergeant Steelwill +6265 Sergeant Grimspike +6267 Fishing spot +6268 Jogre +6269 Cyclops +6270 Cyclops +6271 Ork +6272 Ork +6273 Ork +6274 Ork +6275 Hobgoblin +6276 Spiritual ranger +6277 Spiritual warrior +6278 Spiritual mage +6279 Goblin +6280 Goblin +6281 Goblin +6282 Goblin +6283 Goblin +6285 Warped terrorbird +6286 Warped terrorbird +6287 Warped terrorbird +6288 Warped terrorbird +6289 Warped terrorbird +6290 Warped terrorbird +6291 Warped terrorbird +6292 Warped terrorbird +6293 Warped terrorbird +6294 Warped terrorbird +6295 Warped terrorbird +6296 Warped tortoise +6297 Warped tortoise +6298 Jeffery +6299 Big monolith +6300 Small monolith +6301 Cute creature +6302 Evil creature +6303 Yewnock the engineer +6304 Bolrie +6305 Hazelmere +6306 Bolrie +6307 Advisor +6308 King Argenthorg +6309 Prince Argenthorg +6311 Cute creature +6312 Evil creature +6313 Terrorbird servant +6314 Guard no. 21 +6315 Guard no. 72 +6316 Guard no. 21 +6317 Guard no. 72 +6318 Longramble +6320 Spirit tree +6321 Spirit tree +6322 Warped terrorbird +6323 Warped terrorbird +6324 Warped terrorbird +6325 Warped terrorbird +6326 Warped terrorbird +6327 Warped terrorbird +6328 Warped terrorbird +6329 Warped terrorbird +6330 Warped terrorbird +6331 Warped terrorbird +6332 Warped terrorbird +6334 Child +6335 Child +6336 Child +6337 Child +6338 Child +6339 Child +6340 Child +6341 Child +6342 Child +6343 Child +6344 Child +6345 Child +6346 Pirate +6347 Pirate +6348 Pirate +6349 Pirate +6350 Pirate +6351 Pirate +6352 Pirate +6353 Pirate +6354 Pirate +6355 Pirate +6356 Pirate +6357 Street urchin +6358 Street urchin +6359 Street urchin +6360 Street urchin +6361 Street urchin +6362 Eniola +6363 Zamorak warrior +6364 Zamorak warrior +6365 Zamorak ranger +6366 Zamorak ranger +6367 Zamorak mage +6368 Zamorak mage +6369 Cave lizard +6370 Mage of Zamorak +6371 Zamorak crafter +6372 Zamorak crafter +6373 Kennith +6374 Guard dog +6375 Wizard Cromperty +6376 Jungle spider +6377 Jungle spider +6378 Tenacious toucan +6379 Giant ant worker +6380 Giant ant soldier +6381 Giant wasp +6382 Pernicious parrot +6383 Giant wasp +6384 Karamjan Jungle Eagle +6385 Karamjan Jungle eagle +6388 Bandit +6389 Gargoyle +6390 Grim Reaper +6391 Glough +6392 Oldak +6393 Zanik +6395 Zanik +6397 Zanik +6399 Zanik +6401 Oldak +6402 Goblin +6403 Goblin +6404 Goblin +6405 Goblin +6406 Goblin +6407 Goblin +6408 Goblin +6409 Goblin +6410 Goblin +6411 Goblin +6412 Goblin +6413 Goblin +6414 Goblin +6415 Goblin +6416 Goblin +6417 Goblin +6418 Goblin +6419 Goblin +6420 Goblin +6421 Goblin +6422 Goblin +6423 Goblin +6424 Goblin +6425 Goblin +6426 Goblin +6427 Goblin +6428 Goblin +6429 Goblin +6430 Goblin +6431 Goblin +6432 Goblin +6433 Goblin +6434 Goblin +6435 Goblin +6436 Goblin +6437 Goblin +6438 Goblin +6439 Goblin +6440 Goblin +6441 Goblin +6442 Goblin +6443 Goblin +6444 Goblin +6445 Goblin +6446 Goblin +6447 Goblin +6448 Goblin +6449 Goblin +6450 Goblin +6451 Goblin +6452 Goblin +6453 Goblin +6454 Goblin +6455 Goblin +6456 Goblin +6457 Goblin +6458 Goblin +6459 Goblin +6460 Goblin +6461 Goblin +6462 Goblin +6463 Goblin +6464 Goblin +6465 Goblin +6466 Goblin +6467 Goblin +6468 Skoblin +6469 Snothead +6470 Snailfeet +6471 Mosschin +6472 Redeyes +6473 Strongbones +6474 Snothead +6475 Snailfeet +6476 Mosschin +6477 Redeyes +6478 Strongbones +6479 Grubfoot +6481 Grubfoot +6482 Priest +6483 Priest +6484 Priest +6485 Priest +6486 Priest +6487 Priest +6488 Preacher +6489 High priest +6490 Goblin +6491 Goblin +6492 Goblin +6493 Goblin +6494 Goblin +6495 Goblin +6496 Goblin guard +6497 Goblin guard +6498 Guard +6499 Guard +6500 Guard +6501 Guard +6502 Guard +6503 Guard +6504 Ghost +6506 Registrar 1 +6507 Registrar 2 +6508 Registrar 3 +6509 Registrar 4 +6510 Jury +6511 Jury +6512 Spectator +6513 Spectator +6514 Spectator +6515 Spectator +6516 Spectator +6517 Spectator +6518 Spectator +6519 Spectator +6520 Head Registrar +6521 Grand Exchange Tutor +6522 Brugsen Bursen +6523 Farid Morrisane (ores) +6524 Bob Barter (herbs) +6525 Murky Matt (runes) +6526 Relobo Blinyo (logs) +6527 Hofuthand (armour and weapons) +6528 Grand Exchange clerk +6529 Grand Exchange clerk +6530 Grand Exchange clerk +6531 Grand Exchange clerk +6532 Banker +6533 Banker +6534 Banker +6535 Banker +6536 Registrar 5 +6537 Mandrith +6538 Banker +6539 Charley the Cleaner +6540 Scotty the Cleaner +6541 Sanchez the Cleaner +6542 Calladin +6565 Grave marker +6566 Broken grave marker +6567 Collapsing grave marker +6568 Grave marker +6569 Broken grave marker +6570 Collapsing grave marker +6571 Gravestone +6572 Broken gravestone +6573 Collapsing gravestone +6574 Gravestone +6575 Broken gravestone +6576 Collapsing gravestone +6577 Gravestone +6578 Broken gravestone +6579 Collapsing gravestone +6580 Stele +6581 Broken stele +6582 Collapsing stele +6583 Saradomin symbol +6584 Broken Saradomin symbol +6585 Collapsing Saradomin symbol +6586 Zamorak symbol +6587 Broken Zamorak symbol +6588 Collapsing Zamorak symbol +6589 Guthix symbol +6590 Broken Guthix symbol +6591 Collapsing Guthix symbol +6592 Bandos symbol +6593 Broken Bandos symbol +6594 Collapsing Bandos symbol +6595 Armadyl symbol +6596 Broken Armadyl symbol +6597 Collapsing Armadyl symbol +6598 Memorial stone +6599 Broken memorial stone +6600 Collapsing memorial stone +6601 Memorial stone +6602 Broken memorial stone +6603 Collapsing memorial stone +6604 Revenant imp +6605 Revenant goblin +6606 Revenant icefiend +6607 Revenant werewolf +6608 Revenant hobgoblin +6609 Revenant werewolf +6610 Revenant ork +6611 Revenant knight +6612 Revenant goblin +6613 Revenant vampire +6614 Revenant werewolf +6615 Revenant ork +6616 Revenant goblin +6617 Revenant werewolf +6618 Revenant ork +6619 Revenant knight +6620 Revenant goblin +6621 Revenant icefiend +6622 Revenant pyrefiend +6623 Revenant vampire +6624 Revenant ork +6625 Revenant werewolf +6626 Revenant ork +6627 Revenant knight +6628 Revenant icefiend +6629 Revenant ork +6630 Revenant knight +6631 Revenant pyrefiend +6632 Revenant werewolf +6633 Revenant ork +6634 Revenant knight +6635 Revenant imp +6636 Revenant goblin +6637 Revenant goblin +6638 Revenant goblin +6639 Revenant goblin +6640 Revenant icefiend +6641 Revenant pyrefiend +6642 Revenant hobgoblin +6643 Revenant vampire +6644 Revenant werewolf +6645 Revenant cyclops +6646 Revenant hellhound +6647 Revenant demon +6648 Revenant ork +6649 Revenant dark beast +6650 Revenant knight +6651 Revenant goblin +6652 Revenant vampire +6653 Revenant ork +6654 Revenant knight +6655 Revenant imp +6656 Revenant goblin +6657 Revenant goblin +6658 Revenant goblin +6659 Revenant icefiend +6660 Revenant pyrefiend +6661 Revenant hobgoblin +6662 Revenant vampire +6663 Revenant werewolf +6664 Revenant ork +6665 Revenant knight +6666 Revenant imp +6667 Revenant goblin +6668 Revenant pyrefiend +6669 Revenant vampire +6670 Revenant ork +6671 Revenant vampire +6672 Revenant ork +6673 Revenant knight +6674 Revenant vampire +6675 Revenant werewolf +6676 Revenant knight +6677 Revenant imp +6678 Revenant goblin +6679 Revenant goblin +6680 Revenant goblin +6681 Revenant goblin +6682 Revenant icefiend +6683 Revenant pyrefiend +6684 Revenant hobgoblin +6685 Revenant vampire +6686 Revenant werewolf +6687 Revenant cyclops +6688 Revenant hellhound +6689 Revenant demon +6690 Revenant ork +6691 Revenant dark beast +6692 Revenant knight +6693 Revenant goblin +6694 Revenant icefiend +6695 Revenant vampire +6696 Revenant ork +6697 Revenant imp +6698 Revenant goblin +6699 Revenant goblin +6700 Revenant vampire +6701 Revenant werewolf +6702 Revenant ork +6703 Revenant imp +6704 Revenant goblin +6705 Revenant goblin +6706 Revenant goblin +6707 Revenant goblin +6708 Revenant icefiend +6709 Revenant pyrefiend +6710 Revenant hobgoblin +6711 Revenant vampire +6712 Revenant werewolf +6713 Revenant ork +6714 Revenant knight +6715 Revenant imp +6716 Revenant goblin +6717 Revenant goblin +6718 Revenant goblin +6719 Revenant goblin +6720 Revenant icefiend +6721 Revenant pyrefiend +6722 Revenant hobgoblin +6723 Revenant vampire +6724 Revenant werewolf +6725 Revenant ork +6726 Revenant knight +6727 Revenant hobgoblin +6728 Revenant werewolf +6729 Revenant ork +6730 Revenant knight +6731 Queen of Snow +6732 Snow imp +6733 Snow imp +6734 Snow imp +6735 Snow imp +6736 Snow imp +6737 Snow imp +6738 Snow imp +6739 Snow imp +6740 Snow +6741 Snow +6742 Barbarian snowman +6743 Dragon snowman +6744 Dwarf snowman +6745 Pirate snowman +6746 Snowman +6747 Snow ranger +6748 Snow warrior +6749 Snow mage +6750 Pet shop owner +6752 Bulldog +6753 Mummy +6754 Mummy +6755 Mummy +6756 Mummy +6757 Mummy +6758 Mummy +6759 Mummy +6760 Mummy +6761 Dried zombie +6762 Dried zombie +6763 Dried zombie +6764 Skeleton +6765 Skeleton +6766 Skeleton +6767 Skeleton +6768 Skeleton +6769 Doorman +6770 Giant scarab +6771 Giant scarab +6772 Scarab larva +6773 Scabaras ranger +6774 Scabaras lancer +6775 Scabaras priest +6776 Scabaras locust +6777 Locust lancer +6778 Locust ranger +6779 Crocodile +6780 Scabaras mage +6781 Scabaras mage +6782 Maisa +6783 Maisa +6784 Priest +6785 Clay golem +6786 Lead archaeologist Abigail +6787 Assistant archaeologist Kerner +6788 High Priest of Scabaras +6789 High Priest of Scabaras +6790 High Priest of Scabaras +6791 High Priest of Scabaras +6792 Vulture +6794 Spirit terrorbird +6795 Spirit terrorbird +6796 Granite crab +6797 Granite crab +6798 Praying mantis +6799 Praying mantis +6800 Giant ent +6801 Giant ent +6802 Spirit cobra +6803 Spirit cobra +6804 Spirit dagannoth +6805 Spirit dagannoth +6806 Thorny snail +6807 Thorny snail +6808 Beaver +6809 Karamthulhu overlord +6810 Karamthulhu overlord +6811 Hydra +6812 Hydra +6813 Bunyip +6814 Bunyip +6815 War tortoise +6816 War tortoise +6817 Fruit bat +6818 Abyssal parasite +6819 Abyssal parasite +6820 Abyssal lurker +6821 Abyssal lurker +6822 Unicorn stallion +6823 Unicorn stallion +6824 Magpie +6825 Dreadfowl +6826 Dreadfowl +6827 Stranger plant +6828 Stranger plant +6829 Spirit wolf +6830 Spirit wolf +6831 Desert wyrm +6832 Desert wyrm +6833 Evil turnip +6834 Evil turnip +6835 Vampire bat +6836 Vampire bat +6837 Spirit scorpion +6838 Spirit scorpion +6839 Arctic bear +6840 Arctic bear +6841 Spirit spider +6842 Spirit spider +6843 Bloated leech +6844 Bloated leech +6845 Honey badger +6846 Honey badger +6847 Albino rat +6848 Albino rat +6849 Granite lobster +6850 Granite lobster +6851 Macaw +6852 Macaw +6853 Bronze minotaur +6854 Bronze minotaur +6855 Iron minotaur +6856 Iron minotaur +6857 Steel minotaur +6858 Steel minotaur +6859 Mithril minotaur +6860 Mithril minotaur +6861 Adamant minotaur +6862 Adamant minotaur +6863 Rune minotaur +6864 Rune minotaur +6865 Smoke devil +6866 Smoke devil +6867 Bull ant +6868 Bull ant +6869 Wolpertinger +6870 Wolpertinger +6871 Compost mound +6872 Compost mound +6873 Pack yak +6874 Pack yak +6875 Spirit cockatrice +6876 Spirit cockatrice +6877 Spirit guthatrice +6878 Spirit guthatrice +6879 Spirit saratrice +6880 Spirit saratrice +6881 Spirit zamatrice +6882 Spirit zamatrice +6883 Spirit pengatrice +6884 Spirit pengatrice +6885 Spirit coraxatrice +6886 Spirit coraxatrice +6887 Spirit vulatrice +6888 Spirit vulatrice +6889 Barker toad +6890 Barker toad +6891 Penguin keeper +6892 Pet shop owner +6893 Pet shop owner +6894 Terrier +6895 Labrador +6896 Dalmatian +6897 Bulldog +6898 Pet shop owner +6899 Bulldog +6900 Hatchling dragon +6901 Baby dragon +6902 Hatchling dragon +6903 Baby dragon +6904 Hatchling dragon +6905 Baby dragon +6906 Hatchling dragon +6907 Baby dragon +6908 Baby penguin +6909 Penguin +6910 Penguin +6911 Raven chick +6912 Raven +6913 Baby raccoon +6914 Raccoon +6915 Baby gecko +6916 Gecko +6917 Baby gecko +6918 Gecko +6919 Baby squirrel +6920 Squirrel +6921 Baby squirrel +6922 Baby chameleon +6923 Chameleon +6924 Baby chameleon +6925 Chameleon +6926 Baby chameleon +6927 Chameleon +6928 Baby chameleon +6929 Chameleon +6930 Baby chameleon +6931 Chameleon +6932 Baby chameleon +6933 Chameleon +6934 Baby chameleon +6935 Chameleon +6936 Baby chameleon +6937 Chameleon +6938 Baby chameleon +6939 Chameleon +6940 Baby chameleon +6941 Chameleon +6942 Baby monkey +6943 Monkey +6944 Baby monkey +6945 Vulture chick +6946 Vulture +6947 Baby giant crab +6948 Giant crab +6949 Saradomin chick +6950 Saradomin bird +6951 Saradomin owl +6952 Zamorak chick +6953 Zamorak bird +6954 Zamorak hawk +6955 Guthix chick +6956 Guthix bird +6957 Guthix raptor +6958 Terrier puppy +6959 Terrier +6960 Greyhound puppy +6961 Greyhound +6962 Labrador puppy +6963 Labrador +6964 Dalmatian puppy +6965 Dalmatian +6966 Sheepdog puppy +6967 Sheepdog +6968 Bulldog +6969 Bulldog puppy +6970 Pikkupstix +6971 Pikkupstix +6972 Druid +6973 Druid +6974 Druid +6975 Druid +6976 Druid +6977 Druid +6978 Druid +6979 Druid +6980 Druid +6981 Druidess +6982 Druidess +6983 Druidess +6984 Druidess +6985 Druidess +6986 Druidess +6987 Druidess +6990 Giant wolpertinger +6991 Ibis +6992 Spirit jelly +6993 Spirit jelly +6994 Spirit kalphite +6995 Spirit kalphite +6996 Fishing spot +6997 Baby raccoon +6998 Revenant dragon +6999 Revenant dragon +7001 Dark Squall +7002 Surok Magis +7003 Fire giant +7004 Fire giant +7005 Big wolf +7010 Grenwall +7011 Grenwall +7012 Pawya +7013 Earth mound +7014 Pawya +7015 Platypus +7016 Platypus +7017 Platypus +7018 Baby platypus +7019 Baby platypus +7020 Baby platypus +7021 Platypus +7022 Platypus +7023 Platypus +7024 Baby platypus +7025 Baby platypus +7026 Baby platypus +7027 Patrick +7028 Penelope +7029 Peter +7030 Peanut +7031 Wimpy bird +7039 Diseased kebbit +7044 Fishing spot +7045 Fishing spot +7046 Fishing spot +7047 Balnea +7048 Frawd +7049 Ogress banker +7050 Ogress banker +7051 Chief Tess +7052 Seegud +7053 Chargurr +7054 Chargurr +7057 Snurgh +7058 Kringk +7059 Thump +7060 Massage table +7061 Thump +7062 Muggh +7063 Kringk +7064 Hairdryer +7067 Snert +7068 Tyke +7069 Snarrl +7070 Snarrk +7071 I'rk +7072 Thuddley +7073 Grr'bah +7074 Chomp +7075 Grubb +7076 Grunther +7077 Glum +7078 Ogress champion +7079 Ogress warrior +7080 Ogress warrior +7081 Ogress +7082 Ogress +7083 Flying bugs +7084 Eucalyptus ent +7085 Eucalyptus ent +7086 Eucalyptus ent +7087 Balnea +7088 Chief Tess +7089 Chargurr +7090 Wise Old Man +7104 Dawg +7105 Chaos druid +7106 Thug +7107 Thug +7108 Thug +7109 Thug +7110 Thug +7111 Thug +7112 Thug +7113 Thug +7114 Thug +7115 Thaki the delivery dwarf +7116 Drunken sailor +7117 Drunken sailor +7118 Catapult engineer +7120 Tyras guard +7121 General Hining +7122 Githan +7123 Amulet of Nature +7124 Mud +7125 Rabbit +7126 Rabbit +7127 Rabbit +7128 Farmer +7129 Farmer +7130 Farmer +7131 Farmer Blinkin +7132 Mrs. Winkin +7133 Bork +7134 Bork +7135 Ork legion +7136 Surok Magis +7137 Dagon'hai Elite +7138 Dagon'hai Monk +7139 Dagon'hai Monk +7140 Dagon'hai Monk +7142 Guard +7143 Professor Henry +7144 Gublinch jailmate +7145 Gublinchette jailmate +7146 Gublinchette jailmate +7147 Gublinch jailmate +7148 Gublinch jailmate +7149 Gublinch jailmate +7150 Gublinch jailmate +7151 Student +7152 Student +7153 Student +7154 Student +7155 Student +7156 Student +7157 Student +7158 Cockroach drone +7159 Cockroach worker +7160 Cockroach soldier +7161 Mugger +7162 Mugger +7164 Villager +7165 Villager +7166 Villager +7167 Villager +7168 Kimberly +7169 Kimberly +7170 Kimberly +7171 Kennith +7172 Kennith +7173 Kennith +7174 Kennith +7175 Kennith +7183 Villager +7184 Ezekial Lovecraft +7185 Clive +7186 Katherine +7187 Katherine +7188 Clive +7189 Kent +7196 Rabbit hole +7197 Easter Bunny +7198 Bunny +7199 Bunny +7200 Guard bunny +7201 Chocatrice +7202 Rat +7203 Void Knight +7204 Rat +7205 Mouse +7206 Cockroach +7207 Spider +7208 Rabbit +7209 Snail +7210 Baby monkey +7211 Monkey +7212 Baby monkey +7213 Monkey +7214 Baby monkey +7215 Monkey +7216 Baby monkey +7217 Monkey +7218 Baby monkey +7219 Monkey +7220 Baby monkey +7221 Monkey +7222 Baby monkey +7223 Monkey +7224 Baby monkey +7225 Monkey +7226 Baby monkey +7227 Monkey +7228 Baby monkey +7229 Baby monkey +7230 Baby monkey +7231 Baby monkey +7232 Baby monkey +7233 Baby monkey +7234 Baby monkey +7235 Baby monkey +7236 Baby monkey +7237 Terrier puppy +7238 Terrier +7239 Terrier puppy +7240 Terrier +7241 Greyhound puppy +7242 Greyhound +7243 Greyhound puppy +7244 Greyhound +7245 Labrador puppy +7246 Labrador +7247 Labrador puppy +7248 Labrador +7249 Dalmatian puppy +7250 Dalmatian +7251 Dalmatian puppy +7252 Dalmatian +7253 Sheepdog puppy +7254 Sheepdog +7255 Sheepdog puppy +7256 Sheepdog +7257 Bulldog +7258 Bulldog +7259 Bulldog puppy +7260 Bulldog puppy +7261 Raven chick +7262 Raven +7263 Raven chick +7264 Raven +7265 Raven chick +7266 Raven +7267 Raven chick +7268 Raven +7269 Raven chick +7270 Raven +7271 Baby raccoon +7272 Raccoon +7273 Baby raccoon +7274 Raccoon +7275 Baby Raccoon +7276 Baby raccoon +7277 Baby gecko +7278 Baby gecko +7279 Baby gecko +7280 Baby gecko +7281 Gecko +7282 Gecko +7283 Gecko +7284 Gecko +7285 Baby gecko +7286 Baby gecko +7287 Baby gecko +7288 Baby gecko +7289 Gecko +7290 Gecko +7291 Gecko +7292 Gecko +7293 Baby giant crab +7294 Giant crab +7295 Baby giant crab +7296 Giant crab +7297 Baby giant crab +7298 Giant crab +7299 Baby giant crab +7300 Giant crab +7301 Baby squirrel +7302 Squirrel +7303 Baby squirrel +7304 Squirrel +7305 Baby squirrel +7306 Squirrel +7307 Baby squirrel +7308 Squirrel +7309 Baby squirrel +7310 Baby squirrel +7311 Baby squirrel +7312 Baby squirrel +7313 Baby penguin +7314 Penguin +7315 Penguin +7316 Baby penguin +7317 Penguin +7318 Penguin +7319 Vulture chick +7320 Vulture +7321 Vulture chick +7322 Vulture +7323 Vulture chick +7324 Vulture +7325 Vulture chick +7326 Vulture +7327 Vulture chick +7328 Vulture +7329 Swamp titan +7330 Swamp titan +7331 Spirit mosquito +7332 Spirit mosquito +7333 Void spinner +7334 Void spinner +7335 Forge regent +7336 Forge regent +7337 Spirit larupia +7338 Spirit larupia +7339 Geyser titan +7340 Geyser titan +7341 Lava titan +7342 Lava titan +7343 Steel titan +7344 Steel titan +7345 Obsidian golem +7346 Obsidian golem +7347 Talon beast +7348 Talon beast +7349 Abyssal titan +7350 Abyssal titan +7351 Void torcher +7352 Void torcher +7353 Giant chinchompa +7354 Giant chinchompa +7355 Fire titan +7356 Fire titan +7357 Moss titan +7358 Moss titan +7359 Ice titan +7360 Ice titan +7361 Spirit Tz-Kih +7362 Spirit Tz-Kih +7363 Spirit graahk +7364 Spirit graahk +7365 Spirit kyatt +7366 Spirit kyatt +7367 Void shifter +7368 Void shifter +7369 Void shifter +7370 Void ravager +7371 Void ravager +7372 Ravenous locust +7373 Ravenous locust +7374 Ravenous locust +7375 Iron titan +7376 Iron titan +7377 Pyrelord +7378 Pyrelord +7379 Elfinlocks +7380 Missi Sissi +7381 Missi Sissi +7382 Uberlass +7383 Uberlass +7384 Uberlass +7385 Uberlass +7386 Uberlass +7387 Sannytea +7388 Sannytea +7389 Irollsixes +7390 Irollsixes +7391 Foxyhunter +7392 Foxyhunter +7393 Foxyhunter +7394 Gabriela +7395 Teodor +7396 Aurel +7397 Cornelius +7398 Elisabeta +7399 Sorin +7400 Luscion +7401 Sergiu +7402 Radu +7403 Grigore +7404 Ileana +7405 Valeria +7406 Emilia +7407 Florin +7408 Catalina +7409 Ivan +7410 Victor +7411 Helena +7412 Mihail +7413 Nicoleta +7414 Vasile +7415 Razvan +7416 Luminata +7417 Rat +7418 Juvinate +7419 Held vampyre juvinate +7420 Hieronymus Avlafrim +7421 Sasquine Huburns +7422 Sasquine Huburns +7423 Lollery +7424 Wigglewoo +7425 Wigglewoo +7426 Orangeowns +7427 Orangeowns +7428 I like m0m +7429 I like m0m +7430 Qutiedoll +7431 Goreu +7432 Ysgawyn +7433 Arvel +7434 Mawrth +7435 Kelyn +7436 Eoin +7437 Iona +7438 Elf warrior +7439 Elf warrior +7440 Elf warrior +7441 Elf warrior +7442 Arianwyn +7443 Eudav +7444 Oronwen +7445 Banker +7446 Banker +7447 Dalldav +7448 Gethin +7449 Amaethwr +7450 Teclyn +7451 Butterfly +7452 Lapsang +7453 Lapsang +7454 Souchong +7455 Souchong +7456 Earlgrey +7457 Earlgrey +7458 Fairtrade +7459 Fairtrade +7460 Teapotspout +7461 Rat +7462 Hotwater +7463 Hotwater +7464 Sliceoflemon +7465 Sliceoflemon +7466 Milknosugar +7467 Milknosugar +7468 Randomdood +7469 Employedman +7470 Heidiggle +7471 Dodgy Penny +7472 Shadydude98 +7473 Madam C +7474 M0m Online +7475 Lady Seenit +7476 Berrybree +7477 Stuffstuffer +7479 Learking +7480 Rachael +7481 Cool Mom227 +7482 Purepker895 +7483 Pkmaster0036 +7484 Cow1337killr +7485 Mathdude +7486 Mathdude +7487 1337sp34kr +7488 1337sp34kr +7489 Moglewee +7490 Moglewee +7491 Sarah Domin +7492 Sarah Domin +7493 Sarah Domin +7494 Sue Spammers +7495 Killerwail +7496 Wise Old Man +7497 Sabre-toothed kyatt +7498 Snowy knight +7499 Sapphire glacialis +7500 Cerulean twitch +7501 Abone +7502 Mythmaster +7503 Donkey Wrong +7504 Creapantic +7505 Frondlike +7506 Happy Spud +7507 Nobodyhere +7508 Bluehairlass +7509 Evil Wibbler +7510 Ilikekebabs +7511 Trunka Lex +7512 Val Razz +7513 Abstractclas +7514 Bigbluebox +7515 Funorbrox +7516 Heresjohnny +7517 Mogglewump +7518 Morrisnorris +7519 Matt Blitzer +7520 Ketchuppl0x +7521 Renderorder +7522 Boolean +7523 Stress Diva +7524 Treadsoftly +7525 Helphelphelp +7526 Doorbellpl0x +7527 Fixmydoorup +7528 Redheadmonky +7529 Wallscaler +7530 2scompany +7531 2scompany +7532 3sacrowd +7533 4sjustsilly +7534 Roadblocked +7535 Barricade +7536 Barricade +7537 Yoinker +7538 Yoinker +7539 Stopthief +7540 Stopthief +7541 Knickknack +7542 Paddywhack +7543 Giveadog +7544 Spacebadgers +7545 Freakypeaky +7546 Rollinghome +7547 Nullpointer +7548 Badgerfreak +7549 Windstrike32 +7550 Void Knight +7551 Portal +7552 Portal +7553 Portal +7554 Portal +7555 Portal +7556 Portal +7557 Portal +7558 Portal +7559 Brawler +7560 Lostme +7561 Chiercat +7562 Skydischarge +7563 Agplus +7564 Distantthin +7565 Allmarshes +7566 Explosive67 +7567 Wraithboss +7568 What Goudron +7569 Alpha1beta +7570 Solltalk +7571 Hm Val +7572 Wizzydumped +7573 Oddskater +7574 Lvzyoda +7575 Airstriker +7576 Droepedoff +7577 Plzpudding +7578 Assassin10 +7579 Steallake +7580 Poledragon +7581 Deepkiwi +7582 Al Truism +7583 Ohhhhdude +7584 Bigface Oz +7585 Torcher +7586 Torcher +7587 Torcher +7588 Torcher +7589 Defiler +7590 Defiler +7591 Shifter +7592 Shifter +7593 Shifter +7594 Shifter +7595 Splatter +7596 Splatter +7597 Splatter +7598 Spinner +7599 Ravager +7600 Fiara +7601 Reggie +7602 Getorix +7603 Pontimer +7604 Alran +7605 Banker +7606 Vyrewatch +7607 Vyrewatch +7608 Vyrewatch +7609 Vyrewatch +7610 Flying female vampire +7611 Flying female vampire +7612 Flying female vampire +7613 Flying female vampire +7614 Vyrewatch +7615 Vyrewatch +7616 Vyrewatch +7617 Vyrewatch +7618 Vyrewatch +7619 Vyrewatch +7620 Vyrewatch +7621 Vyrewatch +7622 Vyrewatch +7623 Vyrewatch +7624 Vyrewatch +7625 Vyrewatch +7626 Vyrewatch +7627 Vyrewatch +7628 Vyrewatch +7629 Vyrewatch +7630 Vyrewatch +7631 Vyrewatch +7632 Vyrewatch +7633 Vyrewatch +7634 Vyrewatch +7635 Vyrewatch +7636 Fishing spot +7640 Skeletal hand +7641 Zombie hand +7642 Mutated bloodveld +7643 Mutated bloodveld +7644 Zaromark Sliver +7645 Zaromark Sliver +7646 Zaromark Sliver +7647 Zaromark Sliver +7648 Zaromark Sliver +7649 Zaromark Sliver +7650 Zaromark Sliver +7651 Zaromark Sliver +7652 Zaromark Sliver +7653 Zaromark Sliver +7654 Fistandantilus +7655 Fistandantilus +7656 Fistandantilus +7657 Fistandantilus +7658 Fistandantilus +7659 Fistandantilus +7660 Fistandantilus +7661 Fistandantilus +7662 Fistandantilus +7663 Fistandantilus +7664 Mercenary Adventurer +7665 Ivan Strom +7666 Mysterious person +7667 Mysterious person +7668 Mysterious person +7669 Mysterious person +7670 Mysterious person +7671 Mysterious person +7672 Flaygian Screwte +7673 Mekritus A'hara +7674 Andiess Juip +7675 Kael Forshaw +7676 Andiess Juip +7677 Kael Forshaw +7678 Safalaan +7679 Andiess Juip +7680 Kael Forshaw +7681 Safalaan +7682 Vyrewatch +7683 Vyrewatch +7684 Vyrewatch +7685 Vyrewatch +7686 Safalaan +7687 Spectral Vyrewatch +7690 Drezel +7691 Vyrewatch +7692 Vyrewatch +7693 Vyrewatch +7694 Vyrewatch +7695 Vyrewatch +7696 Vyrewatch +7697 Vyrewatch +7698 Vyrewatch +7699 Vyrewatch +7700 Vyrewatch +7701 Vyrewatch +7702 Vyrewatch +7703 Vyrewatch +7704 Vyrewatch +7705 Vyrewatch +7706 Vyrewatch +7707 Drezel +7711 Temple guardian +7713 Baby icefiend +7714 Icefiend +7715 Icefiend +7717 Professor Arblenap +7718 Brother Bordiss +7719 Brother Althric +7720 Drorkar +7721 Nurmof +7722 Lakki the delivery dwarf +7723 Drorkar +7724 Brother Bordiss +7725 Professor Arblenap +7726 Assistant +7727 Monk +7736 Baby icefiend +7737 Will +7738 Will +7739 Phil +7740 Jiggling crate +7741 Three little kittens +7742 Fluffs +7743 Fluffs +7745 Kittens +7746 TzHaar-Mej-Malk +7747 TzHaar-Xil-Tog +7748 TzHaar-Hur-Frok +7749 TzHaar-Ket-Grol +7750 TzHaar-Ket-Rok +7751 TzHaar-Ket-Lurk +7752 TzHaar-Mej-Lor +7753 TzHaar-Mej +7754 TzHaar-Hur +7755 TzHaar-Xil +7756 Library assistant +7757 TzHaar-Hur-Brekt +7758 TzHaar-Hur-Brekt +7759 TzHaar-Ket-Jok +7760 TzHaar-Ket-Jok +7761 TzHaar-Xil-Mor +7762 TzHaar-Xil-Mor +7763 TzHaar-Mej-Kol +7764 TzHaar-Mej-Kol +7765 TzHaar-Hur-Klag +7766 TzHaar-Hur-Klag +7767 TzHaar-Hur +7768 TzHaar-Hur +7769 TzHaar-Hur +7770 TokTz-Ket-Dill +7771 TokTz-Ket-Dill +7772 Lava monster +7773 Fire monster +7774 Skeleton +7775 Skeleton +7776 Skeleton +7777 Skeleton +7778 Skeleton +7780 Sumona +7781 Jesmona +7782 Catolax +7785 Ali Cat +7786 Mighty banshee +7787 Cave crawler +7788 Skeleton +7789 Zombie +7790 Zombie +7791 Zombie +7792 Zombie +7793 Banshee mistress +7794 Banshee mistress +7795 Insectoid assassin +7796 Insectoid assassin +7797 Kurask overlord +7798 Monstrous cave crawler +7799 Basilisk boss +7800 Mightiest turoth +7801 Aberrant spectre +7802 Aberrant spectre +7803 Aberrant spectre +7804 Aberrant spectre +7805 Kurask minion +7806 Mummy warrior +7807 Mummy warrior +7808 Mummy warrior +7809 Cat +7810 Banshee +7811 Kurask +7812 Cave crawler +7813 Basilisk +7814 Turoth +7815 Skeleton +7816 Master +7817 Zombie +7818 Zombie +7819 Zombie +7820 Zombie +7821 A wanderer. +7822 A wanderer. +7823 Wall beast +7824 Osman +7825 50 Ships Mufassah +7826 Karamthulhu +7827 Karamthulhu +7828 Giant lobster +7829 Giant crab +7830 Customs Sergeant +7831 Customs Sergeant +7832 Young Ralph +7833 Young Ralph +7834 Young Ralph +7835 Young Ralph +7836 Young Ralph +7837 Customs Officer +7838 Customs Officer +7839 Customs Officer +7840 Heavy-Handed Harry +7841 Player +7842 Locker Officer +7843 Locker Officer +7844 Ex-ex-parrot +7845 Pirate impling +7846 Pirate impling +7847 Captain Rabid Jack +7848 Jack +7849 Bosun Giles +7850 Pirate +7851 Lizzie +7852 Cap'n Izzy No-Beard +7853 Ralph +7854 Brass Hand Harry +7855 Bill Teach +7856 Pirate +7857 Brass Hand Harry +7860 Gull +7861 Jack +7862 Fishing spot +7863 Fishing spot +7864 Fishing spot +7865 Guardsman Dante +7866 Guardsman DeShawn +7867 Guardsman Brawn +7868 Iain +7869 Julian +7870 Lachtopher +7871 Samuel +7872 Victoria +7873 Man +7874 Man +7875 Man +7876 Man +7877 Man +7878 Man +7879 Man +7880 Woman +7881 Woman +7882 Woman +7883 Woman +7884 Woman +7885 Guardsman Dante +7886 Guardsman DeShawn +7887 Guardsman Brawn +7888 Sergeant Abram +7889 Guardsman Pazel +7890 Guardsman Peale +7891 Melee dummy +7892 General Wartface +7893 General Bentnoze +7895 General Wartface +7897 General Bentnoze +7900 Loar Shadow +7901 Loar Shadow +7902 Sergeant Abram +7903 Guardsman Pazel +7904 Guardsman Peale +7905 Barricade guard +7906 Barricade guard +7907 Barricade guard +7908 Barricade guard +7909 Barricade guard +7910 Barricade guard +7911 Barricade guard +7912 Border guard +7913 Iain +7914 Julian +7915 Lachtopher +7916 Samuel +7917 Victoria +7918 Man +7919 Man +7920 Man +7921 Man +7922 Man +7923 Man +7924 Man +7925 Woman +7926 Woman +7927 Woman +7928 Woman +7929 Lumbridge Guide +7930 Doomsayer +7931 Donie +7932 Gee +7933 Duke Horacio +7934 Sigmund +7935 Hans +7936 Cook +7937 Father Aereck +7938 Sir Vant +7939 Sir Vant +7940 Sir Vant +7941 Sir Vant +7942 Sir Vant +7943 Dragon +7944 Dragon +7945 Dragon +7946 Dragon +7947 Dragon +7948 Dragon +7949 Lumbridge Guide +7950 Melee Tutor +7951 Ranged Tutor +7952 Magic Tutor +7953 Cooking Tutor +7954 Crafting Tutor +7955 Fishing Tutor +7956 Mining Tutor +7957 Prayer Tutor +7958 Smelting Tutor +7959 Smithing Tutor +7960 Woodcutting Tutor +7961 Bank Tutor +7962 Gee +7963 Spirit +7964 Goblin +7965 Goblin +7966 Chaos druid +7967 Shopkeeper +7969 Explorer Jack +7970 Smithing Tutor +7971 Mining Tutor +7976 Spirit +7977 Spirit +7978 Spirit +7979 Spirit +7980 Spirit +7981 Spirit +7982 Spirit +7983 Spirit +7984 Spirit +7986 Summer Bonde +7987 Spirit +7988 Spirit +7989 Erik Bonde +7990 Spirit +7991 Jallek Lenkin +7992 Spirit +7993 Meranek Thanatos +7994 Ghostly warrior +7995 Spirit Beast +7996 Spirit Beast +7997 Spirit Beast +7998 Ghost +7999 Ghost +8000 Goth leprechaun +8002 Jack +8003 Sarah +8004 Laura +8005 Laura +8006 Roger +8007 Jorral +8008 Guthix +8009 Max the traveller +8010 Man +8011 Man +8012 Woman +8013 Woman +8014 Haluned +8015 Jack +8016 Baby Sarah +8017 Snowy +8018 Roger +8019 Portal +8020 Portal +8022 Yellow orb +8023 Yellow orb +8024 Yellow orb +8026 Green orb +8027 Green orb +8028 Green orb +8029 Wizard Korvak +8030 Wizard Vief +8031 Wizard Acantha +8032 Wizard Elriss +8033 Wizard +8034 Wizard +8035 Wizard +8036 Wizard +8037 Wizard +8038 Wizard +8039 Wizard +8040 Wizard +8041 Imiago \ No newline at end of file diff --git a/server508/lists/objects.txt b/server508/lists/objects.txt new file mode 100644 index 0000000..27a2811 --- /dev/null +++ b/server508/lists/objects.txt @@ -0,0 +1,37455 @@ +('0', 'null'), +('1', 'Crate'), +('2', 'Cave Entrance'), +('3', 'Door'), +('4', 'Door'), +('5', 'Broken multicannon'), +('6', 'Dwarf multicannon'), +('7', 'Cannon base'), +('8', 'Cannon stand'), +('9', 'Cannon barrels'), +('10', 'Ladder'), +('11', 'Ladder'), +('12', 'Rock pile'), +('13', 'Mud pile'), +('14', 'Railing'), +('15', 'Railing'), +('16', 'Railing'), +('17', 'Railing'), +('18', 'Railing'), +('19', 'Railing'), +('20', 'Railing'), +('21', 'Mysterious statue'), +('22', 'Door'), +('23', 'Sacks'), +('24', 'Door'), +('25', 'Clock spindle'), +('26', 'Clock spindle'), +('27', 'Clock spindle'), +('28', 'Clock spindle'), +('29', 'Clock spindle'), +('30', 'Clock spindle'), +('31', 'Clock spindle'), +('32', 'Clock spindle'), +('33', 'Lever'), +('34', 'Lever'), +('35', 'Lever'), +('36', 'Lever'), +('37', 'Gate'), +('38', 'Gate'), +('39', 'Gate'), +('40', 'Food trough'), +('41', 'Wall Pipe'), +('42', 'null'), +('43', 'Water'), +('44', 'null'), +('45', 'Staircase'), +('46', 'Staircase'), +('47', 'Gate'), +('48', 'Gate'), +('49', 'Gate'), +('50', 'Gate'), +('51', 'Loose Railing'), +('52', 'Gate'), +('53', 'Gate'), +('54', 'Stairs'), +('55', 'Stairs'), +('56', 'Stairs'), +('57', 'Stairs'), +('58', 'Vine'), +('59', 'Door'), +('60', 'Ladder'), +('61', 'Chaos altar'), +('62', 'Giant crystal'), +('63', 'Crate'), +('64', 'Crate'), +('65', 'Crate wall'), +('66', 'Crate wall'), +('67', 'Crate'), +('68', 'Beehive'), +('69', 'Gangplank'), +('70', 'Gangplank'), +('71', 'Large door'), +('72', 'Large door'), +('73', 'Large door'), +('74', 'Large door'), +('75', 'Chest'), +('76', 'Chest'), +('77', 'Door'), +('78', 'Door'), +('79', 'Prison Door'), +('80', 'Prison Door'), +('81', 'Door'), +('82', 'Door'), +('83', 'null'), +('84', 'null'), +('85', 'null'), +('86', 'Lever bracket'), +('87', 'Lever'), +('88', 'null'), +('89', 'Gate'), +('90', 'Gate'), +('91', 'Lever'), +('92', 'Door'), +('93', 'Door'), +('94', 'Gate'), +('95', 'Gate'), +('96', 'Stairs'), +('97', 'null'), +('98', 'Stairs'), +('99', 'Door'), +('100', 'Trapdoor'), +('101', 'Ladder'), +('102', 'Door'), +('103', 'Closed chest'), +('104', 'Open chest'), +('105', 'Trapdoor'), +('106', 'Trapdoor'), +('107', 'null'), +('108', 'null'), +('109', 'null'), +('110', 'null'), +('111', 'null'), +('112', 'null'), +('113', 'null'), +('114', 'Cooking range'), +('115', 'Party Balloon'), +('116', 'Party Balloon'), +('117', 'Party Balloon'), +('118', 'Party Balloon'), +('119', 'Party Balloon'), +('120', 'Party Balloon'), +('121', 'Party Balloon'), +('122', 'Party Balloon'), +('123', 'Party Balloon'), +('124', 'Party Balloon'), +('125', 'Party Balloon'), +('126', 'Party Balloon'), +('127', 'Party Balloon'), +('128', 'Party Balloon'), +('129', 'Party Balloon'), +('130', 'Party Balloon'), +('131', 'Door'), +('132', 'Ladder'), +('133', 'Ladder'), +('134', 'Large door'), +('135', 'Large door'), +('136', 'Door'), +('137', 'null'), +('138', 'null'), +('139', 'null'), +('140', 'null'), +('141', 'null'), +('142', 'null'), +('143', 'null'), +('144', 'null'), +('145', 'null'), +('146', 'null'), +('147', 'null'), +('148', 'null'), +('149', 'null'), +('150', 'null'), +('151', 'null'), +('152', 'Compost heap'), +('153', 'Fountain'), +('154', 'Obstacle pipe'), +('155', 'Bookcase'), +('156', 'Bookcase'), +('157', 'Bookcase'), +('158', 'Wall'), +('159', 'Wall'), +('160', 'Lever'), +('161', 'null'), +('162', 'Strange machine'), +('163', 'Strange machine'), +('164', 'Strange machine'), +('165', 'Incinerator'), +('166', 'Gate'), +('167', 'Gate'), +('168', 'null'), +('169', 'null'), +('170', 'Closed chest'), +('171', 'Open chest'), +('172', 'Closed chest'), +('173', 'Open chest'), +('174', 'null'), +('175', 'null'), +('176', 'null'), +('177', 'null'), +('178', 'null'), +('179', 'null'), +('180', 'null'), +('181', 'null'), +('182', 'null'), +('183', 'null'), +('184', 'null'), +('185', 'null'), +('186', 'null'), +('187', 'Gnome glider'), +('188', 'Crashed glider'), +('189', 'Blurberry bar'), +('190', 'Gate'), +('191', 'null'), +('192', 'null'), +('193', 'null'), +('194', 'Hollowed rock'), +('195', 'Ladder'), +('196', 'null'), +('197', 'null'), +('198', 'null'), +('199', 'null'), +('200', 'Lamp'), +('201', 'Lamp'), +('202', 'Candles'), +('203', 'Candles'), +('204', 'Candles'), +('205', 'null'), +('206', 'null'), +('207', 'null'), +('208', 'Candles'), +('209', 'Chandelier'), +('210', 'Ice Light'), +('211', 'Candles'), +('212', 'Sail'), +('213', 'null'), +('214', 'null'), +('215', 'null'), +('216', 'null'), +('217', 'null'), +('218', 'Sail'), +('219', 'null'), +('220', 'null'), +('221', 'Figurehead'), +('222', 'Figurehead'), +('223', 'null'), +('224', 'null'), +('225', 'Sail'), +('226', 'Sail'), +('227', 'Pile of rope'), +('228', 'null'), +('229', 'null'), +('230', 'null'), +('231', 'null'), +('232', 'null'), +('233', 'null'), +('234', 'null'), +('235', 'null'), +('236', 'null'), +('237', 'null'), +('238', 'null'), +('239', 'null'), +('240', 'null'), +('241', 'null'), +('242', 'null'), +('243', 'null'), +('244', 'null'), +('245', 'Ship's ladder'), +('246', 'Ship's ladder'), +('247', 'null'), +('248', 'null'), +('249', 'null'), +('250', 'null'), +('251', 'null'), +('252', 'Ship's wheel'), +('253', 'null'), +('254', 'Figurehead'), +('255', 'Winch'), +('256', 'null'), +('257', 'null'), +('258', 'null'), +('259', 'null'), +('260', 'Figurehead'), +('261', 'null'), +('262', 'null'), +('263', 'null'), +('264', 'null'), +('265', 'Sail'), +('266', 'Sail'), +('267', 'Sail'), +('268', 'Sail'), +('269', 'null'), +('270', 'null'), +('271', 'Anchor'), +('272', 'Ship's ladder'), +('273', 'Ship's ladder'), +('274', 'Hoisted sail'), +('275', 'Hoisted sail'), +('276', 'Hoisted sail'), +('277', 'Hoisted sail'), +('278', 'Hoisted sail'), +('279', 'Hoisted sail'), +('280', 'null'), +('281', 'null'), +('282', 'null'), +('283', 'null'), +('284', 'null'), +('285', 'null'), +('286', 'null'), +('287', 'Ladder'), +('288', 'null'), +('289', 'null'), +('290', 'null'), +('291', 'null'), +('292', 'null'), +('293', 'null'), +('294', 'null'), +('295', 'null'), +('296', 'Plough'), +('297', 'Scarecrow'), +('298', 'Hay bales'), +('299', 'Hay bales'), +('300', 'Haystack'), +('301', 'Food trough'), +('302', 'Eggs'), +('303', 'Compost'), +('304', 'Hay bale'), +('305', 'Beehive'), +('306', 'Broken cart'), +('307', 'Cart'), +('308', 'Cart'), +('309', 'Log pile'), +('310', 'Mud patch'), +('311', 'Mudpile'), +('312', 'Potato'), +('313', 'Wheat'), +('314', 'null'), +('315', 'null'), +('316', 'null'), +('317', 'null'), +('318', 'null'), +('319', 'null'), +('320', 'null'), +('321', 'null'), +('322', 'null'), +('323', 'null'), +('324', 'null'), +('325', 'null'), +('326', 'null'), +('327', 'Broken cart wheel'), +('328', 'null'), +('329', 'null'), +('330', 'null'), +('331', 'null'), +('332', 'null'), +('333', 'null'), +('334', 'null'), +('335', 'null'), +('336', 'null'), +('337', 'null'), +('338', 'null'), +('339', 'null'), +('340', 'null'), +('341', 'null'), +('342', 'null'), +('343', 'null'), +('344', 'null'), +('345', 'null'), +('346', 'Cabinet'), +('347', 'Cabinet'), +('348', 'Drawers'), +('349', 'Drawers'), +('350', 'Drawers'), +('351', 'Drawers'), +('352', 'Drawers'), +('353', 'Drawers'), +('354', 'Crate'), +('355', 'Crate'), +('356', 'Crate'), +('357', 'Crate'), +('358', 'Crate'), +('359', 'Boxes'), +('360', 'Boxes'), +('361', 'Boxes'), +('362', 'Barrel'), +('363', 'Barrel'), +('364', 'Barrel'), +('365', 'Sacks'), +('366', 'Crate'), +('367', 'Cupboard'), +('368', 'Cupboard'), +('369', 'Large cupboard'), +('370', 'Open Cupboard'), +('371', 'Cupboard'), +('372', 'Large open cupboard'), +('373', 'Dresser'), +('374', 'Hat stand'), +('375', 'Closed chest'), +('376', 'Closed chest'), +('377', 'Closed chest'), +('378', 'Open chest'), +('379', 'Open chest'), +('380', 'Bookcase'), +('381', 'Bookcase'), +('382', 'Basket'), +('383', 'Basket'), +('384', 'Basket'), +('385', 'Basket'), +('386', 'Large urn'), +('387', 'Bookshelves'), +('388', 'Wardrobe'), +('389', 'Wardrobe'), +('390', 'Wardrobe'), +('391', 'null'), +('392', 'Full fishing net'), +('393', 'Bookcase'), +('394', 'Bookcase'), +('395', 'Pot'), +('396', 'Pots'), +('397', 'Cabinet'), +('398', 'Coffin'), +('399', 'Coffin'), +('400', 'Small gravestone'), +('401', 'Grave marker'), +('402', 'Tombstone'), +('403', 'Large grave stone'), +('404', 'Gravestone'), +('405', 'Gravestone'), +('406', 'Large grave'), +('407', 'Henge'), +('408', 'Henge'), +('409', 'Altar'), +('410', 'Altar of Guthix'), +('411', 'Chaos altar'), +('412', 'Chaos altar'), +('413', 'Dolmen'), +('414', 'Coffin'), +('415', 'Coffin'), +('416', 'Church organ'), +('417', 'Bed'), +('418', 'Bed'), +('419', 'Bed'), +('420', 'Bed'), +('421', 'Bed'), +('422', 'Bed'), +('423', 'Bed'), +('424', 'Bed'), +('425', 'Bed'), +('426', 'Bed'), +('427', 'Bed'), +('428', 'Bed'), +('429', 'Bed'), +('430', 'Hammock'), +('431', 'Chaise lounge'), +('432', 'Bed'), +('433', 'Bed'), +('434', 'Bed'), +('435', 'Bed'), +('436', 'Rock'), +('437', 'Rock'), +('438', 'Rock'), +('439', 'Rock'), +('440', 'Rock'), +('441', 'Rock'), +('442', 'Rock'), +('443', 'null'), +('444', 'Boulder'), +('445', 'Boulder'), +('446', 'Stones'), +('447', 'Stones'), +('448', 'null'), +('449', 'Overhanging rock'), +('450', 'Rocks'), +('451', 'Rocks'), +('452', 'Rocks'), +('453', 'Rocks'), +('454', 'Cave rocks'), +('455', 'Cave rocks'), +('456', 'null'), +('457', 'null'), +('458', 'null'), +('459', 'null'), +('460', 'null'), +('461', 'null'), +('462', 'Mossy rock'), +('463', 'Mossy rock'), +('464', 'Column'), +('465', 'Column'), +('466', 'Column'), +('467', 'Stalactite'), +('468', 'Stalagmites'), +('469', 'Stalactite'), +('470', 'null'), +('471', 'Rockslide'), +('472', 'Rockslide'), +('473', 'Rockslide'), +('474', 'Rockslide'), +('475', 'null'), +('476', 'null'), +('477', 'Mossy rock'), +('478', 'Mossy rock'), +('479', 'Rockslide'), +('480', 'Rockslide'), +('481', 'Rockslide'), +('482', 'Rockslide'), +('483', 'Rockslide'), +('484', 'Rockslide'), +('485', 'Rockslide'), +('486', 'Rockslide'), +('487', 'null'), +('488', 'null'), +('489', 'null'), +('490', 'null'), +('491', 'null'), +('492', 'Rocks'), +('493', 'null'), +('494', 'null'), +('495', 'null'), +('496', 'null'), +('497', 'null'), +('498', 'null'), +('499', 'null'), +('500', 'null'), +('501', 'null'), +('502', 'null'), +('503', 'null'), +('504', 'null'), +('505', 'null'), +('506', 'null'), +('507', 'Rockslide'), +('508', 'Rockslide'), +('509', 'Rockslide'), +('510', 'Rockslide'), +('511', 'Rocks'), +('512', 'null'), +('513', 'null'), +('514', 'null'), +('515', 'null'), +('516', 'Ice Column'), +('517', 'Rockslide'), +('518', 'Rockslide'), +('519', 'Rockslide'), +('520', 'Rockslide'), +('521', 'null'), +('522', 'null'), +('523', 'Column'), +('524', 'Column'), +('525', 'Column'), +('526', 'Column'), +('527', 'Column'), +('528', 'Column'), +('529', 'Stalactite'), +('530', 'Stalagmites'), +('531', 'Stalactite'), +('532', 'Stalagmites'), +('533', 'Stalactite'), +('534', 'Stalagmite'), +('535', 'null'), +('536', 'null'), +('537', 'null'), +('538', 'null'), +('539', 'Stalactite'), +('540', 'null'), +('541', 'Stalagmite'), +('542', 'Stalagmite'), +('543', 'Stalactite'), +('544', 'Stalagmite'), +('545', 'Boulder'), +('546', 'Eerie statue'), +('547', 'null'), +('548', 'Rockslide'), +('549', 'Rockslide'), +('550', 'Rockslide'), +('551', 'Rockslide'), +('552', 'null'), +('553', 'null'), +('554', 'Icicle'), +('555', 'Icicle'), +('556', 'Icicle'), +('557', 'Icicle'), +('558', 'Cave entrance'), +('559', 'null'), +('560', 'null'), +('561', 'null'), +('562', 'Statue of a warrior'), +('563', 'Statue of a king'), +('564', 'Statue of a queen'), +('565', 'Statue of a king'), +('566', 'Statue of a warrior'), +('567', 'Tribal statue'), +('568', 'Dwarf statue'), +('569', 'Gnome statue'), +('570', 'Gnome statue'), +('571', 'Gnome statue'), +('572', 'Gnome statue'), +('573', 'Gnome statue'), +('574', 'Statue'), +('575', 'Statue'), +('576', 'Statue'), +('577', 'null'), +('578', 'null'), +('579', 'Statue'), +('580', 'Statue'), +('581', 'Statue'), +('582', 'Statue'), +('583', 'Vase'), +('584', 'Statue'), +('585', 'Statue of Saradomin'), +('586', 'Statue of Saradomin'), +('587', 'Statue of Zamorak'), +('588', 'Statue steps'), +('589', 'Crystal ball'), +('590', 'Bank table'), +('591', 'Bank table'), +('592', 'Bathroom table'), +('593', 'Table'), +('594', 'Table'), +('595', 'Table'), +('596', 'Table'), +('597', 'Table'), +('598', 'Table'), +('599', 'Table'), +('600', 'Table'), +('601', 'Table'), +('602', 'Table'), +('603', 'Table'), +('604', 'Table'), +('605', 'Table'), +('606', 'Table'), +('607', 'Table'), +('608', 'Study desk'), +('609', 'Workbench'), +('610', 'Workbench'), +('611', 'Picnic bench'), +('612', 'Counter'), +('613', 'Table'), +('614', 'Table'), +('615', 'Small table'), +('616', 'Table'), +('617', 'Counter'), +('618', 'Chemistry Table'), +('619', 'Chemistry Table'), +('620', 'Table'), +('621', 'Table'), +('622', 'Table'), +('623', 'Table'), +('624', 'Table'), +('625', 'null'), +('626', 'null'), +('627', 'null'), +('628', 'Silver stall'), +('629', 'Silk stall'), +('630', 'Bakery stall'), +('631', 'Gem stall'), +('632', 'Fur stall'), +('633', 'Spice stall'), +('634', 'Market stall'), +('635', 'Tea stall'), +('636', 'Buffers'), +('637', 'Mine cart'), +('638', 'null'), +('639', 'null'), +('640', 'null'), +('641', 'null'), +('642', 'null'), +('643', 'null'), +('644', 'null'), +('645', 'null'), +('646', 'null'), +('647', 'Rack'), +('648', 'Stocks'), +('649', 'Gallows'), +('650', 'null'), +('651', 'Buried skeleton'), +('652', 'null'), +('653', 'null'), +('654', 'null'), +('655', 'null'), +('656', 'null'), +('657', 'null'), +('658', 'Pile of skulls'), +('659', 'Charred bones'), +('660', 'Corpse'), +('661', 'Corpse'), +('662', 'Corpse'), +('663', 'Corpse'), +('664', 'Corpse'), +('665', 'Corpse'), +('666', 'Corpse'), +('667', 'Corpse'), +('668', 'Pile of skulls'), +('669', 'null'), +('670', 'null'), +('671', 'Catapult'), +('672', 'Broken barrel'), +('673', 'null'), +('674', 'null'), +('675', 'null'), +('676', 'null'), +('677', 'null'), +('678', 'Fishing spot'), +('679', 'Fishing spot'), +('680', 'Piano'), +('681', 'Piano'), +('682', 'Piano stool'), +('683', 'Grandfather clock'), +('684', 'Swamp bubbles'), +('685', 'Weather vane'), +('686', 'null'), +('687', 'null'), +('688', 'null'), +('689', 'Mirror'), +('690', 'Bath screen'), +('691', 'Screen'), +('692', 'Cauldron'), +('693', 'Broom'), +('694', 'Clothes model'), +('695', 'Clothes model'), +('696', 'Hole'), +('697', 'Animal skull'), +('698', 'Big egg'), +('699', 'Carcass'), +('700', 'Curved bone'), +('701', 'Curved bone'), +('702', 'Large bone'), +('703', 'Large bone'), +('704', 'null'), +('705', 'null'), +('706', 'null'), +('707', 'Bell'), +('708', 'Bell mechanism'), +('709', 'Bell rope'), +('710', 'Hole in wall'), +('711', 'Crystal cluster'), +('712', 'Crystal cluster'), +('713', 'Crystal cluster'), +('714', 'Fire remains'), +('715', 'null'), +('716', 'null'), +('717', 'null'), +('718', 'Barrel'), +('719', 'null'), +('720', 'null'), +('721', 'null'), +('722', 'null'), +('723', 'Buried skeleton'), +('724', 'Standing torch'), +('725', 'null'), +('726', 'null'), +('727', 'Cave web'), +('728', 'null'), +('729', 'null'), +('730', 'null'), +('731', 'null'), +('732', 'null'), +('733', 'Web'), +('734', 'Slashed web'), +('735', 'Swamp bubbles'), +('736', 'Animal skull'), +('737', 'Carcass'), +('738', 'null'), +('739', 'null'), +('740', 'null'), +('741', 'Broken ladder'), +('742', 'null'), +('743', 'Ladder'), +('744', 'Scaffold'), +('745', 'null'), +('746', 'null'), +('747', 'null'), +('748', 'Cave entrance'), +('749', 'null'), +('750', 'null'), +('751', 'null'), +('752', 'null'), +('753', 'null'), +('754', 'null'), +('755', 'null'), +('756', 'null'), +('757', 'null'), +('758', 'null'), +('759', 'null'), +('760', 'null'), +('761', 'null'), +('762', 'null'), +('763', 'null'), +('764', 'null'), +('765', 'null'), +('766', 'null'), +('767', 'null'), +('768', 'null'), +('769', 'null'), +('770', 'null'), +('771', 'null'), +('772', 'null'), +('773', 'null'), +('774', 'null'), +('775', 'null'), +('776', 'null'), +('777', 'null'), +('778', 'null'), +('779', 'Bamboo Door'), +('780', 'null'), +('781', 'null'), +('782', 'null'), +('783', 'null'), +('784', 'null'), +('785', 'null'), +('786', 'null'), +('787', 'Loom'), +('788', 'City Gate'), +('789', 'City Gate'), +('790', 'null'), +('791', 'null'), +('792', 'null'), +('793', 'null'), +('794', 'null'), +('795', 'null'), +('796', 'null'), +('797', 'null'), +('798', 'null'), +('799', 'null'), +('800', 'null'), +('801', 'null'), +('802', 'null'), +('803', 'null'), +('804', 'null'), +('805', 'null'), +('806', 'null'), +('807', 'null'), +('808', 'null'), +('809', 'null'), +('810', 'null'), +('811', 'null'), +('812', 'null'), +('813', 'null'), +('814', 'null'), +('815', 'null'), +('816', 'null'), +('817', 'Suit of armour'), +('818', 'Suit of armour'), +('819', 'Suit of armour'), +('820', 'Suit of armour'), +('821', 'Cannon'), +('822', 'Cannonballs'), +('823', 'Dummy'), +('824', 'Wooden defence'), +('825', 'null'), +('826', 'null'), +('827', 'null'), +('828', 'null'), +('829', 'Target'), +('830', 'null'), +('831', 'null'), +('832', 'null'), +('833', 'null'), +('834', 'Sword cabinet'), +('835', 'Sword cabinet'), +('836', 'Bow cabinet'), +('837', 'Axe cabinet'), +('838', 'Axe cabinet'), +('839', 'Bow cabinet'), +('840', 'null'), +('841', 'null'), +('842', 'null'), +('843', 'null'), +('844', 'null'), +('845', 'null'), +('846', 'null'), +('847', 'null'), +('848', 'Spear wall'), +('849', 'Spear wall'), +('850', 'Helmet rack'), +('851', 'Standard'), +('852', 'Standard'), +('853', 'Standard'), +('854', 'Standard'), +('855', 'Standard'), +('856', 'Standard'), +('857', 'Standard'), +('858', 'Standard'), +('859', 'Standard'), +('860', 'Flagpole'), +('861', 'Flagpole'), +('862', 'Flagpole'), +('863', 'Standard'), +('864', 'Standard'), +('865', 'Standard'), +('866', 'Standard'), +('867', 'Standard'), +('868', 'Standard'), +('869', 'Flagpole'), +('870', 'Totem Pole'), +('871', 'Bath pipes'), +('872', 'Large sewer pipe'), +('873', 'Sink'), +('874', 'Sink'), +('875', 'Bath'), +('876', 'null'), +('877', 'null'), +('878', 'Well'), +('879', 'Fountain'), +('880', 'Fountain'), +('881', 'Manhole'), +('882', 'Manhole'), +('883', 'Gate'), +('884', 'Well'), +('885', 'Bar pumps'), +('886', 'Bar pumps'), +('887', 'Portrait'), +('888', 'Painting'), +('889', 'Painting'), +('890', 'Portrait'), +('891', 'Landscape'), +('892', 'Painting'), +('893', 'Painting'), +('894', 'Landscape'), +('895', 'Painting'), +('896', 'Star chart'), +('897', 'Star chart'), +('898', 'Cross'), +('899', 'Hanging banner'), +('900', 'Hanging banner'), +('901', 'Hanging banner'), +('902', 'Hanging banner'), +('903', 'Unicorn's head'), +('904', 'Dragon's head'), +('905', 'Dragon's head'), +('906', 'Bull's head'), +('907', 'Charms'), +('908', 'Magical symbol'), +('909', 'Plaque'), +('910', 'Evil eye decoration'), +('911', 'Glyphs'), +('912', 'null'), +('913', 'null'), +('914', 'null'), +('915', 'Font'), +('916', 'null'), +('917', 'null'), +('918', 'null'), +('919', 'null'), +('920', 'null'), +('921', 'null'), +('922', 'null'), +('923', 'null'), +('924', 'null'), +('925', 'null'), +('926', 'null'), +('927', 'null'), +('928', 'null'), +('929', 'null'), +('930', 'null'), +('931', 'null'), +('932', 'null'), +('933', 'null'), +('934', 'null'), +('935', 'null'), +('936', 'null'), +('937', 'null'), +('938', 'null'), +('939', 'null'), +('940', 'null'), +('941', 'null'), +('942', 'null'), +('943', 'null'), +('944', 'null'), +('945', 'null'), +('946', 'null'), +('947', 'null'), +('948', 'null'), +('949', 'null'), +('950', 'null'), +('951', 'null'), +('952', 'null'), +('953', 'null'), +('954', 'null'), +('955', 'Spooky picture'), +('956', 'null'), +('957', 'null'), +('958', 'null'), +('959', 'Clock face'), +('960', 'Clock face'), +('961', 'Bank notice board'), +('962', 'Noticeboard'), +('963', 'Clothes equipment'), +('964', 'Stuffed swordfish'), +('965', 'Stuffed swordfish'), +('966', 'Jolly Roger'), +('967', 'Hanging wheel'), +('968', 'Pirate map'), +('969', 'Fishing net'), +('970', 'Plaque'), +('971', 'Bow and Arrow'), +('972', 'Arrows'), +('973', 'Javelin'), +('974', 'Studded Leather'), +('975', 'Dragonhide Leather'), +('976', 'null'), +('977', 'null'), +('978', 'null'), +('979', 'null'), +('980', 'null'), +('981', 'null'), +('982', 'null'), +('983', 'null'), +('984', 'null'), +('985', 'null'), +('986', 'null'), +('987', 'null'), +('988', 'null'), +('989', 'null'), +('990', 'null'), +('991', 'null'), +('992', 'null'), +('993', 'Stile'), +('994', 'null'), +('995', 'null'), +('996', 'null'), +('997', 'null'), +('998', 'null'), +('999', 'null'), +('1000', 'null'), +('1001', 'null'), +('1002', 'null'), +('1003', 'null'), +('1004', 'Broken Railing'), +('1005', 'Broken Railing'), +('1006', 'Broken Railing'), +('1007', 'null'), +('1008', 'null'), +('1009', 'null'), +('1010', 'Shelves'), +('1011', 'Shelves'), +('1012', 'Shelves'), +('1013', 'Cooking shelves'), +('1014', 'Shelves'), +('1015', 'Shelves'), +('1016', 'Shelves'), +('1017', 'Shelves'), +('1018', 'Shelves'), +('1019', 'Shelf'), +('1020', 'Shelf'), +('1021', 'Shelf'), +('1022', 'null'), +('1023', 'null'), +('1024', 'Shelves'), +('1025', 'Clothing shelves'), +('1026', 'null'), +('1027', 'Tanning line'), +('1028', 'Vat'), +('1029', 'Vat'), +('1030', 'Mangle'), +('1031', 'Mangle'), +('1032', 'Danger sign'), +('1033', 'Signpost'), +('1034', 'Signpost'), +('1035', 'Signpost'), +('1036', 'null'), +('1037', 'null'), +('1038', 'null'), +('1039', 'null'), +('1040', 'null'), +('1041', 'null'), +('1042', 'null'), +('1043', 'null'), +('1044', 'null'), +('1045', 'null'), +('1046', 'null'), +('1047', 'null'), +('1048', 'null'), +('1049', 'null'), +('1050', 'null'), +('1051', 'null'), +('1052', 'null'), +('1053', 'null'), +('1054', 'null'), +('1055', 'null'), +('1056', 'null'), +('1057', 'Sign'), +('1058', 'null'), +('1059', 'null'), +('1060', 'null'), +('1061', 'null'), +('1062', 'null'), +('1063', 'null'), +('1064', 'null'), +('1065', 'null'), +('1066', 'null'), +('1067', 'null'), +('1068', 'Sign'), +('1069', 'Sign'), +('1070', 'Sign'), +('1071', 'Sign'), +('1072', 'Sign'), +('1073', 'Sign'), +('1074', 'Sign'), +('1075', 'Sign'), +('1076', 'Sign'), +('1077', 'Sign'), +('1078', 'Sign'), +('1079', 'Signpost'), +('1080', 'Signpost'), +('1081', 'Signpost'), +('1082', 'Signpost'), +('1083', 'Signpost'), +('1084', 'Signpost'), +('1085', 'Signpost'), +('1086', 'Signpost'), +('1087', 'Signpost'), +('1088', 'Chair'), +('1089', 'Smashed chair'), +('1090', 'Chair'), +('1091', 'Chair'), +('1092', 'Chair'), +('1093', 'Chair'), +('1094', 'Chair'), +('1095', 'Stool'), +('1096', 'Rocking chair'), +('1097', 'Throne'), +('1098', 'Throne'), +('1099', 'Throne'), +('1100', 'Barstool'), +('1101', 'Chair'), +('1102', 'Stool'), +('1103', 'Stool'), +('1104', 'Bench'), +('1105', 'Throne'), +('1106', 'Bench'), +('1107', 'null'), +('1108', 'Throne'), +('1109', 'Throne'), +('1110', 'Chair'), +('1111', 'Chair'), +('1112', 'Pew'), +('1113', 'Stool'), +('1114', 'Ice Throne'), +('1115', 'Chair'), +('1116', 'Hedge'), +('1117', 'Hedge'), +('1118', 'Bush'), +('1119', 'Bush'), +('1120', 'Bush'), +('1121', 'Bush'), +('1122', 'Bush'), +('1123', 'Bush'), +('1124', 'Bush'), +('1125', 'Bush'), +('1126', 'Rosebush'), +('1127', 'null'), +('1128', 'null'), +('1129', 'null'), +('1130', 'null'), +('1131', 'null'), +('1132', 'null'), +('1133', 'null'), +('1134', 'null'), +('1135', 'null'), +('1136', 'null'), +('1137', 'null'), +('1138', 'null'), +('1139', 'null'), +('1140', 'null'), +('1141', 'null'), +('1142', 'null'), +('1143', 'null'), +('1144', 'null'), +('1145', 'null'), +('1146', 'null'), +('1147', 'Fairy house'), +('1148', 'Fairy house'), +('1149', 'Fairy house'), +('1150', 'Fairy bank'), +('1151', 'Fairy market stall'), +('1152', 'Potted fern'), +('1153', 'Potted fern'), +('1154', 'Potted fern'), +('1155', 'Potted fern'), +('1156', 'Potted flower'), +('1157', 'Potted flower'), +('1158', 'Potted plant'), +('1159', 'null'), +('1160', 'Potted plant'), +('1161', 'Cabbage'), +('1162', 'Bullrushes'), +('1163', 'Mushroom'), +('1164', 'Mushroom'), +('1165', 'Mushroom'), +('1166', 'Mushrooms'), +('1167', 'Mushroom'), +('1168', 'Mushrooms'), +('1169', 'Mushroom'), +('1170', 'Fungus'), +('1171', 'Fungus'), +('1172', 'Fungus'), +('1173', 'Small fern'), +('1174', 'Thistle'), +('1175', 'Waterlily'), +('1176', 'Waterlily'), +('1177', 'Waterlily'), +('1178', 'Heather'), +('1179', 'Heather'), +('1180', 'Heather'), +('1181', 'Nettles'), +('1182', 'null'), +('1183', 'null'), +('1184', 'Creeping plant'), +('1185', 'Rockery'), +('1186', 'Curling plant'), +('1187', 'Flower'), +('1188', 'Flower'), +('1189', 'Daisies'), +('1190', 'Sunflower'), +('1191', 'Sunflowers'), +('1192', 'Flowers'), +('1193', 'Flowers'), +('1194', 'Tulips'), +('1195', 'Flowers'), +('1196', 'Flowers'), +('1197', 'Flower'), +('1198', 'Flowers'), +('1199', 'Flowerbed'), +('1200', 'Flowerbed'), +('1201', 'Flowerbed'), +('1202', 'Jungle flower'), +('1203', 'Orchid'), +('1204', 'Jungle plant'), +('1205', 'Vine'), +('1206', 'Vine'), +('1207', 'Vine'), +('1208', 'Vine'), +('1209', 'null'), +('1210', 'null'), +('1211', 'null'), +('1212', 'null'), +('1213', 'null'), +('1214', 'null'), +('1215', 'null'), +('1216', 'null'), +('1217', 'null'), +('1218', 'null'), +('1219', 'null'), +('1220', 'null'), +('1221', 'null'), +('1222', 'null'), +('1223', 'null'), +('1224', 'null'), +('1225', 'null'), +('1226', 'null'), +('1227', 'null'), +('1228', 'null'), +('1229', 'null'), +('1230', 'null'), +('1231', 'Vine'), +('1232', 'null'), +('1233', 'null'), +('1234', 'null'), +('1235', 'null'), +('1236', 'null'), +('1237', 'null'), +('1238', 'null'), +('1239', 'null'), +('1240', 'null'), +('1241', 'null'), +('1242', 'null'), +('1243', 'null'), +('1244', 'null'), +('1245', 'null'), +('1246', 'null'), +('1247', 'null'), +('1248', 'null'), +('1249', 'null'), +('1250', 'null'), +('1251', 'null'), +('1252', 'null'), +('1253', 'null'), +('1254', 'null'), +('1255', 'null'), +('1256', 'null'), +('1257', 'null'), +('1258', 'null'), +('1259', 'null'), +('1260', 'null'), +('1261', 'null'), +('1262', 'null'), +('1263', 'null'), +('1264', 'null'), +('1265', 'null'), +('1266', 'null'), +('1267', 'null'), +('1268', 'null'), +('1269', 'null'), +('1270', 'null'), +('1271', 'null'), +('1272', 'null'), +('1273', 'null'), +('1274', 'null'), +('1275', 'null'), +('1276', 'Tree'), +('1277', 'Tree'), +('1278', 'Tree'), +('1279', 'Tree'), +('1280', 'Tree'), +('1281', 'Oak'), +('1282', 'Dead tree'), +('1283', 'Dead tree'), +('1284', 'Dead tree'), +('1285', 'Dead tree'), +('1286', 'Dead tree'), +('1287', 'Dead tree'), +('1288', 'Dead tree'), +('1289', 'Dead tree'), +('1290', 'Dead tree'), +('1291', 'Dead tree'), +('1292', 'Dramen tree'), +('1293', 'Spirit tree'), +('1294', 'Spirit tree'), +('1295', 'Spirit tree'), +('1296', 'Fallen tree'), +('1297', 'Fallen tree'), +('1298', 'Fern'), +('1299', 'Fern'), +('1300', 'Fern'), +('1301', 'Tree'), +('1302', 'Leafy tree'), +('1303', 'Tree'), +('1304', 'Tree'), +('1305', 'Tree'), +('1306', 'Magic tree'), +('1307', 'Maple tree'), +('1308', 'Willow'), +('1309', 'Yew'), +('1310', 'Tree'), +('1311', 'Palm'), +('1312', 'Palm'), +('1313', 'Plant'), +('1314', 'Plant'), +('1315', 'Evergreen'), +('1316', 'Evergreen'), +('1317', 'Spirit tree'), +('1318', 'Evergreen'), +('1319', 'Evergreen'), +('1320', 'Mossy branch'), +('1321', 'Mossy branch'), +('1322', 'Hollow tree'), +('1323', 'Roots'), +('1324', 'Roots'), +('1325', 'Roots'), +('1326', 'Tropical tree'), +('1327', 'Tropical tree'), +('1328', 'Tropical tree'), +('1329', 'Tropical leaves'), +('1330', 'Tree'), +('1331', 'Tree'), +('1332', 'Tree'), +('1333', 'Dead tree'), +('1334', 'Hollow log'), +('1335', 'Hollow log'), +('1336', 'Hollow log'), +('1337', 'Hollow log'), +('1338', 'Hollow log'), +('1339', 'Roots'), +('1340', 'Roots'), +('1341', 'Tree stump'), +('1342', 'Tree stump'), +('1343', 'Tree stump'), +('1344', 'Tree stump'), +('1345', 'Tree stump'), +('1346', 'Tree stump'), +('1347', 'Tree stump'), +('1348', 'Tree stump'), +('1349', 'Tree stump'), +('1350', 'Tree stump'), +('1351', 'Tree stump'), +('1352', 'Tree stump'), +('1353', 'Tree stump'), +('1354', 'Tree stump'), +('1355', 'Tree stump'), +('1356', 'Tree stump'), +('1357', 'Tree stump'), +('1358', 'Tree stump'), +('1359', 'Tree stump'), +('1360', 'Tropical tree'), +('1361', 'Tropical tree'), +('1362', 'Tropical tree'), +('1363', 'Roots'), +('1364', 'Roots'), +('1365', 'Dead tree'), +('1366', 'Roots'), +('1367', 'Roots'), +('1368', 'Roots'), +('1369', 'Plant'), +('1370', 'Hollow log'), +('1371', 'Tropical tree'), +('1372', 'Tropical tree'), +('1373', 'Tropical tree'), +('1374', 'Tropical tree'), +('1375', 'Tropical tree'), +('1376', 'Tropical tree'), +('1377', 'Tropical tree'), +('1378', 'Hollow log'), +('1379', 'Hollow log'), +('1380', 'Roots'), +('1381', 'Roots'), +('1382', 'Roots'), +('1383', 'Dead tree'), +('1384', 'Dead tree'), +('1385', 'null'), +('1386', 'Roots'), +('1387', 'Roots'), +('1388', 'Roots'), +('1389', 'Roots'), +('1390', 'Jungle plant'), +('1391', 'Plant'), +('1392', 'Plant'), +('1393', 'Plant'), +('1394', 'Plant'), +('1395', 'Fly trap'), +('1396', 'Cactus'), +('1397', 'Cactus'), +('1398', 'Jungle plant'), +('1399', 'Jungle plant'), +('1400', 'Jungle plant'), +('1401', 'Jungle plant'), +('1402', 'Jungle plant'), +('1403', 'Cactus'), +('1404', 'Cactus'), +('1405', 'Cactus'), +('1406', 'Cactus'), +('1407', 'Whipping Plant'), +('1408', 'Pineapple Plant'), +('1409', 'Pineapple Plant'), +('1410', 'Pineapple Plant'), +('1411', 'Pineapple Plant'), +('1412', 'Pineapple Plant'), +('1413', 'Pineapple Plant'), +('1414', 'null'), +('1415', 'null'), +('1416', 'null'), +('1417', 'null'), +('1418', 'null'), +('1419', 'null'), +('1420', 'null'), +('1421', 'null'), +('1422', 'null'), +('1423', 'null'), +('1424', 'null'), +('1425', 'null'), +('1426', 'null'), +('1427', 'null'), +('1428', 'null'), +('1429', 'null'), +('1430', 'null'), +('1431', 'null'), +('1432', 'null'), +('1433', 'null'), +('1434', 'null'), +('1435', 'null'), +('1436', 'null'), +('1437', 'null'), +('1438', 'null'), +('1439', 'null'), +('1440', 'null'), +('1441', 'null'), +('1442', 'null'), +('1443', 'null'), +('1444', 'null'), +('1445', 'null'), +('1446', 'null'), +('1447', 'null'), +('1448', 'null'), +('1449', 'null'), +('1450', 'null'), +('1451', 'null'), +('1452', 'null'), +('1453', 'null'), +('1454', 'null'), +('1455', 'null'), +('1456', 'null'), +('1457', 'null'), +('1458', 'null'), +('1459', 'null'), +('1460', 'null'), +('1461', 'null'), +('1462', 'null'), +('1463', 'null'), +('1464', 'null'), +('1465', 'null'), +('1466', 'null'), +('1467', 'null'), +('1468', 'null'), +('1469', 'null'), +('1470', 'null'), +('1471', 'null'), +('1472', 'null'), +('1473', 'null'), +('1474', 'null'), +('1475', 'null'), +('1476', 'null'), +('1477', 'null'), +('1478', 'null'), +('1479', 'null'), +('1480', 'null'), +('1481', 'null'), +('1482', 'null'), +('1483', 'null'), +('1484', 'null'), +('1485', 'null'), +('1486', 'null'), +('1487', 'null'), +('1488', 'null'), +('1489', 'null'), +('1490', 'null'), +('1491', 'null'), +('1492', 'null'), +('1493', 'null'), +('1494', 'null'), +('1495', 'null'), +('1496', 'null'), +('1497', 'null'), +('1498', 'null'), +('1499', 'null'), +('1500', 'null'), +('1501', 'null'), +('1502', 'null'), +('1503', 'null'), +('1504', 'Door'), +('1505', 'Door'), +('1506', 'Large door'), +('1507', 'Large door'), +('1508', 'Large door'), +('1509', 'null'), +('1510', 'null'), +('1511', 'Large door'), +('1512', 'Large door'), +('1513', 'Large door'), +('1514', 'Large door'), +('1515', 'Large door'), +('1516', 'Large door'), +('1517', 'Large door'), +('1518', 'null'), +('1519', 'Large door'), +('1520', 'Large door'), +('1521', 'null'), +('1522', 'null'), +('1523', 'null'), +('1524', 'null'), +('1525', 'null'), +('1526', 'Curtain'), +('1527', 'null'), +('1528', 'Curtain'), +('1529', 'Curtain'), +('1530', 'Door'), +('1531', 'Door'), +('1532', 'null'), +('1533', 'Door'), +('1534', 'Door'), +('1535', 'null'), +('1536', 'Door'), +('1537', 'Door'), +('1538', 'null'), +('1539', 'Door'), +('1540', 'Door'), +('1541', 'null'), +('1542', 'Door'), +('1543', 'Door'), +('1544', 'Door'), +('1545', 'Door'), +('1546', 'null'), +('1547', 'null'), +('1548', 'null'), +('1549', 'null'), +('1550', 'null'), +('1551', 'Gate'), +('1552', 'Gate'), +('1553', 'Gate'), +('1554', 'null'), +('1555', 'null'), +('1556', 'Gate'), +('1557', 'Gate'), +('1558', 'Gate'), +('1559', 'Gate'), +('1560', 'Gate'), +('1561', 'Gate'), +('1562', 'null'), +('1563', 'null'), +('1564', 'null'), +('1565', 'null'), +('1566', 'null'), +('1567', 'null'), +('1568', 'Trapdoor'), +('1569', 'Trapdoor'), +('1570', 'Trapdoor'), +('1571', 'Trapdoor'), +('1572', 'Boarded-up door'), +('1573', 'Doors'), +('1574', 'Doors'), +('1575', 'Doors'), +('1576', 'Doors'), +('1577', 'Doorway'), +('1578', 'Doorway'), +('1579', 'Doorway'), +('1580', 'Doorway'), +('1581', 'Doorway'), +('1582', 'null'), +('1583', 'Wall'), +('1584', 'Wall'), +('1585', 'null'), +('1586', 'Wall'), +('1587', 'Wall'), +('1588', 'null'), +('1589', 'Gate'), +('1590', 'Gate'), +('1591', 'Door'), +('1592', 'Odd looking wall'), +('1593', 'null'), +('1594', 'Dungeon door'), +('1595', 'Door'), +('1596', 'Gate'), +('1597', 'Gate'), +('1598', 'Gate'), +('1599', 'Gate'), +('1600', 'Magic guild door'), +('1601', 'Magic guild door'), +('1602', 'null'), +('1603', 'null'), +('1604', 'null'), +('1605', 'null'), +('1606', 'null'), +('1607', 'null'), +('1608', 'null'), +('1609', 'Scaffold'), +('1610', 'Scaffold'), +('1611', 'Scaffold'), +('1612', 'Scaffold'), +('1613', 'Timber'), +('1614', 'Timber'), +('1615', 'null'), +('1616', 'null'), +('1617', 'null'), +('1618', 'null'), +('1619', 'null'), +('1620', 'null'), +('1621', 'null'), +('1622', 'null'), +('1623', 'null'), +('1624', 'null'), +('1625', 'null'), +('1626', 'null'), +('1627', 'null'), +('1628', 'null'), +('1629', 'null'), +('1630', 'null'), +('1631', 'null'), +('1632', 'null'), +('1633', 'null'), +('1634', 'null'), +('1635', 'null'), +('1636', 'null'), +('1637', 'null'), +('1638', 'null'), +('1639', 'null'), +('1640', 'null'), +('1641', 'null'), +('1642', 'null'), +('1643', 'null'), +('1644', 'null'), +('1645', 'null'), +('1646', 'null'), +('1647', 'null'), +('1648', 'null'), +('1649', 'null'), +('1650', 'null'), +('1651', 'null'), +('1652', 'null'), +('1653', 'null'), +('1654', 'null'), +('1655', 'null'), +('1656', 'null'), +('1657', 'null'), +('1658', 'null'), +('1659', 'null'), +('1660', 'null'), +('1661', 'Bricks'), +('1662', 'Bricks'), +('1663', 'Bricks'), +('1664', 'null'), +('1665', 'null'), +('1666', 'null'), +('1667', 'null'), +('1668', 'null'), +('1669', 'null'), +('1670', 'null'), +('1671', 'null'), +('1672', 'null'), +('1673', 'null'), +('1674', 'null'), +('1675', 'null'), +('1676', 'null'), +('1677', 'null'), +('1678', 'null'), +('1679', 'null'), +('1680', 'null'), +('1681', 'null'), +('1682', 'null'), +('1683', 'null'), +('1684', 'null'), +('1685', 'null'), +('1686', 'null'), +('1687', 'null'), +('1688', 'null'), +('1689', 'null'), +('1690', 'null'), +('1691', 'null'), +('1692', 'null'), +('1693', 'null'), +('1694', 'null'), +('1695', 'null'), +('1696', 'null'), +('1697', 'null'), +('1698', 'null'), +('1699', 'null'), +('1700', 'null'), +('1701', 'null'), +('1702', 'null'), +('1703', 'null'), +('1704', 'null'), +('1705', 'null'), +('1706', 'null'), +('1707', 'null'), +('1708', 'null'), +('1709', 'null'), +('1710', 'null'), +('1711', 'null'), +('1712', 'null'), +('1713', 'null'), +('1714', 'null'), +('1715', 'null'), +('1716', 'null'), +('1717', 'null'), +('1718', 'null'), +('1719', 'null'), +('1720', 'null'), +('1721', 'null'), +('1722', 'Staircase'), +('1723', 'Staircase'), +('1724', 'Staircase'), +('1725', 'Staircase'), +('1726', 'Staircase'), +('1727', 'Staircase'), +('1728', 'Staircase'), +('1729', 'Staircase'), +('1730', 'Staircase'), +('1731', 'Staircase'), +('1732', 'Staircase'), +('1733', 'Staircase'), +('1734', 'Staircase'), +('1735', 'Staircase'), +('1736', 'Staircase'), +('1737', 'Staircase'), +('1738', 'Staircase'), +('1739', 'Staircase'), +('1740', 'Staircase'), +('1741', 'Staircase'), +('1742', 'Staircase'), +('1743', 'Staircase'), +('1744', 'Staircase'), +('1745', 'Staircase'), +('1746', 'Ladder'), +('1747', 'Ladder'), +('1748', 'Ladder'), +('1749', 'Ladder'), +('1750', 'Ladder'), +('1751', 'Ladder'), +('1752', 'Ladder'), +('1753', 'Ladder'), +('1754', 'Ladder'), +('1755', 'Ladder'), +('1756', 'Ladder'), +('1757', 'Ladder'), +('1758', 'Ladder'), +('1759', 'Ladder'), +('1760', 'Stepladder'), +('1761', 'Steps'), +('1762', 'Climbing rope'), +('1763', 'Climbing rope'), +('1764', 'Climbing rope'), +('1765', 'Ladder'), +('1766', 'Ladder'), +('1767', 'Ladder'), +('1768', 'Ladder'), +('1769', 'null'), +('1770', 'null'), +('1771', 'null'), +('1772', 'null'), +('1773', 'null'), +('1774', 'null'), +('1775', 'null'), +('1776', 'null'), +('1777', 'null'), +('1778', 'Millstones'), +('1779', 'Sails'), +('1780', 'Sails'), +('1781', 'null'), +('1782', 'Flour bin'), +('1783', 'null'), +('1784', 'null'), +('1785', 'null'), +('1786', 'null'), +('1787', 'null'), +('1788', 'null'), +('1789', 'null'), +('1790', 'null'), +('1791', 'null'), +('1792', 'null'), +('1793', 'null'), +('1794', 'null'), +('1795', 'null'), +('1796', 'null'), +('1797', 'Waterfall rocks'), +('1798', 'null'), +('1799', 'null'), +('1800', 'null'), +('1801', 'null'), +('1802', 'null'), +('1803', 'null'), +('1804', 'Door'), +('1805', 'Door'), +('1806', 'null'), +('1807', 'null'), +('1808', 'null'), +('1809', 'null'), +('1810', 'Web'), +('1811', 'Sliced web'), +('1812', 'Portal'), +('1813', 'Stone stand'), +('1814', 'Lever'), +('1815', 'Lever'), +('1816', 'Lever'), +('1817', 'Lever'), +('1818', 'null'), +('1819', 'null'), +('1820', 'null'), +('1821', 'null'), +('1822', 'null'), +('1823', 'null'), +('1824', 'null'), +('1825', 'null'), +('1826', 'null'), +('1827', 'null'), +('1828', 'null'), +('1829', 'null'), +('1830', 'null'), +('1831', 'null'), +('1832', 'null'), +('1833', 'null'), +('1834', 'null'), +('1835', 'null'), +('1836', 'null'), +('1837', 'null'), +('1838', 'null'), +('1839', 'null'), +('1840', 'null'), +('1841', 'null'), +('1842', 'null'), +('1843', 'null'), +('1844', 'null'), +('1845', 'null'), +('1846', 'null'), +('1847', 'null'), +('1848', 'null'), +('1849', 'null'), +('1850', 'null'), +('1851', 'null'), +('1852', 'Bay window'), +('1853', 'null'), +('1854', 'null'), +('1855', 'null'), +('1856', 'null'), +('1857', 'null'), +('1858', 'null'), +('1859', 'null'), +('1860', 'null'), +('1861', 'null'), +('1862', 'null'), +('1863', 'null'), +('1864', 'Timber defence'), +('1865', 'null'), +('1866', 'null'), +('1867', 'null'), +('1868', 'null'), +('1869', 'null'), +('1870', 'null'), +('1871', 'null'), +('1872', 'null'), +('1873', 'null'), +('1874', 'null'), +('1875', 'null'), +('1876', 'Altar slab'), +('1877', 'null'), +('1878', 'null'), +('1879', 'null'), +('1880', 'null'), +('1881', 'null'), +('1882', 'null'), +('1883', 'null'), +('1884', 'null'), +('1885', 'null'), +('1886', 'null'), +('1887', 'null'), +('1888', 'null'), +('1889', 'null'), +('1890', 'null'), +('1891', 'null'), +('1892', 'null'), +('1893', 'null'), +('1894', 'null'), +('1895', 'null'), +('1896', 'Throne'), +('1897', 'Candlestick holder'), +('1898', 'Chair'), +('1899', 'Chair'), +('1900', 'Suit of armour'), +('1901', 'Table'), +('1902', 'null'), +('1903', 'null'), +('1904', 'null'), +('1905', 'null'), +('1906', 'null'), +('1907', 'null'), +('1908', 'null'), +('1909', 'null'), +('1910', 'null'), +('1911', 'null'), +('1912', 'null'), +('1913', 'null'), +('1914', 'null'), +('1915', 'null'), +('1916', 'null'), +('1917', 'null'), +('1918', 'null'), +('1919', 'null'), +('1920', 'null'), +('1921', 'null'), +('1922', 'null'), +('1923', 'null'), +('1924', 'null'), +('1925', 'null'), +('1926', 'null'), +('1927', 'null'), +('1928', 'null'), +('1929', 'null'), +('1930', 'null'), +('1931', 'null'), +('1932', 'null'), +('1933', 'null'), +('1934', 'null'), +('1935', 'null'), +('1936', 'null'), +('1937', 'null'), +('1938', 'null'), +('1939', 'Tower'), +('1940', 'null'), +('1941', 'null'), +('1942', 'null'), +('1943', 'null'), +('1944', 'null'), +('1945', 'null'), +('1946', 'null'), +('1947', 'Crumbling wall'), +('1948', 'Crumbling wall'), +('1949', 'Bricks'), +('1950', 'Bricks'), +('1951', 'Bricks'), +('1952', 'null'), +('1953', 'null'), +('1954', 'null'), +('1955', 'null'), +('1956', 'null'), +('1957', 'null'), +('1958', 'null'), +('1959', 'null'), +('1960', 'null'), +('1961', 'null'), +('1962', 'null'), +('1963', 'null'), +('1964', 'null'), +('1965', 'null'), +('1966', 'null'), +('1967', 'Tree Door'), +('1968', 'Tree Door'), +('1969', 'null'), +('1970', 'null'), +('1971', 'null'), +('1972', 'null'), +('1973', 'null'), +('1974', 'null'), +('1975', 'null'), +('1976', 'null'), +('1977', 'null'), +('1978', 'null'), +('1979', 'null'), +('1980', 'null'), +('1981', 'null'), +('1982', 'null'), +('1983', 'null'), +('1984', 'null'), +('1985', 'Root'), +('1986', 'Root'), +('1987', 'Log raft'), +('1988', 'Broken log raft'), +('1989', 'Bookcase'), +('1990', 'Crate'), +('1991', 'Door'), +('1992', 'Glarial's tombstone'), +('1993', 'Glarial's tomb'), +('1994', 'Closed chest'), +('1995', 'Open chest'), +('1996', 'Rock'), +('1997', 'Rock'), +('1998', 'Rope'), +('1999', 'Crate'), +('2000', 'Door'), +('2001', 'null'), +('2002', 'Door'), +('2003', 'null'), +('2004', 'Pillar'), +('2005', 'Statue of Baxtorian'), +('2006', 'Statue of Glarial'), +('2007', 'null'), +('2008', 'null'), +('2009', 'null'), +('2010', 'Ledge'), +('2011', 'Ledge'), +('2012', 'Ledge'), +('2013', 'Vine'), +('2014', 'Chalice of Eternity'), +('2015', 'Chalice of Eternity'), +('2016', 'null'), +('2017', 'null'), +('2018', 'null'), +('2019', 'Whirlpool'), +('2020', 'Dead tree'), +('2021', 'null'), +('2022', 'Barrel'), +('2023', 'Achey Tree'), +('2024', 'Cauldron'), +('2025', 'Door'), +('2026', 'Fishing spot'), +('2027', 'null'), +('2028', 'Fishing spot'), +('2029', 'Fishing spot'), +('2030', 'Fishing spot'), +('2031', 'Fishing spot'), +('2032', 'Bedroom door'), +('2033', 'Bedroom door'), +('2034', 'Door'), +('2035', 'Door'), +('2036', 'Door'), +('2037', 'Door'), +('2038', 'Dummy'), +('2039', 'Gate'), +('2040', 'null'), +('2041', 'Gate'), +('2042', 'null'), +('2043', 'Cauldron'), +('2044', 'Trough'), +('2045', 'null'), +('2046', 'null'), +('2047', 'null'), +('2048', 'Door'), +('2049', 'Door'), +('2050', 'Gate'), +('2051', 'Gate'), +('2052', 'null'), +('2053', 'null'), +('2054', 'Door'), +('2055', 'null'), +('2056', 'Cupboard'), +('2057', 'Cupboard'), +('2058', 'Gate'), +('2059', 'null'), +('2060', 'Gate'), +('2061', 'null'), +('2062', 'Box'), +('2063', 'Box'), +('2064', 'Crate'), +('2065', 'Olaf's boat'), +('2066', 'null'), +('2067', 'Watchtower fence'), +('2068', 'Fence'), +('2069', 'Door'), +('2070', 'null'), +('2071', 'Crate'), +('2072', 'Crate'), +('2073', 'Banana Tree'), +('2074', 'Banana Tree'), +('2075', 'Banana Tree'), +('2076', 'Banana Tree'), +('2077', 'Banana Tree'), +('2078', 'Banana Tree'), +('2079', 'Chest'), +('2080', 'null'), +('2081', 'Gangplank'), +('2082', 'Gangplank'), +('2083', 'Gangplank'), +('2084', 'Gangplank'), +('2085', 'Gangplank'), +('2086', 'Gangplank'), +('2087', 'Gangplank'), +('2088', 'Gangplank'), +('2089', 'Rockery'), +('2090', 'Rocks'), +('2091', 'Rocks'), +('2092', 'Rocks'), +('2093', 'Rocks'), +('2094', 'Rocks'), +('2095', 'Rocks'), +('2096', 'Rocks'), +('2097', 'Rocks'), +('2098', 'Rocks'), +('2099', 'Rocks'), +('2100', 'Rocks'), +('2101', 'Rocks'), +('2102', 'Rocks'), +('2103', 'Rocks'), +('2104', 'Rocks'), +('2105', 'Rocks'), +('2106', 'Rocks'), +('2107', 'Rocks'), +('2108', 'Rocks'), +('2109', 'Rocks'), +('2110', 'Rocks'), +('2111', 'Rocks'), +('2112', 'Door'), +('2113', 'Ladder'), +('2114', 'Coal Truck'), +('2115', 'Gate'), +('2116', 'Gate'), +('2117', 'Old wall'), +('2118', 'Whirlpool'), +('2119', 'Rocks'), +('2120', 'Rocks'), +('2121', 'Rocks'), +('2122', 'Rocks'), +('2123', 'Rocks'), +('2124', 'Rocks'), +('2125', 'Rocks'), +('2126', 'Rocks'), +('2127', 'Rocks'), +('2128', 'Rocks'), +('2129', 'Rocks'), +('2130', 'Rocks'), +('2131', 'Rocks'), +('2132', 'Rocks'), +('2133', 'Rocks'), +('2134', 'Rocks'), +('2135', 'Rocks'), +('2136', 'Rocks'), +('2137', 'Rocks'), +('2138', 'Rocks'), +('2139', 'Rocks'), +('2140', 'Rocks'), +('2141', 'Chest'), +('2142', 'Cauldron of Thunder'), +('2143', 'Prison door'), +('2144', 'Prison door'), +('2145', 'Coffin'), +('2146', 'null'), +('2147', 'Ladder'), +('2148', 'Ladder'), +('2149', 'Obelisk'), +('2150', 'null'), +('2151', 'Obelisk of Water'), +('2152', 'Obelisk of Air'), +('2153', 'Obelisk of Fire'), +('2154', 'Gate'), +('2155', 'Gate'), +('2156', 'Magic Portal'), +('2157', 'Magic Portal'), +('2158', 'Magic Portal'), +('2159', 'Barrel'), +('2160', 'Barrel'), +('2161', 'Barrel'), +('2162', 'Trawler net'), +('2163', 'Trawler net'), +('2164', 'Trawler net'), +('2165', 'Trawler net'), +('2166', 'Trawler net'), +('2167', 'Leak'), +('2168', 'Repaired leak'), +('2169', 'Spray'), +('2170', 'Spray'), +('2171', 'null'), +('2172', 'Trawler net'), +('2173', 'Trawler net'), +('2174', 'Ship's ladder'), +('2175', 'Ship's ladder'), +('2176', 'Hole'), +('2177', 'Hull'), +('2178', 'Gangplank'), +('2179', 'Gangplank'), +('2180', 'Catapult'), +('2181', 'Ballista'), +('2182', 'Open chest'), +('2183', 'Closed chest'), +('2184', 'Door'), +('2185', 'null'), +('2186', 'Loose Railing'), +('2187', 'Stairs'), +('2188', 'Door'), +('2189', 'Door'), +('2190', 'Stairs'), +('2191', 'Chest'), +('2192', 'Door'), +('2193', 'Door'), +('2194', 'Chest'), +('2195', 'null'), +('2196', 'null'), +('2197', 'null'), +('2198', 'null'), +('2199', 'Kitchen gate'), +('2200', 'Kitchen gate'), +('2201', 'null'), +('2202', 'null'), +('2203', 'null'), +('2204', 'null'), +('2205', 'null'), +('2206', 'null'), +('2207', 'null'), +('2208', 'null'), +('2209', 'null'), +('2210', 'Telescope'), +('2211', 'Grave of Scorpius'), +('2212', 'Toy corner'), +('2213', 'Bank booth'), +('2214', 'Bank booth'), +('2215', 'Closed bank booth'), +('2216', 'Broken cart'), +('2217', 'Mound of earth'), +('2218', 'Fissure'), +('2219', 'Fissure'), +('2220', 'Cave in'), +('2221', 'Strange looking stone'), +('2222', 'Loose rocks'), +('2223', 'Old sacks'), +('2224', 'Ancient gallows'), +('2225', 'Waterfall rocks'), +('2226', 'Smashed table'), +('2227', 'Crude raft'), +('2228', 'Waterfall'), +('2229', 'Tribal Statue'), +('2230', 'Travel cart'), +('2231', 'Rocks'), +('2232', 'null'), +('2233', 'null'), +('2234', 'Well stacked rocks'), +('2235', 'Tomb dolmen'), +('2236', 'Climbing rocks'), +('2237', 'Palm tree'), +('2238', 'Hillside entrance'), +('2239', 'Hillside entrance'), +('2240', 'Carved doors'), +('2241', 'Carved doors'), +('2242', 'Tomb exit'), +('2243', 'Tomb exit'), +('2244', 'Jungle plant'), +('2245', 'Jungle plant'), +('2246', 'Tomb doors'), +('2247', 'Tomb doors'), +('2248', 'Tomb doors'), +('2249', 'Tomb doors'), +('2250', 'Tomb doors'), +('2251', 'null'), +('2252', 'null'), +('2253', 'Tomb exit'), +('2254', 'Tomb exit'), +('2255', 'Ancient metal gate'), +('2256', 'Ancient metal gate'), +('2257', 'Rocks'), +('2258', 'Tomb dolmen'), +('2259', 'Metal gate'), +('2260', 'Metal gate'), +('2261', 'Wooden gate'), +('2262', 'Wooden gate'), +('2263', 'null'), +('2264', 'null'), +('2265', 'Travel cart'), +('2266', 'Blacksmith's door'), +('2267', 'Blacksmith's door'), +('2268', 'Ladder'), +('2269', 'Ladder'), +('2270', 'Plant'), +('2271', 'Cupboard'), +('2272', 'Cupboard'), +('2273', 'Portal'), +('2274', 'Portal'), +('2275', 'Rock'), +('2276', 'Rock'), +('2277', 'Rock'), +('2278', 'Rock'), +('2279', 'Ropeswing'), +('2280', 'Ropeswing'), +('2281', 'Ropeswing'), +('2282', 'Ropeswing'), +('2283', 'Ropeswing'), +('2284', 'Obstacle net'), +('2285', 'Obstacle net'), +('2286', 'Obstacle net'), +('2287', 'Obstacle pipe'), +('2288', 'Obstacle pipe'), +('2289', 'Hollow tree'), +('2290', 'Obstacle pipe'), +('2291', 'null'), +('2292', 'null'), +('2293', 'null'), +('2294', 'Log balance'), +('2295', 'Log balance'), +('2296', 'Log balance'), +('2297', 'Log balance'), +('2298', 'Climbing rocks'), +('2299', 'Climbing rocks'), +('2300', 'Climbing rocks'), +('2301', 'Balancing ledge'), +('2302', 'Balancing ledge'), +('2303', 'Balancing ledge'), +('2304', 'Spikes'), +('2305', 'Spikes'), +('2306', 'null'), +('2307', 'Gate'), +('2308', 'Gate'), +('2309', 'Door'), +('2310', 'Tree stump'), +('2311', 'Stepping stone'), +('2312', 'Balancing rope'), +('2313', 'Tree branch'), +('2314', 'Tree branch'), +('2315', 'Tree branch'), +('2316', 'Staircase'), +('2317', 'null'), +('2318', 'Pile of rubble'), +('2319', 'Monkeybars'), +('2320', 'Monkeybars'), +('2321', 'Monkeybars'), +('2322', 'Ropeswing'), +('2323', 'Ropeswing'), +('2324', 'Ropeswing'), +('2325', 'Ropeswing'), +('2326', 'Branch'), +('2327', 'Long branched tree'), +('2328', 'Rocks'), +('2329', 'null'), +('2330', 'null'), +('2331', 'null'), +('2332', 'A wooden log'), +('2333', 'Stepping stones'), +('2334', 'Stepping stones'), +('2335', 'Stepping stones'), +('2336', 'Hole'), +('2337', 'Sturdy door'), +('2338', 'Door'), +('2339', 'Sturdy door'), +('2340', 'null'), +('2341', 'Wall'), +('2342', 'Grill'), +('2343', 'Brick'), +('2344', 'Brick'), +('2345', 'Brick'), +('2346', 'Brick'), +('2347', 'Brick'), +('2348', 'Brick'), +('2349', 'Brick'), +('2350', 'Winch'), +('2351', 'Winch'), +('2352', 'Rope'), +('2353', 'Rope'), +('2354', 'Sacks'), +('2355', 'Sacks'), +('2356', 'Sacks'), +('2357', 'Bush'), +('2358', 'Bush'), +('2359', 'null'), +('2360', 'Chest'), +('2361', 'Chest'), +('2362', 'Brick'), +('2363', 'Panning point'), +('2364', 'Crate'), +('2365', 'Crate'), +('2366', 'Signpost'), +('2367', 'Signpost'), +('2368', 'Signpost'), +('2369', 'Signpost'), +('2370', 'Signpost'), +('2371', 'Signpost'), +('2372', 'Bookcase'), +('2373', 'Cupboard'), +('2374', 'Cupboard'), +('2375', 'Specimen tray'), +('2376', 'Soil'), +('2377', 'Soil'), +('2378', 'Soil'), +('2379', 'Campsite bed'), +('2380', 'Chest'), +('2381', 'Soil'), +('2382', 'Soil'), +('2383', 'Soil'), +('2384', 'null'), +('2385', 'null'), +('2386', 'null'), +('2387', 'null'), +('2388', 'null'), +('2389', 'null'), +('2390', 'null'), +('2391', 'Gate'), +('2392', 'Gate'), +('2393', 'Gnome goal'), +('2394', 'Gate'), +('2395', 'null'), +('2396', 'Bed'), +('2397', 'Door'), +('2398', 'Door'), +('2399', 'Door'), +('2400', 'Cupboard'), +('2401', 'Cupboard'), +('2402', 'Bookcase'), +('2403', 'Chest'), +('2404', 'Chest'), +('2405', 'Ladder'), +('2406', 'Door'), +('2407', 'Magic door'), +('2408', 'Ladder'), +('2409', 'Tree'), +('2410', 'Ladder'), +('2411', 'Sturdy door'), +('2412', 'Gangplank'), +('2413', 'Gangplank'), +('2414', 'Gangplank'), +('2415', 'Gangplank'), +('2416', 'Large door'), +('2417', 'Large door'), +('2418', 'Chest'), +('2419', 'null'), +('2420', 'null'), +('2421', 'Lever'), +('2422', 'Lever'), +('2423', 'Lever'), +('2424', 'Lever'), +('2425', 'Lever'), +('2426', 'Lever'), +('2427', 'Door'), +('2428', 'Door'), +('2429', 'Door'), +('2430', 'Door'), +('2431', 'Door'), +('2432', 'Gate'), +('2433', 'Gate'), +('2434', 'Cupboard'), +('2435', 'Cupboard'), +('2436', 'Closed chest'), +('2437', 'null'), +('2438', 'Gate'), +('2439', 'Gate'), +('2440', 'Pillar'), +('2441', 'Pillar'), +('2442', 'Pillar'), +('2443', 'Pillar'), +('2444', 'Trapdoor'), +('2445', 'null'), +('2446', 'Trap door'), +('2447', 'Tree'), +('2448', 'Tree'), +('2449', 'Daconia rocks'), +('2450', 'Daconia rocks'), +('2451', 'Roots'), +('2452', 'null'), +('2453', 'null'), +('2454', 'null'), +('2455', 'null'), +('2456', 'null'), +('2457', 'null'), +('2458', 'null'), +('2459', 'null'), +('2460', 'null'), +('2461', 'null'), +('2462', 'null'), +('2463', 'null'), +('2464', 'null'), +('2465', 'Portal'), +('2466', 'Portal'), +('2467', 'Portal'), +('2468', 'Portal'), +('2469', 'Portal'), +('2470', 'Portal'), +('2471', 'Portal'), +('2472', 'Portal'), +('2473', 'Portal'), +('2474', 'Portal'), +('2475', 'Portal'), +('2476', 'Portal'), +('2477', 'Portal'), +('2478', 'Altar'), +('2479', 'Altar'), +('2480', 'Altar'), +('2481', 'Altar'), +('2482', 'Altar'), +('2483', 'Altar'), +('2484', 'Altar'), +('2485', 'Altar'), +('2486', 'Altar'), +('2487', 'Altar'), +('2488', 'Altar'), +('2489', 'Altar'), +('2490', 'null'), +('2491', 'Rune Essence'), +('2492', 'Portal'), +('2493', 'Pillar'), +('2494', 'Pillar'), +('2495', 'Pillar'), +('2496', 'null'), +('2497', 'Mysterious stone'), +('2498', 'Mysterious glow'), +('2499', 'Mysterious glow'), +('2500', 'Mysterious glow'), +('2501', 'Mysterious glow'), +('2502', 'Mysterious glow'), +('2503', 'Portal'), +('2504', 'Portal'), +('2505', 'Portal'), +('2506', 'Portal'), +('2507', 'Portal'), +('2508', 'Rubble'), +('2509', 'Rubble'), +('2510', 'Rubble'), +('2511', 'Tower ladder'), +('2512', 'Tower ladder'), +('2513', 'Target'), +('2514', 'Guild door'), +('2515', 'Row boat'), +('2516', 'Row boat'), +('2517', 'Ladder'), +('2518', 'null'), +('2519', 'Crates'), +('2520', 'Big door'), +('2521', 'Big door'), +('2522', 'Spooky stairs'), +('2523', 'Spooky stairs'), +('2524', 'Box'), +('2525', 'Cupboard'), +('2526', 'Door'), +('2527', 'Door'), +('2528', 'Door'), +('2529', 'Door'), +('2530', 'Barrel'), +('2531', 'Mud patch'), +('2532', 'null'), +('2533', 'Mud pile'), +('2534', 'Door'), +('2535', 'Staircase'), +('2536', 'Staircase'), +('2537', 'Door'), +('2538', 'Door'), +('2539', 'Stairs'), +('2540', 'Stairs'), +('2541', 'Sewer pipe'), +('2542', 'Pipe'), +('2543', 'Manhole'), +('2544', 'Manhole'), +('2545', 'Manhole cover'), +('2546', 'Door'), +('2547', 'Door'), +('2548', 'Door'), +('2549', 'Door'), +('2550', 'Door'), +('2551', 'Door'), +('2552', 'Gate'), +('2553', 'Gate'), +('2554', 'Door'), +('2555', 'Door'), +('2556', 'Door'), +('2557', 'Door'), +('2558', 'Door'), +('2559', 'Door'), +('2560', 'Silk stall'), +('2561', 'Baker's stall'), +('2562', 'Gem stall'), +('2563', 'Fur stall'), +('2564', 'Spice stall'), +('2565', 'Silver stall'), +('2566', 'Chest'), +('2567', 'Chest'), +('2568', 'Chest'), +('2569', 'Chest'), +('2570', 'Chest'), +('2571', 'Chest'), +('2572', 'Chest'), +('2573', 'Chest'), +('2574', 'null'), +('2575', 'Marshy jungle vine'), +('2576', 'Marshy jungle vine'), +('2577', 'Palm tree'), +('2578', 'Palm tree'), +('2579', 'Scorched earth'), +('2580', 'Scorched earth'), +('2581', 'Rock'), +('2582', 'Rock'), +('2583', 'Fungus covered Cavern wall'), +('2584', 'Rocks'), +('2585', 'Hand holds'), +('2586', 'Rocks'), +('2587', 'Chest'), +('2588', 'Chest'), +('2589', 'Hole'), +('2590', 'Ladder'), +('2591', 'Ladder'), +('2592', 'Ladder'), +('2593', 'Gangplank'), +('2594', 'Gangplank'), +('2595', 'Door'), +('2596', 'Red door'), +('2597', 'Orange door'), +('2598', 'Yellow door'), +('2599', 'Blue door'), +('2600', 'Magenta door'), +('2601', 'Green door'), +('2602', 'Exit door'), +('2603', 'Chest'), +('2604', 'Chest'), +('2605', 'Ladder'), +('2606', 'Wall'), +('2607', 'Rocks'), +('2608', 'Rocks'), +('2609', 'Rocks'), +('2610', 'Rocks'), +('2611', 'Rocks'), +('2612', 'Cupboard'), +('2613', 'Cupboard'), +('2614', 'Coffin'), +('2615', 'Coffin'), +('2616', 'Stairs'), +('2617', 'Stairs'), +('2618', 'null'), +('2619', 'Barrel'), +('2620', 'Crate'), +('2621', 'Door'), +('2622', 'Door'), +('2623', 'Gate'), +('2624', 'Door'), +('2625', 'Door'), +('2626', 'Door'), +('2627', 'Door'), +('2628', 'Door'), +('2629', 'Wall'), +('2630', 'Fishing spot'), +('2631', 'Door'), +('2632', 'Chest'), +('2633', 'Chest'), +('2634', 'Rock slide'), +('2635', 'Cupboard'), +('2636', 'Cupboard'), +('2637', 'null'), +('2638', 'Ladder'), +('2639', 'null'), +('2640', 'Altar'), +('2641', 'Ladder'), +('2642', 'Potter's Wheel'), +('2643', 'Pottery Oven'), +('2644', 'Spinning wheel'), +('2645', 'Sand pit'), +('2646', 'Flax'), +('2647', 'Guild Door'), +('2648', 'null'), +('2649', 'null'), +('2650', 'Table'), +('2651', 'null'), +('2652', 'Tropical tree'), +('2653', 'null'), +('2654', 'Sinclair family fountain'), +('2655', 'Sinclair family crest'), +('2656', 'Anna's barrel'), +('2657', 'Bob's barrel'), +('2658', 'Carol's barrel'), +('2659', 'David's barrel'), +('2660', 'Elizabeth's barrel'), +('2661', 'Frank's barrel'), +('2662', 'null'), +('2663', 'Sacks'), +('2664', 'Sturdy wooden gate'), +('2665', 'Sturdy wooden gate'), +('2666', 'null'), +('2667', 'Winch'), +('2668', 'Winch bucket'), +('2669', 'null'), +('2670', 'Kharidian cactus (Healthy)'), +('2671', 'Kharidian cactus (Dry)'), +('2672', 'An experimental anvil'), +('2673', 'Gate'), +('2674', 'Gate'), +('2675', 'Mine door entrance'), +('2676', 'Mine door entrance'), +('2677', 'Chest'), +('2678', 'Bookcase'), +('2679', 'null'), +('2680', 'Barrel'), +('2681', 'Barrel'), +('2682', 'null'), +('2683', 'Window'), +('2684', 'Mine Cart'), +('2685', 'Gate'), +('2686', 'Gate'), +('2687', 'Gate'), +('2688', 'Gate'), +('2689', 'Prison door'), +('2690', 'Mine door entrance'), +('2691', 'Mine door entrance'), +('2692', 'Prison door'), +('2693', 'Shantay chest'), +('2694', 'Rock'), +('2695', 'Rock'), +('2696', 'Rock'), +('2697', 'Rock'), +('2698', 'Mine cave'), +('2699', 'Mine cave'), +('2700', 'Tent door'), +('2701', 'null'), +('2702', 'Tracks'), +('2703', 'Tracks'), +('2704', 'Rocks'), +('2705', 'Door'), +('2706', 'Door'), +('2707', 'Crate'), +('2708', 'Crate'), +('2709', 'Chest'), +('2710', 'Chest'), +('2711', 'Stairs'), +('2712', 'Door'), +('2713', 'Hopper'), +('2714', 'Hopper'), +('2715', 'Hellhound'), +('2716', 'Hopper'), +('2717', 'Hopper'), +('2718', 'Hopper controls'), +('2719', 'null'), +('2720', 'Hopper controls'), +('2721', 'Hopper controls'), +('2722', 'Hopper controls'), +('2723', 'Kebab'), +('2724', 'Fireplace'), +('2725', 'Fireplace'), +('2726', 'Fireplace'), +('2727', 'Cooking pot'), +('2728', 'Range'), +('2729', 'Range'), +('2730', 'Range'), +('2731', 'Range'), +('2732', 'Fire'), +('2733', 'null'), +('2734', 'null'), +('2735', 'null'), +('2736', 'null'), +('2737', 'null'), +('2738', 'null'), +('2739', 'null'), +('2740', 'null'), +('2741', 'null'), +('2742', 'null'), +('2743', 'null'), +('2744', 'null'), +('2745', 'null'), +('2746', 'null'), +('2747', 'null'), +('2748', 'null'), +('2749', 'null'), +('2750', 'null'), +('2751', 'null'), +('2752', 'null'), +('2753', 'null'), +('2754', 'null'), +('2755', 'null'), +('2756', 'null'), +('2757', 'null'), +('2758', 'null'), +('2759', 'null'), +('2760', 'null'), +('2761', 'null'), +('2762', 'null'), +('2763', 'null'), +('2764', 'null'), +('2765', 'null'), +('2766', 'null'), +('2767', 'null'), +('2768', 'null'), +('2769', 'null'), +('2770', 'null'), +('2771', 'null'), +('2772', 'null'), +('2773', 'null'), +('2774', 'null'), +('2775', 'null'), +('2776', 'null'), +('2777', 'null'), +('2778', 'null'), +('2779', 'null'), +('2780', 'null'), +('2781', 'Catapult'), +('2782', 'Anvil'), +('2783', 'Anvil'), +('2784', 'Blacksmith's tools'), +('2785', 'null'), +('2786', 'City gate'), +('2787', 'City gate'), +('2788', 'City gate'), +('2789', 'City gate'), +('2790', 'Chest'), +('2791', 'Counter'), +('2792', 'Counter'), +('2793', 'Counter'), +('2794', 'Lever'), +('2795', 'Lever'), +('2796', 'Ladder'), +('2797', 'Ladder'), +('2798', 'Bush'), +('2799', 'Bush'), +('2800', 'Bush'), +('2801', 'Bush'), +('2802', 'Bush'), +('2803', 'Bush'), +('2804', 'Cave entrance'), +('2805', 'Cave entrance'), +('2806', 'Cave entrance'), +('2807', 'Cave entrance'), +('2808', 'Cave entrance'), +('2809', 'Cave entrance'), +('2810', 'Cave entrance'), +('2811', 'Cave entrance'), +('2812', 'Ladder'), +('2813', 'Cave entrance'), +('2814', 'Gate'), +('2815', 'Gate'), +('2816', 'Rock of Dalgroth'), +('2817', 'Cave exit'), +('2818', 'Cave exit'), +('2819', 'Cave exit'), +('2820', 'Cave exit'), +('2821', 'Cave exit'), +('2822', 'Cave exit'), +('2823', 'Hole'), +('2824', 'Hole'), +('2825', 'Climbing rope'), +('2826', 'Chest'), +('2827', 'Chest'), +('2828', 'null'), +('2829', 'null'), +('2830', 'Gap'), +('2831', 'Gap'), +('2832', 'Battlement'), +('2833', 'Ladder'), +('2834', 'Broken Bridge'), +('2835', 'Rock'), +('2836', 'Rock'), +('2837', 'Rock'), +('2838', 'null'), +('2839', 'null'), +('2840', 'null'), +('2841', 'Bed'), +('2842', 'Magical shield'), +('2843', 'Sinclair mansion drain'), +('2844', 'Sewer valve'), +('2845', 'Sewer valve'), +('2846', 'Sewer valve'), +('2847', 'Sewer valve'), +('2848', 'Sewer valve'), +('2849', 'Raft'), +('2850', 'Wardrobe'), +('2851', 'Wardrobe'), +('2852', 'Cave entrance'), +('2853', 'Stairs'), +('2854', 'null'), +('2855', 'null'), +('2856', 'Chest'), +('2857', 'Chest'), +('2858', 'Crate'), +('2859', 'Cooking range'), +('2860', 'Hazeel's coffin'), +('2861', 'Door'), +('2862', 'Door'), +('2863', 'Door'), +('2864', 'Fountain'), +('2865', 'Gate'), +('2866', 'Gate'), +('2867', 'Potted plant'), +('2868', 'Cupboard'), +('2869', 'Cupboard'), +('2870', 'null'), +('2871', 'Ladder'), +('2872', 'Ladder'), +('2873', 'Statue of Saradomin'), +('2874', 'Statue of Zamorak'), +('2875', 'Statue of Guthix'), +('2876', 'Counter'), +('2877', 'Barrel'), +('2878', 'Sparkling pool'), +('2879', 'Sparkling pool'), +('2880', 'Mystic portal'), +('2881', 'Prison Door'), +('2882', 'Gate'), +('2883', 'Gate'), +('2884', 'Ladder'), +('2885', 'Cupboard'), +('2886', 'Open Cupboard'), +('2887', 'Jungle Tree'), +('2888', 'Jungle Palm'), +('2889', 'Jungle Tree'), +('2890', 'Jungle Tree'), +('2891', 'Tree stump'), +('2892', 'Jungle Bush'), +('2893', 'Jungle Bush'), +('2894', 'Slashed bush'), +('2895', 'Slashed bush'), +('2896', 'Legends Guild door'), +('2897', 'Legends Guild door'), +('2898', 'null'), +('2899', 'null'), +('2900', 'Bed'), +('2901', 'Sir Palomedes'), +('2902', 'Rocks'), +('2903', 'Cave entrance'), +('2904', 'Cave entrance'), +('2905', 'Crate'), +('2906', 'Table'), +('2907', 'Bed'), +('2908', 'Fire Wall'), +('2909', 'Fire Wall'), +('2910', 'Desk'), +('2911', 'Bookcase'), +('2912', 'Ancient Gate'), +('2913', 'Ancient Gate'), +('2914', 'null'), +('2915', 'null'), +('2916', 'Rocks'), +('2917', 'null'), +('2918', 'Crevice'), +('2919', 'Boulder'), +('2920', 'Boulder'), +('2921', 'Boulder'), +('2922', 'Ancient Gate'), +('2923', 'Ancient Gate'), +('2924', 'Ancient Gate'), +('2925', 'Ancient Gate'), +('2926', 'Jagged wall'), +('2927', 'Marked wall'), +('2928', 'Carved rock'), +('2929', 'Buried skeleton'), +('2930', 'Ancient Gate'), +('2931', 'Ancient Gate'), +('2932', 'Barrel'), +('2933', 'null'), +('2934', 'Winch'), +('2935', 'Winch'), +('2936', 'Totem Pole'), +('2937', 'Totem Pole'), +('2938', 'Totem Pole'), +('2939', 'Totem Pole'), +('2940', 'Table'), +('2941', 'Sacred water'), +('2942', 'Water Pool'), +('2943', 'Polluted water'), +('2944', 'Tall Reeds'), +('2945', 'Yommi tree baby'), +('2946', 'Yommi tree sapling'), +('2947', 'Dead Yommi sapling'), +('2948', 'Adult Yommi tree'), +('2949', 'Dead Yommi'), +('2950', 'Felled Yommi tree'), +('2951', 'Rotten Yommi'), +('2952', 'Trimmed Yommi'), +('2953', 'Rotten Yommi tree'), +('2954', 'Totem pole'), +('2955', 'Rotten Totem pole'), +('2956', 'Fertile Soil'), +('2957', 'Damaged Earth'), +('2958', 'Climbing rope'), +('2959', 'Rocky Ledge'), +('2960', 'Rocky Ledge'), +('2961', 'Rocky Ledge'), +('2962', 'Rocks'), +('2963', 'Rocks'), +('2964', 'Rocks'), +('2965', 'Mossy rock'), +('2966', 'Furnace'), +('2967', 'null'), +('2968', 'null'), +('2969', 'Recess'), +('2970', 'Filled Recess'), +('2971', 'Shimmering field'), +('2972', 'Boulder'), +('2973', 'Boulder'), +('2974', 'Boulder'), +('2975', 'Leafy Palm Tree'), +('2976', 'Leafy Palm Tree'), +('2977', 'Sand'), +('2978', 'Sand'), +('2979', 'Sand'), +('2980', 'Flowers'), +('2981', 'Flowers'), +('2982', 'Flowers'), +('2983', 'Flowers'), +('2984', 'Flowers'), +('2985', 'Flowers'), +('2986', 'Flowers'), +('2987', 'Flowers'), +('2988', 'Flowers'), +('2989', 'Vine'), +('2990', 'Vine'), +('2991', 'Vine'), +('2992', 'Vine'), +('2993', 'Vine'), +('2994', 'Vine'), +('2995', 'Closed chest'), +('2996', 'Closed chest'), +('2997', 'Door'), +('2998', 'Door'), +('2999', 'null'), +('3000', 'Timber defence'), +('3001', 'null'), +('3002', 'null'), +('3003', 'null'), +('3004', 'null'), +('3005', 'null'), +('3006', 'null'), +('3007', 'null'), +('3008', 'null'), +('3009', 'null'), +('3010', 'null'), +('3011', 'null'), +('3012', 'null'), +('3013', 'null'), +('3014', 'Door'), +('3015', 'Gate'), +('3016', 'Gate'), +('3017', 'Door'), +('3018', 'Door'), +('3019', 'Door'), +('3020', 'Gate'), +('3021', 'Gate'), +('3022', 'Gate'), +('3023', 'Gate'), +('3024', 'Door'), +('3025', 'Door'), +('3026', 'Door'), +('3027', 'Door'), +('3028', 'Ladder'), +('3029', 'Ladder'), +('3030', 'Ladder'), +('3031', 'Ladder'), +('3032', 'Fishing spot'), +('3033', 'Tree'), +('3034', 'Tree'), +('3035', 'Tree'), +('3036', 'Tree'), +('3037', 'Oak'), +('3038', 'Fire'), +('3039', 'Range'), +('3040', 'Cupboard'), +('3041', 'Cupboard'), +('3042', 'Rocks'), +('3043', 'Rocks'), +('3044', 'Furnace'), +('3045', 'Bank booth'), +('3046', 'Timber defence'), +('3047', 'null'), +('3048', 'null'), +('3049', 'null'), +('3050', 'null'), +('3051', 'null'), +('3052', 'null'), +('3053', 'null'), +('3054', 'null'), +('3055', 'null'), +('3056', 'null'), +('3057', 'null'), +('3058', 'null'), +('3059', 'null'), +('3060', 'null'), +('3061', 'null'), +('3062', 'null'), +('3063', 'null'), +('3064', 'null'), +('3065', 'null'), +('3066', 'null'), +('3067', 'null'), +('3068', 'null'), +('3069', 'null'), +('3070', 'null'), +('3071', 'null'), +('3072', 'null'), +('3073', 'null'), +('3074', 'null'), +('3075', 'null'), +('3076', 'null'), +('3077', 'Wall'), +('3078', 'Wall'), +('3079', 'Wall'), +('3080', 'null'), +('3081', 'null'), +('3082', 'Wall'), +('3083', 'Wall'), +('3084', 'null'), +('3085', 'null'), +('3086', 'null'), +('3087', 'null'), +('3088', 'null'), +('3089', 'null'), +('3090', 'null'), +('3091', 'null'), +('3092', 'null'), +('3093', 'null'), +('3094', 'null'), +('3095', 'null'), +('3096', 'null'), +('3097', 'null'), +('3098', 'null'), +('3099', 'null'), +('3100', 'null'), +('3101', 'null'), +('3102', 'null'), +('3103', 'null'), +('3104', 'null'), +('3105', 'null'), +('3106', 'null'), +('3107', 'null'), +('3108', 'Entrance'), +('3109', 'Entrance'), +('3110', 'null'), +('3111', 'Entrance'), +('3112', 'Entrance'), +('3113', 'Entrance'), +('3114', 'Entrance'), +('3115', 'null'), +('3116', 'null'), +('3117', 'null'), +('3118', 'null'), +('3119', 'null'), +('3120', 'null'), +('3121', 'null'), +('3122', 'null'), +('3123', 'null'), +('3124', 'null'), +('3125', 'null'), +('3126', 'null'), +('3127', 'null'), +('3128', 'null'), +('3129', 'null'), +('3130', 'null'), +('3131', 'null'), +('3132', 'null'), +('3133', 'null'), +('3134', 'null'), +('3135', 'null'), +('3136', 'null'), +('3137', 'null'), +('3138', 'null'), +('3139', 'null'), +('3140', 'null'), +('3141', 'null'), +('3142', 'null'), +('3143', 'null'), +('3144', 'null'), +('3145', 'null'), +('3146', 'null'), +('3147', 'null'), +('3148', 'null'), +('3149', 'null'), +('3150', 'null'), +('3151', 'null'), +('3152', 'null'), +('3153', 'null'), +('3154', 'null'), +('3155', 'null'), +('3156', 'null'), +('3157', 'null'), +('3158', 'null'), +('3159', 'Bed'), +('3160', 'null'), +('3161', 'null'), +('3162', 'null'), +('3163', 'null'), +('3164', 'null'), +('3165', 'null'), +('3166', 'null'), +('3167', 'null'), +('3168', 'null'), +('3169', 'null'), +('3170', 'null'), +('3171', 'null'), +('3172', 'null'), +('3173', 'null'), +('3174', 'null'), +('3175', 'null'), +('3176', 'null'), +('3177', 'null'), +('3178', 'null'), +('3179', 'null'), +('3180', 'null'), +('3181', 'null'), +('3182', 'Chair'), +('3183', 'Hospital shelves'), +('3184', 'Hospital shelves'), +('3185', 'Hospital shelves'), +('3186', 'Operating Table'), +('3187', 'Operating Table'), +('3188', 'null'), +('3189', 'null'), +('3190', 'Drawers'), +('3191', 'Drawers'), +('3192', 'Scoreboard'), +('3193', 'Closed bank chest'), +('3194', 'Bank chest'), +('3195', 'Crate'), +('3196', 'Damaged armour'), +('3197', 'Gate'), +('3198', 'Gate'), +('3199', 'Bed'), +('3200', 'null'), +('3201', 'null'), +('3202', 'null'), +('3203', 'Trapdoor'), +('3204', 'null'), +('3205', 'Ladder'), +('3206', 'Barrel'), +('3207', 'null'), +('3208', 'null'), +('3209', 'Odd looking wall'), +('3210', 'Odd looking wall'), +('3211', 'Odd looking wall'), +('3212', 'Odd looking wall'), +('3213', 'null'), +('3214', 'Underground pass exit'), +('3215', 'null'), +('3216', 'Mud'), +('3217', 'Cave'), +('3218', 'Tunnel'), +('3219', 'Tunnel'), +('3220', 'Door'), +('3221', 'Door'), +('3222', 'Cave Stairs'), +('3223', 'Cave Stairs'), +('3224', 'Cave'), +('3225', 'null'), +('3226', 'null'), +('3227', 'Trap'), +('3228', 'Trap'), +('3229', 'Trap'), +('3230', 'Flat rock'), +('3231', 'Plank'), +('3232', 'Stalagmites'), +('3233', 'Trap'), +('3234', 'Odd markings'), +('3235', 'Obstacle pipe'), +('3236', 'Obstacle pipe'), +('3237', 'Obstacle pipe'), +('3238', 'Ledge'), +('3239', 'Bridge'), +('3240', 'Bridge'), +('3241', 'Lever'), +('3242', 'Lever'), +('3243', 'Platform'), +('3244', 'Platform'), +('3245', 'Platform'), +('3246', 'Platform'), +('3247', 'Bridge'), +('3248', 'Bridge'), +('3249', 'Bridge'), +('3250', 'Bridge'), +('3251', 'null'), +('3252', 'null'), +('3253', 'null'), +('3254', 'Bridge'), +('3255', 'Bridge'), +('3256', 'null'), +('3257', 'Platform'), +('3258', 'Bridge'), +('3259', 'Bridge'), +('3260', 'Bridge'), +('3261', 'null'), +('3262', 'null'), +('3263', 'Swamp'), +('3264', 'null'), +('3265', 'Pile of rocks'), +('3266', 'Cage'), +('3267', 'Cage'), +('3268', 'Cage'), +('3269', 'null'), +('3270', 'Door'), +('3271', 'Door'), +('3272', 'Chest'), +('3273', 'Chest'), +('3274', 'Chest'), +('3275', 'null'), +('3276', 'Stone bridge'), +('3277', 'null'), +('3278', 'null'), +('3279', 'null'), +('3280', 'null'), +('3281', 'null'), +('3282', 'null'), +('3283', 'null'), +('3284', 'null'), +('3285', 'null'), +('3286', 'null'), +('3287', 'null'), +('3288', 'null'), +('3289', 'null'), +('3290', 'null'), +('3291', 'null'), +('3292', 'null'), +('3293', 'null'), +('3294', 'Furnace'), +('3295', 'Stone tablet'), +('3296', 'Stone tablet'), +('3297', 'Stone tablet'), +('3298', 'Stone tablet'), +('3299', 'Stone tablet'), +('3300', 'Stone tablet'), +('3301', 'Stone tablet'), +('3302', 'Stone tablet'), +('3303', 'Portcullis'), +('3304', 'Portcullis'), +('3305', 'Well'), +('3306', 'null'), +('3307', 'Rockpile'), +('3308', 'Smashed cage'), +('3309', 'Rockslide'), +('3310', 'null'), +('3311', 'null'), +('3312', 'null'), +('3313', 'null'), +('3314', 'null'), +('3315', 'null'), +('3316', 'null'), +('3317', 'null'), +('3318', 'null'), +('3319', 'null'), +('3320', 'null'), +('3321', 'null'), +('3322', 'null'), +('3323', 'null'), +('3324', 'null'), +('3325', 'null'), +('3326', 'null'), +('3327', 'Eerie statue'), +('3328', 'Dwarf statue'), +('3329', 'null'), +('3330', 'null'), +('3331', 'null'), +('3332', 'Temple door'), +('3333', 'Door'), +('3334', 'Door'), +('3335', 'Door'), +('3336', 'Door'), +('3337', 'Lever'), +('3338', 'null'), +('3339', 'Flat rock'), +('3340', 'Guide rope'), +('3341', 'Guide rope'), +('3342', 'null'), +('3343', 'Rock pile'), +('3344', 'Barrel'), +('3345', 'null'), +('3346', 'null'), +('3347', 'null'), +('3348', 'Iban's Throne'), +('3349', 'null'), +('3350', 'null'), +('3351', 'Cage'), +('3352', 'Cage'), +('3353', 'Tomb'), +('3354', 'Tomb'), +('3355', 'null'), +('3356', 'null'), +('3357', 'null'), +('3358', 'null'), +('3359', 'Well'), +('3360', 'Crate'), +('3361', 'null'), +('3362', 'Window'), +('3363', 'null'), +('3364', 'Rock'), +('3365', 'Protruding rocks'), +('3366', 'Onion'), +('3367', 'Prison Door'), +('3368', 'null'), +('3369', 'null'), +('3370', 'null'), +('3371', 'Achey Tree stump'), +('3372', 'Ogre spit-roast'), +('3373', 'Ogre spit-roast'), +('3374', 'Ogre spit-roast'), +('3375', 'Ogre spit-roast'), +('3376', 'Ogre bench'), +('3377', 'Locked Ogre chest'), +('3378', 'Unlocked Ogre chest'), +('3379', 'Cave entrance'), +('3380', 'Cave exit'), +('3381', 'Cave exit'), +('3382', 'Ogre spit-roast'), +('3383', 'Ogre spit-roast'), +('3384', 'null'), +('3385', 'null'), +('3386', 'null'), +('3387', 'null'), +('3388', 'null'), +('3389', 'null'), +('3390', 'null'), +('3391', 'null'), +('3392', 'null'), +('3393', 'null'), +('3394', 'Crate'), +('3395', 'Crate'), +('3396', 'Boxes'), +('3397', 'Boxes'), +('3398', 'Crate'), +('3399', 'Crate'), +('3400', 'Crate'), +('3401', 'Crate'), +('3402', 'Workbench'), +('3403', 'null'), +('3404', 'null'), +('3405', 'null'), +('3406', 'Lever'), +('3407', 'null'), +('3408', 'Water wheel'), +('3409', 'Lever'), +('3410', 'null'), +('3411', 'null'), +('3412', 'null'), +('3413', 'null'), +('3414', 'null'), +('3415', 'Staircase'), +('3416', 'Staircase'), +('3417', 'Lever'), +('3418', 'null'), +('3419', 'null'), +('3420', 'null'), +('3421', 'null'), +('3422', 'Machinery'), +('3423', 'null'), +('3424', 'null'), +('3425', 'null'), +('3426', 'null'), +('3427', 'null'), +('3428', 'null'), +('3429', 'null'), +('3430', 'null'), +('3431', 'Rocks'), +('3432', 'Trapdoor'), +('3433', 'Trapdoor'), +('3434', 'null'), +('3435', 'null'), +('3436', 'null'), +('3437', 'null'), +('3438', 'null'), +('3439', 'null'), +('3440', 'Stairs'), +('3441', 'Stairs'), +('3442', 'null'), +('3443', 'Holy barrier'), +('3444', 'Gate'), +('3445', 'Gate'), +('3446', 'null'), +('3447', 'null'), +('3448', 'null'), +('3449', 'null'), +('3450', 'null'), +('3451', 'null'), +('3452', 'null'), +('3453', 'null'), +('3454', 'null'), +('3455', 'null'), +('3456', 'null'), +('3457', 'null'), +('3458', 'null'), +('3459', 'null'), +('3460', 'null'), +('3461', 'null'), +('3462', 'null'), +('3463', 'Cell door'), +('3464', 'null'), +('3465', 'null'), +('3466', 'Hanging meat'), +('3467', 'Hanging meat'), +('3468', 'null'), +('3469', 'null'), +('3470', 'null'), +('3471', 'null'), +('3472', 'null'), +('3473', 'null'), +('3474', 'null'), +('3475', 'null'), +('3476', 'null'), +('3477', 'null'), +('3478', 'null'), +('3479', 'Statue'), +('3480', 'null'), +('3481', 'null'), +('3482', 'null'), +('3483', 'null'), +('3484', 'null'), +('3485', 'Well'), +('3486', 'null'), +('3487', 'null'), +('3488', 'null'), +('3489', 'null'), +('3490', 'null'), +('3491', 'null'), +('3492', 'null'), +('3493', 'Monument'), +('3494', 'Monument'), +('3495', 'Monument'), +('3496', 'Monument'), +('3497', 'Monument'), +('3498', 'Monument'), +('3499', 'Monument'), +('3500', 'Church organ'), +('3501', 'null'), +('3502', 'null'), +('3503', 'null'), +('3504', 'null'), +('3505', 'null'), +('3506', 'Gate'), +('3507', 'Gate'), +('3508', 'Rotting log'), +('3509', 'Fungi on log'), +('3510', 'Rotting branch'), +('3511', 'Budding branch'), +('3512', 'A small bush'), +('3513', 'A golden pear bush'), +('3514', 'Rotting tree'), +('3515', 'null'), +('3516', 'Grotto'), +('3517', 'Grotto tree'), +('3518', 'null'), +('3519', 'null'), +('3520', 'Grotto'), +('3521', 'Altar of nature'), +('3522', 'Bridge'), +('3523', 'Bench'), +('3524', 'null'), +('3525', 'Grotto'), +('3526', 'Grotto'), +('3527', 'Stone'), +('3528', 'Stone'), +('3529', 'Stone'), +('3530', 'null'), +('3531', 'null'), +('3532', 'null'), +('3533', 'null'), +('3534', 'null'), +('3535', 'null'), +('3536', 'null'), +('3537', 'null'), +('3538', 'null'), +('3539', 'null'), +('3540', 'null'), +('3541', 'null'), +('3542', 'null'), +('3543', 'null'), +('3544', 'null'), +('3545', 'null'), +('3546', 'Old well'), +('3547', 'null'), +('3548', 'null'), +('3549', 'null'), +('3550', 'null'), +('3551', 'Balancing rope'), +('3552', 'Balancing rope'), +('3553', 'Log balance'), +('3554', 'Log balance'), +('3555', 'Log balance'), +('3556', 'Log balance'), +('3557', 'Log balance'), +('3558', 'Log balance'), +('3559', 'Balancing ledge'), +('3560', 'Balancing ledge'), +('3561', 'Balancing ledge'), +('3562', 'Balancing ledge'), +('3563', 'Monkey bars'), +('3564', 'Monkey bars'), +('3565', 'Low wall'), +('3566', 'Rope swing'), +('3567', 'Blade'), +('3568', 'Blade'), +('3569', 'Blade'), +('3570', 'Plank'), +('3571', 'Plank'), +('3572', 'Plank'), +('3573', 'Plank'), +('3574', 'Plank'), +('3575', 'Plank'), +('3576', 'Plank'), +('3577', 'Plank'), +('3578', 'Pillar'), +('3579', 'Pillar'), +('3580', 'Spinning blades'), +('3581', 'Ticket Dispenser'), +('3582', 'Floor spikes'), +('3583', 'Hand holds'), +('3584', 'Hand holds'), +('3585', 'Pressure pad'), +('3586', 'null'), +('3587', 'null'), +('3588', 'null'), +('3589', 'null'), +('3590', 'null'), +('3591', 'null'), +('3592', 'null'), +('3593', 'null'), +('3594', 'null'), +('3595', 'null'), +('3596', 'null'), +('3597', 'null'), +('3598', 'null'), +('3599', 'null'), +('3600', 'null'), +('3601', 'null'), +('3602', 'null'), +('3603', 'null'), +('3604', 'null'), +('3605', 'null'), +('3606', 'null'), +('3607', 'null'), +('3608', 'Ticket Dispenser'), +('3609', 'null'), +('3610', 'Climbing rope'), +('3611', 'null'), +('3612', 'null'), +('3613', 'null'), +('3614', 'null'), +('3615', 'null'), +('3616', 'null'), +('3617', 'Ladder'), +('3618', 'Ladder'), +('3619', 'null'), +('3620', 'null'), +('3621', 'null'), +('3622', 'null'), +('3623', 'null'), +('3624', 'null'), +('3625', 'null'), +('3626', 'Wall'), +('3627', 'null'), +('3628', 'Wall'), +('3629', 'Wall'), +('3630', 'Wall'), +('3631', 'Wall'), +('3632', 'Wall'), +('3633', 'null'), +('3634', 'Strange shrine'), +('3635', 'Chest'), +('3636', 'Chest'), +('3637', 'null'), +('3638', 'null'), +('3639', 'null'), +('3640', 'null'), +('3641', 'null'), +('3642', 'null'), +('3643', 'null'), +('3644', 'Spotlight'), +('3645', 'null'), +('3646', 'null'), +('3647', 'null'), +('3648', 'null'), +('3649', 'null'), +('3650', 'null'), +('3651', 'null'), +('3652', 'null'), +('3653', 'null'), +('3654', 'null'), +('3655', 'null'), +('3656', 'null'), +('3657', 'null'), +('3658', 'null'), +('3659', 'null'), +('3660', 'null'), +('3661', 'null'), +('3662', 'Cooking pot'), +('3663', 'null'), +('3664', 'null'), +('3665', 'Bones'), +('3666', 'null'), +('3667', 'null'), +('3668', 'null'), +('3669', 'null'), +('3670', 'null'), +('3671', 'null'), +('3672', 'null'), +('3673', 'null'), +('3674', 'null'), +('3675', 'null'), +('3676', 'Stone Mechanism'), +('3677', 'Stone Mechanism'), +('3678', 'null'), +('3679', 'Standard'), +('3680', 'Flagpole'), +('3681', 'Signpost'), +('3682', 'null'), +('3683', 'null'), +('3684', 'null'), +('3685', 'Boxes'), +('3686', 'Boxes'), +('3687', 'Boxes'), +('3688', 'null'), +('3689', 'null'), +('3690', 'null'), +('3691', 'null'), +('3692', 'Climbing Rope'), +('3693', 'null'), +('3694', 'Crate'), +('3695', 'null'), +('3696', 'Suit of armour'), +('3697', 'Barrel'), +('3698', 'null'), +('3699', 'null'), +('3700', 'null'), +('3701', 'null'), +('3702', 'null'), +('3703', 'null'), +('3704', 'null'), +('3705', 'null'), +('3706', 'null'), +('3707', 'null'), +('3708', 'null'), +('3709', 'null'), +('3710', 'null'), +('3711', 'null'), +('3712', 'null'), +('3713', 'null'), +('3714', 'null'), +('3715', 'null'), +('3716', 'null'), +('3717', 'null'), +('3718', 'null'), +('3719', 'null'), +('3720', 'null'), +('3721', 'null'), +('3722', 'Rocks'), +('3723', 'Rocks'), +('3724', 'null'), +('3725', 'Gate'), +('3726', 'Gate'), +('3727', 'Gate'), +('3728', 'Gate'), +('3729', 'null'), +('3730', 'Stile'), +('3731', 'null'), +('3732', 'null'), +('3733', 'null'), +('3734', 'null'), +('3735', 'Cave Entrance'), +('3736', 'Cave Exit'), +('3737', 'null'), +('3738', 'null'), +('3739', 'null'), +('3740', 'null'), +('3741', 'Danger sign'), +('3742', 'Danger sign'), +('3743', 'Large door'), +('3744', 'null'), +('3745', 'Door'), +('3746', 'Door'), +('3747', 'Door'), +('3748', 'Rocks'), +('3749', 'null'), +('3750', 'null'), +('3751', 'null'), +('3752', 'Mysterious glow'), +('3753', 'null'), +('3754', 'null'), +('3755', 'null'), +('3756', 'null'), +('3757', 'Cave Entrance'), +('3758', 'Cave Exit'), +('3759', 'Cave Entrance'), +('3760', 'Cave Exit'), +('3761', 'Exit'), +('3762', 'Secret Door'), +('3763', 'Cell Door'), +('3764', 'Cell Door'), +('3765', 'Cell Door'), +('3766', 'null'), +('3767', 'Cell Door'), +('3768', 'null'), +('3769', 'Fire'), +('3770', 'Window'), +('3771', 'Stronghold'), +('3772', 'null'), +('3773', 'null'), +('3774', 'Exit'), +('3775', 'Fire'), +('3776', 'Door'), +('3777', 'Door'), +('3778', 'null'), +('3779', 'null'), +('3780', 'Prison Door'), +('3781', 'null'), +('3782', 'Arena Entrance'), +('3783', 'Arena Entrance'), +('3784', 'null'), +('3785', 'Arena Exit'), +('3786', 'Arena Exit'), +('3787', 'null'), +('3788', 'Stone Staircase'), +('3789', 'Stone Staircase'), +('3790', 'Rocks'), +('3791', 'Rocks'), +('3792', 'null'), +('3793', 'null'), +('3794', 'Grass'), +('3795', 'Grass'), +('3796', 'null'), +('3797', 'Corpse'), +('3798', 'Corpse'), +('3799', 'Corpse'), +('3800', 'Counter'), +('3801', 'Chair'), +('3802', 'Smashed chair'), +('3803', 'Rocks'), +('3804', 'Rocks'), +('3805', 'Rocks'), +('3806', 'Rocks'), +('3807', 'Rocks'), +('3808', 'Rocks'), +('3809', 'null'), +('3810', 'Storeroom Door'), +('3811', 'null'), +('3812', 'null'), +('3813', 'Crate'), +('3814', 'Crates'), +('3815', 'Crates'), +('3816', 'Kitchen Drawers'), +('3817', 'Kitchen Drawers'), +('3818', 'null'), +('3819', 'null'), +('3820', 'Food Trough'), +('3821', 'Rack'), +('3822', 'Goutweed Crate'), +('3823', 'Sign'), +('3824', 'Troll Stew'), +('3825', 'Stalagmite'), +('3826', 'Stalagmites'), +('3827', 'Tunnel entrance'), +('3828', 'Tunnel entrance'), +('3829', 'Rope'), +('3830', 'Tunnel entrance'), +('3831', 'Tunnel entrance'), +('3832', 'Rope'), +('3833', 'Cocoon'), +('3834', 'null'), +('3835', 'null'), +('3836', 'null'), +('3837', 'null'), +('3838', 'null'), +('3839', 'null'), +('3840', 'null'), +('3841', 'null'), +('3842', 'null'), +('3843', 'null'), +('3844', 'null'), +('3845', 'null'), +('3846', 'null'), +('3847', 'null'), +('3848', 'null'), +('3849', 'null'), +('3850', 'null'), +('3851', 'null'), +('3852', 'null'), +('3853', 'null'), +('3854', 'null'), +('3855', 'null'), +('3856', 'Crate'), +('3857', 'Crate'), +('3858', 'Fishing rod'), +('3859', 'Fishing rod'), +('3860', 'Barrel'), +('3861', 'Crate'), +('3862', 'Burning bones'), +('3863', 'Tribal Statue'), +('3864', 'null'), +('3865', 'null'), +('3866', 'null'), +('3867', 'null'), +('3868', 'null'), +('3869', 'null'), +('3870', 'null'), +('3871', 'null'), +('3872', 'null'), +('3873', 'null'), +('3874', 'null'), +('3875', 'null'), +('3876', 'null'), +('3877', 'null'), +('3878', 'null'), +('3879', 'Tree'), +('3880', 'Tree stump'), +('3881', 'Tree'), +('3882', 'Tree'), +('3883', 'Tree'), +('3884', 'Tree stump'), +('3885', 'Tree'), +('3886', 'Tree'), +('3887', 'Tree'), +('3888', 'Tree'), +('3889', 'Tree'), +('3890', 'Tree'), +('3891', 'Tree'), +('3892', 'Fallen tree'), +('3893', 'Tree'), +('3894', 'null'), +('3895', 'null'), +('3896', 'null'), +('3897', 'null'), +('3898', 'null'), +('3899', 'null'), +('3900', 'null'), +('3901', 'Flowers'), +('3902', 'Flowers'), +('3903', 'Flowers'), +('3904', 'Flowers'), +('3905', 'Flowers'), +('3906', 'Flowers'), +('3907', 'null'), +('3908', 'null'), +('3909', 'null'), +('3910', 'null'), +('3911', 'null'), +('3912', 'Mushroom'), +('3913', 'Mushrooms'), +('3914', 'Mushroom'), +('3915', 'Mushroom'), +('3916', 'Mushrooms'), +('3917', 'Mushroom'), +('3918', 'Elven lamp'), +('3919', 'Twigs'), +('3920', 'null'), +('3921', 'Tripwire'), +('3922', 'Sticks'), +('3923', 'Leaves'), +('3924', 'Leaves'), +('3925', 'Leaves'), +('3926', 'null'), +('3927', 'Protruding rocks'), +('3928', 'Tree'), +('3929', 'Log balance'), +('3930', 'Log balance'), +('3931', 'Log balance'), +('3932', 'Log balance'), +('3933', 'Log balance'), +('3934', 'null'), +('3935', 'null'), +('3936', 'null'), +('3937', 'Dense forest'), +('3938', 'Dense forest'), +('3939', 'Dense forest'), +('3940', 'null'), +('3941', 'Tracks'), +('3942', 'null'), +('3943', 'null'), +('3944', 'Huge Gate'), +('3945', 'Huge Gate'), +('3946', 'Huge Gate'), +('3947', 'Huge Gate'), +('3948', 'null'), +('3949', 'null'), +('3950', 'null'), +('3951', 'null'), +('3952', 'null'), +('3953', 'null'), +('3954', 'null'), +('3955', 'null'), +('3956', 'null'), +('3957', 'null'), +('3958', 'null'), +('3959', 'null'), +('3960', 'null'), +('3961', 'null'), +('3962', 'Sulphur'), +('3963', 'Sulphur'), +('3964', 'Sulphur'), +('3965', 'null'), +('3966', 'null'), +('3967', 'Tree'), +('3968', 'Tree'), +('3969', 'Pile of skulls'), +('3970', 'Charred bones'), +('3971', 'Corpse'), +('3972', 'Corpse'), +('3973', 'Corpse'), +('3974', 'Corpse'), +('3975', 'Tar'), +('3976', 'null'), +('3977', 'null'), +('3978', 'null'), +('3979', 'null'), +('3980', 'Tent flap'), +('3981', 'null'), +('3982', 'null'), +('3983', 'Tent'), +('3984', 'Tent'), +('3985', 'Tent'), +('3986', 'Tent'), +('3987', 'Barrel'), +('3988', 'null'), +('3989', 'null'), +('3990', 'null'), +('3991', 'null'), +('3992', 'Standard'), +('3993', 'Standard'), +('3994', 'Small furnace'), +('3995', 'Tent wall'), +('3996', 'Tent flap'), +('3997', 'Tent wall'), +('3998', 'Dense forest'), +('3999', 'Dense forest'), +('4000', 'Tent roof'), +('4001', 'Tent wall'), +('4002', 'Tent pole'), +('4003', 'null'), +('4004', 'Well'), +('4005', 'Well'), +('4006', 'Cave entrance'), +('4007', 'Cave Exit'), +('4008', 'Altar'), +('4009', 'null'), +('4010', 'null'), +('4011', 'null'), +('4012', 'null'), +('4013', 'null'), +('4014', 'null'), +('4015', 'null'), +('4016', 'null'), +('4017', 'null'), +('4018', 'null'), +('4019', 'null'), +('4020', 'null'), +('4021', 'null'), +('4022', 'null'), +('4023', 'null'), +('4024', 'Barrel'), +('4025', 'Barrel'), +('4026', 'Fractionalizing still'), +('4027', 'Pile of Rock'), +('4028', 'Pile of Rock'), +('4029', 'Pile of Rock'), +('4030', 'Pile of Rock'), +('4031', 'Shantay pass'), +('4032', 'null'), +('4033', 'null'), +('4034', 'null'), +('4035', 'Druid's robes'), +('4036', 'Druid's robes'), +('4037', 'null'), +('4038', 'null'), +('4039', 'null'), +('4040', 'null'), +('4041', 'null'), +('4042', 'null'), +('4043', 'Aviary Hatch'), +('4044', 'Standard'), +('4045', 'null'), +('4046', 'null'), +('4047', 'null'), +('4048', 'Tree'), +('4049', 'Tree'), +('4050', 'Tree'), +('4051', 'Tree'), +('4052', 'Tree'), +('4053', 'Tree'), +('4054', 'Tree'), +('4055', 'Huge Mushroom'), +('4056', 'Huge Mushroom'), +('4057', 'Huge Mushroom'), +('4058', 'Obstacle pipe'), +('4059', 'Balancing rope'), +('4060', 'Hollow tree'), +('4061', 'Tree stump'), +('4062', 'Shelf'), +('4063', 'Sink'), +('4064', 'Smashed table'), +('4065', 'Stone stand'), +('4066', 'Signpost'), +('4067', 'Warning sign'), +('4068', 'Broken Wall'), +('4069', 'Temple wall'), +('4070', 'Temple wall'), +('4071', 'Temple wall'), +('4072', 'Temple wall'), +('4073', 'Temple wall'), +('4074', 'Temple wall'), +('4075', 'Temple wall'), +('4076', 'Temple wall'), +('4077', 'Temple wall'), +('4078', 'Temple wall'), +('4079', 'Broken Wall'), +('4080', 'Temple wall'), +('4081', 'Temple wall'), +('4082', 'Temple wall'), +('4083', 'Temple wall'), +('4084', 'Temple wall'), +('4085', 'Temple wall'), +('4086', 'Temple wall'), +('4087', 'Temple wall'), +('4088', 'Temple wall'), +('4089', 'Temple wall'), +('4090', 'Flaming Fire altar'), +('4091', 'Fire altar'), +('4092', 'Broken Fire altar'), +('4093', 'Funeral Pyre'), +('4094', 'Funeral pyre'), +('4095', 'Funeral pyre'), +('4096', 'Funeral pyre'), +('4097', 'Funeral pyre'), +('4098', 'Funeral pyre'), +('4099', 'null'), +('4100', 'Funeral pyre'), +('4101', 'Funeral pyre'), +('4102', 'Funeral pyre'), +('4103', 'Funeral pyre'), +('4104', 'Funeral pyre'), +('4105', 'null'), +('4106', 'Solid bronze door'), +('4107', 'Solid steel door'), +('4108', 'Solid black door'), +('4109', 'Solid silver door'), +('4110', 'null'), +('4111', 'Bronze Chest'), +('4112', 'Bronze Chest'), +('4113', 'Bronze Chest'), +('4114', 'Bronze Chest'), +('4115', 'Bronze Chest'), +('4116', 'Steel Chest'), +('4117', 'Steel Chest'), +('4118', 'Steel Chest'), +('4119', 'Steel Chest'), +('4120', 'Steel Chest'), +('4121', 'Black Chest'), +('4122', 'Black Chest'), +('4123', 'Black Chest'), +('4124', 'Black Chest'), +('4125', 'Black Chest'), +('4126', 'Silver Chest'), +('4127', 'Silver Chest'), +('4128', 'Silver Chest'), +('4129', 'Silver Chest'), +('4130', 'Silver Chest'), +('4131', 'Bronze Chest'), +('4132', 'Signpost'), +('4133', 'Signpost'), +('4134', 'Signpost'), +('4135', 'Signpost'), +('4136', 'null'), +('4137', 'null'), +('4138', 'Counter'), +('4139', 'Gate'), +('4140', 'Gate'), +('4141', 'Strange altar'), +('4142', 'Swaying tree'), +('4143', 'Danger sign'), +('4144', 'Golden tree'), +('4145', 'null'), +('4146', 'null'), +('4147', 'Cave Entrance'), +('4148', 'Door'), +('4149', 'Lalli's Stew'), +('4150', 'null'), +('4151', 'null'), +('4152', 'null'), +('4153', 'null'), +('4154', 'null'), +('4155', 'null'), +('4156', 'null'), +('4157', 'null'), +('4158', 'Ladder'), +('4159', 'Ladder'), +('4160', 'Ladder'), +('4161', 'Escape rope'), +('4162', 'Pipe'), +('4163', 'Ladder'), +('4164', 'Ladder'), +('4165', 'Door'), +('4166', 'Door'), +('4167', 'Chest'), +('4168', 'Chest'), +('4169', 'Frozen table'), +('4170', 'Chest'), +('4171', 'Bookcase'), +('4172', 'Cooking range'), +('4173', 'Trapdoor'), +('4174', 'Trapdoor'), +('4175', 'Drain'), +('4176', 'Tap'), +('4177', 'Cupboard'), +('4178', 'Cupboard'), +('4179', 'Abstract mural'), +('4180', 'Abstract mural'), +('4181', 'Unicorn's head'), +('4182', 'Bull's head'), +('4183', 'Boxes'), +('4184', 'Boxes'), +('4185', 'Crate'), +('4186', 'Crate'), +('4187', 'Ladder'), +('4188', 'Ladder'), +('4189', 'Ladder'), +('4190', 'null'), +('4191', 'null'), +('4192', 'null'), +('4193', 'null'), +('4194', 'null'), +('4195', 'null'), +('4196', 'null'), +('4197', 'null'), +('4198', 'null'), +('4199', 'null'), +('4200', 'null'), +('4201', 'null'), +('4202', 'null'), +('4203', 'null'), +('4204', 'null'), +('4205', 'null'), +('4206', 'null'), +('4207', 'null'), +('4208', 'null'), +('4209', 'null'), +('4210', 'null'), +('4211', 'null'), +('4212', 'null'), +('4213', 'null'), +('4214', 'null'), +('4215', 'null'), +('4216', 'null'), +('4217', 'null'), +('4218', 'null'), +('4219', 'null'), +('4220', 'null'), +('4221', 'null'), +('4222', 'null'), +('4223', 'null'), +('4224', 'null'), +('4225', 'null'), +('4226', 'null'), +('4227', 'null'), +('4228', 'null'), +('4229', 'null'), +('4230', 'null'), +('4231', 'null'), +('4232', 'null'), +('4233', 'null'), +('4234', 'null'), +('4235', 'null'), +('4236', 'null'), +('4237', 'null'), +('4238', 'null'), +('4239', 'null'), +('4240', 'null'), +('4241', 'null'), +('4242', 'null'), +('4243', 'null'), +('4244', 'null'), +('4245', 'null'), +('4246', 'null'), +('4247', 'Door'), +('4248', 'Door'), +('4249', 'null'), +('4250', 'Door'), +('4251', 'Door'), +('4252', 'Chest'), +('4253', 'Chest'), +('4254', 'null'), +('4255', 'null'), +('4256', 'null'), +('4257', 'null'), +('4258', 'null'), +('4259', 'null'), +('4260', 'null'), +('4261', 'null'), +('4262', 'null'), +('4263', 'null'), +('4264', 'null'), +('4265', 'Fire'), +('4266', 'Fire'), +('4267', 'Spit roast'), +('4268', 'null'), +('4269', 'Wooden Table'), +('4270', 'Wooden Table'), +('4271', 'Chair'), +('4272', 'Table'), +('4273', 'Bar pumps'), +('4274', 'Bar'), +('4275', 'Barrel'), +('4276', 'Market stall'), +('4277', 'Fish stall'), +('4278', 'Fur stall'), +('4279', 'null'), +('4280', 'null'), +('4281', 'null'), +('4282', 'null'), +('4283', 'Drain'), +('4284', 'null'), +('4285', 'Tap'), +('4286', 'Keg'), +('4287', 'Bed'), +('4288', 'Bed'), +('4289', 'null'), +('4290', 'null'), +('4291', 'null'), +('4292', 'null'), +('4293', 'null'), +('4294', 'null'), +('4295', 'null'), +('4296', 'Abandoned Cart'), +('4297', 'Boxes'), +('4298', 'Boxes'), +('4299', 'Boxes'), +('4300', 'Crate'), +('4301', 'Crate'), +('4302', 'null'), +('4303', 'null'), +('4304', 'Furnace'), +('4305', 'null'), +('4306', 'Anvil'), +('4307', 'Blacksmith's tools'), +('4308', 'Pottery Oven'), +('4309', 'Spinning wheel'), +('4310', 'Potter's Wheel'), +('4311', 'Gate'), +('4312', 'Gate'), +('4313', 'Gate'), +('4314', 'null'), +('4315', 'null'), +('4316', 'null'), +('4317', 'null'), +('4318', 'null'), +('4319', 'null'), +('4320', 'null'), +('4321', 'null'), +('4322', 'null'), +('4323', 'null'), +('4324', 'null'), +('4325', 'null'), +('4326', 'null'), +('4327', 'null'), +('4328', 'Tree stump'), +('4329', 'Tree stump'), +('4330', 'null'), +('4331', 'null'), +('4332', 'null'), +('4333', 'null'), +('4334', 'null'), +('4335', 'null'), +('4336', 'null'), +('4337', 'null'), +('4338', 'null'), +('4339', 'null'), +('4340', 'null'), +('4341', 'null'), +('4342', 'null'), +('4343', 'null'), +('4344', 'null'), +('4345', 'null'), +('4346', 'null'), +('4347', 'null'), +('4348', 'Shell'), +('4349', 'Shell'), +('4350', 'Shell'), +('4351', 'Shell'), +('4352', 'Bowl'), +('4353', 'null'), +('4354', 'null'), +('4355', 'null'), +('4356', 'null'), +('4357', 'null'), +('4358', 'null'), +('4359', 'null'), +('4360', 'null'), +('4361', 'null'), +('4362', 'null'), +('4363', 'null'), +('4364', 'null'), +('4365', 'null'), +('4366', 'Shelf'), +('4367', 'Shelf'), +('4368', 'Shelf'), +('4369', 'Shelf'), +('4370', 'Shelf'), +('4371', 'Shelf'), +('4372', 'Table'), +('4373', 'Sand pit'), +('4374', 'null'), +('4375', 'null'), +('4376', 'null'), +('4377', 'Standard Stand'), +('4378', 'Standard Stand'), +('4379', 'null'), +('4380', 'Iron ladder'), +('4381', 'Catapult'), +('4382', 'Catapult'), +('4383', 'Iron ladder'), +('4384', 'null'), +('4385', 'Catapult'), +('4386', 'Catapult'), +('4387', 'Saradomin Portal'), +('4388', 'Zamorak Portal'), +('4389', 'Portal'), +('4390', 'Portal'), +('4391', 'null'), +('4392', 'null'), +('4393', 'null'), +('4394', 'null'), +('4395', 'null'), +('4396', 'null'), +('4397', 'null'), +('4398', 'null'), +('4399', 'null'), +('4400', 'null'), +('4401', 'null'), +('4402', 'null'), +('4403', 'null'), +('4404', 'null'), +('4405', 'null'), +('4406', 'Portal'), +('4407', 'Portal'), +('4408', 'Guthix Portal'), +('4409', 'null'), +('4410', 'null'), +('4411', 'Stepping stone'), +('4412', 'Iron ladder'), +('4413', 'Iron ladder'), +('4414', 'Staircase'), +('4415', 'Staircase'), +('4416', 'Staircase'), +('4417', 'Staircase'), +('4418', 'Staircase'), +('4419', 'Staircase'), +('4420', 'Staircase'), +('4421', 'Barricade'), +('4422', 'Barricade'), +('4423', 'Large door'), +('4424', 'Large door'), +('4425', 'Large door'), +('4426', 'Large door'), +('4427', 'Large door'), +('4428', 'Large door'), +('4429', 'Large door'), +('4430', 'Large door'), +('4431', 'Broken door'), +('4432', 'Broken door'), +('4433', 'Broken door'), +('4434', 'Broken door'), +('4435', 'null'), +('4436', 'null'), +('4437', 'Rocks'), +('4438', 'Rocks'), +('4439', 'null'), +('4440', 'null'), +('4441', 'null'), +('4442', 'null'), +('4443', 'null'), +('4444', 'Trapdoor'), +('4445', 'null'), +('4446', 'Battlements'), +('4447', 'Battlements'), +('4448', 'Cave wall'), +('4449', 'Staircase'), +('4450', 'Staircase'), +('4451', 'null'), +('4452', 'null'), +('4453', 'null'), +('4454', 'null'), +('4455', 'null'), +('4456', 'null'), +('4457', 'null'), +('4458', 'Table'), +('4459', 'Table'), +('4460', 'Table'), +('4461', 'Table'), +('4462', 'Table'), +('4463', 'Table'), +('4464', 'Table'), +('4465', 'Door'), +('4466', 'Door'), +('4467', 'Door'), +('4468', 'Door'), +('4469', 'Energy Barrier'), +('4470', 'Energy Barrier'), +('4471', 'Trapdoor'), +('4472', 'Trapdoor'), +('4473', 'null'), +('4474', 'null'), +('4475', 'null'), +('4476', 'null'), +('4477', 'null'), +('4478', 'null'), +('4479', 'null'), +('4480', 'null'), +('4481', 'null'), +('4482', 'Tap'), +('4483', 'Bank chest'), +('4484', 'Scoreboard'), +('4485', 'Iron ladder'), +('4486', 'null'), +('4487', 'Door'), +('4488', 'null'), +('4489', 'null'), +('4490', 'Door'), +('4491', 'Door'), +('4492', 'Door'), +('4493', 'Staircase'), +('4494', 'Staircase'), +('4495', 'Staircase'), +('4496', 'Staircase'), +('4497', 'Staircase'), +('4498', 'Staircase'), +('4499', 'Cave Entrance'), +('4500', 'Tunnel'), +('4501', 'null'), +('4502', 'null'), +('4503', 'null'), +('4504', 'null'), +('4505', 'null'), +('4506', 'null'), +('4507', 'null'), +('4508', 'null'), +('4509', 'null'), +('4510', 'null'), +('4511', 'null'), +('4512', 'null'), +('4513', 'Heap of bricks'), +('4514', 'null'), +('4515', 'null'), +('4516', 'null'), +('4517', 'null'), +('4518', 'Corpse'), +('4519', 'Corpse'), +('4520', 'Corpse'), +('4521', 'null'), +('4522', 'null'), +('4523', 'null'), +('4524', 'null'), +('4525', 'null'), +('4526', 'null'), +('4527', 'null'), +('4528', 'null'), +('4529', 'null'), +('4530', 'null'), +('4531', 'null'), +('4532', 'null'), +('4533', 'null'), +('4534', 'null'), +('4535', 'null'), +('4536', 'null'), +('4537', 'null'), +('4538', 'null'), +('4539', 'null'), +('4540', 'null'), +('4541', 'Statue'), +('4542', 'null'), +('4543', 'Strange wall'), +('4544', 'Strange wall'), +('4545', 'Strange wall'), +('4546', 'Strange wall'), +('4547', 'null'), +('4548', 'null'), +('4549', 'null'), +('4550', 'Beach'), +('4551', 'Basalt rock'), +('4552', 'Basalt rock'), +('4553', 'Basalt rock'), +('4554', 'Basalt rock'), +('4555', 'Basalt rock'), +('4556', 'Basalt rock'), +('4557', 'Basalt rock'), +('4558', 'Basalt rock'), +('4559', 'Rocky shore'), +('4560', 'null'), +('4561', 'null'), +('4562', 'null'), +('4563', 'null'), +('4564', 'null'), +('4565', 'null'), +('4566', 'null'), +('4567', 'null'), +('4568', 'Staircase'), +('4569', 'Staircase'), +('4570', 'Staircase'), +('4571', 'null'), +('4572', 'null'), +('4573', 'null'), +('4574', 'null'), +('4575', 'null'), +('4576', 'null'), +('4577', 'Doorway'), +('4578', 'null'), +('4579', 'null'), +('4580', 'null'), +('4581', 'null'), +('4582', 'null'), +('4583', 'null'), +('4584', 'null'), +('4585', 'null'), +('4586', 'null'), +('4587', 'Lighting mechanism'), +('4588', 'Lighting mechanism'), +('4589', 'Lighting mechanism'), +('4590', 'Lighting mechanism'), +('4591', 'null'), +('4592', 'null'), +('4593', 'null'), +('4594', 'null'), +('4595', 'null'), +('4596', 'null'), +('4597', 'null'), +('4598', 'null'), +('4599', 'null'), +('4600', 'null'), +('4601', 'null'), +('4602', 'null'), +('4603', 'null'), +('4604', 'null'), +('4605', 'null'), +('4606', 'null'), +('4607', 'null'), +('4608', 'null'), +('4609', 'null'), +('4610', 'Shell'), +('4611', 'Shell'), +('4612', 'Shell'), +('4613', 'Shell'), +('4614', 'Bowl'), +('4615', 'Broken bridge'), +('4616', 'Broken bridge'), +('4617', 'Bookcase'), +('4618', 'Fireplace'), +('4619', 'null'), +('4620', 'Stairs'), +('4621', 'Stairs'), +('4622', 'Stairs'), +('4623', 'Stairs'), +('4624', 'Stairs'), +('4625', 'Stairs'), +('4626', 'Stairs'), +('4627', 'Stairs'), +('4628', 'null'), +('4629', 'Large door'), +('4630', 'Large door'), +('4631', 'Large door'), +('4632', 'Large door'), +('4633', 'Large door'), +('4634', 'Large door'), +('4635', 'null'), +('4636', 'Door'), +('4637', 'Door'), +('4638', 'Door'), +('4639', 'Door'), +('4640', 'Door'), +('4641', 'Stacked barrels'), +('4642', 'Noticeboard'), +('4643', 'Ladder'), +('4644', 'Ladder'), +('4645', 'Ladder'), +('4646', 'Ladder'), +('4647', 'Ladder'), +('4648', 'Ladder'), +('4649', 'null'), +('4650', 'Fireplace'), +('4651', 'Table'), +('4652', 'Table'), +('4653', 'Table'), +('4654', 'null'), +('4655', 'null'), +('4656', 'Stool'), +('4657', 'null'), +('4658', 'Plaque'), +('4659', 'Plaque'), +('4660', 'Plaque'), +('4661', 'Plaque'), +('4662', 'null'), +('4663', 'null'), +('4664', 'null'), +('4665', 'null'), +('4666', 'null'), +('4667', 'null'), +('4668', 'null'), +('4669', 'Arrav'), +('4670', 'Camorra'), +('4671', 'Bookcase'), +('4672', 'Throne Room Door'), +('4673', 'null'), +('4674', 'Maple tree'), +('4675', 'Herbs'), +('4676', 'Rocks'), +('4677', 'Herbs'), +('4678', 'Herbs'), +('4679', 'Herbs'), +('4680', 'null'), +('4681', 'null'), +('4682', 'null'), +('4683', 'Harp'), +('4684', 'Barrel'), +('4685', 'Hollow log'), +('4686', 'Hollow log'), +('4687', 'null'), +('4688', 'null'), +('4689', 'null'), +('4690', 'Chair'), +('4691', 'null'), +('4692', 'Flagpole'), +('4693', 'Flagpole'), +('4694', 'null'), +('4695', 'null'), +('4696', 'Door'), +('4697', 'Door'), +('4698', 'null'), +('4699', 'null'), +('4700', 'null'), +('4701', 'Door'), +('4702', 'Chair'), +('4703', 'Bed'), +('4704', 'Bed'), +('4705', 'Fish stall'), +('4706', 'Veg stall'), +('4707', 'Fish stall'), +('4708', 'Veg stall'), +('4709', 'null'), +('4710', 'Doorway'), +('4711', 'null'), +('4712', 'Trapdoor'), +('4713', 'Trapdoor'), +('4714', 'Crate'), +('4715', 'Crate'), +('4716', 'Crate'), +('4717', 'Crate'), +('4718', 'Crate'), +('4719', 'Crate'), +('4720', 'Crate'), +('4721', 'Crate'), +('4722', 'Crate'), +('4723', 'Crate'), +('4724', 'Crate'), +('4725', 'Crate'), +('4726', 'Crate'), +('4727', 'Crate'), +('4728', 'Climbing rope'), +('4729', 'Bush'), +('4730', 'null'), +('4731', 'null'), +('4732', 'null'), +('4733', 'null'), +('4734', 'null'), +('4735', 'null'), +('4736', 'null'), +('4737', 'null'), +('4738', 'null'), +('4739', 'null'), +('4740', 'null'), +('4741', 'null'), +('4742', 'null'), +('4743', 'Bamboo Ladder'), +('4744', 'Bamboo Ladder'), +('4745', 'End of bridge'), +('4746', 'Crate'), +('4747', 'null'), +('4748', 'null'), +('4749', 'Banana Tree'), +('4750', 'Banana Tree'), +('4751', 'Banana Tree'), +('4752', 'Banana Tree'), +('4753', 'Banana Tree'), +('4754', 'Banana Tree'), +('4755', 'Stairs'), +('4756', 'Stairs'), +('4757', 'null'), +('4758', 'null'), +('4759', 'null'), +('4760', 'null'), +('4761', 'null'), +('4762', 'null'), +('4763', 'null'), +('4764', 'Bamboo Stool'), +('4765', 'Wall of flame'), +('4766', 'Wall of flame'), +('4767', 'Sacrificial Pyre'), +('4768', 'Wall of bricks'), +('4769', 'Pile of bricks'), +('4770', 'Pile of bricks'), +('4771', 'Awowogei'), +('4772', 'Bamboo Ladder'), +('4773', 'Bamboo Ladder'), +('4774', 'Bamboo Ladder'), +('4775', 'Bamboo Ladder'), +('4776', 'Bamboo Ladder'), +('4777', 'Bamboo Ladder'), +('4778', 'Bamboo Ladder'), +('4779', 'Bamboo Ladder'), +('4780', 'Bamboo Ladder'), +('4781', 'Bamboo Ladder'), +('4782', 'null'), +('4783', 'null'), +('4784', 'null'), +('4785', 'null'), +('4786', 'Potted plant'), +('4787', 'Bamboo Gate'), +('4788', 'Bamboo Gate'), +('4789', 'null'), +('4790', 'null'), +('4791', 'Bamboo Bed'), +('4792', 'Bamboo Bed'), +('4793', 'Bamboo Bed'), +('4794', 'Pot'), +('4795', 'Pots'), +('4796', 'null'), +('4797', 'Bamboo Desk'), +('4798', 'Bamboo Bookcase'), +('4799', 'Jail Door'), +('4800', 'Jail Door'), +('4801', 'null'), +('4802', 'null'), +('4803', 'null'), +('4804', 'null'), +('4805', 'null'), +('4806', 'null'), +('4807', 'Bamboo Door'), +('4808', 'null'), +('4809', 'null'), +('4810', 'null'), +('4811', 'null'), +('4812', 'Jungle Grass'), +('4813', 'Jungle Grass'), +('4814', 'Jungle Grass'), +('4815', 'Long grass'), +('4816', 'Jungle Tree'), +('4817', 'Jungle Palm'), +('4818', 'Jungle Tree'), +('4819', 'Jungle Tree Stump'), +('4820', 'Jungle Tree'), +('4821', 'Jungle Tree Stump'), +('4822', 'Tree stump'), +('4823', 'Jungle Flower'), +('4824', 'Orchid'), +('4825', 'Jungle Plant'), +('4826', 'Whipping Plant'), +('4827', 'Pineapple Plant'), +('4828', 'Jungle Plant'), +('4829', 'Jungle Plant'), +('4830', 'Jungle Plant'), +('4831', 'Jungle Plant'), +('4832', 'Creeping Plant'), +('4833', 'Jungle Bush'), +('4834', 'Jungle Bush'), +('4835', 'Slashed Bush'), +('4836', 'null'), +('4837', 'null'), +('4838', 'null'), +('4839', 'null'), +('4840', 'null'), +('4841', 'null'), +('4842', 'null'), +('4843', 'null'), +('4844', 'null'), +('4845', 'Tropical tree'), +('4846', 'Tropical tree'), +('4847', 'Tropical tree'), +('4848', 'Tropical Leaves'), +('4849', 'Tropical tree'), +('4850', 'Tropical tree'), +('4851', 'Tropical tree'), +('4852', 'Hollow Log'), +('4853', 'Roots'), +('4854', 'Roots'), +('4855', 'Roots'), +('4856', 'Glowing Fungus'), +('4857', 'Glowing Fungus'), +('4858', 'Gorilla Statue'), +('4859', 'Gorilla Statue'), +('4860', 'Gorilla Statue'), +('4861', 'Monkey Statue'), +('4862', 'Glowing Fungus'), +('4863', 'Watchtower Legs'), +('4864', 'Watchtower Legs'), +('4865', 'Watchtower Middle'), +('4866', 'Gnome Glider'), +('4867', 'Gnome Glider'), +('4868', 'Teleportation Device'), +('4869', 'Teleportation Device'), +('4870', 'Teleportation Device'), +('4871', 'Reinitialisation Panel'), +('4872', 'Exit Sign'), +('4873', 'Lever'), +('4874', 'Crafting Stall'), +('4875', 'Food Stall'), +('4876', 'General Stall'), +('4877', 'Magic Stall'), +('4878', 'Scimitar Stall'), +('4879', 'Trapdoor'), +('4880', 'Trapdoor'), +('4881', 'Climbing rope'), +('4882', 'Slight indentations'), +('4883', 'A rock'), +('4884', 'Plank'), +('4885', 'Stalagmites'), +('4886', 'null'), +('4887', 'A rock'), +('4888', 'Trapdoor'), +('4889', 'Climbing rope'), +('4890', 'null'), +('4891', 'null'), +('4892', 'null'), +('4893', 'null'), +('4894', 'null'), +('4895', 'null'), +('4896', 'null'), +('4897', 'null'), +('4898', 'null'), +('4899', 'null'), +('4900', 'Saradomin Standard'), +('4901', 'Zamorak Standard'), +('4902', 'Saradomin Standard'), +('4903', 'Zamorak Standard'), +('4904', 'Catapult'), +('4905', 'Catapult'), +('4906', 'null'), +('4907', 'null'), +('4908', 'null'), +('4909', 'null'), +('4910', 'Barrel'), +('4911', 'Ladder'), +('4912', 'Ladder'), +('4913', 'Cart tunnel'), +('4914', 'Cart tunnel'), +('4915', 'Cart tunnel'), +('4916', 'null'), +('4917', 'null'), +('4918', 'Mine cart'), +('4919', 'Stairs'), +('4920', 'Cart tunnel'), +('4921', 'Cart tunnel'), +('4922', 'Cart tunnel'), +('4923', 'Stairs'), +('4924', 'Water Valve'), +('4925', 'null'), +('4926', 'Crystal outcrop'), +('4927', 'Crystal outcrop'), +('4928', 'Crystal outcrop'), +('4929', 'Dark tunnel'), +('4930', 'Mine cart'), +('4931', 'null'), +('4932', 'Glowing fungus'), +('4933', 'Glowing fungus'), +('4934', 'null'), +('4935', 'Ceiling support'), +('4936', 'Wall support'), +('4937', 'Lift'), +('4938', 'Lift'), +('4939', 'null'), +('4940', 'Lift'), +('4941', 'null'), +('4942', 'Lift'), +('4943', 'null'), +('4944', 'Crate'), +('4945', 'Mine cart'), +('4946', 'null'), +('4947', 'null'), +('4948', 'null'), +('4949', 'Points settings'), +('4950', 'Lever'), +('4951', 'Lever'), +('4952', 'Lever'), +('4953', 'Lever'), +('4954', 'Lever'), +('4955', 'Lever'), +('4956', 'Lever'), +('4957', 'Lever'), +('4958', 'Lever'), +('4959', 'Lever'), +('4960', 'Lever'), +('4961', 'Lever'), +('4962', 'Door'), +('4963', 'Large door'), +('4964', 'Large door'), +('4965', 'Ladder'), +('4966', 'Ladder'), +('4967', 'Ladder'), +('4968', 'Ladder'), +('4969', 'Ladder'), +('4970', 'Ladder'), +('4971', 'Stairs'), +('4972', 'Stairs'), +('4973', 'Stairs'), +('4974', 'Mine cart'), +('4975', 'Crate'), +('4976', 'Mineral vein'), +('4977', 'Mineral vein'), +('4978', 'Mineral vein'), +('4979', 'Mineral vein'), +('4980', 'Mineral vein'), +('4981', 'Mineral vein'), +('4982', 'Mineral vein'), +('4983', 'Mineral vein'), +('4984', 'Mineral vein'), +('4985', 'Mineral vein'), +('4986', 'Mineral vein'), +('4987', 'Mineral vein'), +('4988', 'Mineral vein'), +('4989', 'Mineral vein'), +('4990', 'Mineral vein'), +('4991', 'Mineral vein'), +('4992', 'Mineral vein'), +('4993', 'Mineral vein'), +('4994', 'Mineral vein'), +('4995', 'Mineral vein'), +('4996', 'Mineral vein'), +('4997', 'null'), +('4998', 'null'), +('4999', 'null'), +('5000', 'null'), +('5001', 'Wooden boards'), +('5002', 'Rope bridge'), +('5003', 'Broken rope bridge'), +('5004', 'Tree'), +('5005', 'Tree'), +('5006', 'Trollweiss flowers'), +('5007', 'Cave entrance'), +('5008', 'Tunnel'), +('5009', 'Tunnel'), +('5010', 'Tunnel'), +('5011', 'Tunnel'), +('5012', 'Tunnel'), +('5013', 'Tunnel'), +('5014', 'Tunnel'), +('5015', 'slope'), +('5016', 'slope'), +('5017', 'null'), +('5018', 'null'), +('5019', 'null'), +('5020', 'null'), +('5021', 'null'), +('5022', 'null'), +('5023', 'null'), +('5024', 'null'), +('5025', 'Crevasse'), +('5026', 'null'), +('5027', 'null'), +('5028', 'null'), +('5029', 'null'), +('5030', 'null'), +('5031', 'null'), +('5032', 'null'), +('5033', 'null'), +('5034', 'null'), +('5035', 'null'), +('5036', 'null'), +('5037', 'Ice covered boulder'), +('5038', 'Ice covered boulder'), +('5039', 'Ice covered boulder'), +('5040', 'null'), +('5041', 'null'), +('5042', 'null'), +('5043', 'Ice gate'), +('5044', 'Ice gate'), +('5045', 'Tree'), +('5046', 'Cave entrance'), +('5047', 'Stalagmites'), +('5048', 'Stalactite'), +('5049', 'Stalagmite'), +('5050', 'Stalagmite'), +('5051', 'Swamp Boaty'), +('5052', 'Wall'), +('5053', 'null'), +('5054', 'Ladder'), +('5055', 'Trapdoor'), +('5056', 'Wooden doors'), +('5057', 'Wooden doors'), +('5058', 'Wooden doors'), +('5059', 'Wooden doors'), +('5060', 'null'), +('5061', 'null'), +('5062', 'null'), +('5063', 'null'), +('5064', 'null'), +('5065', 'null'), +('5066', 'null'), +('5067', 'null'), +('5068', 'null'), +('5069', 'null'), +('5070', 'null'), +('5071', 'null'), +('5072', 'Pillar'), +('5073', 'null'), +('5074', 'null'), +('5075', 'null'), +('5076', 'null'), +('5077', 'null'), +('5078', 'null'), +('5079', 'null'), +('5080', 'null'), +('5081', 'null'), +('5082', 'Dungeon entrance'), +('5083', 'Dungeon entrance'), +('5084', 'Exit'), +('5085', 'null'), +('5086', 'null'), +('5087', 'null'), +('5088', 'Log balance'), +('5089', 'null'), +('5090', 'Log balance'), +('5091', 'null'), +('5092', 'null'), +('5093', 'null'), +('5094', 'Stairs'), +('5095', 'Stairs'), +('5096', 'Stairs'), +('5097', 'Stairs'), +('5098', 'Stairs'), +('5099', 'Pipe'), +('5100', 'Pipe'), +('5101', 'null'), +('5102', 'null'), +('5103', 'Vines'), +('5104', 'Vines'), +('5105', 'Vines'), +('5106', 'Vines'), +('5107', 'Vines'), +('5108', 'null'), +('5109', 'null'), +('5110', 'Stepping stone'), +('5111', 'Stepping stone'), +('5112', 'Mushroom'), +('5113', 'Fungus'), +('5114', 'Fungus'), +('5115', 'Fungus'), +('5116', 'Statue'), +('5117', 'Statue'), +('5118', 'null'), +('5119', 'null'), +('5120', 'null'), +('5121', 'null'), +('5122', 'Corpse'), +('5123', 'Corpse'), +('5124', 'Corpse'), +('5125', 'Corpse'), +('5126', 'Door'), +('5127', 'Danger sign'), +('5128', 'Door'), +('5129', 'null'), +('5130', 'Ladder'), +('5131', 'Trapdoor'), +('5132', 'Trapdoor'), +('5133', 'Hurdle'), +('5134', 'Hurdle'), +('5135', 'Hurdle'), +('5136', 'Skull slope'), +('5137', 'null'), +('5138', 'Portal'), +('5139', 'Zip line'), +('5140', 'Zip line'), +('5141', 'Zip line'), +('5142', 'Zip line'), +('5143', 'Zip line'), +('5144', 'Zip line'), +('5145', 'Zip line'), +('5146', 'Goal'), +('5147', 'Goal'), +('5148', 'Goal'), +('5149', 'null'), +('5150', 'null'), +('5151', 'null'), +('5152', 'Pipe'), +('5153', 'null'), +('5154', 'null'), +('5155', 'null'), +('5156', 'Cupboard'), +('5157', 'Open Cupboard'), +('5158', 'Pile of canes'), +('5159', 'Bridge'), +('5160', 'Bridge'), +('5161', 'Clock'), +('5162', 'Chest'), +('5163', 'Chest'), +('5164', 'Signpost'), +('5165', 'Fireplace'), +('5166', 'Bookcase'), +('5167', 'Memorial'), +('5168', 'Grave'), +('5169', 'Grave'), +('5170', 'Entrance'), +('5171', 'null'), +('5172', 'Door'), +('5173', 'null'), +('5174', 'Door'), +('5175', 'null'), +('5176', 'Lightning conductor'), +('5177', 'Lightning conductor'), +('5178', 'Fireplace surround'), +('5179', 'Fireplace surround'), +('5180', 'null'), +('5181', 'null'), +('5182', 'null'), +('5183', 'Door'), +('5184', 'null'), +('5185', 'null'), +('5186', 'Door'), +('5187', 'Door'), +('5188', 'Door'), +('5189', 'null'), +('5190', 'null'), +('5191', 'null'), +('5192', 'null'), +('5193', 'null'), +('5194', 'null'), +('5195', 'null'), +('5196', 'null'), +('5197', 'null'), +('5198', 'null'), +('5199', 'null'), +('5200', 'null'), +('5201', 'null'), +('5202', 'Pile of bricks'), +('5203', 'null'), +('5204', 'null'), +('5205', 'null'), +('5206', 'Staircase'), +('5207', 'Staircase'), +('5208', 'null'), +('5209', 'null'), +('5210', 'null'), +('5211', 'null'), +('5212', 'null'), +('5213', 'null'), +('5214', 'null'), +('5215', 'null'), +('5216', 'null'), +('5217', 'null'), +('5218', 'null'), +('5219', 'null'), +('5220', 'null'), +('5221', 'null'), +('5222', 'null'), +('5223', 'null'), +('5224', 'null'), +('5225', 'null'), +('5226', 'null'), +('5227', 'null'), +('5228', 'Column'), +('5229', 'Column'), +('5230', 'Column'), +('5231', 'Stalagmite'), +('5232', 'Stalagmite'), +('5233', 'null'), +('5234', 'null'), +('5235', 'null'), +('5236', 'null'), +('5237', 'null'), +('5238', 'null'), +('5239', 'null'), +('5240', 'null'), +('5241', 'null'), +('5242', 'null'), +('5243', 'null'), +('5244', 'Door'), +('5245', 'Door'), +('5246', 'Bed'), +('5247', 'null'), +('5248', 'Crystal growth'), +('5249', 'Fire'), +('5250', 'Ladder'), +('5251', 'Ladder'), +('5252', 'Fire remains'), +('5253', 'Nettles'), +('5254', 'Nettles'), +('5255', 'Nettles'), +('5256', 'Nettles'), +('5257', 'Nettles'), +('5258', 'Nettles'), +('5259', 'Energy Barrier'), +('5260', 'null'), +('5261', 'null'), +('5262', 'Stairs'), +('5263', 'Stairs'), +('5264', 'Ladder'), +('5265', 'Ship's ladder'), +('5266', 'Ship's ladder'), +('5267', 'Trapdoor'), +('5268', 'Trapdoor'), +('5269', 'Rock'), +('5270', 'Closed chest'), +('5271', 'Open chest'), +('5272', 'Closed chest'), +('5273', 'Open chest'), +('5274', 'Mast'), +('5275', 'Cooking range'), +('5276', 'Bank booth'), +('5277', 'Closed bank booth'), +('5278', 'Coffin'), +('5279', 'Coffin'), +('5280', 'Staircase'), +('5281', 'Staircase'), +('5282', 'Ectofuntus'), +('5283', 'Ectofuntus'), +('5284', 'Bone grinder'), +('5285', 'Gangplank'), +('5286', 'Gangplank'), +('5287', 'Pirate Captain'), +('5288', 'null'), +('5289', 'null'), +('5290', 'null'), +('5291', 'null'), +('5292', 'null'), +('5293', 'null'), +('5294', 'null'), +('5295', 'null'), +('5296', 'null'), +('5297', 'null'), +('5298', 'null'), +('5299', 'null'), +('5300', 'null'), +('5301', 'null'), +('5302', 'null'), +('5303', 'null'), +('5304', 'null'), +('5305', 'null'), +('5306', 'Boat'), +('5307', 'null'), +('5308', 'null'), +('5309', 'null'), +('5310', 'null'), +('5311', 'null'), +('5312', 'null'), +('5313', 'null'), +('5314', 'null'), +('5315', 'null'), +('5316', 'null'), +('5317', 'null'), +('5318', 'null'), +('5319', 'null'), +('5320', 'null'), +('5321', 'null'), +('5322', 'null'), +('5323', 'null'), +('5324', 'null'), +('5325', 'null'), +('5326', 'null'), +('5327', 'null'), +('5328', 'null'), +('5329', 'null'), +('5330', 'Boxes'), +('5331', 'Plant'), +('5332', 'Plant'), +('5333', 'Plant'), +('5334', 'Plant'), +('5335', 'null'), +('5336', 'null'), +('5337', 'null'), +('5338', 'null'), +('5339', 'null'), +('5340', 'null'), +('5341', 'null'), +('5342', 'null'), +('5343', 'null'), +('5344', 'null'), +('5345', 'Chair'), +('5346', 'Chair'), +('5347', 'Chair'), +('5348', 'Smashed chair'), +('5349', 'Table'), +('5350', 'Bar pumps'), +('5351', 'Bar'), +('5352', 'Cart'), +('5353', 'Wheelbarrow'), +('5354', 'Trough'), +('5355', 'Crate'), +('5356', 'Crates'), +('5357', 'Crates'), +('5358', 'Skeleton'), +('5359', 'Skeleton'), +('5360', 'Skeleton'), +('5361', 'null'), +('5362', 'null'), +('5363', 'null'), +('5364', 'null'), +('5365', 'null'), +('5366', 'null'), +('5367', 'null'), +('5368', 'null'), +('5369', 'null'), +('5370', 'null'), +('5371', 'null'), +('5372', 'null'), +('5373', 'null'), +('5374', 'null'), +('5375', 'null'), +('5376', 'null'), +('5377', 'null'), +('5378', 'null'), +('5379', 'null'), +('5380', 'null'), +('5381', 'null'), +('5382', 'null'), +('5383', 'null'), +('5384', 'null'), +('5385', 'null'), +('5386', 'null'), +('5387', 'null'), +('5388', 'null'), +('5389', 'null'), +('5390', 'null'), +('5391', 'null'), +('5392', 'null'), +('5393', 'null'), +('5394', 'null'), +('5395', 'null'), +('5396', 'null'), +('5397', 'Figurehead'), +('5398', 'null'), +('5399', 'null'), +('5400', 'null'), +('5401', 'null'), +('5402', 'null'), +('5403', 'Ship's wheel'), +('5404', 'Mast'), +('5405', 'null'), +('5406', 'null'), +('5407', 'null'), +('5408', 'null'), +('5409', 'null'), +('5410', 'null'), +('5411', 'null'), +('5412', 'null'), +('5413', 'null'), +('5414', 'null'), +('5415', 'Ship's ladder'), +('5416', 'Ship's ladder'), +('5417', 'null'), +('5418', 'null'), +('5419', 'null'), +('5420', 'null'), +('5421', 'null'), +('5422', 'null'), +('5423', 'null'), +('5424', 'null'), +('5425', 'null'), +('5426', 'null'), +('5427', 'null'), +('5428', 'null'), +('5429', 'Captain's Table'), +('5430', 'Market stall'), +('5431', 'Market stall'), +('5432', 'null'), +('5433', 'null'), +('5434', 'null'), +('5435', 'null'), +('5436', 'null'), +('5437', 'null'), +('5438', 'null'), +('5439', 'Broken Door'), +('5440', 'null'), +('5441', 'null'), +('5442', 'null'), +('5443', 'null'), +('5444', 'null'), +('5445', 'null'), +('5446', 'null'), +('5447', 'null'), +('5448', 'null'), +('5449', 'null'), +('5450', 'null'), +('5451', 'null'), +('5452', 'null'), +('5453', 'Door'), +('5454', 'Door'), +('5455', 'null'), +('5456', 'null'), +('5457', 'null'), +('5458', 'null'), +('5459', 'null'), +('5460', 'null'), +('5461', 'null'), +('5462', 'null'), +('5463', 'null'), +('5464', 'null'), +('5465', 'null'), +('5466', 'null'), +('5467', 'null'), +('5468', 'null'), +('5469', 'null'), +('5470', 'null'), +('5471', 'null'), +('5472', 'null'), +('5473', 'null'), +('5474', 'null'), +('5475', 'null'), +('5476', 'null'), +('5477', 'null'), +('5478', 'null'), +('5479', 'null'), +('5480', 'null'), +('5481', 'null'), +('5482', 'null'), +('5483', 'null'), +('5484', 'null'), +('5485', 'null'), +('5486', 'null'), +('5487', 'null'), +('5488', 'Ladder'), +('5489', 'Jewellery stall'), +('5490', 'Trapdoor'), +('5491', 'Trapdoor'), +('5492', 'null'), +('5493', 'Ladder'), +('5494', 'Standing torch'), +('5495', 'Bed'), +('5496', 'null'), +('5497', 'Bed'), +('5498', 'Bed'), +('5499', 'Fire'), +('5500', 'null'), +('5501', 'Door'), +('5502', 'null'), +('5503', 'null'), +('5504', 'null'), +('5505', 'null'), +('5506', 'null'), +('5507', 'null'), +('5508', 'Lectern'), +('5509', 'null'), +('5510', 'null'), +('5511', 'null'), +('5512', 'null'), +('5513', 'null'), +('5514', 'null'), +('5515', 'null'), +('5516', 'null'), +('5517', 'null'), +('5518', 'null'), +('5519', 'null'), +('5520', 'null'), +('5521', 'null'), +('5522', 'null'), +('5523', 'null'), +('5524', 'null'), +('5525', 'null'), +('5526', 'null'), +('5527', 'null'), +('5528', 'null'), +('5529', 'null'), +('5530', 'null'), +('5531', 'null'), +('5532', 'null'), +('5533', 'null'), +('5534', 'null'), +('5535', 'null'), +('5536', 'null'), +('5537', 'null'), +('5538', 'Onion'), +('5539', 'Bullrushes'), +('5540', 'Bullrushes'), +('5541', 'Bullrushes'), +('5542', 'Bullrushes'), +('5543', 'Heather'), +('5544', 'Heather'), +('5545', 'Heather'), +('5546', 'Heather'), +('5547', 'Heather'), +('5548', 'Heather'), +('5549', 'Heather'), +('5550', 'Dock leaf plant'), +('5551', 'Willow'), +('5552', 'Willow'), +('5553', 'Willow'), +('5554', 'Tree Stump'), +('5555', 'Hanging tapestry'), +('5556', 'Hanging tapestry'), +('5557', 'null'), +('5558', 'Aggie's Cauldron'), +('5559', 'Charms'), +('5560', 'Mirror'), +('5561', 'Broom'), +('5562', 'Cloth'), +('5563', 'null'), +('5564', 'Bed'), +('5565', 'Bed'), +('5566', 'null'), +('5567', 'null'), +('5568', 'null'), +('5569', 'Dry stone wall'), +('5570', 'null'), +('5571', 'Coop'), +('5572', 'Coop'), +('5573', 'Coop'), +('5574', 'Sack'), +('5575', 'Trough'), +('5576', 'Trough'), +('5577', 'Trough'), +('5578', 'Cart'), +('5579', 'Cart'), +('5580', 'Wheelbarrow'), +('5581', 'Logs'), +('5582', 'Logs'), +('5583', 'Wheat'), +('5584', 'Wheat'), +('5585', 'Wheat'), +('5586', 'null'), +('5587', 'null'), +('5588', 'null'), +('5589', 'Water wheel'), +('5590', 'Water wheel'), +('5591', 'Water wheel'), +('5592', 'null'), +('5593', 'null'), +('5594', 'Water wheel'), +('5595', 'Toy Stall'), +('5596', 'Market stall'), +('5597', 'Weather vane'), +('5598', 'Water Barrel'), +('5599', 'Water Barrel'), +('5600', 'null'), +('5601', 'null'), +('5602', 'null'), +('5603', 'null'), +('5604', 'Rock'), +('5605', 'Rock'), +('5606', 'Rock'), +('5607', 'null'), +('5608', 'Spit roast'), +('5609', 'Cooking Pots'), +('5610', 'Cooking Pots'), +('5611', 'null'), +('5612', 'null'), +('5613', 'Rat-hole'), +('5614', 'Chair'), +('5615', 'Bench'), +('5616', 'Signpost'), +('5617', 'null'), +('5618', 'Drawers'), +('5619', 'Drawers'), +('5620', 'null'), +('5621', 'Big vase'), +('5622', 'Wardrobe'), +('5623', 'Wardrobe'), +('5624', 'Wardrobe'), +('5625', 'Ned's Table'), +('5626', 'null'), +('5627', 'Standard'), +('5628', 'Standard'), +('5629', 'Standard'), +('5630', 'null'), +('5631', 'Fire'), +('5632', 'Fire'), +('5633', 'null'), +('5634', 'null'), +('5635', 'null'), +('5636', 'null'), +('5637', 'null'), +('5638', 'null'), +('5639', 'null'), +('5640', 'null'), +('5641', 'null'), +('5642', 'null'), +('5643', 'null'), +('5644', 'null'), +('5645', 'null'), +('5646', 'null'), +('5647', 'null'), +('5648', 'null'), +('5649', 'null'), +('5650', 'null'), +('5651', 'null'), +('5652', 'null'), +('5653', 'null'), +('5654', 'null'), +('5655', 'null'), +('5656', 'null'), +('5657', 'null'), +('5658', 'null'), +('5659', 'null'), +('5660', 'null'), +('5661', 'null'), +('5662', 'null'), +('5663', 'null'), +('5664', 'null'), +('5665', 'null'), +('5666', 'null'), +('5667', 'Large door'), +('5668', 'null'), +('5669', 'null'), +('5670', 'null'), +('5671', 'null'), +('5672', 'null'), +('5673', 'null'), +('5674', 'null'), +('5675', 'null'), +('5676', 'null'), +('5677', 'null'), +('5678', 'null'), +('5679', 'null'), +('5680', 'null'), +('5681', 'null'), +('5682', 'null'), +('5683', 'null'), +('5684', 'null'), +('5685', 'null'), +('5686', 'null'), +('5687', 'null'), +('5688', 'null'), +('5689', 'null'), +('5690', 'null'), +('5691', 'null'), +('5692', 'null'), +('5693', 'null'), +('5694', 'null'), +('5695', 'null'), +('5696', 'null'), +('5697', 'null'), +('5698', 'null'), +('5699', 'null'), +('5700', 'null'), +('5701', 'null'), +('5702', 'null'), +('5703', 'null'), +('5704', 'null'), +('5705', 'null'), +('5706', 'null'), +('5707', 'null'), +('5708', 'null'), +('5709', 'null'), +('5710', 'null'), +('5711', 'null'), +('5712', 'null'), +('5713', 'null'), +('5714', 'null'), +('5715', 'null'), +('5716', 'null'), +('5717', 'null'), +('5718', 'null'), +('5719', 'null'), +('5720', 'null'), +('5721', 'null'), +('5722', 'null'), +('5723', 'null'), +('5724', 'null'), +('5725', 'null'), +('5726', 'null'), +('5727', 'null'), +('5728', 'null'), +('5729', 'null'), +('5730', 'null'), +('5731', 'null'), +('5732', 'null'), +('5733', 'null'), +('5734', 'null'), +('5735', 'null'), +('5736', 'null'), +('5737', 'null'), +('5738', 'null'), +('5739', 'null'), +('5740', 'null'), +('5741', 'null'), +('5742', 'null'), +('5743', 'null'), +('5744', 'null'), +('5745', 'null'), +('5746', 'null'), +('5747', 'null'), +('5748', 'null'), +('5749', 'null'), +('5750', 'null'), +('5751', 'null'), +('5752', 'null'), +('5753', 'null'), +('5754', 'null'), +('5755', 'null'), +('5756', 'null'), +('5757', 'null'), +('5758', 'null'), +('5759', 'null'), +('5760', 'null'), +('5761', 'null'), +('5762', 'null'), +('5763', 'null'), +('5764', 'null'), +('5765', 'null'), +('5766', 'null'), +('5767', 'null'), +('5768', 'null'), +('5769', 'null'), +('5770', 'null'), +('5771', 'null'), +('5772', 'null'), +('5773', 'null'), +('5774', 'null'), +('5775', 'null'), +('5776', 'null'), +('5777', 'null'), +('5778', 'null'), +('5779', 'null'), +('5780', 'null'), +('5781', 'null'), +('5782', 'null'), +('5783', 'null'), +('5784', 'null'), +('5785', 'null'), +('5786', 'null'), +('5787', 'null'), +('5788', 'Church pew'), +('5789', 'Statue'), +('5790', 'Statue'), +('5791', 'Statue'), +('5792', 'Flour bin'), +('5793', 'Crack'), +('5794', 'Crack'), +('5795', 'Crack'), +('5796', 'Crack'), +('5797', 'Crack'), +('5798', 'Crack'), +('5799', 'Trapdoor'), +('5800', 'Trapdoor'), +('5801', 'Trapdoor'), +('5802', 'Trapdoor'), +('5803', 'Trapdoor'), +('5804', 'Trapdoor'), +('5805', 'Trapdoor'), +('5806', 'Trapdoor'), +('5807', 'null'), +('5808', 'Sculpture'), +('5809', 'Weathervane'), +('5810', 'Seers weathervane'), +('5811', 'null'), +('5812', 'null'), +('5813', 'Ladder'), +('5814', 'Landing light'), +('5815', 'Gnome landing light'), +('5816', 'Flashing landing light'), +('5817', 'Flashing landing light'), +('5818', 'Flashing landing light'), +('5819', 'Flashing landing light'), +('5820', 'null'), +('5821', 'null'), +('5822', 'null'), +('5823', 'null'), +('5824', 'null'), +('5825', 'Gnome glider'), +('5826', 'Swordshop Sign'), +('5827', 'null'), +('5828', 'null'), +('5829', 'null'), +('5830', 'null'), +('5831', 'Antiques Shop Stall'), +('5832', 'null'), +('5833', 'null'), +('5834', 'null'), +('5835', 'null'), +('5836', 'null'), +('5837', 'null'), +('5838', 'null'), +('5839', 'null'), +('5840', 'null'), +('5841', 'null'), +('5842', 'Boulder'), +('5843', 'Boulder'), +('5844', 'Rock'), +('5845', 'Rock'), +('5846', 'Rope'), +('5847', 'Rockslide'), +('5848', 'Tall tree'), +('5849', 'Clump of rocks'), +('5850', 'Flat stone'), +('5851', 'Flat stone'), +('5852', 'Flat stone'), +('5853', 'Flat stone'), +('5854', 'Flat stone'), +('5855', 'Shining pool'), +('5856', 'Thorny bushes'), +('5857', 'Cave entrance'), +('5858', 'Cave exit'), +('5859', 'Cave exit'), +('5860', 'Standing spears'), +('5861', 'null'), +('5862', 'Burial mound'), +('5863', 'Burial cairn'), +('5864', 'null'), +('5865', 'null'), +('5866', 'null'), +('5867', 'null'), +('5868', 'null'), +('5869', 'null'), +('5870', 'null'), +('5871', 'null'), +('5872', 'null'), +('5873', 'null'), +('5874', 'null'), +('5875', 'null'), +('5876', 'null'), +('5877', 'null'), +('5878', 'Wooden Table'), +('5879', 'Table'), +('5880', 'Stool'), +('5881', 'Standing torch'), +('5882', 'null'), +('5883', 'Mud'), +('5884', 'Swamp'), +('5885', 'Roots'), +('5886', 'Roots'), +('5887', 'Tent door'), +('5888', 'Tent door'), +('5889', 'Tent door'), +('5890', 'Tent door'), +('5891', 'Tent door'), +('5892', 'null'), +('5893', 'Tent door'), +('5894', 'null'), +('5895', 'Ancient Rock'), +('5896', 'Ancient Rock'), +('5897', 'Shining pool'), +('5898', 'null'), +('5899', 'null'), +('5900', 'null'), +('5901', 'null'), +('5902', 'Dead tree'), +('5903', 'Dead tree'), +('5904', 'Dead tree'), +('5905', 'Tree stump'), +('5906', 'null'), +('5907', 'null'), +('5908', 'null'), +('5909', 'Lamp oil still'), +('5910', 'Lamp oil still'), +('5911', 'null'), +('5912', 'null'), +('5913', 'null'), +('5914', 'null'), +('5915', 'null'), +('5916', 'null'), +('5917', 'Gas hole'), +('5918', 'Gas hole'), +('5919', 'null'), +('5920', 'null'), +('5921', 'null'), +('5922', 'null'), +('5923', 'null'), +('5924', 'null'), +('5925', 'null'), +('5926', 'null'), +('5927', 'null'), +('5928', 'null'), +('5929', 'null'), +('5930', 'null'), +('5931', 'null'), +('5932', 'null'), +('5933', 'null'), +('5934', 'null'), +('5935', 'null'), +('5936', 'null'), +('5937', 'null'), +('5938', 'null'), +('5939', 'null'), +('5940', 'null'), +('5941', 'null'), +('5942', 'null'), +('5943', 'null'), +('5944', 'null'), +('5945', 'null'), +('5946', 'Climbing rope'), +('5947', 'Dark hole'), +('5948', 'Stepping stone'), +('5949', 'Stepping stone'), +('5950', 'null'), +('5951', 'null'), +('5952', 'null'), +('5953', 'null'), +('5954', 'null'), +('5955', 'null'), +('5956', 'null'), +('5957', 'null'), +('5958', 'null'), +('5959', 'Lever'), +('5960', 'Lever'), +('5961', 'null'), +('5962', 'null'), +('5963', 'null'), +('5964', 'Cannonball'), +('5965', 'Gold cannonball'), +('5966', 'Passage'), +('5967', 'Cannonballs'), +('5968', 'Cannonballs'), +('5969', 'Cannonballs'), +('5970', 'Cannonballs'), +('5971', 'Cannonballs'), +('5972', 'Cannonballs'), +('5973', 'Cave entrance'), +('5974', 'null'), +('5975', 'Dwarf MultiCannon'), +('5976', 'Dwarf MultiCannon'), +('5977', 'Wall of flame'), +('5978', 'Wall of flame'), +('5979', 'Wall of flame'), +('5980', 'Wall of flame'), +('5981', 'Fire'), +('5982', 'null'), +('5983', 'null'), +('5984', 'null'), +('5985', 'Rock'), +('5986', 'Small rock'), +('5987', 'Rock'), +('5988', 'null'), +('5989', 'Mineral vein'), +('5990', 'Mineral vein'), +('5991', 'Mineral vein'), +('5992', 'null'), +('5993', 'null'), +('5994', 'null'), +('5995', 'null'), +('5996', 'null'), +('5997', 'null'), +('5998', 'Entrance'), +('5999', 'null'), +('6000', 'null'), +('6001', 'null'), +('6002', 'null'), +('6003', 'null'), +('6004', 'null'), +('6005', 'null'), +('6006', 'null'), +('6007', 'null'), +('6008', 'null'), +('6009', 'Blue Fire'), +('6010', 'null'), +('6011', 'null'), +('6012', 'null'), +('6013', 'null'), +('6014', 'null'), +('6015', 'null'), +('6016', 'null'), +('6017', 'null'), +('6018', 'null'), +('6019', 'null'), +('6020', 'null'), +('6021', 'null'), +('6022', 'null'), +('6023', 'null'), +('6024', 'null'), +('6025', 'null'), +('6026', 'null'), +('6027', 'null'), +('6028', 'null'), +('6029', 'null'), +('6030', 'null'), +('6031', 'null'), +('6032', 'Boiler'), +('6033', 'Boiler'), +('6034', 'null'), +('6035', 'null'), +('6036', 'Ship's ladder'), +('6037', 'Ship's ladder'), +('6038', 'Ship's wheel'), +('6039', 'null'), +('6040', 'null'), +('6041', 'null'), +('6042', 'null'), +('6043', 'Boiler'), +('6044', 'Boiler'), +('6045', 'Mine cart'), +('6046', 'null'), +('6047', 'null'), +('6048', 'null'), +('6049', 'null'), +('6050', 'null'), +('6051', 'null'), +('6052', 'null'), +('6053', 'null'), +('6054', 'null'), +('6055', 'null'), +('6056', 'null'), +('6057', 'null'), +('6058', 'null'), +('6059', 'null'), +('6060', 'null'), +('6061', 'null'), +('6062', 'null'), +('6063', 'null'), +('6064', 'Hat stand'), +('6065', 'Clothes'), +('6066', 'Weapon Rack'), +('6067', 'Weapon Rack'), +('6068', 'Weapon Rack'), +('6069', 'Weapon Rack'), +('6070', 'Cabinet'), +('6071', 'Cabinet'), +('6072', 'Cabinet'), +('6073', 'Cabinet'), +('6074', 'Cabinet'), +('6075', 'Table'), +('6076', 'Desk'), +('6077', 'Desk'), +('6078', 'Desk'), +('6079', 'Desk'), +('6080', 'Spinning Machine'), +('6081', 'Bank table'), +('6082', 'Bank table'), +('6083', 'Closed bank booth'), +('6084', 'Bank booth'), +('6085', 'Stairs'), +('6086', 'Stairs'), +('6087', 'Stairs'), +('6088', 'Stairs'), +('6089', 'Stairs'), +('6090', 'Stairs'), +('6091', 'Bookcase'), +('6092', 'Bookcase'), +('6093', 'Fireplace'), +('6094', 'Fireplace'), +('6095', 'Fireplace'), +('6096', 'Fireplace'), +('6097', 'Well'), +('6098', 'null'), +('6099', 'null'), +('6100', 'Door'), +('6101', 'Door'), +('6102', 'Door'), +('6103', 'Door'), +('6104', 'Door'), +('6105', 'Door'), +('6106', 'Door'), +('6107', 'Door'), +('6108', 'Door'), +('6109', 'Door'), +('6110', 'Door'), +('6111', 'Door'), +('6112', 'Door'), +('6113', 'Door'), +('6114', 'Door'), +('6115', 'Door'), +('6116', 'null'), +('6117', 'null'), +('6118', 'null'), +('6119', 'null'), +('6120', 'null'), +('6121', 'null'), +('6122', 'null'), +('6123', 'null'), +('6124', 'null'), +('6125', 'null'), +('6126', 'null'), +('6127', 'null'), +('6128', 'null'), +('6129', 'null'), +('6130', 'null'), +('6131', 'null'), +('6132', 'null'), +('6133', 'null'), +('6134', 'null'), +('6135', 'null'), +('6136', 'null'), +('6137', 'null'), +('6138', 'null'), +('6139', 'null'), +('6140', 'null'), +('6141', 'null'), +('6142', 'null'), +('6143', 'null'), +('6144', 'null'), +('6145', 'null'), +('6146', 'Bird cage stand'), +('6147', 'Column'), +('6148', 'Column'), +('6149', 'Column'), +('6150', 'Anvil'), +('6151', 'Sink'), +('6152', 'Bar'), +('6153', 'Bar'), +('6154', 'Shelves'), +('6155', 'Shelves'), +('6156', 'Shelves'), +('6157', 'Shelves'), +('6158', 'Red fungi'), +('6159', 'Red fungi'), +('6160', 'Red fungi'), +('6161', 'Red fungi'), +('6162', 'Gem Stall'), +('6163', 'Bakery stall'), +('6164', 'Silver stall'), +('6165', 'Clothes stall'), +('6166', 'Crafting stall'), +('6167', 'null'), +('6168', 'null'), +('6169', 'null'), +('6170', 'null'), +('6171', 'null'), +('6172', 'null'), +('6173', 'Giant Dwarf'), +('6174', 'Giant Dwarf'), +('6175', 'Giant Dwarf'), +('6176', 'Boxes'), +('6177', 'Crate'), +('6178', 'Crates'), +('6179', 'Cooking Pots'), +('6180', 'Cooking Pots'), +('6181', 'Hanging meat'), +('6182', 'Hanging meat'), +('6183', 'Bed'), +('6184', 'Bed'), +('6185', 'Armour'), +('6186', 'Armour'), +('6187', 'Armour'), +('6188', 'Blacksmith's tools'), +('6189', 'Furnace'), +('6190', 'Catapult'), +('6191', 'Warhammer'), +('6192', 'Pickaxe'), +('6193', 'Dwarf mirror'), +('6194', 'Chair'), +('6195', 'Chair'), +('6196', 'Table'), +('6197', 'Table'), +('6198', 'Table'), +('6199', 'Table'), +('6200', 'Table'), +('6201', 'Table'), +('6202', 'Lamp'), +('6203', 'Lamp'), +('6204', 'Poor Bed'), +('6205', 'Bed'), +('6206', 'Dwarven Consortium Table'), +('6207', 'Throne'), +('6208', 'Throne'), +('6209', 'null'), +('6210', 'null'), +('6211', 'Table'), +('6212', 'Tree stump'), +('6213', 'Barrel'), +('6214', 'null'), +('6215', 'null'), +('6216', 'null'), +('6217', 'null'), +('6218', 'null'), +('6219', 'null'), +('6220', 'null'), +('6221', 'null'), +('6222', 'null'), +('6223', 'null'), +('6224', 'null'), +('6225', 'null'), +('6226', 'null'), +('6227', 'null'), +('6228', 'null'), +('6229', 'null'), +('6230', 'Money Pot'), +('6231', 'Table'), +('6232', 'Fountain'), +('6233', 'null'), +('6234', 'null'), +('6235', 'null'), +('6236', 'Stop!'), +('6237', 'Plant'), +('6238', 'Door'), +('6239', 'Door'), +('6240', 'Door'), +('6241', 'Door'), +('6242', 'Staircase'), +('6243', 'Staircase'), +('6244', 'Staircase'), +('6245', 'Staircase'), +('6246', 'Table'), +('6247', 'null'), +('6248', 'null'), +('6249', 'null'), +('6250', 'Bed'), +('6251', 'null'), +('6252', 'null'), +('6253', 'null'), +('6254', 'null'), +('6255', 'Trough'), +('6256', 'Trough'), +('6257', 'Dung'), +('6258', 'Dung'), +('6259', 'Dung'), +('6260', 'Ladder'), +('6261', 'Ladder'), +('6262', 'Ladder'), +('6263', 'Hutch'), +('6264', 'Bird cage stand'), +('6265', 'Cage'), +('6266', 'Cage'), +('6267', 'Golden cage'), +('6268', 'Hutch'), +('6269', 'Cages'), +('6270', 'null'), +('6271', 'null'), +('6272', 'null'), +('6273', 'null'), +('6274', 'Bed'), +('6275', 'Study desk'), +('6276', 'Landscape'), +('6277', 'Cactus'), +('6278', 'Trapdoor'), +('6279', 'null'), +('6280', 'Ladder'), +('6281', 'Ladder'), +('6282', 'Portal'), +('6283', 'Pillar'), +('6284', 'Pillar'), +('6285', 'Pillar'), +('6286', 'Pillar'), +('6287', 'null'), +('6288', 'null'), +('6289', 'null'), +('6290', 'null'), +('6291', 'null'), +('6292', 'Bookcase'), +('6293', 'null'), +('6294', 'Display case'), +('6295', 'Display case'), +('6296', 'Skeleton'), +('6297', 'Skeleton'), +('6298', 'Skeleton'), +('6299', 'Skeleton'), +('6300', 'null'), +('6301', 'Throne'), +('6302', 'Throne'), +('6303', 'null'), +('6304', 'null'), +('6305', 'null'), +('6306', 'null'), +('6307', 'Statuette in alcove'), +('6308', 'Statuette in alcove'), +('6309', 'Alcove'), +('6310', 'null'), +('6311', 'Black mushrooms'), +('6312', 'Staircase'), +('6313', 'Staircase'), +('6314', 'null'), +('6315', 'null'), +('6316', 'null'), +('6317', 'null'), +('6318', 'null'), +('6319', 'null'), +('6320', 'null'), +('6321', 'null'), +('6322', 'null'), +('6323', 'Golem arm'), +('6324', 'Golem foot'), +('6325', 'Golem body'), +('6326', 'Golem head'), +('6327', 'Broken kiln'), +('6328', 'Broken kiln'), +('6329', 'Broken kiln'), +('6330', 'Broken kiln'), +('6331', 'Statue'), +('6332', 'Statue'), +('6333', 'Statue'), +('6334', 'Statue'), +('6335', 'Plinth'), +('6336', 'Plinth'), +('6337', 'Plinth'), +('6338', 'Plinth'), +('6339', 'null'), +('6340', 'null'), +('6341', 'null'), +('6342', 'null'), +('6343', 'null'), +('6344', 'null'), +('6345', 'null'), +('6346', 'null'), +('6347', 'null'), +('6348', 'null'), +('6349', 'null'), +('6350', 'null'), +('6351', 'null'), +('6352', 'null'), +('6353', 'null'), +('6354', 'null'), +('6355', 'null'), +('6356', 'null'), +('6357', 'null'), +('6358', 'null'), +('6359', 'null'), +('6360', 'null'), +('6361', 'null'), +('6362', 'null'), +('6363', 'Door'), +('6364', 'Door'), +('6365', 'null'), +('6366', 'null'), +('6367', 'null'), +('6368', 'null'), +('6369', 'null'), +('6370', 'null'), +('6371', 'null'), +('6372', 'Staircase'), +('6373', 'Staircase'), +('6374', 'null'), +('6375', 'null'), +('6376', 'null'), +('6377', 'null'), +('6378', 'null'), +('6379', 'null'), +('6380', 'null'), +('6381', 'Cave'), +('6382', 'Root'), +('6383', 'null'), +('6384', 'null'), +('6385', 'null'), +('6386', 'null'), +('6387', 'null'), +('6388', 'null'), +('6389', 'null'), +('6390', 'null'), +('6391', 'null'), +('6392', 'null'), +('6393', 'null'), +('6394', 'null'), +('6395', 'null'), +('6396', 'null'), +('6397', 'null'), +('6398', 'null'), +('6399', 'null'), +('6400', 'null'), +('6401', 'null'), +('6402', 'Stalagmites'), +('6403', 'Stalagmite'), +('6404', 'Standing Torch'), +('6405', 'null'), +('6406', 'Standing Torch'), +('6407', 'null'), +('6408', 'Standing Torch'), +('6409', 'null'), +('6410', 'Standing Torch'), +('6411', 'null'), +('6412', 'Standing Torch'), +('6413', 'Standing Torch'), +('6414', 'Standing Torch'), +('6415', 'Standing Torch'), +('6416', 'Standing Torch'), +('6417', 'null'), +('6418', 'Ladder'), +('6419', 'Ladder'), +('6420', 'Burnt chest'), +('6421', 'null'), +('6422', 'null'), +('6423', 'Mystical mirror'), +('6424', 'null'), +('6425', 'Mystical mirror'), +('6426', 'null'), +('6427', 'Mystical mirror'), +('6428', 'null'), +('6429', 'Mystical mirror'), +('6430', 'null'), +('6431', 'Mystical mirror'), +('6432', 'null'), +('6433', 'Mystical mirror'), +('6434', 'Trapdoor'), +('6435', 'Trapdoor'), +('6436', 'Ladder'), +('6437', 'Vampire tomb'), +('6438', 'Vampire tomb'), +('6439', 'Rope'), +('6440', 'null'), +('6441', 'Cave entrance'), +('6442', 'Cave entrance'), +('6443', 'Cave entrance'), +('6444', 'Cave entrance'), +('6445', 'Cave entrance'), +('6446', 'Cave entrance'), +('6447', 'Cave exit'), +('6448', 'Secure chest'), +('6449', 'null'), +('6450', 'Ladder'), +('6451', 'Gate'), +('6452', 'Gate'), +('6453', 'null'), +('6454', 'Icy rock'), +('6455', 'Ice ledge'), +('6456', 'Ice ledge'), +('6457', 'null'), +('6458', 'null'), +('6459', 'null'), +('6460', 'null'), +('6461', 'Ice gate'), +('6462', 'Ice gate'), +('6463', 'null'), +('6464', 'null'), +('6465', 'null'), +('6466', 'null'), +('6467', 'null'), +('6468', 'null'), +('6469', 'null'), +('6470', 'null'), +('6471', 'null'), +('6472', 'Ice chunks'), +('6473', 'Ice chunks'), +('6474', 'Ice chunks'), +('6475', 'Ice chunks'), +('6476', 'Ice chunks'), +('6477', 'Ice chunks'), +('6478', 'null'), +('6479', 'null'), +('6480', 'null'), +('6481', 'Tunnel'), +('6482', 'null'), +('6483', 'Obelisk'), +('6484', 'Obelisk'), +('6485', 'null'), +('6486', 'Obelisk'), +('6487', 'Obelisk'), +('6488', 'null'), +('6489', 'Obelisk'), +('6490', 'Obelisk'), +('6491', 'null'), +('6492', 'Obelisk'), +('6493', 'Obelisk'), +('6494', 'Mystical door'), +('6495', 'null'), +('6496', 'null'), +('6497', 'Ladder'), +('6498', 'Ladder'), +('6499', 'Ladder'), +('6500', 'Ladder'), +('6501', 'Ladder'), +('6502', 'Ladder'), +('6503', 'Ladder'), +('6504', 'Ladder'), +('6505', 'null'), +('6506', 'null'), +('6507', 'null'), +('6508', 'null'), +('6509', 'null'), +('6510', 'null'), +('6511', 'null'), +('6512', 'Sarcophagus'), +('6513', 'Sarcophagus'), +('6514', 'Sarcophagus'), +('6515', 'Sarcophagus'), +('6516', 'Sarcophagus'), +('6517', 'Sarcophagus'), +('6518', 'null'), +('6519', 'null'), +('6520', 'null'), +('6521', 'Pitfall'), +('6522', 'null'), +('6523', 'Ladder'), +('6524', 'Crack'), +('6525', 'null'), +('6526', 'null'), +('6527', 'null'), +('6528', 'null'), +('6529', 'null'), +('6530', 'null'), +('6531', 'null'), +('6532', 'null'), +('6533', 'null'), +('6534', 'null'), +('6535', 'null'), +('6536', 'null'), +('6537', 'null'), +('6538', 'Sphinx'), +('6539', 'null'), +('6540', 'null'), +('6541', 'null'), +('6542', 'null'), +('6543', 'null'), +('6544', 'null'), +('6545', 'Pyramid entrance'), +('6546', 'null'), +('6547', 'Pyramid entrance'), +('6548', 'null'), +('6549', 'Well'), +('6550', 'null'), +('6551', 'Portal'), +('6552', 'Altar'), +('6553', 'Doorway'), +('6554', 'null'), +('6555', 'Doorway'), +('6556', 'null'), +('6557', 'null'), +('6558', 'null'), +('6559', 'null'), +('6560', 'null'), +('6561', 'Ladder'), +('6562', 'null'), +('6563', 'null'), +('6564', 'null'), +('6565', 'null'), +('6566', 'City gate'), +('6567', 'null'), +('6568', 'Silk stall'), +('6569', 'Bakery stall'), +('6570', 'Gem stall'), +('6571', 'Fur stall'), +('6572', 'Spice stall'), +('6573', 'Market stall'), +('6574', 'Tea stall'), +('6575', 'Cart'), +('6576', 'null'), +('6577', 'null'), +('6578', 'null'), +('6579', 'Banana Tree'), +('6580', 'null'), +('6581', 'Tent flap'), +('6582', 'null'), +('6583', 'null'), +('6584', 'null'), +('6585', 'null'), +('6586', 'null'), +('6587', 'null'), +('6588', 'null'), +('6589', 'null'), +('6590', 'null'), +('6591', 'null'), +('6592', 'null'), +('6593', 'null'), +('6594', 'null'), +('6595', 'null'), +('6596', 'null'), +('6597', 'null'), +('6598', 'null'), +('6599', 'null'), +('6600', 'null'), +('6601', 'null'), +('6602', 'null'), +('6603', 'null'), +('6604', 'null'), +('6605', 'Water'), +('6606', 'Centre piece'), +('6607', 'Mirror'), +('6608', 'Mirror'), +('6609', 'Mirror'), +('6610', 'Mirror'), +('6611', 'Mirror'), +('6612', 'Mirror'), +('6613', 'Mirror'), +('6614', 'Door'), +('6615', 'City gate'), +('6616', 'null'), +('6617', 'null'), +('6618', 'null'), +('6619', 'null'), +('6620', 'Hole'), +('6621', 'null'), +('6622', 'Rock'), +('6623', 'Rock'), +('6624', 'Door'), +('6625', 'Door'), +('6626', 'Door'), +('6627', 'Door'), +('6628', 'null'), +('6629', 'Wall Crusher'), +('6630', 'Sarcophagus'), +('6631', 'null'), +('6632', 'Pit'), +('6633', 'Pit'), +('6634', 'null'), +('6635', 'Canopic Jar'), +('6636', 'null'), +('6637', 'Canopic Jar'), +('6638', 'null'), +('6639', 'Canopic Jar'), +('6640', 'null'), +('6641', 'Canopic Jar'), +('6642', ''), +('6643', 'Doorway'), +('6644', 'Ceremonial table'), +('6645', 'Ladder'), +('6646', 'Closed chest'), +('6647', 'Open chest'), +('6648', 'Staircase'), +('6649', 'Staircase'), +('6650', 'Bridge'), +('6651', 'Bridge'), +('6652', 'Bridge'), +('6653', 'Bridge'), +('6654', 'null'), +('6655', 'Broken logs'), +('6656', 'Cloth'), +('6657', 'null'), +('6658', 'Tunnel'), +('6659', 'Tunnel'), +('6660', 'Weeping wall'), +('6661', 'Blue tears'), +('6662', 'Green tears'), +('6663', 'Absence of tears'), +('6664', 'null'), +('6665', 'Blue tears'), +('6666', 'Green tears'), +('6667', 'Absence of tears'), +('6668', 'null'), +('6669', 'Rocks'), +('6670', 'Rocks'), +('6671', 'Rocks'), +('6672', 'Rocks'), +('6673', 'Rocks'), +('6674', 'null'), +('6675', 'null'), +('6676', 'null'), +('6677', 'null'), +('6678', 'null'), +('6679', 'null'), +('6680', 'null'), +('6681', 'null'), +('6682', 'null'), +('6683', 'null'), +('6684', 'null'), +('6685', 'null'), +('6686', 'null'), +('6687', 'null'), +('6688', 'null'), +('6689', 'null'), +('6690', 'null'), +('6691', 'null'), +('6692', 'null'), +('6693', 'null'), +('6694', 'null'), +('6695', 'null'), +('6696', 'null'), +('6697', 'null'), +('6698', 'null'), +('6699', 'null'), +('6700', 'null'), +('6701', 'null'), +('6702', 'Staircase'), +('6703', 'Staircase'), +('6704', 'Staircase'), +('6705', 'Staircase'), +('6706', 'Staircase'), +('6707', 'Staircase'), +('6708', 'Ladder'), +('6709', 'null'), +('6710', 'null'), +('6711', 'null'), +('6712', 'null'), +('6713', 'Door'), +('6714', 'Door'), +('6715', 'Door'), +('6716', 'null'), +('6717', 'null'), +('6718', 'null'), +('6719', 'null'), +('6720', 'null'), +('6721', 'null'), +('6722', 'null'), +('6723', 'null'), +('6724', 'null'), +('6725', 'null'), +('6726', 'null'), +('6727', 'null'), +('6728', 'null'), +('6729', 'null'), +('6730', 'null'), +('6731', 'null'), +('6732', 'Door'), +('6733', 'Door'), +('6734', 'Door'), +('6735', 'null'), +('6736', 'null'), +('6737', 'null'), +('6738', 'null'), +('6739', 'null'), +('6740', 'null'), +('6741', 'null'), +('6742', 'null'), +('6743', 'null'), +('6744', 'null'), +('6745', 'null'), +('6746', 'null'), +('6747', 'null'), +('6748', 'null'), +('6749', 'null'), +('6750', 'null'), +('6751', 'null'), +('6752', 'null'), +('6753', 'null'), +('6754', 'null'), +('6755', 'null'), +('6756', 'null'), +('6757', 'null'), +('6758', 'null'), +('6759', 'null'), +('6760', 'null'), +('6761', 'null'), +('6762', 'null'), +('6763', 'null'), +('6764', 'null'), +('6765', 'null'), +('6766', 'null'), +('6767', 'Standing torch'), +('6768', 'null'), +('6769', 'null'), +('6770', 'null'), +('6771', 'Sarcophagus'), +('6772', 'Sarcophagus'), +('6773', 'Sarcophagus'), +('6774', 'Chest'), +('6775', 'Chest'), +('6776', 'Skeleton'), +('6777', 'Skeleton'), +('6778', 'Skeleton'), +('6779', 'null'), +('6780', 'null'), +('6781', 'null'), +('6782', 'null'), +('6783', 'null'), +('6784', 'null'), +('6785', 'null'), +('6786', 'null'), +('6787', 'null'), +('6788', 'null'), +('6789', 'null'), +('6790', 'null'), +('6791', 'Bed'), +('6792', 'null'), +('6793', 'null'), +('6794', 'null'), +('6795', 'null'), +('6796', 'null'), +('6797', 'null'), +('6798', 'null'), +('6799', 'null'), +('6800', 'null'), +('6801', 'null'), +('6802', 'null'), +('6803', 'null'), +('6804', 'null'), +('6805', 'null'), +('6806', 'null'), +('6807', 'null'), +('6808', 'null'), +('6809', 'null'), +('6810', 'null'), +('6811', 'null'), +('6812', 'null'), +('6813', 'null'), +('6814', 'null'), +('6815', 'null'), +('6816', 'null'), +('6817', 'null'), +('6818', 'null'), +('6819', 'null'), +('6820', 'null'), +('6821', 'Sarcophagus'), +('6822', 'Sarcophagus'), +('6823', 'Sarcophagus'), +('6824', 'Door'), +('6825', 'null'), +('6826', 'null'), +('6827', 'Waterpump'), +('6828', 'null'), +('6829', 'null'), +('6830', 'null'), +('6831', 'null'), +('6832', 'null'), +('6833', 'null'), +('6834', 'null'), +('6835', 'Warning sign'), +('6836', 'Cage'), +('6837', 'null'), +('6838', 'null'), +('6839', 'Crate'), +('6840', 'Fungus pattern'), +('6841', 'Stairs'), +('6842', 'Stairs'), +('6843', 'null'), +('6844', 'Ogre Coffin'), +('6845', 'Ogre Coffin'), +('6846', 'Broken Lecturn'), +('6847', 'Bell'), +('6848', 'Ogre Coffin'), +('6849', 'Signpost'), +('6850', 'Ogre Coffin'), +('6851', 'Ogre Coffin'), +('6852', 'Ogre Coffin'), +('6853', 'Ogre Coffin'), +('6854', 'Ogre Coffin'), +('6855', 'Ogre Coffin'), +('6856', 'Barricade'), +('6857', 'Barricade'), +('6858', 'Barricade'), +('6859', 'null'), +('6860', 'null'), +('6861', 'null'), +('6862', 'null'), +('6863', 'null'), +('6864', 'null'), +('6865', 'An ogre standard'), +('6866', 'Ogre fire'), +('6867', 'Ogre Drums'), +('6868', 'Ogre Drums'), +('6869', 'null'), +('6870', 'null'), +('6871', 'Ogre stone door'), +('6872', 'Ogre stone door'), +('6873', 'null'), +('6874', 'null'), +('6875', 'Drawers'), +('6876', 'Cupboard'), +('6877', 'Wardrobe'), +('6878', 'null'), +('6879', 'null'), +('6880', 'Ogre barricade'), +('6881', 'Crushed barricade'), +('6882', 'Crushed barricade'), +('6883', 'Ogre Coffin'), +('6884', 'null'), +('6885', 'null'), +('6886', 'null'), +('6887', 'null'), +('6888', 'Sithik Ints'), +('6889', 'Sithik Ints'), +('6890', 'Ogre Coffin'), +('6891', 'Ogre Coffin'), +('6892', 'Ogre Coffin'), +('6893', 'Skeleton'), +('6894', 'Bookcase'), +('6895', 'null'), +('6896', 'Standing torch'), +('6897', 'Stand'), +('6898', 'null'), +('6899', 'null'), +('6900', 'null'), +('6901', 'null'), +('6902', 'null'), +('6903', 'Rubble'), +('6904', 'Shelves'), +('6905', 'Hole'), +('6906', 'null'), +('6907', 'null'), +('6908', 'null'), +('6909', 'Wall'), +('6910', 'Chest'), +('6911', 'Crate'), +('6912', 'Hole'), +('6913', 'null'), +('6914', 'Hole'), +('6915', 'Rubble'), +('6916', 'Bookcase'), +('6917', 'null'), +('6918', 'null'), +('6919', 'Door'), +('6920', 'Door'), +('6921', 'Symbol'), +('6922', 'Symbol'), +('6923', 'Symbol'), +('6924', 'Symbol'), +('6925', 'null'), +('6926', 'null'), +('6927', 'Big, big boulder...'), +('6928', 'Bone Crane'), +('6929', 'Bone support'), +('6930', 'Bone support'), +('6931', 'Bone arch'), +('6932', 'Bone arch'), +('6933', 'Bone arch'), +('6934', 'Bone arch'), +('6935', 'Bone arch'), +('6936', 'Bone arch'), +('6937', 'Bone arch'), +('6938', 'Bone arch'), +('6939', 'Bone arch'), +('6940', 'Bone arch'), +('6941', 'null'), +('6942', 'null'), +('6943', 'Rocks'), +('6944', 'Rocks'), +('6945', 'Rocks'), +('6946', 'Rocks'), +('6947', 'Rocks'), +('6948', 'Rocks'), +('6949', 'null'), +('6950', 'Boulder'), +('6951', 'Nothing'), +('6952', 'Nothing'), +('6953', 'Nothing'), +('6954', 'null'), +('6955', 'null'), +('6956', 'null'), +('6957', 'null'), +('6958', 'null'), +('6959', 'null'), +('6960', 'null'), +('6961', 'null'), +('6962', 'null'), +('6963', 'null'), +('6964', 'null'), +('6965', 'null'), +('6966', 'null'), +('6967', 'null'), +('6968', 'null'), +('6969', 'Swamp Boaty'), +('6970', 'Swamp Boaty'), +('6971', 'Cart Track'), +('6972', 'Bookcase'), +('6973', 'null'), +('6974', 'null'), +('6975', 'Door'), +('6976', 'Door'), +('6977', 'Door'), +('6978', 'Door'), +('6979', 'null'), +('6980', 'null'), +('6981', 'null'), +('6982', 'null'), +('6983', 'null'), +('6984', 'Market Stall'), +('6985', 'Crusher'), +('6986', 'null'), +('6987', 'null'), +('6988', 'null'), +('6989', 'null'), +('6990', 'null'), +('6991', 'null'), +('6992', 'null'), +('6993', 'null'), +('6994', 'null'), +('6995', 'null'), +('6996', 'null'), +('6997', 'null'), +('6998', 'null'), +('6999', 'null'), +('7000', 'null'), +('7001', 'null'), +('7002', 'Statue'), +('7003', 'Statue'), +('7004', 'Statue'), +('7005', 'Statue'), +('7006', 'Statue'), +('7007', 'Statue'), +('7008', 'Statue'), +('7009', 'Statue'), +('7010', 'Almost a Statue'), +('7011', 'Plant'), +('7012', 'Plant'), +('7013', 'Plant'), +('7014', 'Plant'), +('7015', 'Plant'), +('7016', 'Pillar'), +('7017', 'Pillar'), +('7018', 'Cupboard'), +('7019', 'Cabinet'), +('7020', 'Cabinet'), +('7021', 'Cabinet'), +('7022', 'Track'), +('7023', 'Track'), +('7024', 'null'), +('7025', 'null'), +('7026', 'Track'), +('7027', 'Train cart'), +('7028', 'Train cart'), +('7029', 'Train cart'), +('7030', 'Train cart'), +('7031', 'null'), +('7032', 'Giant Dwarf'), +('7033', 'Giant Dwarf'), +('7034', 'Giant Dwarf'), +('7035', 'Giant Dwarf'), +('7036', 'Giant Dwarf'), +('7037', 'Giant Dwarf'), +('7038', 'Giant Dwarf'), +('7039', 'Giant Dwarf'), +('7040', 'null'), +('7041', 'Giant Dwarf'), +('7042', 'null'), +('7043', 'Giant Dwarf'), +('7044', 'Buffers'), +('7045', 'null'), +('7046', 'null'), +('7047', 'null'), +('7048', 'null'), +('7049', 'Gate'), +('7050', 'Gate'), +('7051', 'Gate'), +('7052', 'Gate'), +('7053', 'Seed Stall'), +('7054', 'null'), +('7055', 'null'), +('7056', 'Staircase'), +('7057', 'Staircase'), +('7058', 'Old Bookshelf'), +('7059', 'Old Bookshelf'), +('7060', 'Old Bookshelf'), +('7061', 'Old Bookshelf'), +('7062', 'Old Bookshelf'), +('7063', 'Old Bookshelf'), +('7064', 'Old Bookshelf'), +('7065', 'Old Bookshelf'), +('7066', 'Old Bookshelf'), +('7067', 'Old Bookshelf'), +('7068', 'Old Bookshelf'), +('7069', 'Old Bookshelf'), +('7070', 'Old Bookshelf'), +('7071', 'Old Bookshelf'), +('7072', 'Old Bookshelf'), +('7073', 'Old Bookshelf'), +('7074', 'Old Bookshelf'), +('7075', 'Old Bookshelf'), +('7076', 'Old Bookshelf'), +('7077', 'Old Bookshelf'), +('7078', 'Old Bookshelf'), +('7079', 'Old Bookshelf'), +('7080', 'Old Bookshelf'), +('7081', 'Old Bookshelf'), +('7082', 'Old Bookshelf'), +('7083', 'Old Bookshelf'), +('7084', 'Old Bookshelf'), +('7085', 'Old Bookshelf'), +('7086', 'Old Bookshelf'), +('7087', 'Old Bookshelf'), +('7088', 'Old Bookshelf'), +('7089', 'Old Bookshelf'), +('7090', 'Globe of Gielinor'), +('7091', 'Study Desk'), +('7092', 'Telescope'), +('7093', 'null'), +('7094', 'null'), +('7095', 'null'), +('7096', 'Chart'), +('7097', 'Chart'), +('7098', 'Chart'), +('7099', 'Scrolls'), +('7100', 'Suit of armour'), +('7101', 'Hanging cape'), +('7102', 'Saradomin staff'), +('7103', 'Mysterious ruins'), +('7104', 'Mysterious ruins'), +('7105', 'Mysterious ruins'), +('7106', 'Mysterious ruins'), +('7107', 'Mysterious ruins'), +('7108', 'Mysterious ruins'), +('7109', 'Mysterious ruins'), +('7110', 'Mysterious ruins'), +('7111', 'Mysterious ruins'), +('7112', 'Mysterious ruins'), +('7113', 'Mysterious ruins'), +('7114', 'Mysterious ruins'), +('7115', 'Mysterious ruins'), +('7116', 'Mysterious ruins'), +('7117', 'Mysterious ruins'), +('7118', 'Mysterious ruins'), +('7119', 'Mysterious ruins'), +('7120', 'Mysterious ruins'), +('7121', 'Mysterious ruins'), +('7122', 'Mysterious ruins'), +('7123', 'Mysterious ruins'), +('7124', 'Mysterious ruins'), +('7125', 'Mysterious ruins'), +('7126', 'Mysterious ruins'), +('7127', 'null'), +('7128', 'null'), +('7129', 'Fire rift'), +('7130', 'Earth rift'), +('7131', 'Body rift'), +('7132', 'Cosmic rift'), +('7133', 'Nature rift'), +('7134', 'Chaos rift'), +('7135', 'Law rift'), +('7136', 'Death rift'), +('7137', 'Water rift'), +('7138', 'Soul rift'), +('7139', 'Air rift'), +('7140', 'Mind rift'), +('7141', 'Blood rift'), +('7142', 'null'), +('7143', 'null'), +('7144', 'null'), +('7145', 'null'), +('7146', 'null'), +('7147', 'null'), +('7148', 'null'), +('7149', 'null'), +('7150', 'null'), +('7151', 'null'), +('7152', 'null'), +('7153', 'null'), +('7154', 'Passage'), +('7155', 'null'), +('7156', 'Blockage'), +('7157', 'null'), +('7158', 'Rock'), +('7159', 'Rock'), +('7160', 'Broken rock'), +('7161', 'Tendrils'), +('7162', 'Tendrils'), +('7163', 'Chopped tendrils'), +('7164', 'Gap'), +('7165', 'Boil'), +('7166', 'Boil'), +('7167', 'Boil'), +('7168', 'Eyes'), +('7169', 'Eyes'), +('7170', 'Eyes'), +('7171', 'Abyssal rift'), +('7172', 'null'), +('7173', 'null'), +('7174', 'null'), +('7175', 'null'), +('7176', 'null'), +('7177', 'null'), +('7178', 'null'), +('7179', 'null'), +('7180', 'null'), +('7181', 'null'), +('7182', 'null'), +('7183', 'null'), +('7184', 'null'), +('7185', 'null'), +('7186', 'null'), +('7187', 'null'), +('7188', 'null'), +('7189', 'Tendrils'), +('7190', 'Tendrils'), +('7191', 'Tendrils'), +('7192', 'null'), +('7193', 'null'), +('7194', 'null'), +('7195', 'null'), +('7196', 'null'), +('7197', 'null'), +('7198', 'null'), +('7199', 'null'), +('7200', 'null'), +('7201', 'null'), +('7202', 'null'), +('7203', 'null'), +('7204', 'null'), +('7205', 'null'), +('7206', 'Corpse'), +('7207', 'Corpse'), +('7208', 'Corpse'), +('7209', 'null'), +('7210', 'null'), +('7211', 'null'), +('7212', 'null'), +('7213', 'null'), +('7214', 'null'), +('7215', 'null'), +('7216', 'null'), +('7217', 'null'), +('7218', 'null'), +('7219', 'Passageway'), +('7220', 'Passageway'), +('7221', 'Ladder'), +('7222', 'Door'), +('7223', 'Door'), +('7224', 'Spinning blades'), +('7225', 'Wall'), +('7226', 'null'), +('7227', 'Floor'), +('7228', 'Wall'), +('7229', 'Wall'), +('7230', 'Floor'), +('7231', 'Door'), +('7232', 'Door'), +('7233', 'Door'), +('7234', 'Door'), +('7235', 'null'), +('7236', 'Wall safe'), +('7237', 'Wall safe'), +('7238', 'null'), +('7239', 'Ledge'), +('7240', 'Ledge'), +('7241', 'Pendulum'), +('7242', 'Wooden Obstruction'), +('7243', 'Wooden Obstruction'), +('7244', 'Wooden Obstruction'), +('7245', 'Floor'), +('7246', 'Door'), +('7247', 'null'), +('7248', 'Wall'), +('7249', 'Wall'), +('7250', 'Floor'), +('7251', 'Contortion Bars'), +('7252', 'Blade'), +('7253', 'Spin Blades'), +('7254', 'Grill'), +('7255', 'Grill'), +('7256', 'Doorway'), +('7257', 'Trapdoor'), +('7258', 'Passageway'), +('7259', 'Door'), +('7260', 'Door'), +('7261', 'null'), +('7262', 'null'), +('7263', 'null'), +('7264', 'null'), +('7265', 'null'), +('7266', 'null'), +('7267', 'null'), +('7268', 'null'), +('7269', 'null'), +('7270', 'null'), +('7271', 'null'), +('7272', 'Portal'), +('7273', 'Portal'), +('7274', 'Door'), +('7275', 'null'), +('7276', 'null'), +('7277', 'Fox'), +('7278', 'Fox'), +('7279', 'null'), +('7280', 'null'), +('7281', 'Chicken'), +('7282', 'null'), +('7283', 'null'), +('7284', 'Grain'), +('7285', 'Empty Sack'), +('7286', 'Precarious bridge'), +('7287', 'Precarious bridge'), +('7288', 'Portal'), +('7289', 'Portal'), +('7290', 'null'), +('7291', 'null'), +('7292', 'null'), +('7293', 'null'), +('7294', 'null'), +('7295', 'null'), +('7296', 'null'), +('7297', 'null'), +('7298', 'null'), +('7299', 'null'), +('7300', 'null'), +('7301', 'null'), +('7302', 'Door'), +('7303', 'Statue'), +('7304', 'Statue'), +('7305', 'Statue'), +('7306', 'Statue'), +('7307', 'Statue'), +('7308', 'Statue'), +('7309', 'Statue'), +('7310', 'Statue'), +('7311', 'Statue'), +('7312', 'Statue'), +('7313', 'Statue'), +('7314', 'Statue'), +('7315', 'Portal'), +('7316', 'Portal'), +('7317', 'Door'), +('7318', 'Portal'), +('7319', 'Portal'), +('7320', 'Door'), +('7321', 'Portal'), +('7322', 'Portal'), +('7323', 'Door'), +('7324', 'Portal'), +('7325', 'Portal'), +('7326', 'Door'), +('7327', 'Old Bookshelf'), +('7328', 'Old Bookshelf'), +('7329', 'Old Bookshelf'), +('7330', 'Old Bookshelf'), +('7331', 'Table'), +('7332', 'Bunsen burner'), +('7333', 'Shelves'), +('7334', 'Shelves'), +('7335', 'Shelves'), +('7336', 'Shelves'), +('7337', 'Shelves'), +('7338', 'Shelves'), +('7339', 'Shelves'), +('7340', 'Shelves'), +('7341', 'null'), +('7342', 'null'), +('7343', 'Stone Door'), +('7344', 'Stone Door'), +('7345', 'Open Door'), +('7346', 'Key'), +('7347', 'Crate'), +('7348', 'Crate'), +('7349', 'Crate'), +('7350', 'Closed chest'), +('7351', 'Open chest'), +('7352', 'Portal'), +('7353', 'Portal'), +('7354', 'Door'), +('7355', 'Warning Sign'), +('7356', 'null'), +('7357', 'null'), +('7358', 'null'), +('7359', 'null'), +('7360', 'null'), +('7361', 'null'), +('7362', 'null'), +('7363', 'null'), +('7364', 'null'), +('7365', 'null'), +('7366', 'null'), +('7367', 'null'), +('7368', 'null'), +('7369', 'null'), +('7370', 'null'), +('7371', 'null'), +('7372', 'null'), +('7373', 'Door'), +('7374', 'Door'), +('7375', 'null'), +('7376', 'null'), +('7377', 'null'), +('7378', 'null'), +('7379', 'null'), +('7380', 'null'), +('7381', 'null'), +('7382', 'null'), +('7383', 'null'), +('7384', 'null'), +('7385', 'Chair'), +('7386', 'null'), +('7387', 'null'), +('7388', 'Bench'), +('7389', 'null'), +('7390', 'Hookah'), +('7391', 'Rolled up rug'), +('7392', 'Rolled up rugs'), +('7393', 'Little tent'), +('7394', 'Rug'), +('7395', 'null'), +('7396', 'Carpet Exhibit'), +('7397', 'Leafy tree'), +('7398', 'Leafy tree'), +('7399', 'Tree Stump'), +('7400', 'Tree Stump'), +('7401', 'Tree Stump'), +('7402', 'Tree Stump'), +('7403', 'Apple Barrel'), +('7404', 'Apple Barrel'), +('7405', 'null'), +('7406', 'Barrel Tap'), +('7407', 'Barrel'), +('7408', 'Barrel'), +('7409', 'Barrel'), +('7410', 'Barrel'), +('7411', 'Dwarven Stout'), +('7412', 'Mature Dwarven Stout'), +('7413', 'Asgarnian Ale'), +('7414', 'Mature Asgarnian Ale'), +('7415', 'Greenmans Ale'), +('7416', 'Mature Greenmans Ale'), +('7417', 'Wizards Mind Bomb'), +('7418', 'Mature Wizards Mind Bomb'), +('7419', 'Dragon Bitter'), +('7420', 'Mature Dragon Bitter'), +('7421', 'Moonlight Mead'), +('7422', 'Mature Moonlight Mead'), +('7423', 'Axeman's Folly'), +('7424', 'Mature Axeman's Folly'), +('7425', 'Chef's Delight'), +('7426', 'Mature Chef's Delight'), +('7427', 'Slayer's Respite'), +('7428', 'Mature Slayer's Respite'), +('7429', 'Cider'), +('7430', 'Mature Cider'), +('7431', 'null'), +('7432', 'null'), +('7433', 'ladder'), +('7434', 'Trapdoor'), +('7435', 'Trapdoor'), +('7436', 'Barrel'), +('7437', 'Fermenting Vat'), +('7438', 'Fermenting Vat'), +('7439', 'Fermenting Vat'), +('7440', 'Fermenting Vat'), +('7441', 'Fermenting Vat'), +('7442', 'Valve'), +('7443', 'Valve'), +('7444', 'Fermenting Vat'), +('7445', 'Fermenting Vat'), +('7446', 'Fermenting Vat'), +('7447', 'Fermenting Vat'), +('7448', 'Fermenting Vat'), +('7449', 'Fermenting Vat'), +('7450', 'Fermenting Vat'), +('7451', 'Fermenting Vat'), +('7452', 'Fermenting Vat'), +('7453', 'Fermenting Vat'), +('7454', 'Fermenting Vat'), +('7455', 'Fermenting Vat'), +('7456', 'Fermenting Vat'), +('7457', 'Fermenting Vat'), +('7458', 'Fermenting Vat'), +('7459', 'Fermenting Vat'), +('7460', 'Fermenting Vat'), +('7461', 'Fermenting Vat'), +('7462', 'Fermenting Vat'), +('7463', 'Fermenting Vat'), +('7464', 'Fermenting Vat'), +('7465', 'Fermenting Vat'), +('7466', 'Fermenting Vat'), +('7467', 'Fermenting Vat'), +('7468', 'Fermenting Vat'), +('7469', 'Fermenting Vat'), +('7470', 'Fermenting Vat'), +('7471', 'Fermenting Vat'), +('7472', 'Fermenting Vat'), +('7473', 'Fermenting Vat'), +('7474', 'Fermenting Vat'), +('7475', 'Fermenting Vat'), +('7476', 'Fermenting Vat'), +('7477', 'Fermenting Vat'), +('7478', 'Fermenting Vat'), +('7479', 'Fermenting Vat'), +('7480', 'Fermenting Vat'), +('7481', 'Fermenting Vat'), +('7482', 'Fermenting Vat'), +('7483', 'Fermenting Vat'), +('7484', 'Fermenting Vat'), +('7485', 'Fermenting Vat'), +('7486', 'Fermenting Vat'), +('7487', 'Fermenting Vat'), +('7488', 'Fermenting Vat'), +('7489', 'Fermenting Vat'), +('7490', 'Fermenting Vat'), +('7491', 'Fermenting Vat'), +('7492', 'Fermenting Vat'), +('7493', 'Fermenting Vat'), +('7494', 'null'), +('7495', 'null'), +('7496', 'Counter'), +('7497', 'Counter'), +('7498', 'Shelves'), +('7499', 'Shelves'), +('7500', 'Shelves'), +('7501', 'Shelves'), +('7502', 'Shelves'), +('7503', 'null'), +('7504', 'Chair'), +('7505', 'Chair'), +('7506', 'Shelves'), +('7507', 'Shelves'), +('7508', 'Shelves'), +('7509', 'Shelves'), +('7510', 'Shelves'), +('7511', 'Shelves'), +('7512', 'Sacks'), +('7513', 'Crate'), +('7514', 'Crate'), +('7515', 'null'), +('7516', 'Tools'), +('7517', 'null'), +('7518', 'null'), +('7519', 'null'), +('7520', 'null'), +('7521', 'null'), +('7522', 'null'), +('7523', 'null'), +('7524', 'null'), +('7525', 'null'), +('7526', 'null'), +('7527', 'Stile'), +('7528', 'Fermenting Vat'), +('7529', 'Fermenting Vat'), +('7530', 'Fermenting Vat'), +('7531', 'Barrel'), +('7532', 'Valve'), +('7533', 'null'), +('7534', 'null'), +('7535', 'null'), +('7536', 'null'), +('7537', 'null'), +('7538', 'null'), +('7539', 'null'), +('7540', 'null'), +('7541', 'null'), +('7542', 'null'), +('7543', 'null'), +('7544', 'null'), +('7545', 'null'), +('7546', 'null'), +('7547', 'null'), +('7548', 'null'), +('7549', 'null'), +('7550', 'null'), +('7551', 'null'), +('7552', 'null'), +('7553', 'null'), +('7554', 'null'), +('7555', 'null'), +('7556', 'null'), +('7557', 'Belladonna patch'), +('7558', 'Belladonna patch'), +('7559', 'Belladonna patch'), +('7560', 'Belladonna patch'), +('7561', 'Belladonna'), +('7562', 'Belladonna'), +('7563', 'Belladonna'), +('7564', 'Belladonna'), +('7565', 'Belladonna'), +('7566', 'Diseased Belladonna'), +('7567', 'Diseased Belladonna'), +('7568', 'Diseased Belladonna'), +('7569', 'Dead Belladonna'), +('7570', 'Dead Belladonna'), +('7571', 'Dead Belladonna'), +('7572', 'null'), +('7573', 'Bush Patch'), +('7574', 'Bush Patch'), +('7575', 'Bush Patch'), +('7576', 'Bush Patch'), +('7577', 'null'), +('7578', 'null'), +('7579', 'null'), +('7580', 'null'), +('7581', 'Cadavaberry bush'), +('7582', 'Cadavaberry bush'), +('7583', 'Cadavaberry bush'), +('7584', 'Cadavaberry bush'), +('7585', 'Cadavaberry bush'), +('7586', 'Cadavaberry bush'), +('7587', 'Cadavaberry bush'), +('7588', 'Cadavaberry bush'), +('7589', 'Cadavaberry bush'), +('7590', 'Cadavaberry bush'), +('7591', 'Cadavaberry bush'), +('7592', 'Cadavaberry bush'), +('7593', 'Diseased cadavaberry bush'), +('7594', 'Diseased cadavaberry bush'), +('7595', 'Diseased cadavaberry bush'), +('7596', 'Diseased cadavaberry bush'), +('7597', 'Diseased cadavaberry bush'), +('7598', 'Diseased cadavaberry bush'), +('7599', 'Dead cadavaberry bush'), +('7600', 'Dead cadavaberry bush'), +('7601', 'Dead cadavaberry bush'), +('7602', 'Dead cadavaberry bush'), +('7603', 'Dead cadavaberry bush'), +('7604', 'Dead cadavaberry bush'), +('7605', 'Dwellberry bush'), +('7606', 'Dwellberry bush'), +('7607', 'Dwellberry bush'), +('7608', 'Dwellberry bush'), +('7609', 'Dwellberry bush'), +('7610', 'Dwellberry bush'), +('7611', 'Dwellberry bush'), +('7612', 'Dwellberry bush'), +('7613', 'Dwellberry bush'), +('7614', 'Dwellberry bush'), +('7615', 'Dwellberry bush'), +('7616', 'Dwellberry bush'), +('7617', 'Dwellberry bush'), +('7618', 'Diseased dwellberry bush'), +('7619', 'Diseased dwellberry bush'), +('7620', 'Diseased dwellberry bush'), +('7621', 'Diseased dwellberry bush'), +('7622', 'Diseased dwellberry bush'), +('7623', 'Diseased dwellberry bush'), +('7624', 'Diseased dwellberry bush'), +('7625', 'Dead dwellberry bush'), +('7626', 'Dead dwellberry bush'), +('7627', 'Dead dwellberry bush'), +('7628', 'Dead dwellberry bush'), +('7629', 'Dead dwellberry bush'), +('7630', 'Dead dwellberry bush'), +('7631', 'Dead dwellberry bush'), +('7632', 'Jangerberry bush'), +('7633', 'Jangerberry bush'), +('7634', 'Jangerberry bush'), +('7635', 'Jangerberry bush'), +('7636', 'Jangerberry bush'), +('7637', 'Jangerberry bush'), +('7638', 'Jangerberry bush'), +('7639', 'Jangerberry bush'), +('7640', 'Jangerberry bush'), +('7641', 'Jangerberry bush'), +('7642', 'Jangerberry bush'), +('7643', 'Jangerberry bush'), +('7644', 'Jangerberry bush'), +('7645', 'Jangerberry bush'), +('7646', 'Diseased jangerberry bush'), +('7647', 'Diseased jangerberry bush'), +('7648', 'Diseased jangerberry bush'), +('7649', 'Diseased jangerberry bush'), +('7650', 'Diseased jangerberry bush'), +('7651', 'Diseased jangerberry bush'), +('7652', 'Diseased jangerberry bush'), +('7653', 'Diseased jangerberry bush'), +('7654', 'Dead jangerberry bush'), +('7655', 'Dead jangerberry bush'), +('7656', 'Dead jangerberry bush'), +('7657', 'Dead jangerberry bush'), +('7658', 'Dead jangerberry bush'), +('7659', 'Dead jangerberry bush'), +('7660', 'Dead jangerberry bush'), +('7661', 'Dead jangerberry bush'), +('7662', 'Poison Ivy bush'), +('7663', 'Poison Ivy bush'), +('7664', 'Poison Ivy bush'), +('7665', 'Poison Ivy bush'), +('7666', 'Poison Ivy bush'), +('7667', 'Poison Ivy bush'), +('7668', 'Poison Ivy bush'), +('7669', 'Poison Ivy bush'), +('7670', 'Poison Ivy bush'), +('7671', 'Poison Ivy bush'), +('7672', 'Poison Ivy bush'), +('7673', 'Poison Ivy bush'), +('7674', 'Poison Ivy bush'), +('7675', 'Poison Ivy bush'), +('7676', 'Diseased Poison Ivy bush'), +('7677', 'Diseased Poison Ivy bush'), +('7678', 'Diseased Poison Ivy bush'), +('7679', 'Diseased Poison Ivy bush'), +('7680', 'Diseased Poison Ivy bush'), +('7681', 'Diseased Poison Ivy bush'), +('7682', 'Diseased Poison Ivy bush'), +('7683', 'Diseased Poison Ivy bush'), +('7684', 'Dead Poison Ivy bush'), +('7685', 'Dead Poison Ivy bush'), +('7686', 'Dead Poison Ivy bush'), +('7687', 'Dead Poison Ivy bush'), +('7688', 'Dead Poison Ivy bush'), +('7689', 'Dead Poison Ivy bush'), +('7690', 'Dead Poison Ivy bush'), +('7691', 'Dead Poison Ivy bush'), +('7692', 'Redberry bush'), +('7693', 'Redberry bush'), +('7694', 'Redberry bush'), +('7695', 'Redberry bush'), +('7696', 'Redberry bush'), +('7697', 'Redberry bush'), +('7698', 'Redberry bush'), +('7699', 'Redberry bush'), +('7700', 'Redberry bush'), +('7701', 'Redberry bush'), +('7702', 'Redberry bush'), +('7703', 'Diseased redberry bush'), +('7704', 'Diseased redberry bush'), +('7705', 'Diseased redberry bush'), +('7706', 'Diseased redberry bush'), +('7707', 'Diseased redberry bush'), +('7708', 'Dead redberry bush'), +('7709', 'Dead redberry bush'), +('7710', 'Dead redberry bush'), +('7711', 'Dead redberry bush'), +('7712', 'Dead redberry bush'), +('7713', 'Whiteberry bush'), +('7714', 'Whiteberry bush'), +('7715', 'Whiteberry bush'), +('7716', 'Whiteberry bush'), +('7717', 'Whiteberry bush'), +('7718', 'Whiteberry bush'), +('7719', 'Whiteberry bush'), +('7720', 'Whiteberry bush'), +('7721', 'Whiteberry bush'), +('7722', 'Whiteberry bush'), +('7723', 'Whiteberry bush'), +('7724', 'Whiteberry bush'), +('7725', 'Whiteberry bush'), +('7726', 'Whiteberry bush'), +('7727', 'Diseased whiteberry bush'), +('7728', 'Diseased whiteberry bush'), +('7729', 'Diseased whiteberry bush'), +('7730', 'Diseased whiteberry bush'), +('7731', 'Diseased whiteberry bush'), +('7732', 'Diseased whiteberry bush'), +('7733', 'Diseased whiteberry bush'), +('7734', 'Diseased whiteberry bush'), +('7735', 'Dead whiteberry bush'), +('7736', 'Dead whiteberry bush'), +('7737', 'Dead whiteberry bush'), +('7738', 'Dead whiteberry bush'), +('7739', 'Dead whiteberry bush'), +('7740', 'Dead whiteberry bush'), +('7741', 'Dead whiteberry bush'), +('7742', 'Dead whiteberry bush'), +('7743', 'Cactus patch'), +('7744', 'Cactus patch'), +('7745', 'Cactus patch'), +('7746', 'Cactus patch'), +('7747', 'Cactus'), +('7748', 'Cactus'), +('7749', 'Cactus'), +('7750', 'Cactus'), +('7751', 'Cactus'), +('7752', 'Cactus'), +('7753', 'Cactus'), +('7754', 'Cactus'), +('7755', 'Cactus'), +('7756', 'Cactus'), +('7757', 'Cactus'), +('7758', 'Cactus'), +('7759', 'Diseased cactus'), +('7760', 'Diseased cactus'), +('7761', 'Diseased cactus'), +('7762', 'Diseased cactus'), +('7763', 'Diseased cactus'), +('7764', 'Diseased cactus'), +('7765', 'Dead cactus'), +('7766', 'Dead cactus'), +('7767', 'Dead cactus'), +('7768', 'Dead cactus'), +('7769', 'Dead cactus'), +('7770', 'Dead cactus'), +('7771', 'null'), +('7772', 'Calquat patch'), +('7773', 'Calquat patch'), +('7774', 'Calquat patch'), +('7775', 'Calquat patch'), +('7776', 'Calquat Tree'), +('7777', 'Calquat Tree'), +('7778', 'Calquat Tree'), +('7779', 'Calquat Tree'), +('7780', 'Calquat Tree'), +('7781', 'Calquat Tree'), +('7782', 'Calquat Tree'), +('7783', 'Calquat Tree'), +('7784', 'Calquat Tree'), +('7785', 'Calquat Tree'), +('7786', 'Calquat Tree'), +('7787', 'Calquat Tree'), +('7788', 'Calquat Tree'), +('7789', 'Calquat Tree'), +('7790', 'Calquat Tree'), +('7791', 'Calquat Tree'), +('7792', 'Diseased Calquat'), +('7793', 'Diseased Calquat'), +('7794', 'Diseased Calquat'), +('7795', 'Diseased Calquat'), +('7796', 'Diseased Calquat'), +('7797', 'Diseased Calquat'), +('7798', 'Diseased Calquat'), +('7799', 'Dead Calquat'), +('7800', 'Dead Calquat'), +('7801', 'Dead Calquat'), +('7802', 'Dead Calquat'), +('7803', 'Dead Calquat'), +('7804', 'Dead Calquat'), +('7805', 'Dead Calquat'), +('7806', 'Dead Calquat'), +('7807', 'null'), +('7808', 'Compost Bin'), +('7809', 'Compost Bin'), +('7810', 'Compost Bin'), +('7811', 'Compost Bin'), +('7812', 'Compost Bin'), +('7813', 'Compost Bin'), +('7814', 'Compost Bin'), +('7815', 'Compost Bin'), +('7816', 'Compost Bin'), +('7817', 'Compost Bin'), +('7818', 'Compost Bin'), +('7819', 'Compost Bin'), +('7820', 'Compost Bin'), +('7821', 'Compost Bin'), +('7822', 'Compost Bin'), +('7823', 'Compost Bin'), +('7824', 'Compost Bin'), +('7825', 'Compost Bin'), +('7826', 'Compost Bin'), +('7827', 'Compost Bin'), +('7828', 'Compost Bin'), +('7829', 'Compost Bin'), +('7830', 'Compost Bin'), +('7831', 'Compost Bin'), +('7832', 'Compost Bin'), +('7833', 'Compost Bin'), +('7834', 'Compost Bin'), +('7835', 'Compost Bin'), +('7836', 'null'), +('7837', 'null'), +('7838', 'null'), +('7839', 'null'), +('7840', 'Flower Patch'), +('7841', 'Flower Patch'), +('7842', 'Flower Patch'), +('7843', 'Flower Patch'), +('7844', 'Flower Patch'), +('7845', 'Flower Patch'), +('7846', 'Flower Patch'), +('7847', 'null'), +('7848', 'null'), +('7849', 'null'), +('7850', 'null'), +('7851', 'Limpwurt plant'), +('7852', 'Limpwurt plant'), +('7853', 'Limpwurt plant'), +('7854', 'Limpwurt plant'), +('7855', 'Limpwurt plant'), +('7856', 'Limpwurt plant'), +('7857', 'Limpwurt plant'), +('7858', 'Limpwurt plant'), +('7859', 'Limpwurt plant'), +('7860', 'Diseased limpwurt plant'), +('7861', 'Diseased limpwurt plant'), +('7862', 'Diseased limpwurt plant'), +('7863', 'Dead limpwurt plant'), +('7864', 'Dead limpwurt plant'), +('7865', 'Dead limpwurt plant'), +('7866', 'Dead limpwurt plant'), +('7867', 'Marigold'), +('7868', 'Marigold'), +('7869', 'Marigold'), +('7870', 'Marigold'), +('7871', 'Marigold'), +('7872', 'Marigold'), +('7873', 'Marigold'), +('7874', 'Marigold'), +('7875', 'Marigold'), +('7876', 'Diseased marigold'), +('7877', 'Diseased marigold'), +('7878', 'Diseased marigold'), +('7879', 'Dead marigold'), +('7880', 'Dead marigold'), +('7881', 'Dead marigold'), +('7882', 'Dead marigold'), +('7883', 'Nasturtium'), +('7884', 'Nasturtium'), +('7885', 'Nasturtium'), +('7886', 'Nasturtium'), +('7887', 'Nasturtium'), +('7888', 'Nasturtium'), +('7889', 'Nasturtium'), +('7890', 'Nasturtium'), +('7891', 'Nasturtium'), +('7892', 'Diseased nasturtium'), +('7893', 'Diseased nasturtium'), +('7894', 'Diseased nasturtium'), +('7895', 'Dead nasturtium'), +('7896', 'Dead nasturtium'), +('7897', 'Dead nasturtium'), +('7898', 'Dead nasturtium'), +('7899', 'Rosemary'), +('7900', 'Rosemary'), +('7901', 'Rosemary'), +('7902', 'Rosemary'), +('7903', 'Rosemary'), +('7904', 'Rosemary'), +('7905', 'Rosemary'), +('7906', 'Rosemary'), +('7907', 'Rosemary'), +('7908', 'Diseased rosemary'), +('7909', 'Diseased rosemary'), +('7910', 'Diseased rosemary'), +('7911', 'Dead rosemary'), +('7912', 'Dead rosemary'), +('7913', 'Dead rosemary'), +('7914', 'Dead rosemary'), +('7915', 'Scarecrow'), +('7916', 'Scarecrow'), +('7917', 'Scarecrow'), +('7918', 'Scarecrow'), +('7919', 'Woad plant'), +('7920', 'Woad plant'), +('7921', 'Woad plant'), +('7922', 'Woad plant'), +('7923', 'Woad plant'), +('7924', 'Woad plant'), +('7925', 'Woad plant'), +('7926', 'Woad plant'), +('7927', 'Woad plant'), +('7928', 'Diseased woad plant'), +('7929', 'Diseased woad plant'), +('7930', 'Diseased woad plant'), +('7931', 'Dead woad plant'), +('7932', 'Dead woad plant'), +('7933', 'Dead woad plant'), +('7934', 'Dead woad plant'), +('7935', 'Apple tree'), +('7936', 'Apple tree'), +('7937', 'Apple tree'), +('7938', 'Apple tree'), +('7939', 'Apple tree'), +('7940', 'Apple tree'), +('7941', 'Apple tree'), +('7942', 'Apple tree'), +('7943', 'Apple tree'), +('7944', 'Apple tree'), +('7945', 'Apple tree'), +('7946', 'Apple tree'), +('7947', 'Apple tree'), +('7948', 'Apple tree'), +('7949', 'Diseased apple tree'), +('7950', 'Diseased apple tree'), +('7951', 'Diseased apple tree'), +('7952', 'Diseased apple tree'), +('7953', 'Diseased apple tree'), +('7954', 'Diseased apple tree'), +('7955', 'Dead apple tree'), +('7956', 'Dead apple tree'), +('7957', 'Dead apple tree'), +('7958', 'Dead apple tree'), +('7959', 'Dead apple tree'), +('7960', 'Dead apple tree'), +('7961', 'Apple tree stump'), +('7962', 'null'), +('7963', 'null'), +('7964', 'null'), +('7965', 'null'), +('7966', 'Pineapple plant'), +('7967', 'Pineapple plant'), +('7968', 'Pineapple plant'), +('7969', 'Pineapple plant'), +('7970', 'Pineapple plant'), +('7971', 'Pineapple plant'), +('7972', 'Pineapple plant'), +('7973', 'Pineapple plant'), +('7974', 'Pineapple plant'), +('7975', 'Pineapple plant'), +('7976', 'Pineapple plant'), +('7977', 'Pineapple plant'), +('7978', 'Pineapple plant'), +('7979', 'Pineapple plant'), +('7980', 'Diseased pineapple plant'), +('7981', 'Diseased pineapple plant'), +('7982', 'Diseased pineapple plant'), +('7983', 'Diseased pineapple plant'), +('7984', 'Diseased pineapple plant'), +('7985', 'Diseased pineapple plant'), +('7986', 'Dead pineapple plant'), +('7987', 'Dead pineapple plant'), +('7988', 'Dead pineapple plant'), +('7989', 'Dead pineapple plant'), +('7990', 'Dead pineapple plant'), +('7991', 'Dead pineapple plant'), +('7992', 'Pineapple plant stump'), +('7993', 'Banana tree'), +('7994', 'Banana tree'), +('7995', 'Banana tree'), +('7996', 'Banana tree'), +('7997', 'Banana tree'), +('7998', 'Banana tree'), +('7999', 'Banana tree'), +('8000', 'Banana tree'), +('8001', 'Banana tree'), +('8002', 'Banana tree'), +('8003', 'Banana tree'), +('8004', 'Banana tree'), +('8005', 'Banana tree'), +('8006', 'Banana tree'), +('8007', 'Diseased banana tree'), +('8008', 'Diseased banana tree'), +('8009', 'Diseased banana tree'), +('8010', 'Diseased banana tree'), +('8011', 'Diseased banana tree'), +('8012', 'Diseased banana tree'), +('8013', 'Dead banana tree'), +('8014', 'Dead banana tree'), +('8015', 'Dead banana tree'), +('8016', 'Dead banana tree'), +('8017', 'Dead banana tree'), +('8018', 'Dead banana tree'), +('8019', 'Banana tree stump'), +('8020', 'Curry tree'), +('8021', 'Curry tree'), +('8022', 'Curry tree'), +('8023', 'Curry tree'), +('8024', 'Curry tree'), +('8025', 'Curry tree'), +('8026', 'Curry tree'), +('8027', 'Curry tree'), +('8028', 'Curry tree'), +('8029', 'Curry tree'), +('8030', 'Curry tree'), +('8031', 'Curry tree'), +('8032', 'Curry tree'), +('8033', 'Curry tree'), +('8034', 'Diseased curry tree'), +('8035', 'Diseased curry tree'), +('8036', 'Diseased curry tree'), +('8037', 'Diseased curry tree'), +('8038', 'Diseased curry tree'), +('8039', 'Diseased curry tree'), +('8040', 'Dead curry tree'), +('8041', 'Dead curry tree'), +('8042', 'Dead curry tree'), +('8043', 'Dead curry tree'), +('8044', 'Dead curry tree'), +('8045', 'Dead curry tree'), +('8046', 'Curry tree stump'), +('8047', 'Fruit Tree Patch'), +('8048', 'Fruit Tree Patch'), +('8049', 'Fruit Tree Patch'), +('8050', 'Fruit Tree Patch'), +('8051', 'Orange tree'), +('8052', 'Orange tree'), +('8053', 'Orange tree'), +('8054', 'Orange tree'), +('8055', 'Orange tree'), +('8056', 'Orange tree'), +('8057', 'Orange tree'), +('8058', 'Orange tree'), +('8059', 'Orange tree'), +('8060', 'Orange tree'), +('8061', 'Orange tree'), +('8062', 'Orange tree'), +('8063', 'Orange tree'), +('8064', 'Orange tree'), +('8065', 'Diseased orange tree'), +('8066', 'Diseased orange tree'), +('8067', 'Diseased orange tree'), +('8068', 'Diseased orange tree'), +('8069', 'Diseased orange tree'), +('8070', 'Diseased orange tree'), +('8071', 'Dead orange tree'), +('8072', 'Dead orange tree'), +('8073', 'Dead orange tree'), +('8074', 'Dead orange tree'), +('8075', 'Dead orange tree'), +('8076', 'Dead orange tree'), +('8077', 'Orange tree stump'), +('8078', 'Palm tree'), +('8079', 'Palm tree'), +('8080', 'Palm tree'), +('8081', 'Palm tree'), +('8082', 'Palm tree'), +('8083', 'Palm tree'), +('8084', 'Palm tree'), +('8085', 'Palm tree'), +('8086', 'Palm tree'), +('8087', 'Palm tree'), +('8088', 'Palm tree'), +('8089', 'Palm tree'), +('8090', 'Palm tree'), +('8091', 'Palm tree'), +('8092', 'Diseased palm tree'), +('8093', 'Diseased palm tree'), +('8094', 'Diseased palm tree'), +('8095', 'Diseased palm tree'), +('8096', 'Diseased palm tree'), +('8097', 'Diseased palm tree'), +('8098', 'Dead palm tree'), +('8099', 'Dead palm tree'), +('8100', 'Dead palm tree'), +('8101', 'Dead palm tree'), +('8102', 'Dead palm tree'), +('8103', 'Dead palm tree'), +('8104', 'Palm tree stump'), +('8105', 'Papaya tree'), +('8106', 'Papaya tree'), +('8107', 'Papaya tree'), +('8108', 'Papaya tree'), +('8109', 'Papaya tree'), +('8110', 'Papaya tree'), +('8111', 'Papaya tree'), +('8112', 'Papaya tree'), +('8113', 'Papaya tree'), +('8114', 'Papaya tree'), +('8115', 'Papaya tree'), +('8116', 'Papaya tree'), +('8117', 'Papaya tree'), +('8118', 'Papaya tree'), +('8119', 'Diseased papaya tree'), +('8120', 'Diseased papaya tree'), +('8121', 'Diseased papaya tree'), +('8122', 'Diseased papaya tree'), +('8123', 'Diseased papaya tree'), +('8124', 'Diseased papaya tree'), +('8125', 'Dead papaya tree'), +('8126', 'Dead papaya tree'), +('8127', 'Dead papaya tree'), +('8128', 'Dead papaya tree'), +('8129', 'Dead papaya tree'), +('8130', 'Dead papaya tree'), +('8131', 'Papaya tree stump'), +('8132', 'Herb patch'), +('8133', 'Herb patch'), +('8134', 'Herb patch'), +('8135', 'Herb patch'), +('8136', 'Herb patch'), +('8137', 'Herb patch'), +('8138', 'Herb patch'), +('8139', 'Herbs'), +('8140', 'Herbs'), +('8141', 'Herbs'), +('8142', 'Herbs'), +('8143', 'Herbs'), +('8144', 'Diseased herbs'), +('8145', 'Diseased herbs'), +('8146', 'Diseased herbs'), +('8147', 'Dead herbs'), +('8148', 'Dead herbs'), +('8149', 'Dead herbs'), +('8150', 'null'), +('8151', 'null'), +('8152', 'null'), +('8153', 'null'), +('8154', 'Asgarnian Hops'), +('8155', 'Asgarnian Hops'), +('8156', 'Asgarnian Hops'), +('8157', 'Asgarnian Hops'), +('8158', 'Asgarnian Hops'), +('8159', 'Asgarnian Hops'), +('8160', 'Asgarnian Hops'), +('8161', 'Asgarnian Hops'), +('8162', 'Asgarnian Hops'), +('8163', 'Asgarnian Hops'), +('8164', 'Asgarnian Hops'), +('8165', 'Diseased Asgarnian Hops'), +('8166', 'Diseased Asgarnian Hops'), +('8167', 'Diseased Asgarnian Hops'), +('8168', 'Diseased Asgarnian Hops'), +('8169', 'Dead Asgarnian Hops'), +('8170', 'Dead Asgarnian Hops'), +('8171', 'Dead Asgarnian Hops'), +('8172', 'Dead Asgarnian Hops'), +('8173', 'null'), +('8174', 'null'), +('8175', 'null'), +('8176', 'null'), +('8177', 'Hammerstone Hops'), +('8178', 'Hammerstone Hops'), +('8179', 'Hammerstone Hops'), +('8180', 'Hammerstone Hops'), +('8181', 'Hammerstone Hops'), +('8182', 'Hammerstone Hops'), +('8183', 'Hammerstone Hops'), +('8184', 'Hammerstone Hops'), +('8185', 'Hammerstone Hops'), +('8186', 'Diseased Hammerstone Hops'), +('8187', 'Diseased Hammerstone Hops'), +('8188', 'Diseased Hammerstone Hops'), +('8189', 'Dead Hammerstone Hops'), +('8190', 'Dead Hammerstone Hops'), +('8191', 'Dead Hammerstone Hops'), +('8192', 'Barley'), +('8193', 'Barley'), +('8194', 'Barley'), +('8195', 'Barley'), +('8196', 'Barley'), +('8197', 'Barley'), +('8198', 'Barley'), +('8199', 'Barley'), +('8200', 'Barley'), +('8201', 'Diseased Barley'), +('8202', 'Diseased Barley'), +('8203', 'Diseased Barley'), +('8204', 'Dead Barley'), +('8205', 'Dead Barley'), +('8206', 'Dead Barley'), +('8207', 'Hops Patch'), +('8208', 'Hops Patch'), +('8209', 'Hops Patch'), +('8210', 'Hops Patch'), +('8211', 'Krandorian Hops'), +('8212', 'Krandorian Hops'), +('8213', 'Krandorian Hops'), +('8214', 'Krandorian Hops'), +('8215', 'Krandorian Hops'), +('8216', 'Krandorian Hops'), +('8217', 'Krandorian Hops'), +('8218', 'Krandorian Hops'), +('8219', 'Krandorian Hops'), +('8220', 'Krandorian Hops'), +('8221', 'Krandorian Hops'), +('8222', 'Krandorian Hops'), +('8223', 'Krandorian Hops'), +('8224', 'Krandorian Hops'), +('8225', 'Krandorian Hops'), +('8226', 'Diseased Krandorian Hops'), +('8227', 'Diseased Krandorian Hops'), +('8228', 'Diseased Krandorian Hops'), +('8229', 'Diseased Krandorian Hops'), +('8230', 'Diseased Krandorian Hops'), +('8231', 'Diseased Krandorian Hops'), +('8232', 'Dead Krandorian Hops'), +('8233', 'Dead Krandorian Hops'), +('8234', 'Dead Krandorian Hops'), +('8235', 'Dead Krandorian Hops'), +('8236', 'Dead Krandorian Hops'), +('8237', 'Dead Krandorian Hops'), +('8238', 'Jute'), +('8239', 'Jute'), +('8240', 'Jute'), +('8241', 'Jute'), +('8242', 'Jute'), +('8243', 'Jute'), +('8244', 'Jute'), +('8245', 'Jute'), +('8246', 'Jute'), +('8247', 'Jute'), +('8248', 'Jute'), +('8249', 'Diseased Jute'), +('8250', 'Diseased Jute'), +('8251', 'Diseased Jute'), +('8252', 'Diseased Jute'), +('8253', 'Dead Jute'), +('8254', 'Dead Jute'), +('8255', 'Dead Jute'), +('8256', 'Dead Jute'), +('8257', 'Wildblood Hops'), +('8258', 'Wildblood Hops'), +('8259', 'Wildblood Hops'), +('8260', 'Wildblood Hops'), +('8261', 'Wildblood Hops'), +('8262', 'Wildblood Hops'), +('8263', 'Wildblood Hops'), +('8264', 'Wildblood Hops'), +('8265', 'Wildblood Hops'), +('8266', 'Wildblood Hops'), +('8267', 'Wildblood Hops'), +('8268', 'Wildblood Hops'), +('8269', 'Wildblood Hops'), +('8270', 'Wildblood Hops'), +('8271', 'Wildblood Hops'), +('8272', 'Wildblood Hops'), +('8273', 'Wildblood Hops'), +('8274', 'Diseased Wildblood Hops'), +('8275', 'Diseased Wildblood Hops'), +('8276', 'Diseased Wildblood Hops'), +('8277', 'Diseased Wildblood Hops'), +('8278', 'Diseased Wildblood Hops'), +('8279', 'Diseased Wildblood Hops'), +('8280', 'Diseased Wildblood Hops'), +('8281', 'Dead Wildblood Hops'), +('8282', 'Dead Wildblood Hops'), +('8283', 'Dead Wildblood Hops'), +('8284', 'Dead Wildblood Hops'), +('8285', 'Dead Wildblood Hops'), +('8286', 'Dead Wildblood Hops'), +('8287', 'Dead Wildblood Hops'), +('8288', 'Yanillian Hops'), +('8289', 'Yanillian Hops'), +('8290', 'Yanillian Hops'), +('8291', 'Yanillian Hops'), +('8292', 'Yanillian Hops'), +('8293', 'Yanillian Hops'), +('8294', 'Yanillian Hops'), +('8295', 'Yanillian Hops'), +('8296', 'Yanillian Hops'), +('8297', 'Yanillian Hops'), +('8298', 'Yanillian Hops'), +('8299', 'Yanillian Hops'), +('8300', 'Yanillian Hops'), +('8301', 'Diseased Yanillian Hops'), +('8302', 'Diseased Yanillian Hops'), +('8303', 'Diseased Yanillian Hops'), +('8304', 'Diseased Yanillian Hops'), +('8305', 'Diseased Yanillian Hops'), +('8306', 'Dead Yanillian Hops'), +('8307', 'Dead Yanillian Hops'), +('8308', 'Dead Yanillian Hops'), +('8309', 'Dead Yanillian Hops'), +('8310', 'Dead Yanillian Hops'), +('8311', 'Mushroom patch'), +('8312', 'Mushroom patch'), +('8313', 'Mushroom patch'), +('8314', 'Mushroom patch'), +('8315', 'Bittercap Mushrooms'), +('8316', 'Bittercap Mushrooms'), +('8317', 'Bittercap Mushrooms'), +('8318', 'Bittercap Mushrooms'), +('8319', 'Bittercap Mushrooms'), +('8320', 'Bittercap Mushrooms'), +('8321', 'Bittercap Mushrooms'), +('8322', 'Bittercap Mushrooms'), +('8323', 'Bittercap Mushrooms'), +('8324', 'Bittercap Mushrooms'), +('8325', 'Bittercap Mushrooms'), +('8326', 'Bittercap Mushrooms'), +('8327', 'Diseased Bittercap Mushrooms'), +('8328', 'Diseased Bittercap Mushrooms'), +('8329', 'Diseased Bittercap Mushrooms'), +('8330', 'Diseased Bittercap Mushrooms'), +('8331', 'Diseased Bittercap Mushrooms'), +('8332', 'Dead Bittercap Mushrooms'), +('8333', 'Dead Bittercap Mushrooms'), +('8334', 'Dead Bittercap Mushrooms'), +('8335', 'Dead Bittercap Mushrooms'), +('8336', 'Dead Bittercap Mushrooms'), +('8337', 'null'), +('8338', 'null'), +('8339', 'Spirit Tree Patch'), +('8340', 'Spirit Tree Patch'), +('8341', 'Spirit Tree Patch'), +('8342', 'Spirit Tree Patch'), +('8343', 'Spirit Tree'), +('8344', 'Spirit Tree'), +('8345', 'Spirit Tree'), +('8346', 'Spirit Tree'), +('8347', 'Spirit Tree'), +('8348', 'Spirit Tree'), +('8349', 'Spirit Tree'), +('8350', 'Spirit Tree'), +('8351', 'Spirit Tree'), +('8352', 'Spirit Tree'), +('8353', 'Spirit Tree'), +('8354', 'Spirit Tree'), +('8355', 'Spirit Tree'), +('8356', 'Spirit Tree'), +('8357', 'Spirit Tree Stump'), +('8358', 'Diseased Spirit Tree'), +('8359', 'Diseased Spirit Tree'), +('8360', 'Diseased Spirit Tree'), +('8361', 'Diseased Spirit Tree'), +('8362', 'Diseased Spirit Tree'), +('8363', 'Diseased Spirit Tree'), +('8364', 'Diseased Spirit Tree'), +('8365', 'Diseased Spirit Tree'), +('8366', 'Diseased Spirit Tree'), +('8367', 'Diseased Spirit Tree'), +('8368', 'Diseased Spirit Tree'), +('8369', 'Diseased Spirit Tree'), +('8370', 'Dead Spirit Tree'), +('8371', 'Dead Spirit Tree'), +('8372', 'Dead Spirit Tree'), +('8373', 'Dead Spirit Tree'), +('8374', 'Dead Spirit Tree'), +('8375', 'Dead Spirit Tree'), +('8376', 'Dead Spirit Tree'), +('8377', 'Dead Spirit Tree'), +('8378', 'Dead Spirit Tree'), +('8379', 'Dead Spirit Tree'), +('8380', 'Dead Spirit Tree'), +('8381', 'Dead Spirit Tree'), +('8382', 'null'), +('8383', 'null'), +('8384', 'null'), +('8385', 'null'), +('8386', 'null'), +('8387', 'null'), +('8388', 'null'), +('8389', 'null'), +('8390', 'null'), +('8391', 'null'), +('8392', 'Tree patch'), +('8393', 'Tree patch'), +('8394', 'Tree patch'), +('8395', 'Tree patch'), +('8396', 'Magic Tree'), +('8397', 'Magic Tree'), +('8398', 'Magic Tree'), +('8399', 'Magic Tree'), +('8400', 'Magic Tree'), +('8401', 'Magic Tree'), +('8402', 'Magic Tree'), +('8403', 'Magic Tree'), +('8404', 'Magic Tree'), +('8405', 'Magic Tree'), +('8406', 'Magic Tree'), +('8407', 'Magic Tree'), +('8408', 'Magic Tree'), +('8409', 'Magic Tree'), +('8410', 'Magic Tree Stump'), +('8411', 'Diseased Magic Tree'), +('8412', 'Diseased Magic Tree'), +('8413', 'Diseased Magic Tree'), +('8414', 'Diseased Magic Tree'), +('8415', 'Diseased Magic Tree'), +('8416', 'Diseased Magic Tree'), +('8417', 'Diseased Magic Tree'), +('8418', 'Diseased Magic Tree'), +('8419', 'Diseased Magic Tree'), +('8420', 'Diseased Magic Tree'), +('8421', 'Diseased Magic Tree'), +('8422', 'Diseased Magic Tree'), +('8423', 'Dead Magic Tree'), +('8424', 'Dead Magic Tree'), +('8425', 'Dead Magic Tree'), +('8426', 'Dead Magic Tree'), +('8427', 'Dead Magic Tree'), +('8428', 'Dead Magic Tree'), +('8429', 'Dead Magic Tree'), +('8430', 'Dead Magic Tree'), +('8431', 'Dead Magic Tree'), +('8432', 'Dead Magic Tree'), +('8433', 'Dead Magic Tree'), +('8434', 'Dead Magic Tree'), +('8435', 'Maple Tree'), +('8436', 'Maple Tree'), +('8437', 'Maple Tree'), +('8438', 'Maple Tree'), +('8439', 'Maple Tree'), +('8440', 'Maple Tree'), +('8441', 'Maple Tree'), +('8442', 'Maple Tree'), +('8443', 'Maple Tree'), +('8444', 'Maple Tree'), +('8445', 'Maple tree stump'), +('8446', 'Diseased Maple'), +('8447', 'Diseased Maple'), +('8448', 'Diseased Maple'), +('8449', 'Diseased Maple'), +('8450', 'Diseased Maple'), +('8451', 'Diseased Maple'), +('8452', 'Diseased Maple'), +('8453', 'Diseased Maple'), +('8454', 'Dead Maple'), +('8455', 'Dead Maple'), +('8456', 'Dead Maple'), +('8457', 'Dead Maple'), +('8458', 'Dead Maple'), +('8459', 'Dead Maple'), +('8460', 'Dead Maple'), +('8461', 'Dead Maple'), +('8462', 'Oak'), +('8463', 'Oak'), +('8464', 'Oak'), +('8465', 'Oak'), +('8466', 'Oak'), +('8467', 'Oak'), +('8468', 'Oak tree stump'), +('8469', 'null'), +('8470', 'null'), +('8471', 'null'), +('8472', 'null'), +('8473', 'Diseased Oak'), +('8474', 'Diseased Oak'), +('8475', 'Diseased Oak'), +('8476', 'Diseased Oak'), +('8477', 'Dead Oak'), +('8478', 'Dead Oak'), +('8479', 'Dead Oak'), +('8480', 'Dead Oak'), +('8481', 'Willow Tree'), +('8482', 'Willow Tree'), +('8483', 'Willow Tree'), +('8484', 'Willow Tree'), +('8485', 'Willow Tree'), +('8486', 'Willow Tree'), +('8487', 'Willow Tree'), +('8488', 'Willow Tree'), +('8489', 'Willow tree stump'), +('8490', 'Diseased Willow'), +('8491', 'Diseased Willow'), +('8492', 'Diseased Willow'), +('8493', 'Diseased Willow'), +('8494', 'Diseased Willow'), +('8495', 'Diseased Willow'), +('8496', 'Dead Willow'), +('8497', 'Dead Willow'), +('8498', 'Dead Willow'), +('8499', 'Dead Willow'), +('8500', 'Dead Willow'), +('8501', 'Dead Willow'), +('8502', 'Yew sapling'), +('8503', 'Yew tree'), +('8504', 'Yew tree'), +('8505', 'Yew tree'), +('8506', 'Yew tree'), +('8507', 'Yew tree'), +('8508', 'Yew tree'), +('8509', 'Yew tree'), +('8510', 'Yew tree'), +('8511', 'Yew tree'), +('8512', 'Yew tree'), +('8513', 'Yew tree'), +('8514', 'Yew tree stump'), +('8515', 'Diseased Yew'), +('8516', 'Diseased Yew'), +('8517', 'Diseased Yew'), +('8518', 'Diseased Yew'), +('8519', 'Diseased Yew'), +('8520', 'Diseased Yew'), +('8521', 'Diseased Yew'), +('8522', 'Diseased Yew'), +('8523', 'Diseased Yew'), +('8524', 'Diseased Yew'), +('8525', 'Dead Yew'), +('8526', 'Dead Yew'), +('8527', 'Dead Yew'), +('8528', 'Dead Yew'), +('8529', 'Dead Yew'), +('8530', 'Dead Yew'), +('8531', 'Dead Yew'), +('8532', 'Dead Yew'), +('8533', 'Dead Yew'), +('8534', 'Dead Yew'), +('8535', 'Cabbages'), +('8536', 'Cabbages'), +('8537', 'Cabbages'), +('8538', 'Cabbages'), +('8539', 'Cabbages'), +('8540', 'Cabbages'), +('8541', 'Cabbages'), +('8542', 'Cabbages'), +('8543', 'Cabbages'), +('8544', 'Diseased cabbages'), +('8545', 'Diseased cabbages'), +('8546', 'Diseased cabbages'), +('8547', 'Dead cabbages'), +('8548', 'Dead cabbages'), +('8549', 'Dead cabbages'), +('8550', 'null'), +('8551', 'null'), +('8552', 'null'), +('8553', 'null'), +('8554', 'null'), +('8555', 'null'), +('8556', 'null'), +('8557', 'null'), +('8558', 'Potato seed'), +('8559', 'Potato plant'), +('8560', 'Potato plant'), +('8561', 'Potato plant'), +('8562', 'Potato'), +('8563', 'Potato seed'), +('8564', 'Potato plant'), +('8565', 'Potato plant'), +('8566', 'Potato plant'), +('8567', 'Diseased potatoes'), +('8568', 'Diseased potatoes'), +('8569', 'Diseased potatoes'), +('8570', 'Dead potatoes'), +('8571', 'Dead potatoes'), +('8572', 'Dead potatoes'), +('8573', 'Allotment'), +('8574', 'Allotment'), +('8575', 'Allotment'), +('8576', 'Allotment'), +('8577', 'Allotment'), +('8578', 'Allotment'), +('8579', 'Allotment'), +('8580', 'Onion seeds'), +('8581', 'Onion plant'), +('8582', 'Onion plant'), +('8583', 'Onion plant'), +('8584', 'Onion'), +('8585', 'Onion seeds'), +('8586', 'Onion plant'), +('8587', 'Onion plant'), +('8588', 'Onion plant'), +('8589', 'Diseased onions'), +('8590', 'Diseased onions'), +('8591', 'Diseased onions'), +('8592', 'Dead onions'), +('8593', 'Dead onions'), +('8594', 'Dead onions'), +('8595', 'Strawberry seed'), +('8596', 'Strawberry plant'), +('8597', 'Strawberry plant'), +('8598', 'Strawberry plant'), +('8599', 'Strawberry plant'), +('8600', 'Strawberry plant'), +('8601', 'Strawberry'), +('8602', 'Strawberry seed'), +('8603', 'Strawberry plant'), +('8604', 'Strawberry plant'), +('8605', 'Strawberry plant'), +('8606', 'Strawberry plant'), +('8607', 'Strawberry plant'), +('8608', 'Diseased strawberry plant'), +('8609', 'Diseased strawberry plant'), +('8610', 'Diseased strawberry plant'), +('8611', 'Diseased strawberry plant'), +('8612', 'Diseased strawberry plant'), +('8613', 'Dead strawberry plant'), +('8614', 'Dead strawberry plant'), +('8615', 'Dead strawberry plant'), +('8616', 'Dead strawberry plant'), +('8617', 'Dead strawberry plant'), +('8618', 'Sweetcorn seed'), +('8619', 'Sweetcorn plant'), +('8620', 'Sweetcorn plant'), +('8621', 'Sweetcorn plant'), +('8622', 'Sweetcorn plant'), +('8623', 'Sweetcorn plant'), +('8624', 'Sweetcorn'), +('8625', 'Sweetcorn seed'), +('8626', 'Sweetcorn plant'), +('8627', 'Sweetcorn plant'), +('8628', 'Sweetcorn plant'), +('8629', 'Sweetcorn plant'), +('8630', 'Sweetcorn plant'), +('8631', 'Diseased sweetcorn plant'), +('8632', 'Diseased sweetcorn plant'), +('8633', 'Diseased sweetcorn plant'), +('8634', 'Diseased sweetcorn plant'), +('8635', 'Diseased sweetcorn plant'), +('8636', 'Dead sweetcorn plant'), +('8637', 'Dead sweetcorn plant'), +('8638', 'Dead sweetcorn plant'), +('8639', 'Dead sweetcorn plant'), +('8640', 'Dead sweetcorn plant'), +('8641', 'Tomato plant'), +('8642', 'Tomato plant'), +('8643', 'Tomato plant'), +('8644', 'Tomato plant'), +('8645', 'Tomato'), +('8646', 'Tomato plant'), +('8647', 'Tomato plant'), +('8648', 'Tomato plant'), +('8649', 'Tomato plant'), +('8650', 'Diseased tomato plant'), +('8651', 'Diseased tomato plant'), +('8652', 'Diseased tomato plant'), +('8653', 'Dead tomato plant'), +('8654', 'Dead tomato plant'), +('8655', 'Dead tomato plant'), +('8656', 'Watermelon seed'), +('8657', 'Watermelons'), +('8658', 'Watermelons'), +('8659', 'Watermelons'), +('8660', 'Watermelons'), +('8661', 'Watermelons'), +('8662', 'Watermelons'), +('8663', 'Watermelons'), +('8664', 'Watermelon'), +('8665', 'Watermelon seed'), +('8666', 'Watermelons'), +('8667', 'Watermelons'), +('8668', 'Watermelons'), +('8669', 'Watermelons'), +('8670', 'Watermelons'), +('8671', 'Watermelons'), +('8672', 'Watermelons'), +('8673', 'Diseased watermelons'), +('8674', 'Diseased watermelons'), +('8675', 'Diseased watermelons'), +('8676', 'Diseased watermelons'), +('8677', 'Diseased watermelons'), +('8678', 'Diseased watermelons'), +('8679', 'Diseased watermelons'), +('8680', 'Dead watermelons'), +('8681', 'Dead watermelons'), +('8682', 'Dead watermelons'), +('8683', 'Dead watermelons'), +('8684', 'Dead watermelons'), +('8685', 'Dead watermelons'), +('8686', 'Dead watermelons'), +('8687', 'null'), +('8688', 'Dresser'), +('8689', 'Dairy cow'), +('8690', 'Milk Urns'), +('8691', 'Milk Urns'), +('8692', 'null'), +('8693', 'null'), +('8694', 'null'), +('8695', 'Door'), +('8696', 'Door'), +('8697', 'null'), +('8698', 'null'), +('8699', 'Sink'), +('8700', 'Table'), +('8701', 'Table'), +('8702', 'Water barrel'), +('8703', 'Water barrel'), +('8704', 'null'), +('8705', 'null'), +('8706', 'null'), +('8707', 'null'), +('8708', 'null'), +('8709', 'null'), +('8710', 'null'), +('8711', 'null'), +('8712', 'Fireplace'), +('8713', 'Hay bale'), +('8714', 'Haystack'), +('8715', 'Hay bale'), +('8716', 'Haystack'), +('8717', 'Loom'), +('8718', 'null'), +('8719', 'null'), +('8720', 'null'), +('8721', 'null'), +('8722', 'null'), +('8723', 'null'), +('8724', 'null'), +('8725', 'Rock'), +('8726', 'Rock'), +('8727', 'Rocks'), +('8728', 'Rockslide'), +('8729', 'Rockslide'), +('8730', 'Rockslide'), +('8731', 'Rockslide'), +('8732', 'null'), +('8733', 'null'), +('8734', 'null'), +('8735', 'null'), +('8736', 'null'), +('8737', 'Barrel Tap'), +('8738', 'null'), +('8739', 'null'), +('8740', 'null'), +('8741', 'null'), +('8742', 'Tree'), +('8743', 'Tree'), +('8744', 'ladder'), +('8745', 'ladder'), +('8746', 'ladder'), +('8747', 'Well'), +('8748', 'Spinning wheel'), +('8749', 'Altar'), +('8750', 'Cooking range'), +('8751', 'Table'), +('8752', 'Bookcase'), +('8753', 'Bookcase'), +('8754', 'Bookcase'), +('8755', 'null'), +('8756', 'null'), +('8757', 'null'), +('8758', 'null'), +('8759', 'null'), +('8760', 'null'), +('8761', 'null'), +('8762', 'null'), +('8763', 'null'), +('8764', 'null'), +('8765', 'null'), +('8766', 'null'), +('8767', 'Elven lamp'), +('8768', 'Table'), +('8769', 'Table'), +('8770', 'Chair'), +('8771', 'Painting'), +('8772', 'Bench'), +('8773', 'Bow and Arrow'), +('8774', 'null'), +('8775', 'Arrows'), +('8776', 'Clothing shelves'), +('8777', 'null'), +('8778', 'Clothes model'), +('8779', 'Clothes model'), +('8780', 'null'), +('8781', 'null'), +('8782', 'null'), +('8783', 'Trapdoor'), +('8784', 'null'), +('8785', 'Ladder'), +('8786', 'Door'), +('8787', 'Door'), +('8788', 'Door'), +('8789', 'Door'), +('8790', 'Door'), +('8791', 'Door'), +('8792', 'Door'), +('8793', 'Door'), +('8794', 'null'), +('8795', 'null'), +('8796', 'null'), +('8797', 'Closed chest'), +('8798', 'Open chest'), +('8799', 'Desk'), +('8800', 'Closed chest'), +('8801', 'Grain Sack'), +('8802', 'Grain Sack'), +('8803', 'Grain Sack'), +('8804', 'Grain sacks'), +('8805', 'Grain sacks'), +('8806', 'Grain sacks'), +('8807', 'Apple Barrel'), +('8808', 'Apple Barrel'), +('8809', 'Rotten Apple Pile'), +('8810', 'Gate'), +('8811', 'Gate'), +('8812', 'Gate'), +('8813', 'Gate'), +('8814', 'Bed'), +('8815', 'Bed'), +('8816', 'Bed'), +('8817', 'Bed'), +('8818', 'Door'), +('8819', 'Door'), +('8820', 'Door'), +('8821', 'Door'), +('8822', 'null'), +('8823', 'null'), +('8824', 'null'), +('8825', 'null'), +('8826', 'null'), +('8827', 'null'), +('8828', 'Rocks'), +('8829', 'Rocks'), +('8830', 'Rocks'), +('8831', 'Mine cart'), +('8832', 'null'), +('8833', 'null'), +('8834', 'null'), +('8835', 'null'), +('8836', 'null'), +('8837', 'null'), +('8838', 'null'), +('8839', 'null'), +('8840', 'Stocks'), +('8841', 'null'), +('8842', 'Apple Tree'), +('8843', 'Apple Tree'), +('8844', 'null'), +('8845', 'null'), +('8846', 'null'), +('8847', 'null'), +('8848', 'null'), +('8849', 'null'), +('8850', 'null'), +('8851', 'null'), +('8852', 'null'), +('8853', 'null'), +('8854', 'null'), +('8855', 'null'), +('8856', 'null'), +('8857', 'null'), +('8858', 'null'), +('8859', 'null'), +('8860', 'null'), +('8861', 'Kelda Hops Patch'), +('8862', 'Kelda Hops Patch'), +('8863', 'Kelda Hops Patch'), +('8864', 'Kelda Hops Patch'), +('8865', 'Kelda Hops'), +('8866', 'Kelda Hops'), +('8867', 'Kelda Hops'), +('8868', 'Kelda Hops'), +('8869', 'Kelda Hops'), +('8870', 'Kelda Stout'), +('8871', 'Fermenting Vat'), +('8872', 'Fermenting Vat'), +('8873', 'Fermenting Vat'), +('8874', 'Fermenting Vat'), +('8875', 'null'), +('8876', 'null'), +('8877', 'null'), +('8878', 'Dwarven machinery'), +('8879', 'Box'), +('8880', 'Box'), +('8881', 'Cave entrance'), +('8882', 'Cave entrance'), +('8883', 'Cave entrance'), +('8884', 'Cave entrance'), +('8885', 'null'), +('8886', 'Buffers'), +('8887', 'Track'), +('8888', 'Track'), +('8889', 'Track'), +('8890', 'Track'), +('8891', 'Track'), +('8892', 'Track'), +('8893', 'Track'), +('8894', 'Track'), +('8895', 'Track'), +('8896', 'Track'), +('8897', 'Track'), +('8898', 'Track'), +('8899', 'Track support'), +('8900', 'Track support'), +('8901', 'Track support'), +('8902', 'Track support'), +('8903', 'Track support'), +('8904', 'Track support'), +('8905', 'null'), +('8906', 'null'), +('8907', 'null'), +('8908', 'null'), +('8909', 'null'), +('8910', 'Bookcase'), +('8911', 'Crate'), +('8912', 'Crates'), +('8913', 'Crate'), +('8914', 'Crate'), +('8915', 'Crate'), +('8916', 'Crate'), +('8917', 'null'), +('8918', 'Banner'), +('8919', 'null'), +('8920', 'null'), +('8921', 'null'), +('8922', 'null'), +('8923', 'null'), +('8924', 'Train cart'), +('8925', 'Train cart'), +('8926', 'Viking Boat'), +('8927', 'Well'), +('8928', 'null'), +('8929', 'Cave entrance'), +('8930', 'Cave entrance'), +('8931', 'null'), +('8932', 'null'), +('8933', 'null'), +('8934', 'null'), +('8935', 'null'), +('8936', 'null'), +('8937', 'null'), +('8938', 'null'), +('8939', 'null'), +('8940', 'null'), +('8941', 'null'), +('8942', 'null'), +('8943', 'null'), +('8944', 'null'), +('8945', 'null'), +('8946', 'null'), +('8947', 'null'), +('8948', 'null'), +('8949', 'null'), +('8950', 'Rock'), +('8951', 'Rock'), +('8952', 'Rock'), +('8953', 'null'), +('8954', 'Flag'), +('8955', 'Flag'), +('8956', 'Iron ladder'), +('8957', 'null'), +('8958', 'Door'), +('8959', 'Door'), +('8960', 'Door'), +('8961', 'Door'), +('8962', 'Door'), +('8963', 'Door'), +('8964', 'null'), +('8965', 'null'), +('8966', 'Steps'), +('8967', 'Door'), +('8968', 'null'), +('8969', 'null'), +('8970', 'null'), +('8971', 'null'), +('8972', 'Portal'), +('8973', 'Tree'), +('8974', 'Tree'), +('8975', 'null'), +('8976', 'null'), +('8977', 'null'), +('8978', 'null'), +('8979', 'null'), +('8980', 'null'), +('8981', 'null'), +('8982', 'null'), +('8983', 'null'), +('8984', 'null'), +('8985', 'Uncooking pot'), +('8986', 'Fishing spot'), +('8987', 'Portal'), +('8988', 'Chest'), +('8989', 'Open Chest'), +('8990', 'null'), +('8991', 'null'), +('8992', 'null'), +('8993', 'null'), +('8994', 'null'), +('8995', 'null'), +('8996', 'null'), +('8997', 'null'), +('8998', 'Appendage'), +('8999', 'Appendage'), +('9000', 'Appendage'), +('9001', 'Appendage'), +('9002', 'Appendage'), +('9003', 'Appendage'), +('9004', 'Appendage'), +('9005', 'Appendage'), +('9006', 'Funeral pyre'), +('9007', 'Funeral pyre'), +('9008', 'Funeral pyre'), +('9009', 'Funeral pyre'), +('9010', 'Light Jungle'), +('9011', 'Light Jungle'), +('9012', 'Light Jungle'), +('9013', 'Light Jungle'), +('9014', 'Light Jungle'), +('9015', 'Medium Jungle'), +('9016', 'Medium Jungle'), +('9017', 'Medium Jungle'), +('9018', 'Medium Jungle'), +('9019', 'Medium Jungle'), +('9020', 'Dense Jungle'), +('9021', 'Dense Jungle'), +('9022', 'Dense Jungle'), +('9023', 'Dense Jungle'), +('9024', 'Dense Jungle'), +('9025', 'Rotten village fence'), +('9026', 'Partial fence'), +('9027', 'Short fence'), +('9028', 'Medium fence'), +('9029', 'Village fence'), +('9030', 'Gem Rock'), +('9031', 'Gem Rock'), +('9032', 'Gem Rock'), +('9033', 'Gout Tuber Plant'), +('9034', 'Mahogany'), +('9035', 'Tree stump'), +('9036', 'Teak'), +('9037', 'Tree stump'), +('9038', 'Hardwood Grove Doors'), +('9039', 'Hardwood Grove Doors'), +('9040', 'null'), +('9041', 'null'), +('9042', 'null'), +('9043', 'null'), +('9044', 'Goutweed'), +('9045', 'Goutweed'), +('9046', 'Goutweed'), +('9047', 'Goutweed'), +('9048', 'Goutweed'), +('9049', 'Diseased goutweed'), +('9050', 'Diseased goutweed'), +('9051', 'Diseased goutweed'), +('9052', 'Dead goutweed'), +('9053', 'Dead goutweed'), +('9054', 'Dead goutweed'), +('9055', 'null'), +('9056', 'null'), +('9057', 'null'), +('9058', 'Ali M's Market'), +('9059', 'Ali M's Market'), +('9060', 'Ali M's Market'), +('9061', 'Ali M's Market'), +('9062', 'Ali M's Market'), +('9063', 'Ali M's Market'), +('9064', 'Crate'), +('9065', 'null'), +('9066', 'Crate of rune caskets'), +('9067', 'null'), +('9068', 'Crate'), +('9069', 'null'), +('9070', 'Crate'), +('9071', 'Crate'), +('9072', 'rune casket'), +('9073', 'rune casket'), +('9074', 'rune casket'), +('9075', 'rune casket'), +('9076', 'Cloth'), +('9077', 'Hanging dye'), +('9078', 'Hanging dye'), +('9079', 'Dyed fabric'), +('9080', 'Dyed fabric'), +('9081', 'Dyed fabric'), +('9082', 'Table'), +('9083', 'Dye Pots'), +('9084', 'Stairs'), +('9085', 'Stove'), +('9086', 'Stove'), +('9087', 'Stove'), +('9088', 'Coke'), +('9089', 'Temperature gauge'), +('9090', 'Pump'), +('9091', 'Bars'), +('9092', 'null'), +('9093', 'Bar dispenser'), +('9094', 'Bar dispenser'), +('9095', 'Bar dispenser'), +('9096', 'Bar dispenser'), +('9097', 'Pedals'), +('9098', 'Melting Pot'), +('9099', 'Smoke'), +('9100', 'Conveyor belt'), +('9101', 'Conveyor belt'), +('9102', 'Drive belt'), +('9103', 'Drive belt'), +('9104', 'Cogs'), +('9105', 'Cogs'), +('9106', 'Gear box'), +('9107', 'Drive belt'), +('9108', 'Cogs'), +('9109', 'null'), +('9110', 'null'), +('9111', 'null'), +('9112', 'null'), +('9113', 'null'), +('9114', 'null'), +('9115', 'Smoke'), +('9116', 'Pipes'), +('9117', 'Pipes'), +('9118', 'null'), +('9119', 'null'), +('9120', 'Pipes'), +('9121', 'Pipes'), +('9122', 'null'), +('9123', 'Smoke'), +('9124', 'null'), +('9125', 'null'), +('9126', 'null'), +('9127', 'null'), +('9128', 'null'), +('9129', 'null'), +('9130', 'null'), +('9131', 'null'), +('9132', 'null'), +('9133', 'null'), +('9134', 'null'), +('9135', 'null'), +('9136', 'null'), +('9137', 'null'), +('9138', 'Stairs'), +('9139', 'null'), +('9140', 'Gate'), +('9141', 'Gate'), +('9142', 'Gate'), +('9143', 'Sink'), +('9144', 'Candelabrum'), +('9145', 'Golden lantern'), +('9146', 'Old Bookshelf'), +('9147', 'Old Bookshelf'), +('9148', 'Chair'), +('9149', 'Gold Screen'), +('9150', 'Wall'), +('9151', 'Hole in the wall'), +('9152', 'Patched Wall'), +('9153', 'null'), +('9154', 'null'), +('9155', 'Globe of Gielinor'), +('9156', 'Study Desk'), +('9157', 'Suit of armour'), +('9158', 'null'), +('9159', 'Candles'), +('9160', 'Candles'), +('9161', 'Candles'), +('9162', 'null'), +('9163', 'null'), +('9164', 'null'), +('9165', 'null'), +('9166', 'Delphinium patch'), +('9167', 'Delphinium patch'), +('9168', 'Delphinium patch'), +('9169', 'Delphinium patch'), +('9170', 'Delphiniums'), +('9171', 'Delphiniums'), +('9172', 'Delphiniums'), +('9173', 'Delphiniums'), +('9174', 'null'), +('9175', 'null'), +('9176', 'null'), +('9177', 'Pink rose bush patch'), +('9178', 'Pink rose bush patch'), +('9179', 'Pink rose bush patch'), +('9180', 'Pink rose bush patch'), +('9181', 'White rose bush patch'), +('9182', 'White rose bush patch'), +('9183', 'White rose bush patch'), +('9184', 'White rose bush patch'), +('9185', 'Red rose bush patch'), +('9186', 'Red rose bush patch'), +('9187', 'Red rose bush patch'), +('9188', 'Red rose bush patch'), +('9189', 'Rose bush'), +('9190', 'Rose bush'), +('9191', 'Rose bush'), +('9192', 'Rose bush'), +('9193', 'Rose bush'), +('9194', 'Rose bush'), +('9195', 'Rose bush'), +('9196', 'Rose bush'), +('9197', 'null'), +('9198', 'null'), +('9199', 'Orchids'), +('9200', 'Orchids'), +('9201', 'Orchids'), +('9202', 'Orchids'), +('9203', 'Plantpot'), +('9204', 'Plantpot'), +('9205', 'Yellow orchids'), +('9206', 'Yellow orchids'), +('9207', 'Yellow orchids'), +('9208', 'Yellow orchids'), +('9209', 'null'), +('9210', 'White Tree patch'), +('9211', 'White Tree patch'), +('9212', 'White Tree patch'), +('9213', 'White Tree patch'), +('9214', 'White Tree patch'), +('9215', 'White Tree patch'), +('9216', 'White Tree patch'), +('9217', 'White Tree patch'), +('9218', 'White Tree patch'), +('9219', 'White Tree patch'), +('9220', 'White Tree patch'), +('9221', 'White Tree patch'), +('9222', 'White Tree patch'), +('9223', 'null'), +('9224', 'Snowdrop patch'), +('9225', 'Snowdrop patch'), +('9226', 'Snowdrop patch'), +('9227', 'Snowdrop patch'), +('9228', 'Snowdrops'), +('9229', 'Snowdrops'), +('9230', 'Snowdrops'), +('9231', 'Snowdrops'), +('9232', 'null'), +('9233', 'Vine patch'), +('9234', 'Vine patch'), +('9235', 'Vine patch'), +('9236', 'Vine patch'), +('9237', 'Vines'), +('9238', 'Vines'), +('9239', 'Vines'), +('9240', 'Vines'), +('9241', 'Plinth'), +('9242', 'Plinth'), +('9243', 'Statue of Saradomin'), +('9244', 'Plinth'), +('9245', 'Statue'), +('9246', 'Statue plinth'), +('9247', 'Statue of Saradomin'), +('9248', 'Statue plinth'), +('9249', 'Statue'), +('9250', 'null'), +('9251', 'null'), +('9252', 'null'), +('9253', 'null'), +('9254', 'null'), +('9255', 'Grapevines'), +('9256', 'Diseased Grapevines'), +('9257', 'null'), +('9258', 'Hole'), +('9259', 'Hole'), +('9260', 'null'), +('9261', 'Roses'), +('9262', 'Roses'), +('9263', 'White Tree'), +('9264', 'null'), +('9265', 'null'), +('9266', 'null'), +('9267', 'null'), +('9268', 'null'), +('9269', 'null'), +('9270', 'null'), +('9271', 'null'), +('9272', 'null'), +('9273', 'null'), +('9274', 'null'), +('9275', 'null'), +('9276', 'null'), +('9277', 'null'), +('9278', 'null'), +('9279', 'null'), +('9280', 'null'), +('9281', 'null'), +('9282', 'null'), +('9283', 'null'), +('9284', 'null'), +('9285', 'null'), +('9286', 'null'), +('9287', 'null'), +('9288', 'null'), +('9289', 'null'), +('9290', 'null'), +('9291', 'Picnic bench'), +('9292', 'Statue'), +('9293', 'Obstacle pipe'), +('9294', 'Strange floor'), +('9295', 'Obstacle pipe'), +('9296', 'Rocks'), +('9297', 'Rocks'), +('9298', 'null'), +('9299', 'Fence'), +('9300', 'Fence'), +('9301', 'Castle wall'), +('9302', 'Hole'), +('9303', 'Rocks'), +('9304', 'Rocks'), +('9305', 'Rocks'), +('9306', 'Rocks'), +('9307', 'Weathered wall'), +('9308', 'Weathered wall'), +('9309', 'Underwall tunnel'), +('9310', 'Underwall tunnel'), +('9311', 'Underwall tunnel'), +('9312', 'Underwall tunnel'), +('9313', 'Damaged wall'), +('9314', 'Jutting wall'), +('9315', 'Stepping stone'), +('9316', 'Rocks'), +('9317', 'Rocks'), +('9318', 'null'), +('9319', 'Spikey chain'), +('9320', 'Spikey chain'), +('9321', 'Crevice'), +('9322', 'Log balance'), +('9323', 'Log balance'), +('9324', 'Log balance'), +('9325', 'Crevice'), +('9326', 'Strange floor'), +('9327', 'Rocks'), +('9328', 'Gnome on a rack'), +('9329', 'An empty rack'), +('9330', 'Ardougne wall door'), +('9331', 'Rocks'), +('9332', 'Rocks'), +('9333', 'null'), +('9334', 'Ornate railing'), +('9335', 'Rocks'), +('9336', 'Rocks'), +('9337', 'Ornate railing'), +('9338', 'Scarecrow'), +('9339', 'Scarecrow'), +('9340', 'Scarecrow'), +('9341', 'null'), +('9342', 'null'), +('9343', 'null'), +('9344', 'null'), +('9345', 'null'), +('9346', 'null'), +('9347', 'null'), +('9348', 'null'), +('9349', 'null'), +('9350', 'null'), +('9351', 'null'), +('9352', 'null'), +('9353', 'null'), +('9354', 'Cave exit'), +('9355', 'Cave entrance'), +('9356', 'Cave entrance'), +('9357', 'Cave entrance'), +('9358', 'Crack in wall'), +('9359', 'Cave exit'), +('9360', 'null'), +('9361', 'null'), +('9362', 'null'), +('9363', 'null'), +('9364', 'null'), +('9365', 'null'), +('9366', 'Open hot vent door'), +('9367', 'Hot vent door'), +('9368', 'Hot vent door'), +('9369', 'Hot vent door'), +('9370', 'null'), +('9371', 'null'), +('9372', 'null'), +('9373', 'null'), +('9374', 'Sulphur vent'), +('9375', 'null'), +('9376', 'Obsidian wall'), +('9377', 'Egg'), +('9378', 'Egg'), +('9379', 'Egg'), +('9380', 'TzHaar statue'), +('9381', 'Crate'), +('9382', 'Crates'), +('9383', 'null'), +('9384', 'null'), +('9385', 'null'), +('9386', 'null'), +('9387', 'null'), +('9388', 'null'), +('9389', 'null'), +('9390', 'Lava forge'), +('9391', 'Viewing orb'), +('9392', 'null'), +('9393', 'null'), +('9394', 'null'), +('9395', 'null'), +('9396', 'null'), +('9397', 'null'), +('9398', 'Bank Deposit Box'), +('9399', 'null'), +('9400', 'Unferth's patch'), +('9401', 'Unferth's patch'), +('9402', 'Unferth's patch'), +('9403', 'Unferth's patch'), +('9404', 'Potato plants'), +('9405', 'Potato plants'), +('9406', 'Potato plants'), +('9407', 'Potato plants'), +('9408', 'Potatoes'), +('9409', 'null'), +('9410', 'null'), +('9411', 'null'), +('9412', 'null'), +('9413', 'null'), +('9414', 'null'), +('9415', 'null'), +('9416', 'null'), +('9417', 'null'), +('9418', 'null'), +('9419', 'null'), +('9420', 'null'), +('9421', 'null'), +('9422', 'null'), +('9423', 'null'), +('9424', 'null'), +('9425', 'null'), +('9426', 'null'), +('9427', 'null'), +('9428', 'null'), +('9429', 'null'), +('9430', 'Table'), +('9431', 'Table'), +('9432', 'Table'), +('9433', 'Table'), +('9434', 'Table'), +('9435', 'null'), +('9436', 'Bed'), +('9437', 'Bed'), +('9438', 'null'), +('9439', 'Fireplace'), +('9440', 'Fireplace'), +('9441', 'Fireplace'), +('9442', 'null'), +('9443', 'Bookcase'), +('9444', 'null'), +('9445', 'null'), +('9446', 'null'), +('9447', 'null'), +('9448', 'null'), +('9449', 'null'), +('9450', 'null'), +('9451', 'null'), +('9452', 'null'), +('9453', 'null'), +('9454', 'null'), +('9455', 'null'), +('9456', 'null'), +('9457', 'null'), +('9458', 'null'), +('9459', 'null'), +('9460', 'null'), +('9461', 'null'), +('9462', 'null'), +('9463', 'null'), +('9464', 'null'), +('9465', 'null'), +('9466', 'null'), +('9467', 'null'), +('9468', 'null'), +('9469', 'null'), +('9470', 'Staircase'), +('9471', 'Staircase'), +('9472', 'Trapdoor'), +('9473', 'null'), +('9474', 'null'), +('9475', 'null'), +('9476', 'null'), +('9477', 'null'), +('9478', 'null'), +('9479', 'null'), +('9480', 'null'), +('9481', 'null'), +('9482', 'null'), +('9483', 'null'), +('9484', 'null'), +('9485', 'null'), +('9486', 'null'), +('9487', 'null'), +('9488', 'null'), +('9489', 'null'), +('9490', 'null'), +('9491', 'null'), +('9492', 'null'), +('9493', 'null'), +('9494', 'null'), +('9495', 'null'), +('9496', 'null'), +('9497', 'null'), +('9498', 'Plant'), +('9499', 'Plant'), +('9500', 'Plant'), +('9501', 'Plant'), +('9502', 'null'), +('9503', 'null'), +('9504', 'null'), +('9505', 'null'), +('9506', 'null'), +('9507', 'null'), +('9508', 'Hammock'), +('9509', 'Bed'), +('9510', 'Signpost'), +('9511', 'null'), +('9512', 'null'), +('9513', 'null'), +('9514', 'Chair'), +('9515', 'Betty's cauldron'), +('9516', 'Counter'), +('9517', 'null'), +('9518', 'null'), +('9519', 'Barrel'), +('9520', 'Barrel'), +('9521', 'Barrel'), +('9522', 'Anchor'), +('9523', 'Bookcase'), +('9524', 'Chain'), +('9525', 'Cart'), +('9526', 'Shelves'), +('9527', 'Shelves'), +('9528', 'Shelves'), +('9529', 'Shelves'), +('9530', 'Fungus'), +('9531', 'Bench'), +('9532', 'Picnic bench'), +('9533', 'Crate'), +('9534', 'Crate'), +('9535', 'Crates'), +('9536', 'Boxes'), +('9537', 'Crane'), +('9538', 'Row boat'), +('9539', 'null'), +('9540', 'null'), +('9541', 'null'), +('9542', 'null'), +('9543', 'null'), +('9544', 'null'), +('9545', 'null'), +('9546', 'null'), +('9547', 'null'), +('9548', 'Hot Coals'), +('9549', 'Hot Coals'), +('9550', 'null'), +('9551', 'null'), +('9552', 'null'), +('9553', 'null'), +('9554', 'null'), +('9555', 'null'), +('9556', 'null'), +('9557', 'null'), +('9558', 'Ladder'), +('9559', 'Ladder'), +('9560', 'Trapdoor'), +('9561', 'Bed'), +('9562', 'Cell door'), +('9563', 'Cell door'), +('9564', 'Cell door'), +('9565', 'Door'), +('9566', 'null'), +('9567', 'Bucket'), +('9568', 'Bucket'), +('9569', 'null'), +('9570', 'null'), +('9571', 'null'), +('9572', 'null'), +('9573', 'null'), +('9574', 'null'), +('9575', 'null'), +('9576', 'null'), +('9577', 'null'), +('9578', 'null'), +('9579', 'null'), +('9580', 'null'), +('9581', 'null'), +('9582', 'Staircase'), +('9583', 'null'), +('9584', 'Staircase'), +('9585', 'null'), +('9586', 'null'), +('9587', 'null'), +('9588', 'null'), +('9589', 'null'), +('9590', 'null'), +('9591', 'null'), +('9592', 'null'), +('9593', 'null'), +('9594', 'null'), +('9595', 'null'), +('9596', 'null'), +('9597', 'null'), +('9598', 'null'), +('9599', 'null'), +('9600', 'null'), +('9601', 'null'), +('9602', 'null'), +('9603', 'null'), +('9604', 'Plant'), +('9605', 'Plant'), +('9606', 'Plant'), +('9607', 'Bookcase'), +('9608', 'Bookcase'), +('9609', 'Bookcase'), +('9610', 'Easel'), +('9611', 'Bookcase'), +('9612', 'Bed'), +('9613', 'Large Table'), +('9614', 'Table'), +('9615', 'Small Table'), +('9616', 'Counter'), +('9617', 'Warehouse shelves'), +('9618', 'Warehouse shelves'), +('9619', 'Warehouse shelves'), +('9620', 'Warehouse shelves'), +('9621', 'Chair'), +('9622', 'Chair'), +('9623', 'null'), +('9624', 'Plough'), +('9625', 'Wheelbarrow'), +('9626', 'null'), +('9627', 'null'), +('9628', 'null'), +('9629', 'null'), +('9630', 'null'), +('9631', 'null'), +('9632', 'null'), +('9633', 'null'), +('9634', 'null'), +('9635', 'null'), +('9636', 'null'), +('9637', 'null'), +('9638', 'null'), +('9639', 'null'), +('9640', 'null'), +('9641', 'null'), +('9642', 'null'), +('9643', 'null'), +('9644', 'null'), +('9645', 'null'), +('9646', 'null'), +('9647', 'null'), +('9648', 'null'), +('9649', 'null'), +('9650', 'null'), +('9651', 'null'), +('9652', 'null'), +('9653', 'null'), +('9654', 'null'), +('9655', 'null'), +('9656', 'null'), +('9657', 'null'), +('9658', 'null'), +('9659', 'null'), +('9660', 'null'), +('9661', 'Tree stump'), +('9662', 'Spade'), +('9663', 'Fallen tree'), +('9664', 'Roots'), +('9665', 'Roots'), +('9666', 'Roots'), +('9667', 'Scarecrow'), +('9668', 'Mysterious statue'), +('9669', 'null'), +('9670', 'null'), +('9671', 'null'), +('9672', 'null'), +('9673', 'null'), +('9674', 'null'), +('9675', 'null'), +('9676', 'null'), +('9677', 'null'), +('9678', 'null'), +('9679', 'null'), +('9680', 'null'), +('9681', 'null'), +('9682', 'Range'), +('9683', 'Range chimney'), +('9684', 'Sink'), +('9685', 'Table'), +('9686', 'Cloth'), +('9687', 'Clothes model'), +('9688', 'Clothes model'), +('9689', 'Clothes model'), +('9690', 'Clothes model'), +('9691', 'null'), +('9692', 'null'), +('9693', 'null'), +('9694', 'Noticeboard'), +('9695', 'Noticeboard'), +('9696', 'Sign'), +('9697', 'Large Table'), +('9698', 'Large Table'), +('9699', 'Large Table'), +('9700', 'Large Table'), +('9701', 'null'), +('9702', 'Table'), +('9703', 'Candlestick holder'), +('9704', 'Chair'), +('9705', 'Chair'), +('9706', 'Lever'), +('9707', 'Lever'), +('9708', 'Rocks'), +('9709', 'Rocks'), +('9710', 'Rocks'), +('9711', 'Rocks'), +('9712', 'Rocks'), +('9713', 'Rocks'), +('9714', 'Rocks'), +('9715', 'Rocks'), +('9716', 'Rocks'), +('9717', 'Rocks'), +('9718', 'Rocks'), +('9719', 'Rocks'), +('9720', 'Rocks'), +('9721', 'Rocks'), +('9722', 'Rocks'), +('9723', 'Rocks'), +('9724', 'Rocks'), +('9725', 'Rocks'), +('9726', 'Rocks'), +('9727', 'Rocks'), +('9728', 'Rocks'), +('9729', 'Rocks'), +('9730', 'Rocks'), +('9731', 'Rocks'), +('9732', 'Rocks'), +('9733', 'Rocks'), +('9734', 'Rocks'), +('9735', 'Rocks'), +('9736', 'Rocks'), +('9737', 'Rocks'), +('9738', 'Ardougne wall door'), +('9739', 'null'), +('9740', 'null'), +('9741', 'Trawler net'), +('9742', 'Trawler net'), +('9743', 'null'), +('9744', 'Ship's ladder'), +('9745', 'Ship's ladder'), +('9746', 'null'), +('9747', 'null'), +('9748', 'Crystal collector'), +('9749', 'Crystal collector'), +('9750', 'null'), +('9751', 'Crystal'), +('9752', 'Crystal'), +('9753', 'Open chest'), +('9754', 'Closed chest'), +('9755', 'Open chest'), +('9756', 'Closed chest'), +('9757', 'Open chest'), +('9758', 'Closed chest'), +('9759', 'Open chest'), +('9760', 'Closed chest'), +('9761', 'Open chest'), +('9762', 'Closed chest'), +('9763', 'Guard'), +('9764', 'Guard'), +('9765', 'Guard'), +('9766', 'Slave'), +('9767', 'Slave'), +('9768', 'Light door'), +('9769', 'Light door'), +('9770', 'Light door'), +('9771', 'Light door'), +('9772', 'Light door'), +('9773', 'Light door'), +('9774', 'Light door'), +('9775', 'Light door'), +('9776', 'null'), +('9777', 'null'), +('9778', 'null'), +('9779', 'null'), +('9780', 'null'), +('9781', 'null'), +('9782', 'null'), +('9783', 'null'), +('9784', 'null'), +('9785', 'null'), +('9786', 'null'), +('9787', 'null'), +('9788', 'null'), +('9789', 'null'), +('9790', 'null'), +('9791', 'null'), +('9792', 'null'), +('9793', 'null'), +('9794', 'null'), +('9795', 'null'), +('9796', 'null'), +('9797', 'null'), +('9798', 'null'), +('9799', 'null'), +('9800', 'null'), +('9801', 'null'), +('9802', 'null'), +('9803', 'null'), +('9804', 'null'), +('9805', 'null'), +('9806', 'null'), +('9807', 'null'), +('9808', 'null'), +('9809', 'null'), +('9810', 'null'), +('9811', 'null'), +('9812', 'null'), +('9813', 'null'), +('9814', 'null'), +('9815', 'null'), +('9816', 'null'), +('9817', 'null'), +('9818', 'null'), +('9819', 'null'), +('9820', 'null'), +('9821', 'null'), +('9822', 'null'), +('9823', 'null'), +('9824', 'null'), +('9825', 'null'), +('9826', 'null'), +('9827', 'null'), +('9828', 'null'), +('9829', 'null'), +('9830', 'null'), +('9831', 'null'), +('9832', 'null'), +('9833', 'null'), +('9834', 'null'), +('9835', 'null'), +('9836', 'null'), +('9837', 'null'), +('9838', 'null'), +('9839', 'null'), +('9840', 'null'), +('9841', 'null'), +('9842', 'null'), +('9843', 'null'), +('9844', 'null'), +('9845', 'null'), +('9846', 'null'), +('9847', 'null'), +('9848', 'null'), +('9849', 'null'), +('9850', 'null'), +('9851', 'null'), +('9852', 'null'), +('9853', 'null'), +('9854', 'null'), +('9855', 'null'), +('9856', 'null'), +('9857', 'null'), +('9858', 'null'), +('9859', 'null'), +('9860', 'null'), +('9861', 'null'), +('9862', 'null'), +('9863', 'null'), +('9864', 'null'), +('9865', 'null'), +('9866', 'null'), +('9867', 'null'), +('9868', 'null'), +('9869', 'null'), +('9870', 'null'), +('9871', 'null'), +('9872', 'null'), +('9873', 'null'), +('9874', 'null'), +('9875', 'null'), +('9876', 'null'), +('9877', 'null'), +('9878', 'null'), +('9879', 'null'), +('9880', 'null'), +('9881', 'null'), +('9882', 'null'), +('9883', 'null'), +('9884', 'null'), +('9885', 'null'), +('9886', 'null'), +('9887', 'null'), +('9888', 'null'), +('9889', 'null'), +('9890', 'null'), +('9891', 'null'), +('9892', 'null'), +('9893', 'null'), +('9894', 'null'), +('9895', 'null'), +('9896', 'null'), +('9897', 'null'), +('9898', 'Pillar of Light'), +('9899', 'Pillar of Light'), +('9900', 'Pillar of Light'), +('9901', 'Pillar of Light'), +('9902', 'Pillar of Light'), +('9903', 'Pillar of Light'), +('9904', 'Pillar of Light'), +('9905', 'Pillar of Light'), +('9906', 'Pillar of Light'), +('9907', 'Pillar of Light'), +('9908', 'Pillar of Light'), +('9909', 'Pillar of Light'), +('9910', 'Pillar of Light'), +('9911', 'Pillar of Light'), +('9912', 'Pillar of Light'), +('9913', 'Pillar of Light'), +('9914', 'Pillar of Light'), +('9915', 'Pillar of Light'), +('9916', 'Pillar of Light'), +('9917', 'Pillar of Light'), +('9918', 'Pillar of Light'), +('9919', 'Pillar of Light'), +('9920', 'Pillar of Light'), +('9921', 'Pillar of Light'), +('9922', 'Pillar of Light'), +('9923', 'Pillar of Light'), +('9924', 'Pillar of Light'), +('9925', 'Pillar of Light'), +('9926', 'Pillar of Light'), +('9927', 'Pillar of Light'), +('9928', 'Pillar of Light'), +('9929', 'Pillar of Light'), +('9930', 'Pillar of Light'), +('9931', 'Pillar of Light'), +('9932', 'Pillar of Light'), +('9933', 'Pillar of Light'), +('9934', 'Pillar of Light'), +('9935', 'Pillar of Light'), +('9936', 'Pillar of Light'), +('9937', 'Pillar of Light'), +('9938', 'null'), +('9939', 'null'), +('9940', 'null'), +('9941', 'null'), +('9942', 'null'), +('9943', 'null'), +('9944', 'null'), +('9945', 'null'), +('9946', 'null'), +('9947', 'null'), +('9948', 'null'), +('9949', 'null'), +('9950', 'null'), +('9951', 'null'), +('9952', 'null'), +('9953', 'null'), +('9954', 'null'), +('9955', 'null'), +('9956', 'null'), +('9957', 'null'), +('9958', 'null'), +('9959', 'null'), +('9960', 'null'), +('9961', 'null'), +('9962', 'null'), +('9963', 'null'), +('9964', 'null'), +('9965', 'null'), +('9966', 'null'), +('9967', 'null'), +('9968', 'null'), +('9969', 'null'), +('9970', 'null'), +('9971', 'null'), +('9972', 'null'), +('9973', 'Pillar of Light'), +('9974', 'null'), +('9975', 'Cave Stairs'), +('9976', 'null'), +('9977', 'Tunnel'), +('9978', 'Ladder'), +('9979', 'Ladder'), +('9980', 'Final Pillar'), +('9981', 'Pillar of Light'), +('9982', 'Pillar of Light'), +('9983', 'Pillar of Light'), +('9984', 'Pillar of Light'), +('9985', 'Pillar of Light'), +('9986', 'Pillar of Light'), +('9987', 'null'), +('9988', 'Pillar of Light'), +('9989', 'null'), +('9990', 'null'), +('9991', 'null'), +('9992', 'null'), +('9993', 'null'), +('9994', 'null'), +('9995', 'null'), +('9996', 'null'), +('9997', 'null'), +('9998', 'null'), +('9999', 'null'), +('10000', 'null'), +('10001', 'null'), +('10002', 'Light door'), +('10003', 'Light door'), +('10004', 'Light door'), +('10005', 'Light door'), +('10006', 'Light door'), +('10007', 'Light door'), +('10008', 'Light door'), +('10009', 'Light door'), +('10010', 'Light door'), +('10011', 'Light door'), +('10012', 'Light door'), +('10013', 'Light door'), +('10014', 'Crystal'), +('10015', 'Staircase'), +('10016', 'Staircase'), +('10017', 'Staircase'), +('10018', 'Staircase'), +('10019', 'Pillar'), +('10020', 'Pillar'), +('10021', 'Pillar'), +('10022', 'Pillar'), +('10023', 'null'), +('10024', 'null'), +('10025', 'null'), +('10026', 'null'), +('10027', 'null'), +('10028', 'null'), +('10029', 'null'), +('10030', 'null'), +('10031', 'null'), +('10032', 'null'), +('10033', 'Wall support'), +('10034', 'Trap'), +('10035', 'Low wall'), +('10036', 'Rock'), +('10037', 'Rope'), +('10038', 'Rope'), +('10039', 'null'), +('10040', 'null'), +('10041', 'Tree'), +('10042', 'null'), +('10043', 'null'), +('10044', 'null'), +('10045', 'null'), +('10046', 'null'), +('10047', 'null'), +('10048', 'null'), +('10049', 'null'), +('10050', 'null'), +('10051', 'null'), +('10052', 'null'), +('10053', 'null'), +('10054', 'Container'), +('10055', 'Gate'), +('10056', 'Gate'), +('10057', 'Flagpole'), +('10058', 'null'), +('10059', 'null'), +('10060', 'null'), +('10061', 'null'), +('10062', 'Obstacle net'), +('10063', 'Obstacle pipe'), +('10064', 'null'), +('10065', 'null'), +('10066', 'null'), +('10067', 'null'), +('10068', 'null'), +('10069', 'null'), +('10070', 'null'), +('10071', 'null'), +('10072', 'null'), +('10073', 'null'), +('10074', 'null'), +('10075', 'null'), +('10076', 'Exercise mat'), +('10077', 'Exercise mat'), +('10078', 'Exercise mat'), +('10079', 'Exercise mat'), +('10080', 'Target'), +('10081', 'Tree'), +('10082', 'Tree'), +('10083', 'Oak'), +('10084', 'Hay Bales'), +('10085', 'Hay Bales'), +('10086', 'Haystack'), +('10087', 'Ominous Fishing Spot'), +('10088', 'Ominous Fishing Spot'), +('10089', 'Ominous Fishing Spot'), +('10090', 'Signpost'), +('10091', 'Aquarium'), +('10092', 'null'), +('10093', 'Dairy churn'), +('10094', 'Dairy churn'), +('10095', 'null'), +('10096', 'null'), +('10097', 'Blindweed Patch'), +('10098', 'Blindweed Patch'), +('10099', 'Blindweed Patch'), +('10100', 'Blindweed Patch'), +('10101', 'Blindweed Patch'), +('10102', 'Blindweed Patch'), +('10103', 'Trashed Patch'), +('10104', 'null'), +('10105', 'Stagnant Lake'), +('10106', 'null'), +('10107', 'null'), +('10108', 'null'), +('10109', 'null'), +('10110', 'null'), +('10111', 'null'), +('10112', 'null'), +('10113', 'null'), +('10114', 'null'), +('10115', 'null'), +('10116', 'null'), +('10117', 'null'), +('10118', 'null'), +('10119', 'null'), +('10120', 'null'), +('10121', 'null'), +('10122', 'null'), +('10123', 'null'), +('10124', 'null'), +('10125', 'null'), +('10126', 'null'), +('10127', 'null'), +('10128', 'null'), +('10129', 'Chimney Pipe'), +('10130', 'null'), +('10131', 'null'), +('10132', 'null'), +('10133', 'null'), +('10134', 'null'), +('10135', 'null'), +('10136', 'Wooden Stair'), +('10137', 'Wooden Stair'), +('10138', 'Row boat'), +('10139', 'Palm tree'), +('10140', 'Palm tree'), +('10141', 'Palm tree'), +('10142', 'Brewing control'), +('10143', 'Brewing control'), +('10144', 'Brewing control'), +('10145', 'Brewing vat'), +('10146', 'Brewing vat'), +('10147', 'Brewing vat'), +('10148', 'Output Tap'), +('10149', 'null'), +('10150', 'null'), +('10151', 'null'), +('10152', 'null'), +('10153', 'null'), +('10154', 'null'), +('10155', 'null'), +('10156', 'null'), +('10157', 'Barrels'), +('10158', 'Brewer's Barrel'), +('10159', 'Crate'), +('10160', 'Crates'), +('10161', 'Boxes'), +('10162', 'Cupboard'), +('10163', 'Open Cupboard'), +('10164', 'null'), +('10165', 'Pressure Lever'), +('10166', 'Pressure Lever'), +('10167', 'Ladder'), +('10168', 'Ladder'), +('10169', 'null'), +('10170', 'Hopper'), +('10171', 'Pressure Barrel'), +('10172', 'Gate'), +('10173', 'null'), +('10174', 'Pirate Sign'), +('10175', 'Sink'), +('10176', 'null'), +('10177', 'Iron ladder'), +('10178', 'Standing Torch'), +('10179', 'Standing Torch'), +('10180', 'null'), +('10181', 'null'), +('10182', 'null'), +('10183', 'null'), +('10184', 'null'), +('10185', 'null'), +('10186', 'null'), +('10187', 'null'), +('10188', 'null'), +('10189', 'null'), +('10190', 'null'), +('10191', 'null'), +('10192', 'null'), +('10193', 'Ladder'), +('10194', 'Ladder'), +('10195', 'Ladder'), +('10196', 'Ladder'), +('10197', 'Ladder'), +('10198', 'Ladder'), +('10199', 'Ladder'), +('10200', 'Ladder'), +('10201', 'Ladder'), +('10202', 'Ladder'), +('10203', 'Ladder'), +('10204', 'Ladder'), +('10205', 'Ladder'), +('10206', 'Ladder'), +('10207', 'Ladder'), +('10208', 'Ladder'), +('10209', 'Ladder'), +('10210', 'Ladder'), +('10211', 'Ladder'), +('10212', 'Ladder'), +('10213', 'Ladder'), +('10214', 'Ladder'), +('10215', 'Ladder'), +('10216', 'Ladder'), +('10217', 'Ladder'), +('10218', 'Ladder'), +('10219', 'Ladder'), +('10220', 'Ladder'), +('10221', 'Ladder'), +('10222', 'Ladder'), +('10223', 'Ladder'), +('10224', 'Ladder'), +('10225', 'Ladder'), +('10226', 'Ladder'), +('10227', 'Ladder'), +('10228', 'Ladder'), +('10229', 'Ladder'), +('10230', 'Ladder'), +('10231', 'null'), +('10232', 'null'), +('10233', 'null'), +('10234', 'null'), +('10235', 'null'), +('10236', 'null'), +('10237', 'null'), +('10238', 'null'), +('10239', 'null'), +('10240', 'null'), +('10241', 'null'), +('10242', 'null'), +('10243', 'null'), +('10244', 'null'), +('10245', 'null'), +('10246', 'Broken kiln'), +('10247', 'Broken kiln'), +('10248', 'Broken kiln'), +('10249', 'null'), +('10250', 'Eric'), +('10251', 'Portal'), +('10252', 'Magic circle'), +('10253', 'Standard'), +('10254', 'null'), +('10255', 'Bed'), +('10256', 'Shelf'), +('10257', 'Shelf'), +('10258', 'Table'), +('10259', 'Chair'), +('10260', 'Door'), +('10261', 'Door'), +('10262', 'Door'), +('10263', 'Door'), +('10264', 'Door'), +('10265', 'Door'), +('10266', 'null'), +('10267', 'Shield Display'), +('10268', 'null'), +('10269', 'Large Display'), +('10270', 'null'), +('10271', 'Large Display'), +('10272', 'null'), +('10273', 'Bookcase'), +('10274', 'Sacks'), +('10275', 'null'), +('10276', 'null'), +('10277', 'null'), +('10278', 'Catapult'), +('10279', 'Crates'), +('10280', 'Crates'), +('10281', 'Crate'), +('10282', 'Crates'), +('10283', 'River'), +('10284', 'null'), +('10285', 'null'), +('10286', 'Sack'), +('10287', 'Stairs'), +('10288', 'Stairs'), +('10289', 'null'), +('10290', 'Rat trap'), +('10291', 'Rat trap'), +('10292', 'Rat trap'), +('10293', 'Barrel'), +('10294', 'Barrel'), +('10295', 'Bar pumps'), +('10296', 'Stool'), +('10297', 'null'), +('10298', 'Crates'), +('10299', 'Rat lever'), +('10300', 'Rat barn'), +('10301', 'Rat barrel'), +('10302', 'Rat barrel'), +('10303', 'Rat barrel'), +('10304', 'Sacks'), +('10305', 'Sack'), +('10306', 'Sack'), +('10307', 'Lantern'), +('10308', 'Ladder'), +('10309', 'Ladder'), +('10310', 'Rat barrel'), +('10311', 'Rat lever'), +('10312', 'Rat barn'), +('10313', 'Sacks'), +('10314', 'Sack'), +('10315', 'Sack'), +('10316', 'Rat barrel'), +('10317', 'Rat barrel'), +('10318', 'Gates'), +('10319', 'Trellis top'), +('10320', 'Hole in wall'), +('10321', 'Manhole'), +('10322', 'Ladder'), +('10323', 'Trellis'), +('10324', 'Trellis'), +('10325', 'Door'), +('10326', 'Door'), +('10327', 'Door'), +('10328', 'null'), +('10329', 'null'), +('10330', 'null'), +('10331', 'null'), +('10332', 'null'), +('10333', 'null'), +('10334', 'null'), +('10335', 'Rat wall'), +('10336', 'Rat wall'), +('10337', 'Rat wall'), +('10338', 'Rat wall'), +('10339', 'null'), +('10340', 'null'), +('10341', 'null'), +('10342', 'Rat Wall'), +('10343', 'Rat Wall'), +('10344', 'Rat Wall'), +('10345', 'Rat Wall'), +('10346', 'Rat hole'), +('10347', 'Rat hole'), +('10348', 'Rat hole'), +('10349', 'Rat hole'), +('10350', 'Rat hole'), +('10351', 'null'), +('10352', 'null'), +('10353', 'null'), +('10354', 'null'), +('10355', 'null'), +('10356', 'null'), +('10357', 'null'), +('10358', 'Bed'), +('10359', 'Bed'), +('10360', 'Rolled up rugs'), +('10361', 'Door'), +('10362', 'Hay Bales'), +('10363', 'null'), +('10364', 'null'), +('10365', 'null'), +('10366', 'null'), +('10367', 'null'), +('10368', 'null'), +('10369', 'null'), +('10370', 'null'), +('10371', 'Barrel'), +('10372', 'null'), +('10373', 'null'), +('10374', 'Crates'), +('10375', 'Tools'), +('10376', 'Choc-Ice Stall'), +('10377', 'Clay Oven'), +('10378', 'Crate'), +('10379', 'Crates'), +('10380', 'Boxes'), +('10381', 'Crates'), +('10382', 'Cupboard'), +('10383', 'Cupboard'), +('10384', 'Cupboard'), +('10385', 'Cupboard'), +('10386', 'Cupboard'), +('10387', 'Cupboard'), +('10388', 'null'), +('10389', 'null'), +('10390', 'null'), +('10391', 'null'), +('10392', 'null'), +('10393', 'null'), +('10394', 'null'), +('10395', 'null'), +('10396', 'null'), +('10397', 'null'), +('10398', 'null'), +('10399', 'null'), +('10400', 'null'), +('10401', 'null'), +('10402', 'Water Channel'), +('10403', 'null'), +('10404', 'Water Channel'), +('10405', 'Water Channel'), +('10406', 'Water Channel'), +('10407', 'Water Channel'), +('10408', 'Water Channel'), +('10409', 'Water Channel'), +('10410', 'Water Channel'), +('10411', 'null'), +('10412', 'Hole'), +('10413', 'Bed'), +('10414', 'Table'), +('10415', 'Rolled up rugs'), +('10416', 'Crevice'), +('10417', 'Cave exit'), +('10418', 'Door'), +('10419', 'Door'), +('10420', 'Door'), +('10421', 'Door'), +('10422', 'null'), +('10423', 'Door'), +('10424', 'null'), +('10425', 'Door'), +('10426', 'null'), +('10427', 'Door'), +('10428', 'null'), +('10429', 'Door'), +('10430', 'null'), +('10431', 'Door'), +('10432', 'null'), +('10433', 'Fire'), +('10434', 'Rope'), +('10435', 'null'), +('10436', 'Fountain'), +('10437', 'Fountain'), +('10438', 'Statuette Plinth'), +('10439', 'Elidinis Statuette'), +('10440', 'Rock Chair'), +('10441', 'null'), +('10442', 'null'), +('10443', 'null'), +('10444', 'null'), +('10445', 'null'), +('10446', 'null'), +('10447', 'null'), +('10448', 'null'), +('10449', 'null'), +('10450', 'null'), +('10451', 'null'), +('10452', 'null'), +('10453', 'null'), +('10454', 'null'), +('10455', 'null'), +('10456', 'null'), +('10457', 'Cart'), +('10458', 'Barrel'), +('10459', 'null'), +('10460', 'null'), +('10461', 'null'), +('10462', 'null'), +('10463', 'null'), +('10464', 'null'), +('10465', 'null'), +('10466', 'null'), +('10467', 'null'), +('10468', 'null'), +('10469', 'null'), +('10470', 'null'), +('10471', 'null'), +('10472', 'null'), +('10473', 'null'), +('10474', 'null'), +('10475', 'null'), +('10476', 'null'), +('10477', 'null'), +('10478', 'null'), +('10479', 'null'), +('10480', 'null'), +('10481', 'null'), +('10482', 'null'), +('10483', 'null'), +('10484', 'null'), +('10485', 'Counter'), +('10486', 'Counter'), +('10487', 'Blacksmith's tools'), +('10488', 'null'), +('10489', 'Armour'), +('10490', 'Table'), +('10491', 'Chair'), +('10492', 'Chair'), +('10493', 'Ladder'), +('10494', 'Ladder'), +('10495', 'Warehouse shelves'), +('10496', 'Warehouse shelves'), +('10497', 'Warehouse shelves'), +('10498', 'Warehouse shelves'), +('10499', 'Potted fern'), +('10500', 'Potted fern'), +('10501', 'Potted fern'), +('10502', 'Potted fern'), +('10503', 'Pile of bricks'), +('10504', 'Cooking Pots'), +('10505', 'Cooking Pots'), +('10506', 'Shelf'), +('10507', 'null'), +('10508', 'Stone Pew'), +('10509', 'Table'), +('10510', 'Bookcase'), +('10511', 'Bed'), +('10512', 'Bed'), +('10513', 'Shelves'), +('10514', 'Shelves'), +('10515', 'null'), +('10516', 'Wheelbarrow'), +('10517', 'Bank booth'), +('10518', 'Closed bank booth'), +('10519', 'null'), +('10520', 'null'), +('10521', 'Chalice'), +('10522', 'Tapestry'), +('10523', 'null'), +('10524', 'null'), +('10525', 'Staircase'), +('10526', 'Staircase'), +('10527', 'Door'), +('10528', 'Door'), +('10529', 'Door'), +('10530', 'Door'), +('10531', 'null'), +('10532', 'null'), +('10533', 'null'), +('10534', 'null'), +('10535', 'null'), +('10536', 'null'), +('10537', 'null'), +('10538', 'null'), +('10539', 'null'), +('10540', 'null'), +('10541', 'Human Flag'), +('10542', 'Human Flag'), +('10543', 'Dwarf Flag'), +('10544', 'Dwarf Flag'), +('10545', 'Elf Flag'), +('10546', 'Elf Flag'), +('10547', 'Gnome Flag'), +('10548', 'Gnome Flag'), +('10549', 'Werewolf Flag'), +('10550', 'Werewolf Flag'), +('10551', 'TzHaar Flag'), +('10552', 'TzHaar Flag'), +('10553', 'Portcullis'), +('10554', 'Ladder'), +('10555', 'null'), +('10556', 'Champion Statue'), +('10557', 'Champion Statue'), +('10558', 'Trapdoor'), +('10559', 'Trapdoor'), +('10560', 'Ladder'), +('10561', 'null'), +('10562', 'Bank chest'), +('10563', 'null'), +('10564', 'Banner'), +('10565', 'null'), +('10566', 'Banner'), +('10567', 'null'), +('10568', 'Banner'), +('10569', 'null'), +('10570', 'Banner'), +('10571', 'null'), +('10572', 'Banner'), +('10573', 'null'), +('10574', 'Banner'), +('10575', 'null'), +('10576', 'Banner'), +('10577', 'null'), +('10578', 'Banner'), +('10579', 'null'), +('10580', 'Banner'), +('10581', 'null'), +('10582', 'Banner'), +('10583', 'Rocks'), +('10584', 'Rocks'), +('10585', 'Rocks'), +('10586', 'Rocks'), +('10587', 'Rocks'), +('10588', 'null'), +('10589', 'null'), +('10590', 'null'), +('10591', 'null'), +('10592', 'null'), +('10593', 'null'), +('10594', 'null'), +('10595', 'Icy Cavern'), +('10596', 'Icy Cavern'), +('10597', 'null'), +('10598', 'null'), +('10599', 'null'), +('10600', 'null'), +('10601', 'null'), +('10602', 'null'), +('10603', 'null'), +('10604', 'null'), +('10605', 'Danger Sign'), +('10606', ''), +('10607', 'Bronze Chest'), +('10608', 'Bronze Chest'), +('10609', 'Bronze Chest'), +('10610', 'Bronze Chest'), +('10611', 'Steel Chest'), +('10612', 'Steel Chest'), +('10613', 'Steel Chest'), +('10614', 'Steel Chest'), +('10615', 'Steel Chest'), +('10616', 'Black Chest'), +('10617', 'Black Chest'), +('10618', 'Black Chest'), +('10619', 'Black Chest'), +('10620', 'Black Chest'), +('10621', 'Silver Chest'), +('10622', 'Silver Chest'), +('10623', 'Silver Chest'), +('10624', 'Silver Chest'), +('10625', 'Silver Chest'), +('10626', 'null'), +('10627', 'null'), +('10628', 'null'), +('10629', 'null'), +('10630', 'null'), +('10631', 'null'), +('10632', 'null'), +('10633', 'null'), +('10634', 'null'), +('10635', 'null'), +('10636', 'null'), +('10637', 'null'), +('10638', 'null'), +('10639', 'Altar'), +('10640', 'Altar'), +('10641', 'Doric's Whetstone'), +('10642', 'null'), +('10643', 'null'), +('10644', 'null'), +('10645', 'null'), +('10646', 'null'), +('10647', 'null'), +('10648', 'null'), +('10649', 'null'), +('10650', 'null'), +('10651', 'null'), +('10652', 'Evergreen.'), +('10653', 'Evergreen.'), +('10654', 'Evergreen.'), +('10655', 'Evergreen.'), +('10656', 'Evergreen.'), +('10657', 'Evergreen.'), +('10658', 'Evergreen.'), +('10659', 'Evergreen.'), +('10660', 'Evergreen.'), +('10661', 'Evergreen.'), +('10662', 'Evergreen.'), +('10663', 'Evergreen.'), +('10664', 'Tree'), +('10665', 'Gifts'), +('10666', 'Gifts'), +('10667', 'null'), +('10668', 'null'), +('10669', 'null'), +('10670', 'null'), +('10671', 'Crate'), +('10672', 'Crate'), +('10673', 'Paintcans'), +('10674', 'Paintcans'), +('10675', 'Paintcans'), +('10676', 'Workbench'), +('10677', 'Workbench'), +('10678', 'Workbench'), +('10679', 'Decorations Box'), +('10680', 'Decorations Box'), +('10681', 'Decorations Box'), +('10682', 'Decorations Box'), +('10683', 'Decorations Box'), +('10684', 'Decorations Box'), +('10685', 'Decorations Box'), +('10686', 'Puppet heads'), +('10687', 'Puppet torsos'), +('10688', 'Puppet arms'), +('10689', 'Puppet legs'), +('10690', 'Puppet heads'), +('10691', 'Puppet torsos'), +('10692', 'Puppet arms'), +('10693', 'Puppet legs'), +('10694', 'Puppet heads'), +('10695', 'Puppet torsos'), +('10696', 'Puppet arms'), +('10697', 'Puppet legs'), +('10698', 'Trapdoor'), +('10699', 'Trapdoor Steps'), +('10700', 'null'), +('10701', 'Crate'), +('10702', 'Crate'), +('10703', 'Crate'), +('10704', 'Crate'), +('10705', 'Crates'), +('10706', 'Large Box'), +('10707', 'Ladder'), +('10708', 'Ladder'), +('10709', 'null'), +('10710', 'Paint Pots'), +('10711', 'null'), +('10712', 'null'), +('10713', 'null'), +('10714', 'null'), +('10715', 'null'), +('10716', 'null'), +('10717', 'null'), +('10718', 'null'), +('10719', 'null'), +('10720', 'null'), +('10721', 'Doorway'), +('10722', 'Old Bookshelf'), +('10723', 'Old Bookshelf'), +('10724', 'Chair'), +('10725', 'Bones'), +('10726', 'Bones'), +('10727', 'Bones'), +('10728', 'Bones'), +('10729', 'null'), +('10730', 'null'), +('10731', 'null'), +('10732', 'null'), +('10733', 'Portal'), +('10734', 'Coin Collector'), +('10735', 'Food chute'), +('10736', 'Statue'), +('10737', 'Statue'), +('10738', 'Statue'), +('10739', 'Statue'), +('10740', 'null'), +('10741', 'null'), +('10742', 'null'), +('10743', 'null'), +('10744', 'null'), +('10745', 'null'), +('10746', 'null'), +('10747', 'null'), +('10748', 'null'), +('10749', 'null'), +('10750', 'null'), +('10751', 'null'), +('10752', 'null'), +('10753', 'null'), +('10754', 'null'), +('10755', 'null'), +('10756', 'null'), +('10757', 'null'), +('10758', 'null'), +('10759', 'null'), +('10760', 'null'), +('10761', 'null'), +('10762', 'null'), +('10763', 'null'), +('10764', 'null'), +('10765', 'null'), +('10766', 'null'), +('10767', 'null'), +('10768', 'Bank'), +('10769', 'null'), +('10770', 'null'), +('10771', 'Stairs'), +('10772', 'Stairs'), +('10773', 'Stairs'), +('10774', 'Stairs'), +('10775', 'Stairs'), +('10776', 'Stairs'), +('10777', 'null'), +('10778', 'Telekinetic Teleport'), +('10779', 'Enchanters Teleport'), +('10780', 'Alchemists Teleport'), +('10781', 'Graveyard Teleport'), +('10782', 'Exit Teleport'), +('10783', 'Cupboard'), +('10784', 'Cupboard'), +('10785', 'Cupboard'), +('10786', 'Cupboard'), +('10787', 'Cupboard'), +('10788', 'Cupboard'), +('10789', 'Cupboard'), +('10790', 'Cupboard'), +('10791', 'Cupboard'), +('10792', 'Cupboard'), +('10793', 'Cupboard'), +('10794', 'Cupboard'), +('10795', 'Cupboard'), +('10796', 'Cupboard'), +('10797', 'Cupboard'), +('10798', 'Cupboard'), +('10799', 'Cube Pile'), +('10800', 'Cylinder Pile'), +('10801', 'Icosahedron Pile'), +('10802', 'Pentamid Pile'), +('10803', 'Hole'), +('10804', 'Trapdoor'), +('10805', 'Sandy's Desk'), +('10806', 'null'), +('10807', 'Sandy's Coffee Mug'), +('10808', 'Table'), +('10809', 'Waste Paper Bin'), +('10810', 'null'), +('10811', 'null'), +('10812', 'null'), +('10813', 'Counter'), +('10814', 'Sandpit'), +('10815', 'null'), +('10816', 'null'), +('10817', 'Lever'), +('10818', 'Locked door'), +('10819', 'Locked door'), +('10820', 'Energy Barrier'), +('10821', 'null'), +('10822', 'null'), +('10823', 'null'), +('10824', 'Fireplace'), +('10825', 'null'), +('10826', 'null'), +('10827', 'Fountain'), +('10828', 'Trawler net'), +('10829', 'Trawler net'), +('10830', 'Trawler net'), +('10831', 'Trawler net'), +('10832', 'Trawler net'), +('10833', 'null'), +('10834', 'Trawler net'), +('10835', 'Trawler net'), +('10836', 'null'), +('10837', 'null'), +('10838', 'null'), +('10839', 'null'), +('10840', 'null'), +('10841', 'null'), +('10842', 'null'), +('10843', 'null'), +('10844', 'null'), +('10845', 'null'), +('10846', 'null'), +('10847', 'null'), +('10848', 'Doorway'), +('10849', 'Doorway'), +('10850', 'null'), +('10851', 'Climbing rocks'), +('10852', 'Climbing rocks'), +('10853', 'null'), +('10854', 'null'), +('10855', 'Doorway'), +('10856', 'Doorway'), +('10857', 'Stairs'), +('10858', 'Stairs'), +('10859', 'Gap'), +('10860', 'Ledge'), +('10861', 'Gap'), +('10862', 'Gap'), +('10863', 'Gap'), +('10864', 'Gap'), +('10865', 'Low wall'), +('10866', 'null'), +('10867', 'Plank'), +('10868', 'Plank'), +('10869', 'null'), +('10870', 'null'), +('10871', 'null'), +('10872', 'null'), +('10873', 'null'), +('10874', 'null'), +('10875', 'Stone block'), +('10876', 'Stone block'), +('10877', 'null'), +('10878', 'null'), +('10879', 'null'), +('10880', 'null'), +('10881', 'null'), +('10882', 'Gap'), +('10883', 'Gap'), +('10884', 'Gap'), +('10885', 'Gap'), +('10886', 'Ledge'), +('10887', 'Ledge'), +('10888', 'Ledge'), +('10889', 'Ledge'), +('10890', 'null'), +('10891', 'null'), +('10892', 'null'), +('10893', 'null'), +('10894', 'null'), +('10895', 'null'), +('10896', 'null'), +('10897', 'null'), +('10898', 'null'), +('10899', 'null'), +('10900', 'null'), +('10901', 'null'), +('10902', 'null'), +('10903', 'null'), +('10904', 'null'), +('10905', 'null'), +('10906', 'null'), +('10907', 'null'), +('10908', 'null'), +('10909', 'null'), +('10910', 'null'), +('10911', 'null'), +('10912', 'null'), +('10913', 'null'), +('10914', 'null'), +('10915', 'null'), +('10916', 'null'), +('10917', 'null'), +('10918', 'null'), +('10919', 'null'), +('10920', 'null'), +('10921', 'null'), +('10922', 'null'), +('10923', 'null'), +('10924', 'null'), +('10925', 'null'), +('10926', 'null'), +('10927', 'null'), +('10928', 'null'), +('10929', 'null'), +('10930', 'null'), +('10931', 'null'), +('10932', 'null'), +('10933', 'null'), +('10934', 'null'), +('10935', 'null'), +('10936', 'null'), +('10937', 'null'), +('10938', 'null'), +('10939', 'null'), +('10940', 'null'), +('10941', 'null'), +('10942', 'null'), +('10943', 'null'), +('10944', 'Rocks'), +('10945', 'Rocks'), +('10946', 'Rocks'), +('10947', 'Rocks'), +('10948', 'Rocks'), +('10949', 'Rocks'), +('10950', 'Sand pile'), +('10951', 'null'), +('10952', 'null'), +('10953', 'Hole'), +('10954', 'Flat ground'), +('10955', 'Headless statue'), +('10956', 'Headless statue'), +('10957', 'Headless statue'), +('10958', 'Lazim's statue'), +('10959', 'Zamorak's statue'), +('10960', 'Icthlarin's statue'), +('10961', 'Camel's statue'), +('10962', 'Statue'), +('10963', 'Statue'), +('10964', 'Statue'), +('10965', 'Statue'), +('10966', 'Statue'), +('10967', 'Statue'), +('10968', 'Statue'), +('10969', 'Statue'), +('10970', 'null'), +('10971', 'Fallen statue'), +('10972', 'Fallen statue'), +('10973', 'Fallen statue'), +('10974', 'Fallen statue'), +('10975', 'Fallen statue'), +('10976', 'Fallen statue'), +('10977', 'Fallen statue'), +('10978', 'Fallen statue'), +('10979', 'Fallen statue'), +('10980', 'Fallen statue'), +('10981', 'Fallen statue'), +('10982', 'Fallen statue'), +('10983', 'Fallen statue'), +('10984', 'Fallen statue'), +('10985', 'Fallen statue'), +('10986', 'Fallen statue'), +('10987', 'null'), +('10988', 'Pedestal'), +('10989', 'Pedestal'), +('10990', 'Pedestal'), +('10991', 'Pedestal'), +('10992', 'Pedestal'), +('10993', 'Pedestal'), +('10994', 'Pedestal'), +('10995', 'Pedestal'), +('10996', 'Pedestal'), +('10997', 'Pedestal'), +('10998', 'Pedestal'), +('10999', 'Pedestal'), +('11000', 'Pedestal'), +('11001', 'Pedestal'), +('11002', 'Pedestal'), +('11003', 'Pedestal'), +('11004', 'Pedestal'), +('11005', 'Magic barrier'), +('11006', 'null'), +('11007', 'Fountain'), +('11008', 'null'), +('11009', 'Furnace'), +('11010', 'Furnace'), +('11011', 'null'), +('11012', 'null'), +('11013', 'null'), +('11014', 'null'), +('11015', 'null'), +('11016', 'null'), +('11017', 'Brazier'), +('11018', 'Brazier'), +('11019', 'Brazier'), +('11020', 'Brazier'), +('11021', 'Brazier'), +('11022', 'Brazier'), +('11023', 'Brazier'), +('11024', 'Brazier'), +('11025', 'Brazier'), +('11026', 'null'), +('11027', 'null'), +('11028', 'Wall'), +('11029', 'Wall'), +('11030', 'Wall'), +('11031', 'Wall'), +('11032', 'Wall'), +('11033', 'Wall'), +('11034', 'Wall'), +('11035', 'Wall'), +('11036', 'Wall'), +('11037', 'Wall'), +('11038', 'Wall'), +('11039', 'Wall'), +('11040', 'Rubble'), +('11041', 'Ladder'), +('11042', 'Ladder'), +('11043', 'Stone Ladder'), +('11044', 'Stone Ladder'), +('11045', 'null'), +('11046', 'null'), +('11047', 'null'), +('11048', 'null'), +('11049', 'Boulder'), +('11050', 'Secret entrance'), +('11051', 'Door'), +('11052', 'Door'), +('11053', 'Door'), +('11054', 'Door'), +('11055', 'Door'), +('11056', 'Door'), +('11057', 'Door'), +('11058', 'Door'), +('11059', 'Pedestal'), +('11060', 'Pedestal'), +('11061', 'Pedestal'), +('11062', 'Pedestal'), +('11063', 'Pedestal'), +('11064', 'Door'), +('11065', 'Door'), +('11066', 'Door'), +('11067', 'Door'), +('11068', 'Door'), +('11069', 'Door'), +('11070', 'Door'), +('11071', 'Door'), +('11072', 'Ruins'), +('11073', 'Ruins'), +('11074', 'Ruins'), +('11075', 'Ruins'), +('11076', 'null'), +('11077', 'null'), +('11078', 'null'), +('11079', 'Light'), +('11080', 'Scaffold'), +('11081', 'Ladder'), +('11082', 'Wheelbarrow'), +('11083', 'null'), +('11084', 'null'), +('11085', 'null'), +('11086', 'null'), +('11087', 'null'), +('11088', 'null'), +('11089', 'null'), +('11090', 'null'), +('11091', 'null'), +('11092', 'null'), +('11093', 'null'), +('11094', 'null'), +('11095', 'null'), +('11096', 'null'), +('11097', 'Rock'), +('11098', 'Rock'), +('11099', 'null'), +('11100', 'null'), +('11101', 'null'), +('11102', 'null'), +('11103', 'null'), +('11104', 'null'), +('11105', 'null'), +('11106', 'null'), +('11107', 'null'), +('11108', 'null'), +('11109', 'null'), +('11110', 'null'), +('11111', 'null'), +('11112', 'Dead tree'), +('11113', 'Bush'), +('11114', 'null'), +('11115', 'null'), +('11116', 'null'), +('11117', 'null'), +('11118', 'null'), +('11119', 'null'), +('11120', 'null'), +('11121', 'null'), +('11122', 'null'), +('11123', 'null'), +('11124', 'null'), +('11125', 'null'), +('11126', 'null'), +('11127', 'null'), +('11128', 'null'), +('11129', 'null'), +('11130', 'null'), +('11131', 'null'), +('11132', 'null'), +('11133', 'null'), +('11134', 'null'), +('11135', 'null'), +('11136', 'null'), +('11137', 'null'), +('11138', 'null'), +('11139', 'null'), +('11140', 'null'), +('11141', 'Magic spell'), +('11142', 'null'), +('11143', 'null'), +('11144', 'null'), +('11145', 'null'), +('11146', 'null'), +('11147', 'null'), +('11148', 'null'), +('11149', 'null'), +('11150', 'null'), +('11151', 'Door'), +('11152', 'Door'), +('11153', 'Pedestal'), +('11154', 'null'), +('11155', 'null'), +('11156', 'null'), +('11157', 'null'), +('11158', 'null'), +('11159', 'null'), +('11160', 'null'), +('11161', 'null'), +('11162', 'Loader'), +('11163', 'Bone grinder'), +('11164', 'Bin'), +('11165', 'Rocks'), +('11166', 'Rocks'), +('11167', 'Rocks'), +('11168', 'Rocks'), +('11169', 'Rocks'), +('11170', 'Rocks'), +('11171', 'Rocks'), +('11172', 'Rocks'), +('11173', 'Rocks'), +('11174', 'Rocks'), +('11175', 'Rocks'), +('11176', 'Rocks'), +('11177', 'Rocks'), +('11178', 'Rocks'), +('11179', 'Rocks'), +('11180', 'Rocks'), +('11181', 'Rocks'), +('11182', 'Rocks'), +('11183', 'Rocks'), +('11184', 'Rocks'), +('11185', 'Rocks'), +('11186', 'Rocks'), +('11187', 'Rocks'), +('11188', 'Rocks'), +('11189', 'Rocks'), +('11190', 'Rocks'), +('11191', 'Rocks'), +('11192', 'Rocks'), +('11193', 'Rocks'), +('11194', 'Rocks'), +('11195', 'Rocks'), +('11196', 'Door'), +('11197', 'Door'), +('11198', 'Ladder'), +('11199', 'Ladder'), +('11200', 'Ladder'), +('11201', 'Ladder'), +('11202', 'Table'), +('11203', 'Table'), +('11204', 'Plaque'), +('11205', 'Plaque'), +('11206', 'Plaque'), +('11207', 'Plaque'), +('11208', 'Coffin'), +('11209', 'Gangplank'), +('11210', 'Gangplank'), +('11211', 'Gangplank'), +('11212', 'Gangplank'), +('11213', 'null'), +('11214', 'Cannon'), +('11215', 'Broken Cannon'), +('11216', 'Broken Cannon'), +('11217', 'Cannon'), +('11218', 'null'), +('11219', 'Cannon'), +('11220', 'Broken Cannon'), +('11221', 'null'), +('11222', 'null'), +('11223', 'null'), +('11224', 'null'), +('11225', 'null'), +('11226', 'null'), +('11227', 'null'), +('11228', 'Crate'), +('11229', 'Crate'), +('11230', 'null'), +('11231', 'Closed chest'), +('11232', 'Open chest'), +('11233', 'null'), +('11234', 'Barrel'), +('11235', 'Barrel'), +('11236', 'Plunder Storage'), +('11237', 'null'), +('11238', 'Powder Barrel'), +('11239', 'Barrel'), +('11240', 'Barrel'), +('11241', 'null'), +('11242', 'null'), +('11243', 'null'), +('11244', 'Climbing Net'), +('11245', 'Powder Barrel'), +('11246', 'Repair Locker'), +('11247', 'Repair Locker'), +('11248', 'Gun Locker'), +('11249', 'Gun Locker'), +('11250', 'null'), +('11251', 'null'), +('11252', 'null'), +('11253', 'null'), +('11254', 'null'), +('11255', 'null'), +('11256', 'null'), +('11257', 'null'), +('11258', 'null'), +('11259', 'null'), +('11260', 'null'), +('11261', 'null'), +('11262', 'null'), +('11263', 'null'), +('11264', 'null'), +('11265', 'null'), +('11266', 'null'), +('11267', 'null'), +('11268', 'null'), +('11269', 'null'), +('11270', 'null'), +('11271', 'null'), +('11272', 'null'), +('11273', 'null'), +('11274', 'null'), +('11275', 'null'), +('11276', 'Mast'), +('11277', 'Mast'), +('11278', 'Mast'), +('11279', 'Mast'), +('11280', 'Sail'), +('11281', 'Sail'), +('11282', 'Sail'), +('11283', 'Sail'), +('11284', 'null'), +('11285', 'null'), +('11286', 'null'), +('11287', 'Figurehead'), +('11288', 'null'), +('11289', 'Ship's ladder'), +('11290', 'Ship's ladder'), +('11291', 'Sail'), +('11292', 'Hoisted sail'), +('11293', 'Hoisted sail'), +('11294', 'Hoisted sail'), +('11295', 'null'), +('11296', 'null'), +('11297', 'Hoisted sail'), +('11298', 'Hoisted sail'), +('11299', 'Hoisted sail'), +('11300', 'Hoisted sail'), +('11301', 'Hoisted sail'), +('11302', 'Sail'), +('11303', 'Hoisted sail'), +('11304', 'Hoisted sail'), +('11305', 'Barrel'), +('11306', 'Ship's wheel'), +('11307', 'Anchor'), +('11308', 'Ship's ladder'), +('11309', 'Ship's ladder'), +('11310', 'Climbing net'), +('11311', 'Rope'), +('11312', 'Cannon'), +('11313', 'Cannon'), +('11314', 'Cannon'), +('11315', 'Barrel'), +('11316', 'Fuse'), +('11317', 'Ship hull'), +('11318', 'Ship hull'), +('11319', 'Ship hull'), +('11320', 'Barrel'), +('11321', 'null'), +('11322', 'Barrel'), +('11323', 'Chest'), +('11324', 'Ancient Pillar'), +('11325', 'null'), +('11326', 'null'), +('11327', 'null'), +('11328', 'null'), +('11329', 'null'), +('11330', 'Crate'), +('11331', 'Crate'), +('11332', 'Gate'), +('11333', 'Gate'), +('11334', 'null'), +('11335', 'Bamboo Desk'), +('11336', 'Bamboo Desk'), +('11337', 'Bamboo Desk'), +('11338', 'Bank booth'), +('11339', 'Open chest'), +('11340', 'null'), +('11341', 'Closed chest'), +('11342', 'Repair Locker'), +('11343', 'Gun Locker'), +('11344', 'null'), +('11345', 'null'), +('11346', 'null'), +('11347', 'null'), +('11348', 'null'), +('11349', 'null'), +('11350', 'null'), +('11351', 'null'), +('11352', 'null'), +('11353', 'null'), +('11354', 'Interdimensional rift'), +('11355', 'null'), +('11356', 'Portal Home'), +('11357', 'Portal machine'), +('11358', 'Staircase'), +('11359', 'null'), +('11360', 'Pie stall'), +('11361', 'Raw chompy bird'), +('11362', 'Raw Rabbit'), +('11363', 'Iron spit'), +('11364', 'Decorative Pillar'), +('11365', 'Decorative Pillar'), +('11366', 'Decorative Pillar'), +('11367', 'Decorative Pillar'), +('11368', 'null'), +('11369', 'null'), +('11370', 'null'), +('11371', 'null'), +('11372', 'null'), +('11373', 'null'), +('11374', 'null'), +('11375', 'null'), +('11376', 'null'), +('11377', 'null'), +('11378', 'null'), +('11379', 'Large door'), +('11380', 'Large door'), +('11381', 'Large door'), +('11382', 'Large door'), +('11383', 'Decorative Pillar'), +('11384', 'Decorative Pillar'), +('11385', 'Decorative Pillar'), +('11386', 'Decorative Pillar'), +('11387', 'Decorative Pillar'), +('11388', 'Decorative Pillar'), +('11389', 'Decorative Pillar'), +('11390', 'Decorative Pillar'), +('11391', 'Decorative Pillar'), +('11392', 'Decorative Pillar'), +('11393', 'Decorative Pillar'), +('11394', 'Decorative Pillar'), +('11395', 'Pillar candle.'), +('11396', 'Melted candle.'), +('11397', 'Pillar candle flame.'), +('11398', 'Our lives'), +('11399', 'Cave entrance'), +('11400', 'Web'), +('11401', 'Slashed web'), +('11402', 'Bank booth'), +('11403', 'null'), +('11404', 'Fire'), +('11405', 'Fire'), +('11406', 'Fire'), +('11407', 'null'), +('11408', 'null'), +('11409', 'pipe with rope'), +('11410', 'Pipe'), +('11411', 'Rope'), +('11412', 'straight rope'), +('11413', 'Rope'), +('11414', 'Rope'), +('11415', 'Rope'), +('11416', 'Rope'), +('11417', 'Dug hole'), +('11418', 'Mud patch'), +('11419', 'null'), +('11420', 'null'), +('11421', 'null'), +('11422', 'null'), +('11423', 'Grill'), +('11424', 'Rocks'), +('11425', 'Rocks'), +('11426', 'Rocks'), +('11427', 'Rocks'), +('11428', 'Rocks'), +('11429', 'Rocks'), +('11430', 'Rocks'), +('11431', 'Rocks'), +('11432', 'Rocks'), +('11433', 'Rocks'), +('11434', 'Rocks'), +('11435', 'Rocks'), +('11436', 'Rocks'), +('11437', 'Rocks'), +('11438', 'Rocks'), +('11439', 'Rocks'), +('11440', 'Rocks'), +('11441', 'Rocks'), +('11442', 'Rocks'), +('11443', 'Rocks'), +('11444', 'Rocks'), +('11445', 'null'), +('11446', 'null'), +('11447', 'null'), +('11448', 'null'), +('11449', 'Door'), +('11450', 'Door'), +('11451', 'Lever A'), +('11452', 'Lever A'), +('11453', 'Lever B'), +('11454', 'Lever B'), +('11455', 'Lever C'), +('11456', 'Lever C'), +('11457', 'Lever D'), +('11458', 'Lever D'), +('11459', 'Lever E'), +('11460', 'Lever E'), +('11461', 'Lever F'), +('11462', 'Lever F'), +('11463', 'null'), +('11464', 'null'), +('11465', 'null'), +('11466', 'null'), +('11467', 'null'), +('11468', 'Lantern'), +('11469', 'Spooky picture'), +('11470', 'Door'), +('11471', 'Door'), +('11472', 'Candles'), +('11473', 'Candles'), +('11474', 'null'), +('11475', 'null'), +('11476', 'null'), +('11477', 'null'), +('11478', 'null'), +('11479', 'null'), +('11480', 'null'), +('11481', 'null'), +('11482', 'null'), +('11483', 'Door'), +('11484', 'Barrel'), +('11485', 'Crate'), +('11486', 'Crates'), +('11487', 'Boxes'), +('11488', 'Crates'), +('11489', 'Chair'), +('11490', 'Chair'), +('11491', 'Large Table'), +('11492', 'Smashed chair'), +('11493', 'Grandfather clock'), +('11494', 'Cabbage'), +('11495', 'Gallows'), +('11496', 'Chair'), +('11497', 'Spooky picture'), +('11498', 'Staircase'), +('11499', 'Staircase'), +('11500', 'Table'), +('11501', 'Table'), +('11502', 'Table'), +('11503', 'Table'), +('11504', 'Table'), +('11505', 'null'), +('11506', 'null'), +('11507', 'null'), +('11508', 'null'), +('11509', 'null'), +('11510', 'Dead tree'), +('11511', 'Staircase'), +('11512', 'null'), +('11513', 'null'), +('11514', 'null'), +('11515', 'null'), +('11516', 'null'), +('11517', 'null'), +('11518', 'null'), +('11519', 'null'), +('11520', 'null'), +('11521', 'null'), +('11522', 'null'), +('11523', 'null'), +('11524', 'null'), +('11525', 'null'), +('11526', 'null'), +('11527', 'null'), +('11528', 'null'), +('11529', 'null'), +('11530', 'null'), +('11531', 'null'), +('11532', 'null'), +('11533', 'null'), +('11534', 'null'), +('11535', 'null'), +('11536', 'null'), +('11537', 'null'), +('11538', 'null'), +('11539', 'null'), +('11540', 'null'), +('11541', 'null'), +('11542', 'null'), +('11543', 'null'), +('11544', 'null'), +('11545', 'null'), +('11546', 'Strange machine'), +('11547', 'Strange machine'), +('11548', 'Strange machine'), +('11549', 'Strange machine'), +('11550', 'Strange machine'), +('11551', 'Table'), +('11552', 'Rocks'), +('11553', 'Rocks'), +('11554', 'Rocks'), +('11555', 'Rocks'), +('11556', 'Rocks'), +('11557', 'Rocks'), +('11558', 'null'), +('11559', 'null'), +('11560', 'null'), +('11561', 'null'), +('11562', 'null'), +('11563', 'null'), +('11564', 'null'), +('11565', 'null'), +('11566', 'null'), +('11567', 'null'), +('11568', 'null'), +('11569', 'null'), +('11570', 'null'), +('11571', 'null'), +('11572', 'null'), +('11573', 'null'), +('11574', 'null'), +('11575', 'null'), +('11576', 'null'), +('11577', 'null'), +('11578', 'null'), +('11579', 'null'), +('11580', 'null'), +('11581', 'null'), +('11582', 'null'), +('11583', 'null'), +('11584', 'null'), +('11585', 'null'), +('11586', 'null'), +('11587', 'null'), +('11588', 'null'), +('11589', 'Barrel'), +('11590', 'Barrel'), +('11591', 'null'), +('11592', 'null'), +('11593', 'null'), +('11594', 'null'), +('11595', 'null'), +('11596', 'null'), +('11597', 'null'), +('11598', 'null'), +('11599', 'Crate'), +('11600', 'Crates'), +('11601', 'Pottery Oven'), +('11602', 'null'), +('11603', 'Stool'), +('11604', 'null'), +('11605', 'null'), +('11606', 'Standing torch'), +('11607', 'null'), +('11608', 'null'), +('11609', 'null'), +('11610', 'null'), +('11611', 'null'), +('11612', 'null'), +('11613', 'null'), +('11614', 'Standard'), +('11615', 'Standard'), +('11616', 'Door'), +('11617', 'Door'), +('11618', 'null'), +('11619', 'Table'), +('11620', 'Longhall door'), +('11621', 'Longhall door'), +('11622', 'null'), +('11623', 'null'), +('11624', 'Longhall door'), +('11625', 'Longhall door'), +('11626', 'Counter'), +('11627', 'Small Table'), +('11628', 'null'), +('11629', 'Rock'), +('11630', 'Stone signpost'), +('11631', 'Stone signpost'), +('11632', 'null'), +('11633', 'null'), +('11634', 'Rock'), +('11635', 'Rock'), +('11636', 'Rock'), +('11637', 'Rock'), +('11638', 'Rock'), +('11639', 'Rock'), +('11640', 'City gate'), +('11641', 'City gate'), +('11642', 'City gate'), +('11643', 'City gate'), +('11644', 'City gate'), +('11645', 'City gate'), +('11646', 'City gate'), +('11647', 'City gate'), +('11648', 'City gate'), +('11649', 'City gate'), +('11650', 'City gate'), +('11651', 'City gate'), +('11652', 'null'), +('11653', 'null'), +('11654', 'null'), +('11655', 'null'), +('11656', 'null'), +('11657', 'Rack'), +('11658', 'Shelves'), +('11659', 'Barrel'), +('11660', 'Table'), +('11661', 'Waterpump'), +('11662', 'Shop counter'), +('11663', 'Cabinet'), +('11664', 'null'), +('11665', 'null'), +('11666', 'Furnace'), +('11667', 'null'), +('11668', 'null'), +('11669', 'null'), +('11670', 'null'), +('11671', 'null'), +('11672', 'null'), +('11673', 'null'), +('11674', 'Sign'), +('11675', 'Banner'), +('11676', 'null'), +('11677', 'Treadmill'), +('11678', 'Spinning pole'), +('11679', 'null'), +('11680', 'null'), +('11681', 'null'), +('11682', 'Table'), +('11683', 'null'), +('11684', 'null'), +('11685', 'null'), +('11686', 'null'), +('11687', 'null'), +('11688', 'null'), +('11689', 'null'), +('11690', 'null'), +('11691', 'null'), +('11692', 'null'), +('11693', 'Statue'), +('11694', 'Statue'), +('11695', 'Statue'), +('11696', 'Statue'), +('11697', 'Statue'), +('11698', 'Old bookshelf'), +('11699', 'Flagpole'), +('11700', 'Statue of Saradomin'), +('11701', 'Statue of Saradomin'), +('11702', 'null'), +('11703', 'null'), +('11704', 'null'), +('11705', 'null'), +('11706', 'Rockery'), +('11707', 'Door'), +('11708', 'Door'), +('11709', 'Door'), +('11710', 'Door'), +('11711', 'Door'), +('11712', 'Door'), +('11713', 'Door'), +('11714', 'Door'), +('11715', 'Door'), +('11716', 'Castle door'), +('11717', 'Castle door'), +('11718', 'Castle door'), +('11719', 'Castle door'), +('11720', 'Castle door'), +('11721', 'Castle door'), +('11722', 'Castle door'), +('11723', 'Castle door'), +('11724', 'Staircase'), +('11725', 'Staircase'), +('11726', 'null'), +('11727', 'Ladder'), +('11728', 'Ladder'), +('11729', 'Staircase'), +('11730', 'null'), +('11731', 'Staircase'), +('11732', 'Staircase'), +('11733', 'Staircase'), +('11734', 'Staircase'), +('11735', 'Staircase'), +('11736', 'Staircase'), +('11737', 'Staircase'), +('11738', 'Large table'), +('11739', 'Ladder'), +('11740', 'Ladder'), +('11741', 'Ladder'), +('11742', 'Ladder'), +('11743', 'Table'), +('11744', 'Boxes'), +('11745', 'Crates'), +('11746', 'Stool'), +('11747', 'Bed'), +('11748', 'Table'), +('11749', 'Table'), +('11750', 'null'), +('11751', 'null'), +('11752', 'null'), +('11753', 'Suit of armour'), +('11754', 'null'), +('11755', 'Noticeboard'), +('11756', 'Noticeboard'), +('11757', 'Chest'), +('11758', 'Bank booth'), +('11759', 'Fountain'), +('11760', 'Chair'), +('11761', 'Statue'), +('11762', 'Bar pumps'), +('11763', 'Bar'), +('11764', 'Picnic table'), +('11765', 'Barrel'), +('11766', 'Barrel'), +('11767', 'Bookcase'), +('11768', 'Shelves'), +('11769', 'Shelves'), +('11770', 'Shelves'), +('11771', 'Shelves'), +('11772', 'null'), +('11773', 'null'), +('11774', 'null'), +('11775', 'null'), +('11776', 'null'), +('11777', 'null'), +('11778', 'null'), +('11779', 'null'), +('11780', 'null'), +('11781', 'null'), +('11782', 'Standing stone'), +('11783', 'Standing stone'), +('11784', 'Standing stone'), +('11785', 'Standing stone'), +('11786', 'null'), +('11787', 'null'), +('11788', 'null'), +('11789', 'Rocks'), +('11790', 'Rocks'), +('11791', 'Rocks'), +('11792', 'null'), +('11793', 'Well'), +('11794', 'Chair'), +('11795', 'Chair'), +('11796', 'Mirror'), +('11797', 'null'), +('11798', 'null'), +('11799', 'Heater'), +('11800', 'null'), +('11801', 'null'), +('11802', 'null'), +('11803', 'null'), +('11804', 'null'), +('11805', 'null'), +('11806', 'null'), +('11807', 'null'), +('11808', 'null'), +('11809', 'null'), +('11810', 'null'), +('11811', 'null'), +('11812', 'Bathtub'), +('11813', 'Workbench'), +('11814', 'Workbench'), +('11815', 'null'), +('11816', 'null'), +('11817', 'null'), +('11818', 'null'), +('11819', 'null'), +('11820', 'null'), +('11821', 'null'), +('11822', 'null'), +('11823', 'null'), +('11824', 'null'), +('11825', 'null'), +('11826', 'null'), +('11827', 'null'), +('11828', 'null'), +('11829', 'null'), +('11830', 'null'), +('11831', 'null'), +('11832', 'null'), +('11833', 'null'), +('11834', 'null'), +('11835', 'null'), +('11836', 'null'), +('11837', 'null'), +('11838', 'null'), +('11839', 'null'), +('11840', 'Bricks'), +('11841', 'Bricks'), +('11842', 'null'), +('11843', 'null'), +('11844', 'Crumbling wall'), +('11845', 'null'), +('11846', 'null'), +('11847', 'null'), +('11848', 'Bow cabinet'), +('11849', 'Table'), +('11850', 'null'), +('11851', 'null'), +('11852', 'null'), +('11853', 'null'), +('11854', 'null'), +('11855', 'null'), +('11856', 'null'), +('11857', 'null'), +('11858', 'null'), +('11859', 'null'), +('11860', 'null'), +('11861', 'Standard'), +('11862', 'Dwarf bath'), +('11863', 'Winch'), +('11864', 'null'), +('11865', 'null'), +('11866', 'null'), +('11867', 'Trapdoor'), +('11868', 'Dwarf multicannon'), +('11869', 'Multicannon parts'), +('11870', 'Multicannon parts'), +('11871', 'null'), +('11872', 'null'), +('11873', 'Multicannon parts'), +('11874', 'Multicannon parts'), +('11875', 'Canary'), +('11876', 'Blacksmiths' tools'), +('11877', 'Bed'), +('11878', 'null'), +('11879', 'null'), +('11880', 'null'), +('11881', 'null'), +('11882', 'null'), +('11883', 'null'), +('11884', 'null'), +('11885', 'null'), +('11886', 'null'), +('11887', 'null'), +('11888', 'Staircase'), +('11889', 'Staircase'), +('11890', 'Staircase'), +('11891', 'Sinister barrel'), +('11892', 'Table'), +('11893', 'Bookcase'), +('11894', 'Bookcase'), +('11895', 'Thorns'), +('11896', 'Thorns'), +('11897', 'Thorns'), +('11898', 'null'), +('11899', 'null'), +('11900', 'null'), +('11901', 'null'), +('11902', 'null'), +('11903', 'null'), +('11904', 'null'), +('11905', 'null'), +('11906', 'null'), +('11907', 'null'), +('11908', 'null'), +('11909', 'null'), +('11910', 'Creature'), +('11911', 'Bush'), +('11912', 'Bush'), +('11913', 'Bush'), +('11914', 'Bush'), +('11915', 'Rocks'), +('11916', 'Rocks'), +('11917', 'Rocks'), +('11918', 'Rocks'), +('11919', 'Rocks'), +('11920', 'Rocks'), +('11921', 'Rocks'), +('11922', 'Rocks'), +('11923', 'Rocks'), +('11924', 'Rocks'), +('11925', 'Rocks'), +('11926', 'Rocks'), +('11927', 'Rocks'), +('11928', 'Rocks'), +('11929', 'Rocks'), +('11930', 'Rocks'), +('11931', 'Rocks'), +('11932', 'Rocks'), +('11933', 'Rocks'), +('11934', 'Rocks'), +('11935', 'Rocks'), +('11936', 'Rocks'), +('11937', 'Rocks'), +('11938', 'Rocks'), +('11939', 'Rocks'), +('11940', 'Rocks'), +('11941', 'Rocks'), +('11942', 'Rocks'), +('11943', 'Rocks'), +('11944', 'Rocks'), +('11945', 'Rocks'), +('11946', 'Rocks'), +('11947', 'Rocks'), +('11948', 'Rocks'), +('11949', 'Rocks'), +('11950', 'Rocks'), +('11951', 'Rocks'), +('11952', 'Rocks'), +('11953', 'Rocks'), +('11954', 'Rocks'), +('11955', 'Rocks'), +('11956', 'Rocks'), +('11957', 'Rocks'), +('11958', 'Rocks'), +('11959', 'Rocks'), +('11960', 'Rocks'), +('11961', 'Rocks'), +('11962', 'Rocks'), +('11963', 'Rocks'), +('11964', 'Rocks'), +('11965', 'Rocks'), +('11966', 'null'), +('11967', 'null'), +('11968', 'null'), +('11969', 'null'), +('11970', 'null'), +('11971', 'null'), +('11972', 'null'), +('11973', 'null'), +('11974', 'null'), +('11975', 'null'), +('11976', 'null'), +('11977', 'null'), +('11978', 'null'), +('11979', 'null'), +('11980', 'null'), +('11981', 'null'), +('11982', 'null'), +('11983', 'null'), +('11984', 'null'), +('11985', 'null'), +('11986', 'null'), +('11987', 'null'), +('11988', 'null'), +('11989', 'null'), +('11990', 'null'), +('11991', 'null'), +('11992', 'null'), +('11993', 'Door'), +('11994', 'Door'), +('11995', 'null'), +('11996', 'null'), +('11997', 'null'), +('11998', 'null'), +('11999', 'null'), +('12000', 'null'), +('12001', 'null'), +('12002', 'null'), +('12003', 'Fairy ring'), +('12004', 'A gap through the wall'), +('12005', 'Mushroom torch'), +('12006', 'Mushroom torch'), +('12007', 'null'), +('12008', 'null'), +('12009', 'null'), +('12010', 'null'), +('12011', 'null'), +('12012', 'null'), +('12013', 'null'), +('12014', 'null'), +('12015', 'null'), +('12016', 'null'), +('12017', 'null'), +('12018', 'null'), +('12019', 'null'), +('12020', 'null'), +('12021', 'null'), +('12022', 'null'), +('12023', 'null'), +('12024', 'null'), +('12025', 'null'), +('12026', 'null'), +('12027', 'null'), +('12028', 'null'), +('12029', 'null'), +('12030', 'null'), +('12031', 'null'), +('12032', 'null'), +('12033', 'null'), +('12034', 'null'), +('12035', 'null'), +('12036', 'null'), +('12037', 'null'), +('12038', 'null'), +('12039', 'null'), +('12040', 'null'), +('12041', 'A gap through the wall'), +('12042', 'A wall'), +('12043', 'A wall'), +('12044', 'null'), +('12045', 'Magic door'), +('12046', 'Magic door'), +('12047', 'Magic door'), +('12048', 'Magic door'), +('12049', 'null'), +('12050', 'null'), +('12051', 'null'), +('12052', 'null'), +('12053', 'null'), +('12054', 'null'), +('12055', 'null'), +('12056', 'null'), +('12057', 'null'), +('12058', 'null'), +('12059', 'null'), +('12060', 'Potion shelves'), +('12061', 'Potion shelves'), +('12062', 'Potion shelf'), +('12063', 'Potion shelf'), +('12064', 'Healing certificate'), +('12065', 'Certificate of healing'), +('12066', 'A fairy workbench'), +('12067', 'A fairy workbench'), +('12068', 'null'), +('12069', 'null'), +('12070', 'null'), +('12071', 'null'), +('12072', 'null'), +('12073', 'null'), +('12074', 'null'), +('12075', 'null'), +('12076', 'null'), +('12077', 'null'), +('12078', 'null'), +('12079', 'null'), +('12080', 'null'), +('12081', 'null'), +('12082', 'null'), +('12083', 'null'), +('12084', 'null'), +('12085', 'null'), +('12086', 'null'), +('12087', 'null'), +('12088', 'null'), +('12089', 'Fairy fountain'), +('12090', 'Fairy Queen'), +('12091', 'Fairy Queen throne'), +('12092', 'Godfather throne'), +('12093', 'Chicken Shrine'), +('12094', 'Fairy ring'), +('12095', 'Fairy ring'), +('12096', 'null'), +('12097', 'null'), +('12098', 'null'), +('12099', 'null'), +('12100', 'Furnace'), +('12101', 'null'), +('12102', 'Range'), +('12103', 'Crate'), +('12104', 'Crates'), +('12105', 'Crate'), +('12106', 'Table'), +('12107', 'Barrel'), +('12108', 'Table'), +('12109', 'Wall'), +('12110', 'G.A.G. banner'), +('12111', 'Dairy Cow'), +('12112', 'Ladder'), +('12113', 'Ladder'), +('12114', 'Cow wheel'), +('12115', 'Sacks'), +('12116', 'null'), +('12117', 'null'), +('12118', 'null'), +('12119', 'null'), +('12120', 'Closed chest'), +('12121', 'Open chest'), +('12122', 'Water Trough'), +('12123', 'null'), +('12124', 'null'), +('12125', 'Gravestone'), +('12126', 'Damaged wall'), +('12127', 'Jutting wall'), +('12128', 'Fairy ring'), +('12129', 'null'), +('12130', 'null'), +('12131', 'Stairs'), +('12132', 'Tomb'), +('12133', 'Juliet'), +('12134', 'Coffin'), +('12135', 'Coffin'), +('12136', 'null'), +('12137', 'null'), +('12138', 'null'), +('12139', 'null'), +('12140', 'Church pew'), +('12141', 'null'), +('12142', 'null'), +('12143', 'null'), +('12144', 'Canoe station'), +('12145', 'Canoe station'), +('12146', 'Canoe station'), +('12147', 'Canoe station'), +('12148', 'Canoe station'), +('12149', 'Canoe station'), +('12150', 'Canoe station'), +('12151', 'Canoe station'), +('12152', 'Canoe station'), +('12153', 'Canoe station'), +('12154', 'Canoe station'), +('12155', 'Canoe station'), +('12156', 'Canoe station'), +('12157', 'Canoe station'), +('12158', 'Canoe station'), +('12159', 'A sinking canoe'), +('12160', 'A sinking canoe'), +('12161', 'A sinking canoe'), +('12162', 'A sinking canoe'), +('12163', 'null'), +('12164', 'null'), +('12165', 'null'), +('12166', 'null'), +('12167', 'null'), +('12168', 'null'), +('12169', 'null'), +('12170', 'null'), +('12171', 'null'), +('12172', 'null'), +('12173', 'null'), +('12174', 'null'), +('12175', 'null'), +('12176', 'null'), +('12177', 'null'), +('12178', 'null'), +('12179', 'null'), +('12180', 'null'), +('12181', 'null'), +('12182', 'null'), +('12183', 'null'), +('12184', 'null'), +('12185', 'null'), +('12186', 'null'), +('12187', 'null'), +('12188', 'null'), +('12189', 'null'), +('12190', 'null'), +('12191', 'null'), +('12192', 'null'), +('12193', 'null'), +('12194', 'null'), +('12195', 'null'), +('12196', 'null'), +('12197', 'null'), +('12198', 'null'), +('12199', 'null'), +('12200', 'null'), +('12201', 'Well'), +('12202', 'Mole hill'), +('12203', 'Light'), +('12204', 'null'), +('12205', 'null'), +('12206', 'null'), +('12207', 'null'), +('12208', 'null'), +('12209', 'null'), +('12210', 'null'), +('12211', 'null'), +('12212', 'null'), +('12213', 'null'), +('12214', 'null'), +('12215', 'null'), +('12216', 'null'), +('12217', 'null'), +('12218', 'null'), +('12219', 'null'), +('12220', 'null'), +('12221', 'null'), +('12222', 'null'), +('12223', 'null'), +('12224', 'null'), +('12225', 'null'), +('12226', 'null'), +('12227', 'null'), +('12228', 'null'), +('12229', 'null'), +('12230', 'Rope'), +('12231', 'null'), +('12232', 'null'), +('12233', 'null'), +('12234', 'null'), +('12235', 'Kurask head'), +('12236', 'Mounted sea bass'), +('12237', 'Mounted swordfish'), +('12238', 'null'), +('12239', 'Vanilla plant'), +('12240', 'Bones'), +('12241', 'Bones'), +('12242', 'Bones'), +('12243', 'Skeleton'), +('12244', 'Skeleton'), +('12245', 'Skeleton'), +('12246', 'Skeleton'), +('12247', 'Skeleton'), +('12248', 'Skeleton'), +('12249', 'null'), +('12250', 'null'), +('12251', 'null'), +('12252', 'null'), +('12253', 'Tunnel entrance'), +('12254', 'Tunnel entrance'), +('12255', 'Rope'), +('12256', 'Nest'), +('12257', 'Dragon egg'), +('12258', 'Dragonfire'), +('12259', 'Nest'), +('12260', 'Portal'), +('12261', 'null'), +('12262', 'Trapdoor'), +('12263', 'Trapdoor'), +('12264', 'Ladder'), +('12265', 'Cellar stairs'), +('12266', 'null'), +('12267', 'Trapdoor'), +('12268', 'Open trapdoor'), +('12269', 'Stove'), +('12270', 'null'), +('12271', 'null'), +('12272', 'null'), +('12273', 'null'), +('12274', 'null'), +('12275', 'null'), +('12276', 'null'), +('12277', 'null'), +('12278', 'null'), +('12279', 'Sink'), +('12280', 'Large Table'), +('12281', 'Small Table'), +('12282', 'Bookcase'), +('12283', 'null'), +('12284', 'null'), +('12285', 'null'), +('12286', 'null'), +('12287', 'null'), +('12288', 'null'), +('12289', 'null'), +('12290', 'null'), +('12291', 'null'), +('12292', 'null'), +('12293', 'Grandfather clock'), +('12294', 'null'), +('12295', 'null'), +('12296', 'null'), +('12297', 'null'), +('12298', 'null'), +('12299', 'null'), +('12300', 'null'), +('12301', 'Candles'), +('12302', 'Candles'), +('12303', 'null'), +('12304', 'null'), +('12305', 'null'), +('12306', 'null'), +('12307', 'null'), +('12308', 'null'), +('12309', 'Chest'), +('12310', 'Chair'), +('12311', 'Chair'), +('12312', 'Chair'), +('12313', 'Chair'), +('12314', 'Banquet table'), +('12315', 'Banquet table'), +('12316', 'Banquet table'), +('12317', 'Banquet table'), +('12318', 'Chair'), +('12319', 'Chair'), +('12320', 'Pirate Pete'), +('12321', 'Dwarf'), +('12322', 'General Wartface'), +('12323', 'General Bentnoze'), +('12324', 'Lumbridge Guide'), +('12325', 'Evil Dave'), +('12326', 'Sir Amik Varze'), +('12327', 'Awowogei'), +('12328', 'Skrach Uglogwee'), +('12329', 'null'), +('12330', 'Dwarf'), +('12331', 'null'), +('12332', 'General Bentnoze'), +('12333', 'null'), +('12334', 'General Wartface'), +('12335', 'null'), +('12336', 'null'), +('12337', 'Pirate Pete'), +('12338', 'null'), +('12339', 'Lumbridge Guide'), +('12340', 'null'), +('12341', 'Evil Dave'), +('12342', 'null'), +('12343', 'Skrach Uglogwee'), +('12344', 'null'), +('12345', 'Sir Amik Varze'), +('12346', 'null'), +('12347', 'Awowogei'), +('12348', 'Door'), +('12349', 'Large door'), +('12350', 'Large door'), +('12351', 'Barrier'), +('12352', 'Barrier'), +('12353', 'Barrier'), +('12354', 'null'), +('12355', 'Portal'), +('12356', 'Portal'), +('12357', 'null'), +('12358', 'null'), +('12359', 'null'), +('12360', 'null'), +('12361', 'null'), +('12362', 'null'), +('12363', 'null'), +('12364', 'null'), +('12365', 'null'), +('12366', 'null'), +('12367', 'null'), +('12368', 'null'), +('12369', 'null'), +('12370', 'null'), +('12371', 'null'), +('12372', 'null'), +('12373', 'null'), +('12374', 'null'), +('12375', 'null'), +('12376', 'null'), +('12377', 'null'), +('12378', 'null'), +('12379', 'null'), +('12380', 'null'), +('12381', 'null'), +('12382', 'null'), +('12383', 'null'), +('12384', 'null'), +('12385', 'null'), +('12386', 'Table'), +('12387', 'Table'), +('12388', 'Table'), +('12389', 'Ladder'), +('12390', 'Ladder'), +('12391', 'Ladder'), +('12392', 'Sacks'), +('12393', 'Sacks'), +('12394', 'Sack Pile'), +('12395', 'Sack Pile'), +('12396', 'Sack'), +('12397', 'null'), +('12398', 'null'), +('12399', 'Sack'), +('12400', 'Cauldron'), +('12401', 'Cauldron'), +('12402', 'Explosion'), +('12403', 'Shelves'), +('12404', 'Shelves'), +('12405', 'Cupboard'), +('12406', 'Cupboard'), +('12407', 'Stool'), +('12408', 'Stool'), +('12409', 'Stool'), +('12410', 'Saucepan'), +('12411', 'Saucepan'), +('12412', 'Rolling pin'), +('12413', 'Rolling pin'), +('12414', 'Spork'), +('12415', 'Spork'), +('12416', 'null'), +('12417', 'null'), +('12418', 'null'), +('12419', 'null'), +('12420', 'null'), +('12421', 'null'), +('12422', 'null'), +('12423', 'null'), +('12424', 'null'), +('12425', 'null'), +('12426', 'null'), +('12427', 'null'), +('12428', 'null'), +('12429', 'null'), +('12430', 'null'), +('12431', 'null'), +('12432', 'null'), +('12433', 'null'), +('12434', 'Barrel'), +('12435', 'Barrel'), +('12436', 'null'), +('12437', 'null'), +('12438', 'null'), +('12439', 'null'), +('12440', 'Stool'), +('12441', 'null'), +('12442', 'Crate'), +('12443', 'Crate'), +('12444', 'Door'), +('12445', 'Door'), +('12446', 'Large door'), +('12447', 'Large door'), +('12448', 'Large door'), +('12449', 'Large door'), +('12450', 'Table'), +('12451', 'Chest'), +('12452', 'Chest'), +('12453', 'Skulls'), +('12454', 'null'), +('12455', 'null'), +('12456', 'null'), +('12457', 'null'), +('12458', 'null'), +('12459', 'null'), +('12460', 'Underwater Cavern Entrance'), +('12461', 'Underwater Cavern Entrance'), +('12462', 'Underwater Cavern Entrance'), +('12463', 'Underwater Cavern Entrance'), +('12464', 'null'), +('12465', 'null'), +('12466', 'null'), +('12467', 'Pen Door'), +('12468', 'Pen Door'), +('12469', 'null'), +('12470', 'null'), +('12471', 'null'), +('12472', 'null'), +('12473', 'null'), +('12474', 'Anchor'), +('12475', 'Anchor'), +('12476', 'Anchor'), +('12477', 'Kelp'), +('12478', 'Kelp'), +('12479', 'Coral Reef'), +('12480', 'Coral'), +('12481', 'Coral'), +('12482', 'Coral'), +('12483', 'Coral'), +('12484', 'Coral'), +('12485', 'Coral'), +('12486', 'Coral'), +('12487', 'Coral'), +('12488', 'Coral'), +('12489', 'Coral'), +('12490', 'Coral'), +('12491', 'Coral'), +('12492', 'Coral'), +('12493', 'Coral'), +('12494', 'Coral'), +('12495', 'Coral'), +('12496', 'Coral'), +('12497', 'Coral'), +('12498', 'Coral'), +('12499', 'Coral Reef'), +('12500', 'Coral'), +('12501', 'Coral'), +('12502', 'Coral'), +('12503', 'Coral'), +('12504', 'Coral'), +('12505', 'Coral'), +('12506', 'Coral'), +('12507', 'Coral'), +('12508', 'Coral'), +('12509', 'Coral Reef'), +('12510', 'Coral'), +('12511', 'Coral'), +('12512', 'Coral'), +('12513', 'Coral'), +('12514', 'Coral'), +('12515', 'Coral'), +('12516', 'Coral'), +('12517', 'Coral'), +('12518', 'Coral'), +('12519', 'Coral'), +('12520', 'Coral Reef'), +('12521', 'Coral'), +('12522', 'Coral'), +('12523', 'Coral'), +('12524', 'Coral'), +('12525', 'Coral'), +('12526', 'Coral'), +('12527', 'Coral'), +('12528', 'Coral'), +('12529', 'Coral'), +('12530', 'Anchor'), +('12531', 'Bubbles'), +('12532', 'null'), +('12533', 'null'), +('12534', 'null'), +('12535', 'null'), +('12536', 'Staircase'), +('12537', 'Staircase'), +('12538', 'Staircase'), +('12539', 'Bookcase'), +('12540', 'Bookcase'), +('12541', 'Table'), +('12542', 'null'), +('12543', 'Large table'), +('12544', 'Table'), +('12545', 'Boxes'), +('12546', 'Crate'), +('12547', 'Crate'), +('12548', 'Crates'), +('12549', 'null'), +('12550', 'Old tree'), +('12551', 'Old tree'), +('12552', 'Old tree'), +('12553', 'Old tree'), +('12554', 'Crude boat'), +('12555', 'Roots'), +('12556', 'Rock and string'), +('12557', 'Rock and string'), +('12558', 'null'), +('12559', 'Tree'), +('12560', 'Tree'), +('12561', 'Ogre spit-roast'), +('12562', 'Ogre spit-roast'), +('12563', 'Ogre spit-roast'), +('12564', 'Pile of Rock'), +('12565', 'Pile of Rock'), +('12566', 'Pile of Rock'), +('12567', 'Pile of Rock'), +('12568', 'Stepping stone'), +('12569', 'Temp Stone 4 Zip'), +('12570', 'Tropical tree'), +('12571', 'Tropical tree'), +('12572', 'Tropical tree'), +('12573', 'Monkeybars'), +('12574', 'null'), +('12575', 'Monkeybars'), +('12576', 'Skull slope'), +('12577', 'null'), +('12578', 'Rope'), +('12579', 'Tropical tree'), +('12580', 'Tropical tree'), +('12581', 'Hole'), +('12582', 'null'), +('12583', 'null'), +('12584', 'null'), +('12585', 'null'), +('12586', 'null'), +('12587', 'null'), +('12588', 'null'), +('12589', 'Rock'), +('12590', 'Rock'), +('12591', 'null'), +('12592', 'null'), +('12593', 'null'), +('12594', 'Snake'), +('12595', 'Snake'), +('12596', 'Snake'), +('12597', 'Hole'), +('12598', 'Snake'), +('12599', 'Snake'), +('12600', 'Snake'), +('12601', 'Rope'), +('12602', 'Pit'), +('12603', 'Tchiki Monkey Nut Bush'), +('12604', 'Strange Banana Tree'), +('12605', 'Light'), +('12606', 'Banana tree'), +('12607', 'Banana tree'), +('12608', 'Red Banana Tree'), +('12609', 'Red Banana Tree'), +('12610', 'null'), +('12611', 'null'), +('12612', 'null'), +('12613', 'null'), +('12614', 'null'), +('12615', 'Bush'), +('12616', 'Exit'), +('12617', 'Exit'), +('12618', 'Tropical tree'), +('12619', 'null'), +('12620', 'null'), +('12621', 'null'), +('12622', 'Vine'), +('12623', 'null'), +('12624', 'null'), +('12625', 'null'), +('12626', 'null'), +('12627', 'Tropical tree'), +('12628', 'null'), +('12629', 'null'), +('12630', 'null'), +('12631', 'null'), +('12632', 'null'), +('12633', 'null'), +('12634', 'Rock'), +('12635', 'Rock'), +('12636', 'Rock'), +('12637', 'Rock'), +('12638', 'null'), +('12639', 'null'), +('12640', 'null'), +('12641', 'null'), +('12642', 'null'), +('12643', 'null'), +('12644', 'null'), +('12645', 'null'), +('12646', 'null'), +('12647', 'null'), +('12648', 'null'), +('12649', 'null'), +('12650', 'null'), +('12651', 'null'), +('12652', 'null'), +('12653', 'null'), +('12654', 'null'), +('12655', 'null'), +('12656', 'null'), +('12657', 'Exit'), +('12658', 'null'), +('12659', 'null'), +('12660', 'null'), +('12661', 'Signpost'), +('12662', 'null'), +('12663', 'null'), +('12664', 'null'), +('12665', 'null'), +('12666', 'null'), +('12667', 'null'), +('12668', 'null'), +('12669', 'null'), +('12670', 'null'), +('12671', 'null'), +('12672', 'null'), +('12673', 'null'), +('12674', 'null'), +('12675', 'null'), +('12676', 'null'), +('12677', 'null'), +('12678', 'null'), +('12679', 'null'), +('12680', 'null'), +('12681', 'null'), +('12682', 'null'), +('12683', 'Bridge'), +('12684', 'Bridge'), +('12685', 'null'), +('12686', 'null'), +('12687', 'null'), +('12688', 'null'), +('12689', 'null'), +('12690', 'null'), +('12691', 'null'), +('12692', 'null'), +('12693', 'null'), +('12694', 'null'), +('12695', 'null'), +('12696', 'null'), +('12697', 'null'), +('12698', 'null'), +('12699', 'null'), +('12700', 'null'), +('12701', 'null'), +('12702', 'null'), +('12703', 'null'), +('12704', 'null'), +('12705', 'null'), +('12706', 'null'), +('12707', 'null'), +('12708', 'null'), +('12709', 'null'), +('12710', 'null'), +('12711', 'Grave'), +('12712', 'Grave'), +('12713', 'Grave'), +('12714', 'Grave'), +('12715', 'Grave'), +('12716', 'Gravestone'), +('12717', 'Gravestone'), +('12718', 'Gravestone'), +('12719', 'Gravestone'), +('12720', 'Gravestone'), +('12721', 'Grave'), +('12722', 'Grave'), +('12723', 'Grave'), +('12724', 'Grave'), +('12725', 'Grave'), +('12726', 'Grave'), +('12727', 'Grave'), +('12728', 'Grave'), +('12729', 'Grave'), +('12730', 'Grave'), +('12731', 'Mausoleum'), +('12732', 'Dead tree'), +('12733', 'Tree stump'), +('12734', 'Table'), +('12735', 'Closed chest'), +('12736', 'Open chest'), +('12737', 'Broken down wall'), +('12738', 'null'), +('12739', 'Rubble'), +('12740', 'Rubble'), +('12741', 'Fallen Wall'), +('12742', 'Rubble'), +('12743', 'null'), +('12744', 'Trapdoor'), +('12745', 'Trapdoor'), +('12746', 'Rubble'), +('12747', 'Pile of rubble.'), +('12748', 'Ladder'), +('12749', 'Rubble Pile'), +('12750', 'Plaque'), +('12751', 'null'), +('12752', 'null'), +('12753', 'null'), +('12754', 'null'), +('12755', 'null'), +('12756', 'null'), +('12757', 'null'), +('12758', 'null'), +('12759', 'null'), +('12760', 'null'), +('12761', 'Door'), +('12762', 'Crumbled wall'), +('12763', 'Trapdoor'), +('12764', 'Ladder'), +('12765', 'Keyhole'), +('12766', 'Bookcase'), +('12767', 'Bookcase'), +('12768', 'Closed chest'), +('12769', 'Open chest'), +('12770', 'Cave entrance'), +('12771', 'Cave entrance'), +('12772', 'null'), +('12773', 'Wooden boards'), +('12774', 'Rock'), +('12775', 'Marius'), +('12776', 'Low fence'), +('12777', 'Trapdoor'), +('12778', 'Trapdoor'), +('12779', 'Ladder'), +('12780', 'Ladder'), +('12781', 'Ladder'), +('12782', 'Broken Roof'), +('12783', 'Repaired roof'), +('12784', 'Bucket'), +('12785', 'Bucket'), +('12786', 'Repaired wall'), +('12787', 'Damaged wall'), +('12788', 'null'), +('12789', 'null'), +('12790', 'null'), +('12791', 'null'), +('12792', 'null'), +('12793', 'null'), +('12794', 'null'), +('12795', 'null'), +('12796', 'Fire'), +('12797', 'null'), +('12798', 'Bank Booth'), +('12799', 'Bank Booth'), +('12800', 'Bank Booth'), +('12801', 'Bank Booth'), +('12802', 'Tomb'), +('12803', 'null'), +('12804', 'Barrel'), +('12805', 'null'), +('12806', 'Broken furnace'), +('12807', 'Repaired furnace'), +('12808', 'Repaired furnace'), +('12809', 'Furnace'), +('12810', 'null'), +('12811', 'null'), +('12812', 'Rubble'), +('12813', 'Rubble'), +('12814', 'Rubble'), +('12815', 'Rubble'), +('12816', 'Gate'), +('12817', 'Gate'), +('12818', 'Gate'), +('12819', 'null'), +('12820', 'Exit path'), +('12821', 'null'), +('12822', 'null'), +('12823', 'null'), +('12824', 'null'), +('12825', 'null'), +('12826', 'null'), +('12827', 'null'), +('12828', 'null'), +('12829', 'null'), +('12830', 'null'), +('12831', 'null'), +('12832', 'null'), +('12833', 'null'), +('12834', 'null'), +('12835', 'null'), +('12836', 'null'), +('12837', 'null'), +('12838', 'null'), +('12839', 'null'), +('12840', 'null'), +('12841', 'null'), +('12842', 'null'), +('12843', 'null'), +('12844', 'Pile of bricks'), +('12845', 'null'), +('12846', 'null'), +('12847', 'null'), +('12848', 'null'), +('12849', 'null'), +('12850', 'null'), +('12851', 'null'), +('12852', 'null'), +('12853', 'null'), +('12854', 'null'), +('12855', 'Table'), +('12856', 'Store door'), +('12857', 'Bar pumps'), +('12858', 'null'), +('12859', 'null'), +('12860', 'null'), +('12861', 'null'), +('12862', 'null'), +('12863', 'null'), +('12864', 'null'), +('12865', 'null'), +('12866', 'null'), +('12867', 'null'), +('12868', 'null'), +('12869', 'null'), +('12870', 'null'), +('12871', 'null'), +('12872', 'Trapdoor'), +('12873', 'Bookcase'), +('12874', 'Crate'), +('12875', 'Wheelbarrow'), +('12876', 'Crate'), +('12877', 'Crates'), +('12878', 'Boxes'), +('12879', 'Crate'), +('12880', 'Bed'), +('12881', 'Bookcase'), +('12882', 'Bookcase'), +('12883', 'Bookcase'), +('12884', 'Table'), +('12885', 'Chair'), +('12886', 'Chair'), +('12887', 'Chair'), +('12888', 'Chair'), +('12889', 'Smashed chair'), +('12890', 'Barrel'), +('12891', 'Barrel'), +('12892', 'Small Table'), +('12893', 'null'), +('12894', 'Tree Stump'), +('12895', 'Tree'), +('12896', 'Tree'), +('12897', 'Well'), +('12898', 'null'), +('12899', 'null'), +('12900', 'null'), +('12901', 'null'), +('12902', 'null'), +('12903', 'null'), +('12904', 'null'), +('12905', 'null'), +('12906', 'Ladder'), +('12907', 'Ladder'), +('12908', 'null'), +('12909', 'null'), +('12910', 'null'), +('12911', 'null'), +('12912', 'null'), +('12913', 'null'), +('12914', 'null'), +('12915', 'null'), +('12916', 'null'), +('12917', 'null'), +('12918', 'null'), +('12919', 'null'), +('12920', 'null'), +('12921', 'null'), +('12922', 'null'), +('12923', 'null'), +('12924', 'null'), +('12925', 'null'), +('12926', 'null'), +('12927', 'null'), +('12928', 'null'), +('12929', 'null'), +('12930', 'null'), +('12931', 'null'), +('12932', 'null'), +('12933', 'Counter'), +('12934', 'null'), +('12935', 'null'), +('12936', 'null'), +('12937', 'null'), +('12938', 'null'), +('12939', 'null'), +('12940', 'null'), +('12941', 'Mineral vein'), +('12942', 'Mineral vein'), +('12943', 'Mineral vein'), +('12944', 'null'), +('12945', 'null'), +('12946', 'null'), +('12947', 'null'), +('12948', 'null'), +('12949', 'null'), +('12950', 'null'), +('12951', 'null'), +('12952', 'null'), +('12953', 'null'), +('12954', 'null'), +('12955', 'null'), +('12956', 'null'), +('12957', 'null'), +('12958', 'null'), +('12959', 'null'), +('12960', 'null'), +('12961', 'Crate'), +('12962', 'Table'), +('12963', 'Crate'), +('12964', 'Ladder'), +('12965', 'Ladder'), +('12966', 'Ladder'), +('12967', 'Barrel'), +('12968', 'Barrel'), +('12969', 'Cooking pot'), +('12970', 'Bed'), +('12971', 'Table'), +('12972', 'Table'), +('12973', 'Chair'), +('12974', 'Sink'), +('12975', 'null'), +('12976', 'null'), +('12977', 'Crate'), +('12978', 'Crate'), +('12979', 'Rocking chair'), +('12980', 'Shelves'), +('12981', 'Hat stand'), +('12982', 'Stile'), +('12983', 'null'), +('12984', 'null'), +('12985', 'null'), +('12986', 'Gate'), +('12987', 'Gate'), +('12988', 'Gate'), +('12989', 'Gate'), +('12990', 'null'), +('12991', 'null'), +('12992', 'null'), +('12993', 'null'), +('12994', 'null'), +('12995', 'null'), +('12996', 'null'), +('12997', 'null'), +('12998', 'null'), +('12999', 'null'), +('13000', 'null'), +('13001', 'Door'), +('13002', 'Door'), +('13003', 'Closed chest'), +('13004', 'Open chest'), +('13005', 'null'), +('13006', 'Door'), +('13007', 'Door'), +('13008', 'Door'), +('13009', 'Door'), +('13010', 'null'), +('13011', 'null'), +('13012', 'null'), +('13013', 'null'), +('13014', 'null'), +('13015', 'Door'), +('13016', 'Door'), +('13017', 'Door'), +('13018', 'Door'), +('13019', 'null'), +('13020', 'null'), +('13021', 'null'), +('13022', 'null'), +('13023', 'null'), +('13024', 'null'), +('13025', 'null'), +('13026', 'null'), +('13027', 'null'), +('13028', 'null'), +('13029', 'null'), +('13030', 'null'), +('13031', 'null'), +('13032', 'null'), +('13033', 'null'), +('13034', 'null'), +('13035', 'null'), +('13036', 'null'), +('13037', 'null'), +('13038', 'null'), +('13039', 'null'), +('13040', 'null'), +('13041', 'null'), +('13042', 'null'), +('13043', 'null'), +('13044', 'null'), +('13045', 'null'), +('13046', 'null'), +('13047', 'null'), +('13048', 'null'), +('13049', 'null'), +('13050', 'null'), +('13051', 'null'), +('13052', 'null'), +('13053', 'null'), +('13054', 'null'), +('13055', 'null'), +('13056', 'null'), +('13057', 'null'), +('13058', 'null'), +('13059', 'null'), +('13060', 'null'), +('13061', 'null'), +('13062', 'null'), +('13063', 'null'), +('13064', 'null'), +('13065', 'null'), +('13066', 'null'), +('13067', 'null'), +('13068', 'null'), +('13069', 'null'), +('13070', 'null'), +('13071', 'null'), +('13072', 'null'), +('13073', 'null'), +('13074', 'null'), +('13075', 'null'), +('13076', 'null'), +('13077', 'null'), +('13078', 'null'), +('13079', 'null'), +('13080', 'null'), +('13081', 'null'), +('13082', 'null'), +('13083', 'null'), +('13084', 'null'), +('13085', 'null'), +('13086', 'null'), +('13087', 'null'), +('13088', 'null'), +('13089', 'null'), +('13090', 'null'), +('13091', 'null'), +('13092', 'null'), +('13093', 'null'), +('13094', 'Large door'), +('13095', 'Large door'), +('13096', 'Large door'), +('13097', 'Large door'), +('13098', 'null'), +('13099', 'null'), +('13100', 'Door'), +('13101', 'Door'), +('13102', 'Door'), +('13103', 'Door'), +('13104', 'Hazelmere statue'), +('13105', 'Glouphrie statue'), +('13106', 'Glouphrie statue'), +('13107', 'Door'), +('13108', 'Door'), +('13109', 'Door'), +('13110', 'Door'), +('13111', 'null'), +('13112', 'null'), +('13113', 'null'), +('13114', 'Ornament'), +('13115', 'Goblin crowd'), +('13116', 'null'), +('13117', 'null'), +('13118', 'Door'), +('13119', 'Door'), +('13120', 'Door'), +('13121', 'Door'), +('13122', 'null'), +('13123', 'null'), +('13124', 'null'), +('13125', 'null'), +('13126', 'Boxing mat'), +('13127', 'Boxing mat'), +('13128', 'Boxing mat'), +('13129', 'Boxing ring'), +('13130', 'Boxing ring'), +('13131', 'Boxing ring'), +('13132', 'Boxing ring'), +('13133', 'Fencing ring'), +('13134', 'Fencing ring'), +('13135', 'Fencing ring'), +('13136', 'Fencing ring'), +('13137', 'Combat ring'), +('13138', 'Combat ring'), +('13139', 'Combat ring'), +('13140', 'Combat ring'), +('13141', 'Nothing'), +('13142', 'Balance beam'), +('13143', 'Balance beam'), +('13144', 'Balance beam'), +('13145', 'Magic barrier'), +('13146', 'Magic barrier'), +('13147', 'Ranging spot'), +('13148', 'Bed'), +('13149', 'Bed'), +('13150', 'Bed'), +('13151', 'Bed'), +('13152', 'Bed'), +('13153', 'Bed'), +('13154', 'Bed'), +('13155', 'Shoe box'), +('13156', 'Oak drawers'), +('13157', 'Oak wardrobe'), +('13158', 'Teak drawers'), +('13159', 'Teak wardrobe'), +('13160', 'Mahogany Wardrobe'), +('13161', 'Gilded wardrobe'), +('13162', 'Shaving stand'), +('13163', 'Shaving stand'), +('13164', 'Dresser'), +('13165', 'Dresser'), +('13166', 'Dresser'), +('13167', 'Dresser'), +('13168', 'Dresser'), +('13169', 'Clock'), +('13170', 'Clock'), +('13171', 'Clock'), +('13172', 'Symbol of Saradomin'), +('13173', 'Symbol of Zamorak'), +('13174', 'Symbol of Guthix'), +('13175', 'Icon of Saradomin'), +('13176', 'Icon of Zamorak'), +('13177', 'Icon of Guthix'), +('13178', 'Icon of Bob'), +('13179', 'Altar'), +('13180', 'Altar'), +('13181', 'Altar'), +('13182', 'Altar'), +('13183', 'Altar'), +('13184', 'Altar'), +('13185', 'Altar'), +('13186', 'Altar'), +('13187', 'Altar'), +('13188', 'Altar'), +('13189', 'Altar'), +('13190', 'Altar'), +('13191', 'Altar'), +('13192', 'Altar'), +('13193', 'Altar'), +('13194', 'Altar'), +('13195', 'Altar'), +('13196', 'Altar'), +('13197', 'Altar'), +('13198', 'Altar'), +('13199', 'Altar'), +('13200', 'Torch'), +('13201', 'Torch'), +('13202', 'Torch'), +('13203', 'Torch'), +('13204', 'Torch'), +('13205', 'Torch'), +('13206', 'Torch'), +('13207', 'Torch'), +('13208', 'Incense burner'), +('13209', 'Incense burner'), +('13210', 'Incense burner'), +('13211', 'Incense burner'), +('13212', 'Incense burner'), +('13213', 'Incense burner'), +('13214', 'Windchimes'), +('13215', 'Bells'), +('13216', 'Organ'), +('13217', 'Shuttered window'), +('13218', 'Decorative window'), +('13219', 'Stained-glass window'), +('13220', 'Decorative window'), +('13221', 'Stained-glass window'), +('13222', 'Decorative window'), +('13223', 'Stained-glass window'), +('13224', 'Decorative window'), +('13225', 'Stained-glass window'), +('13226', 'Shuttered window'), +('13227', 'Decorative window'), +('13228', 'Stained-glass window'), +('13229', 'Decorative window'), +('13230', 'Stained-glass window'), +('13231', 'Decorative window'), +('13232', 'Stained-glass window'), +('13233', 'Decorative window'), +('13234', 'Stained-glass window'), +('13235', 'Shuttered window'), +('13236', 'Decorative window'), +('13237', 'Stained-glass window'), +('13238', 'Decorative window'), +('13239', 'Stained-glass window'), +('13240', 'Decorative window'), +('13241', 'Stained-glass window'), +('13242', 'Decorative window'), +('13243', 'Stained-glass window'), +('13244', 'Shuttered window'), +('13245', 'Decorative window'), +('13246', 'Stained-glass window'), +('13247', 'Decorative window'), +('13248', 'Stained-glass window'), +('13249', 'Decorative window'), +('13250', 'Stained-glass window'), +('13251', 'Decorative window'), +('13252', 'Stained-glass window'), +('13253', 'Shuttered window'), +('13254', 'Decorative window'), +('13255', 'Stained-glass window'), +('13256', 'Decorative window'), +('13257', 'Stained-glass window'), +('13258', 'Decorative window'), +('13259', 'Stained-glass window'), +('13260', 'Decorative window'), +('13261', 'Stained-glass window'), +('13262', 'Shuttered window'), +('13263', 'Decorative window'), +('13264', 'Stained-glass window'), +('13265', 'Decorative window'), +('13266', 'Stained-glass window'), +('13267', 'Decorative window'), +('13268', 'Stained-glass window'), +('13269', 'Decorative window'), +('13270', 'Stained-glass window'), +('13271', 'Statue'), +('13272', 'Statue'), +('13273', 'Statue'), +('13274', 'Statue'), +('13275', 'Statue'), +('13276', 'Statue'), +('13277', 'Statue'), +('13278', 'Statue'), +('13279', 'Statue'), +('13280', 'Statue'), +('13281', 'Statue'), +('13282', 'Statue'), +('13283', 'Wooden crate'), +('13284', 'Wooden crate'), +('13285', 'Oak chest'), +('13286', 'Oak chest'), +('13287', 'Teak chest'), +('13288', 'Teak chest'), +('13289', 'Mahogany chest'), +('13290', 'Mahogany chest'), +('13291', 'Magic chest'), +('13292', 'Magic chest'), +('13293', 'Wooden table'), +('13294', 'Oak table'), +('13295', 'Oak table'), +('13296', 'Teak table'), +('13297', 'Teak table'), +('13298', 'Mahogany table'), +('13299', 'Opulent table'), +('13300', 'Wooden bench'), +('13301', 'Oak bench'), +('13302', 'Carved oak bench'), +('13303', 'Teak bench'), +('13304', 'Carved teak bench'), +('13305', 'Mahogany bench'), +('13306', 'Gilded bench'), +('13307', 'Rope bell-pull'), +('13308', 'Bell-pull'), +('13309', 'Posh bell-pull'), +('13310', 'Skeleton'), +('13311', 'Pipe'), +('13312', 'Blood'), +('13313', 'Cage'), +('13314', 'Door'), +('13315', 'Door'), +('13316', 'Cage'), +('13317', 'Door'), +('13318', 'Door'), +('13319', 'Cage'), +('13320', 'Door'), +('13321', 'Door'), +('13322', 'Cage'), +('13323', 'Door'), +('13324', 'Door'), +('13325', 'Cage'), +('13326', 'Door'), +('13327', 'Door'), +('13328', 'Ladder'), +('13329', 'Ladder'), +('13330', 'Ladder'), +('13331', 'Slimy water'), +('13332', 'Slimy water'), +('13333', 'Slimy water'), +('13334', 'Spikes'), +('13335', 'Spikes'), +('13336', 'Spikes'), +('13337', 'Fire'), +('13338', 'Floor'), +('13339', 'Floor'), +('13340', 'Floor'), +('13341', 'Torch'), +('13342', 'Candle'), +('13343', 'Skull'), +('13344', 'Door'), +('13345', 'Door'), +('13346', 'Door'), +('13347', 'Door'), +('13348', 'Door'), +('13349', 'Door'), +('13350', 'Door'), +('13351', 'Door'), +('13352', 'Door'), +('13353', 'Door'), +('13354', 'Door'), +('13355', 'Door'), +('13356', 'Spike trap'), +('13357', 'Man trap'), +('13358', 'Tangle vine'), +('13359', 'Marble trap'), +('13360', 'Teleport trap'), +('13361', 'Spike hidden'), +('13362', 'Man hidden'), +('13363', 'Tangle hidden'), +('13364', 'Marble hidden'), +('13365', 'Teleport hidden'), +('13366', 'Bones'), +('13367', 'Guard dog'), +('13368', 'Hobgoblin'), +('13369', 'Troll'), +('13370', 'Huge Spider'), +('13371', 'null'), +('13372', 'Baby red dragon'), +('13373', 'Rocnar'), +('13374', 'Kalphite Soldier'), +('13375', 'Steel dragon'), +('13376', 'Dagannoth'), +('13377', 'Tok-Xil'), +('13378', 'Demon'), +('13379', 'Treasure Hunt Fairy House'), +('13380', 'Treasure Hunt Fairy House'), +('13381', 'Glove Rack'), +('13382', 'Weapons Rack'), +('13383', 'Weapons Rack'), +('13384', 'Oak prize chest'), +('13385', 'Oak prize chest'), +('13386', 'Teak prize chest'), +('13387', 'Teak prize chest'), +('13388', 'Mahogany prize chest'), +('13389', 'Mahogany prize chest'), +('13390', 'Jacky Jester'), +('13391', 'Jacky Jester'), +('13392', 'Attack stone'), +('13393', 'Attack stone'), +('13394', 'Attack stone'), +('13395', 'Elemental balance'), +('13396', 'Elemental balance'), +('13397', 'Elemental balance'), +('13398', 'Stick'), +('13399', 'Stick and hoop'), +('13400', 'Dartboard'), +('13401', 'Dartboard'), +('13402', 'Archery target'), +('13403', 'Archery target'), +('13404', 'Hangman game'), +('13405', 'Portal'), +('13406', 'Rock'), +('13407', 'Pond'), +('13408', 'Statue'), +('13409', 'Dungeon entrance'), +('13410', 'null'), +('13411', 'Dead tree'), +('13412', 'Tree'), +('13413', 'Oak tree'), +('13414', 'Willow tree'), +('13415', 'Maple tree'), +('13416', 'Yew tree'), +('13417', 'Magic tree'), +('13418', 'Dead Tree'), +('13419', 'Tree'), +('13420', 'Oak Tree'), +('13421', 'Willow Tree'), +('13422', 'Yew tree'), +('13423', 'Maple tree'), +('13424', 'Magic tree'), +('13425', 'Fern'), +('13426', 'Bush'), +('13427', 'Tall Plant'), +('13428', 'Short Plant'), +('13429', 'Large-leaf Plant'), +('13430', 'Huge plant'), +('13431', 'Plant'), +('13432', 'Small fern'), +('13433', 'Fern'), +('13434', 'Dock Leaf'), +('13435', 'Thistle'), +('13436', 'Reeds'), +('13437', 'Rosemary'), +('13438', 'Daffodils'), +('13439', 'Bluebells'), +('13440', 'Rosemary'), +('13441', 'Daffodils'), +('13442', 'Bluebells'), +('13443', 'Sunflower'), +('13444', 'Marigolds'), +('13445', 'Roses'), +('13446', 'Sunflowers'), +('13447', 'Marigolds'), +('13448', 'Roses'), +('13449', 'Boundary stones'), +('13450', 'Wooden fence'), +('13451', 'Stone wall'), +('13452', 'Iron railings'), +('13453', 'Picket fence'), +('13454', 'Garden fence'), +('13455', 'Marble wall'), +('13456', 'Hedge'), +('13457', 'Hedge'), +('13458', 'Hedge'), +('13459', 'Hedge'), +('13460', 'Hedge'), +('13461', 'Hedge'), +('13462', 'Hedge'), +('13463', 'Hedge'), +('13464', 'Hedge'), +('13465', 'Hedge'), +('13466', 'Hedge'), +('13467', 'Hedge'), +('13468', 'Hedge'), +('13469', 'Hedge'), +('13470', 'Hedge'), +('13471', 'Hedge'), +('13472', 'Hedge'), +('13473', 'Hedge'), +('13474', 'Hedge'), +('13475', 'Hedge'), +('13476', 'Hedge'), +('13477', 'Gazebo'), +('13478', 'Small fountain'), +('13479', 'Large fountain'), +('13480', 'Ornamental fountain'), +('13481', 'Crawling hand'), +('13482', 'Cockatrice head'), +('13483', 'Basilisk head'), +('13484', 'Kurask head'), +('13485', 'Abyssal demon head'), +('13486', 'KBD heads'), +('13487', 'KQ head'), +('13488', 'Mounted sea bass'), +('13489', 'Mounted swordfish'), +('13490', 'Mounted shark'), +('13491', 'Mithril armour'), +('13492', 'Adamant armour'), +('13493', 'Rune armour'), +('13494', 'null'), +('13495', 'White Castlewars armour'), +('13496', 'Gold Castlewars armour'), +('13497', 'Staircase'), +('13498', 'Staircase'), +('13499', 'Staircase'), +('13500', 'Staircase'), +('13501', 'Staircase'), +('13502', 'Staircase'), +('13503', 'Staircase'), +('13504', 'Staircase'), +('13505', 'Staircase'), +('13506', 'Staircase'), +('13507', 'Rune display case'), +('13508', 'Rune display case'), +('13509', 'Rune display case'), +('13510', 'Portrait'), +('13511', 'Portrait'), +('13512', 'Painting'), +('13513', 'Portrait'), +('13514', 'Desert painting'), +('13515', 'Isafdar painting'), +('13516', 'Karamja painting'), +('13517', 'Lumbridge painting'), +('13518', 'Morytania painting'), +('13519', 'Silverlight'), +('13520', 'Darklight'), +('13521', 'Excalibur'), +('13522', 'Anti-Dragon Breath Shield'), +('13523', 'Amulet of Glory'), +('13524', 'Cape of Legends'), +('13525', 'Map'), +('13526', 'Map'), +('13527', 'Map'), +('13528', 'Firepit'), +('13529', 'Firepit with hook'), +('13530', 'Firepit with hook'), +('13531', 'Firepit with pot'), +('13532', 'Firepit with pot'), +('13533', 'Small oven'), +('13534', 'Small Oven'), +('13535', 'Small oven'), +('13536', 'Large oven'), +('13537', 'Large oven'), +('13538', 'Large oven'), +('13539', 'Steel range'), +('13540', 'Steel range'), +('13541', 'Steel range'), +('13542', 'Fancy range'), +('13543', 'Fancy range'), +('13544', 'Fancy range'), +('13545', 'Shelves'), +('13546', 'Shelves'), +('13547', 'Shelves'), +('13548', 'Shelves'), +('13549', 'Shelves'), +('13550', 'Shelves'), +('13551', 'Shelves'), +('13552', 'Shelves'), +('13553', 'Shelves'), +('13554', 'Shelves'), +('13555', 'Shelves'), +('13556', 'Shelves'), +('13557', 'Shelves'), +('13558', 'Shelves'), +('13559', 'Pump and drain'), +('13560', 'Pump and drain'), +('13561', 'Pump and tub'), +('13562', 'Pump and tub'), +('13563', 'Sink'), +('13564', 'Sink'), +('13565', 'Larder'), +('13566', 'Larder'), +('13567', 'Larder'), +('13568', 'Beer barrel'), +('13569', 'Cider barrel'), +('13570', 'Asgarnian ale'), +('13571', 'Greenman's ale'), +('13572', 'Dragon bitter'), +('13573', 'Chef's Delight'), +('13574', 'Pet blanket'), +('13575', 'Pet basket'), +('13576', 'Pet basket'), +('13577', 'Wooden table'), +('13578', 'Oak table'), +('13579', 'Teak table'), +('13580', 'Pet blanket'), +('13581', 'Chair'), +('13582', 'Chair'), +('13583', 'Chair'), +('13584', 'Chair'), +('13585', 'Chair'), +('13586', 'Chair'), +('13587', 'Chair'), +('13588', 'Rug'), +('13589', 'Rug'), +('13590', 'Rug'), +('13591', 'Rug'), +('13592', 'Rug'), +('13593', 'Rug'), +('13594', 'Rug'), +('13595', 'Rug'), +('13596', 'Rug'), +('13597', 'Bookcase'), +('13598', 'Bookcase'), +('13599', 'Bookcase'), +('13600', 'Scroll rack'), +('13601', 'Scroll rack'), +('13602', 'Scroll rack'), +('13603', 'Curtains'), +('13604', 'Curtains'), +('13605', 'Curtains'), +('13606', 'Wall decoration'), +('13607', 'Wall decoration'), +('13608', 'Wall decoration'), +('13609', 'Clay fireplace'), +('13610', 'Clay fireplace'), +('13611', 'Limestone fireplace'), +('13612', 'Limestone fireplace'), +('13613', 'Marble fireplace'), +('13614', 'Marble fireplace'), +('13615', 'Varrock Portal'), +('13616', 'Lumbridge Portal'), +('13617', 'Falador Portal'), +('13618', 'Camelot Portal'), +('13619', 'Ardougne Portal'), +('13620', 'Yanille Portal'), +('13621', 'Kharyrll Portal'), +('13622', 'Varrock Portal'), +('13623', 'Lumbridge Portal'), +('13624', 'Falador Portal'), +('13625', 'Camelot Portal'), +('13626', 'Ardougne Portal'), +('13627', 'Yanille Portal'), +('13628', 'Kharyrll Portal'), +('13629', 'Varrock Portal'), +('13630', 'Lumbridge Portal'), +('13631', 'Falador Portal'), +('13632', 'Camelot Portal'), +('13633', 'Ardougne Portal'), +('13634', 'Yanille Portal'), +('13635', 'Kharyrll Portal'), +('13636', 'Portal frame'), +('13637', 'Portal frame'), +('13638', 'Portal frame'), +('13639', 'Scrying pool'), +('13640', 'Teleportation focus'), +('13641', 'Greater teleport focus'), +('13642', 'Lectern'), +('13643', 'Lectern'), +('13644', 'Lectern'), +('13645', 'Lectern'), +('13646', 'Lectern'), +('13647', 'Lectern'), +('13648', 'Lectern'), +('13649', 'Globe'), +('13650', 'Ornamental globe'), +('13651', 'Lunar globe'), +('13652', 'Celestial globe'), +('13653', 'Armillary sphere'), +('13654', 'Small orrery'), +('13655', 'Large orrery'), +('13656', 'Telescope'), +('13657', 'Telescope'), +('13658', 'Telescope'), +('13659', 'Crystal ball'), +('13660', 'Elemental sphere'), +('13661', 'Crystal of power'), +('13662', 'Alchemical chart'), +('13663', 'Astronomical chart'), +('13664', 'Infernal chart'), +('13665', 'Throne'), +('13666', 'Throne'), +('13667', 'Throne'), +('13668', 'Throne'), +('13669', 'Throne'), +('13670', 'Throne'), +('13671', 'Throne'), +('13672', 'Lever'), +('13673', 'Lever'), +('13674', 'Lever'), +('13675', 'Trapdoor'), +('13676', 'Trapdoor'), +('13677', 'Trapdoor'), +('13678', 'Trapdoor'), +('13679', 'Trapdoor'), +('13680', 'Trapdoor'), +('13681', 'Steel cage'), +('13682', 'Magic circle'), +('13683', 'Greater magic circle'), +('13684', 'Floor decoration'), +('13685', 'Floor decoration'), +('13686', 'Floor decoration'), +('13687', 'Floor decoration'), +('13688', 'Floor decoration'), +('13689', 'Floor decoration'), +('13690', 'Hanging'), +('13691', 'Decoration'), +('13692', 'Decoration'), +('13693', 'Decoration'), +('13694', 'Teak bench'), +('13695', 'Mahogany bench'), +('13696', 'Gilded bench'), +('13697', 'Nothing'), +('13698', 'Throne'), +('13699', 'Tools'), +('13700', 'Tools'), +('13701', 'Tools'), +('13702', 'Tools'), +('13703', 'Tools'), +('13704', 'Workbench'), +('13705', 'Workbench'), +('13706', 'Workbench'), +('13707', 'Workbench'), +('13708', 'Workbench'), +('13709', 'Clockmaker's bench'), +('13710', 'Clockmaker's bench'), +('13711', 'Clockmaker's bench'), +('13712', 'Clockmaker's bench'), +('13713', 'Repair bench'), +('13714', 'Whetstone'), +('13715', 'Armour repair stand'), +('13716', 'Helmet pluming stand'), +('13717', 'Painting stand'), +('13718', 'Banner making stand'), +('13719', 'Stool'), +('13720', 'Stool'), +('13721', 'Nothing'), +('13722', 'Nothing'), +('13723', 'Nothing'), +('13724', 'Nothing'), +('13725', 'null'), +('13726', 'Jacky Jester'), +('13727', 'Jacky Jester'), +('13728', 'Window space'), +('13729', 'Window space'), +('13730', 'Window space'), +('13731', 'Window space'), +('13732', 'Window space'), +('13733', 'Window space'), +('13734', 'Round shield'), +('13735', 'Round shield'), +('13736', 'Round shield'), +('13737', 'Round shield'), +('13738', 'Round shield'), +('13739', 'Round shield'), +('13740', 'Round shield'), +('13741', 'Round shield'), +('13742', 'Round shield'), +('13743', 'Round shield'), +('13744', 'Round shield'), +('13745', 'Round shield'), +('13746', 'Round shield'), +('13747', 'Round shield'), +('13748', 'Round shield'), +('13749', 'Round shield'), +('13750', 'Kite shield'), +('13751', 'Kite shield'), +('13752', 'Kite shield'), +('13753', 'Kite shield'), +('13754', 'Kite shield'), +('13755', 'Kite shield'), +('13756', 'Kite shield'), +('13757', 'Kite shield'), +('13758', 'Kite shield'), +('13759', 'Kite shield'), +('13760', 'Kite shield'), +('13761', 'Kite shield'), +('13762', 'Kite shield'), +('13763', 'Kite shield'), +('13764', 'Kite shield'), +('13765', 'Kite shield'), +('13766', 'Square shield'), +('13767', 'Square shield'), +('13768', 'Square shield'), +('13769', 'Square shield'), +('13770', 'Square shield'), +('13771', 'Square shield'), +('13772', 'Square shield'), +('13773', 'Square shield'), +('13774', 'Square shield'), +('13775', 'Square shield'), +('13776', 'Square shield'), +('13777', 'Square shield'), +('13778', 'Square shield'), +('13779', 'Square shield'), +('13780', 'Square shield'), +('13781', 'Square shield'), +('13782', 'Mahogany wall decoration'), +('13783', 'Mahogany wall decoration'), +('13784', 'Mahogany wall decoration'), +('13785', 'Mahogany wall decoration'), +('13786', 'Mahogany wall decoration'), +('13787', 'Mahogany wall decoration'), +('13788', 'Mahogany wall decoration'), +('13789', 'Mahogany wall decoration'), +('13790', 'Mahogany wall decoration'), +('13791', 'Mahogany wall decoration'), +('13792', 'Mahogany wall decoration'), +('13793', 'Mahogany wall decoration'), +('13794', 'Mahogany wall decoration'), +('13795', 'Mahogany wall decoration'), +('13796', 'Mahogany wall decoration'), +('13797', 'Mahogany wall decoration'), +('13798', 'Oak wall decoration'), +('13799', 'Oak wall decoration'), +('13800', 'Oak wall decoration'), +('13801', 'Oak wall decoration'), +('13802', 'Oak wall decoration'), +('13803', 'Oak wall decoration'), +('13804', 'Oak wall decoration'), +('13805', 'Oak wall decoration'), +('13806', 'Oak wall decoration'), +('13807', 'Oak wall decoration'), +('13808', 'Oak wall decoration'), +('13809', 'Oak wall decoration'), +('13810', 'Oak wall decoration'), +('13811', 'Oak wall decoration'), +('13812', 'Oak wall decoration'), +('13813', 'Oak wall decoration'), +('13814', 'Teak wall decoration'), +('13815', 'Teak wall decoration'), +('13816', 'Teak wall decoration'), +('13817', 'Teak wall decoration'), +('13818', 'Teak wall decoration'), +('13819', 'Teak wall decoration'), +('13820', 'Teak wall decoration'), +('13821', 'Teak wall decoration'), +('13822', 'Teak wall decoration'), +('13823', 'Teak wall decoration'), +('13824', 'Teak wall decoration'), +('13825', 'Teak wall decoration'), +('13826', 'Teak wall decoration'), +('13827', 'Teak wall decoration'), +('13828', 'Teak wall decoration'), +('13829', 'Teak wall decoration'), +('13830', 'Window'), +('13831', 'Path'), +('13832', 'Path'), +('13833', 'Path'), +('13834', 'Broken bridge'), +('13835', 'Partially broken bridge'), +('13836', 'Slightly broken bridge'), +('13837', 'Fixed bridge'), +('13838', 'Bog'), +('13839', 'Bog'), +('13840', 'Spiny bush'), +('13841', 'Row boat'), +('13842', 'Ripples'), +('13843', 'Swamp tree'), +('13844', 'Swamp tree'), +('13845', 'Swamp tree'), +('13846', 'Vine hanging from branch'), +('13847', 'Swamp tree'), +('13848', 'Swamp tree'), +('13849', 'Swamp tree'), +('13850', 'Swamp tree'), +('13851', 'null'), +('13852', 'null'), +('13853', 'null'), +('13854', 'null'), +('13855', 'null'), +('13856', 'null'), +('13857', 'null'), +('13858', 'null'), +('13859', 'null'), +('13860', 'null'), +('13861', 'null'), +('13862', 'null'), +('13863', 'null'), +('13864', 'Boat'), +('13865', 'null'), +('13866', 'Path'), +('13867', 'Path'), +('13868', 'Path'), +('13869', 'Path'), +('13870', 'Path'), +('13871', 'Path'), +('13872', 'Backpack'), +('13873', 'Signpost'), +('13874', 'null'), +('13875', 'null'), +('13876', 'null'), +('13877', 'null'), +('13878', 'Exit'), +('13879', 'Exit'), +('13880', 'null'), +('13881', 'Fire'), +('13882', 'Exit'), +('13883', 'null'), +('13884', 'null'), +('13885', 'null'), +('13886', 'null'), +('13887', 'null'), +('13888', 'null'), +('13889', 'null'), +('13890', 'null'), +('13891', 'Dark hole'), +('13892', 'Dark hole'), +('13893', 'Dark hole'), +('13894', 'Dark hole'), +('13895', 'Dark hole'), +('13896', 'Dark hole'), +('13897', 'null'), +('13898', 'null'), +('13899', 'Black hole'), +('13900', 'Black hole'), +('13901', 'Exit'), +('13902', 'null'), +('13903', 'null'), +('13904', 'Exit'), +('13905', 'null'), +('13906', 'null'), +('13907', 'null'), +('13908', 'null'), +('13909', 'null'), +('13910', 'null'), +('13911', 'null'), +('13912', 'null'), +('13913', 'Confusing door'), +('13914', 'Confusing door'), +('13915', 'Confusing door'), +('13916', 'Confusing door'), +('13917', 'Confusing door'), +('13918', 'Confusing door'), +('13919', 'Confusing door'), +('13920', 'Confusing door'), +('13921', 'Confusing door'), +('13922', 'Confusing door'), +('13923', 'Confusing door'), +('13924', 'Confusing door'), +('13925', 'Hole'), +('13926', 'null'), +('13927', 'null'), +('13928', 'null'), +('13929', 'null'), +('13930', 'null'), +('13931', 'null'), +('13932', 'Exit'), +('13933', 'Exit'), +('13934', 'null'), +('13935', 'null'), +('13936', 'null'), +('13937', 'null'), +('13938', 'Hope bridge'), +('13939', 'Hope bridge'), +('13940', 'Hope bridge'), +('13941', 'Hope bridge'), +('13942', 'Hope bridge'), +('13943', 'Hope bridge'), +('13944', 'Hope bridge'), +('13945', 'Hope bridge'), +('13946', 'Hope bridge'), +('13947', 'Hope bridge'), +('13948', 'Hope bridge'), +('13949', 'Hope bridge'), +('13950', 'Hope bridge'), +('13951', 'Hope bridge'), +('13952', 'Hope bridge'), +('13953', 'Hope bridge'), +('13954', 'Hope bridge'), +('13955', 'Hope bridge'), +('13956', 'Hope bridge'), +('13957', 'Hope bridge'), +('13958', 'Hope bridge'), +('13959', 'Hope bridge'), +('13960', 'Hope bridge'), +('13961', 'Hope bridge'), +('13962', 'null'), +('13963', 'null'), +('13964', 'null'), +('13965', 'null'), +('13966', 'null'), +('13967', 'Rift'), +('13968', 'null'), +('13969', 'Rift'), +('13970', 'Rift'), +('13971', 'Rift'), +('13972', 'Rift'), +('13973', 'Rift'), +('13974', 'Rift'), +('13975', 'Rift'), +('13976', 'Rift'), +('13977', 'Rift'), +('13978', 'Rift'), +('13979', 'Rift'), +('13980', 'Rift'), +('13981', 'null'), +('13982', 'null'), +('13983', 'null'), +('13984', 'null'), +('13985', 'null'), +('13986', 'null'), +('13987', 'null'), +('13988', 'null'), +('13989', 'null'), +('13990', 'null'), +('13991', 'null'), +('13992', 'null'), +('13993', 'null'), +('13994', 'Weapon rack'), +('13995', 'Weapon rack'), +('13996', 'Weapon rack'), +('13997', 'Weapon rack'), +('13998', 'Weapon rack'), +('13999', 'Rope'), +('14000', 'null'), +('14001', 'null'), +('14002', 'Warning sign'), +('14003', 'Grass'), +('14004', 'null'), +('14005', 'Pot-boiler'), +('14006', 'Pot-boiler'), +('14007', 'Pot-boiler'), +('14008', 'Pot-boiler'), +('14009', 'Pot-boiler'), +('14010', 'Wish-list'), +('14011', 'Market stall'), +('14012', 'Market stall'), +('14013', 'Massive ribs'), +('14014', 'null'), +('14015', 'null'), +('14016', 'Box of bones'), +('14017', 'Box of bones'), +('14018', 'Bones'), +('14019', 'Bones'), +('14020', 'Bones'), +('14021', 'Bones'), +('14022', 'Bones'), +('14023', 'Bones'), +('14024', 'Bones'), +('14025', 'Bones'), +('14026', 'Bones'), +('14027', 'Bones'), +('14028', 'Bones'), +('14029', 'Bones'), +('14030', 'Bones'), +('14031', 'Bones'), +('14032', 'Bones'), +('14033', 'null'), +('14034', 'null'), +('14035', 'Fishing Contest Banner'), +('14036', 'null'), +('14037', 'null'), +('14038', 'null'), +('14039', 'null'), +('14040', 'Bonzo's Table'), +('14041', 'Bonzo's Table'), +('14042', 'null'), +('14043', 'Barrel'), +('14044', 'Table'), +('14045', 'Bed'), +('14046', 'null'), +('14047', 'null'), +('14048', 'null'), +('14049', 'Table'), +('14050', 'Chair'), +('14051', 'Small Table'), +('14052', 'null'), +('14053', 'null'), +('14054', 'null'), +('14055', 'null'), +('14056', 'null'), +('14057', 'null'), +('14058', 'Fairy ring'), +('14059', 'null'), +('14060', 'null'), +('14061', 'Fairy ring'), +('14062', 'null'), +('14063', 'null'), +('14064', 'Fairy ring'), +('14065', 'null'), +('14066', 'null'), +('14067', 'Fairy ring'), +('14068', 'null'), +('14069', 'null'), +('14070', 'Fairy ring'), +('14071', 'null'), +('14072', 'null'), +('14073', 'Fairy ring'), +('14074', 'null'), +('14075', 'null'), +('14076', 'Fairy ring'), +('14077', 'null'), +('14078', 'null'), +('14079', 'Fairy ring'), +('14080', 'null'), +('14081', 'null'), +('14082', 'Fairy ring'), +('14083', 'null'), +('14084', 'null'), +('14085', 'Fairy ring'), +('14086', 'null'), +('14087', 'null'), +('14088', 'Fairy ring'), +('14089', 'null'), +('14090', 'null'), +('14091', 'Fairy ring'), +('14092', 'null'), +('14093', 'null'), +('14094', 'Fairy ring'), +('14095', 'null'), +('14096', 'null'), +('14097', 'Fairy ring'), +('14098', 'null'), +('14099', 'null'), +('14100', 'Fairy ring'), +('14101', 'null'), +('14102', 'null'), +('14103', 'Fairy ring'), +('14104', 'null'), +('14105', 'null'), +('14106', 'Fairy ring'), +('14107', 'null'), +('14108', 'null'), +('14109', 'Fairy ring'), +('14110', 'null'), +('14111', 'null'), +('14112', 'Fairy ring'), +('14113', 'null'), +('14114', 'null'), +('14115', 'Fairy ring'), +('14116', 'null'), +('14117', 'null'), +('14118', 'Fairy ring'), +('14119', 'null'), +('14120', 'null'), +('14121', 'Fairy ring'), +('14122', 'null'), +('14123', 'null'), +('14124', 'Fairy ring'), +('14125', 'null'), +('14126', 'null'), +('14127', 'Fairy ring'), +('14128', 'null'), +('14129', 'null'), +('14130', 'Fairy ring'), +('14131', 'null'), +('14132', 'null'), +('14133', 'Fairy ring'), +('14134', 'null'), +('14135', 'null'), +('14136', 'Fairy ring'), +('14137', 'null'), +('14138', 'null'), +('14139', 'Fairy ring'), +('14140', 'null'), +('14141', 'null'), +('14142', 'Fairy ring'), +('14143', 'null'), +('14144', 'null'), +('14145', 'Fairy ring'), +('14146', 'null'), +('14147', 'null'), +('14148', 'Fairy ring'), +('14149', 'null'), +('14150', 'null'), +('14151', 'Fairy ring'), +('14152', 'null'), +('14153', 'null'), +('14154', 'Fairy ring'), +('14155', 'null'), +('14156', 'null'), +('14157', 'Fairy ring'), +('14158', 'null'), +('14159', 'null'), +('14160', 'Fairy ring'), +('14161', 'null'), +('14162', 'null'), +('14163', 'Table'), +('14164', 'null'), +('14165', 'null'), +('14166', 'null'), +('14167', 'null'), +('14168', 'Easter bird perch.'), +('14169', 'Fire'), +('14170', 'null'), +('14171', 'Embers'), +('14172', 'null'), +('14173', 'Olaf's boat'), +('14174', 'Driftwood'), +('14175', 'Chute'), +('14176', 'null'), +('14177', 'null'), +('14178', 'Chute'), +('14179', 'Light'), +('14180', 'null'), +('14181', 'null'), +('14182', 'null'), +('14183', 'null'), +('14184', 'null'), +('14185', 'null'), +('14186', 'null'), +('14187', 'null'), +('14188', 'null'), +('14189', 'null'), +('14190', 'null'), +('14191', 'null'), +('14192', 'null'), +('14193', 'null'), +('14194', 'null'), +('14195', 'null'), +('14196', 'Chest'), +('14197', 'Chest'), +('14198', 'null'), +('14199', 'null'), +('14200', 'null'), +('14201', 'null'), +('14202', 'null'), +('14203', 'Hole'), +('14204', 'Mound'), +('14205', 'Mound'), +('14206', 'Mound'), +('14207', 'Mound'), +('14208', 'Mound'), +('14209', 'Mound'), +('14210', 'null'), +('14211', 'null'), +('14212', 'Wall'), +('14213', 'Wall'), +('14214', 'null'), +('14215', 'null'), +('14216', 'Wall'), +('14217', 'Wall'), +('14218', 'Wall'), +('14219', 'Wall'), +('14220', 'Wall'), +('14221', 'Wall'), +('14222', 'null'), +('14223', 'null'), +('14224', 'Barricade'), +('14225', 'Barricade'), +('14226', 'Barricade'), +('14227', 'Barricade'), +('14228', 'Barricade'), +('14229', 'Barricade'), +('14230', 'Barricade'), +('14231', 'Barricade'), +('14232', 'Barricade'), +('14233', 'Gate'), +('14234', 'Gate'), +('14235', 'Gate'), +('14236', 'Gate'), +('14237', 'Gate'), +('14238', 'Gate'), +('14239', 'Gate'), +('14240', 'Gate'), +('14241', 'Gate'), +('14242', 'Gate'), +('14243', 'Gate'), +('14244', 'Gate'), +('14245', 'Gate'), +('14246', 'Gate'), +('14247', 'Gate'), +('14248', 'Gate'), +('14249', 'null'), +('14250', 'null'), +('14251', 'null'), +('14252', 'null'), +('14253', 'null'), +('14254', 'null'), +('14255', 'null'), +('14256', 'null'), +('14257', 'null'), +('14258', 'Lander boat'), +('14259', 'Lander boat'), +('14260', 'Lander boat'), +('14261', 'Lander boat'), +('14262', 'Lander boat'), +('14263', 'Lander boat'), +('14264', 'Lander boat'), +('14265', 'Lander boat'), +('14266', 'Lander boat'), +('14267', 'Lander boat'), +('14268', 'Lander boat'), +('14269', 'Lander hatch'), +('14270', 'null'), +('14271', 'null'), +('14272', 'null'), +('14273', 'null'), +('14274', 'null'), +('14275', 'null'), +('14276', 'null'), +('14277', 'null'), +('14278', 'null'), +('14279', 'null'), +('14280', 'null'), +('14281', 'null'), +('14282', 'null'), +('14283', 'Banner'), +('14284', 'null'), +('14285', 'null'), +('14286', 'null'), +('14287', 'null'), +('14288', 'null'), +('14289', 'null'), +('14290', 'null'), +('14291', 'null'), +('14292', 'null'), +('14293', 'null'), +('14294', 'null'), +('14295', 'null'), +('14296', 'Ladder'), +('14297', 'null'), +('14298', 'null'), +('14299', 'null'), +('14300', 'null'), +('14301', 'null'), +('14302', 'null'), +('14303', 'null'), +('14304', 'Gangplank'), +('14305', 'Gangplank'), +('14306', 'Gangplank'), +('14307', 'Gangplank'), +('14308', 'Tree'), +('14309', 'Tree'), +('14310', 'null'), +('14311', 'null'), +('14312', 'null'), +('14313', 'null'), +('14314', 'Ladder'), +('14315', 'Gangplank'), +('14316', 'null'), +('14317', 'null'), +('14318', 'null'), +('14319', 'null'), +('14320', 'null'), +('14321', 'null'), +('14322', 'null'), +('14323', 'null'), +('14324', 'null'), +('14325', 'null'), +('14326', 'null'), +('14327', 'null'), +('14328', 'null'), +('14329', 'null'), +('14330', 'null'), +('14331', 'null'), +('14332', 'null'), +('14333', 'null'), +('14334', 'null'), +('14335', 'Bones'), +('14336', 'null'), +('14337', 'null'), +('14338', 'null'), +('14339', 'null'), +('14340', 'null'), +('14341', 'null'), +('14342', 'null'), +('14343', 'null'), +('14344', 'null'), +('14345', 'null'), +('14346', 'null'), +('14347', 'null'), +('14348', 'null'), +('14349', 'null'), +('14350', 'null'), +('14351', 'null'), +('14352', 'null'), +('14353', 'null'), +('14354', 'null'), +('14355', 'Pile of bricks'), +('14356', 'Shelves'), +('14357', 'Shelves'), +('14358', 'Shelves'), +('14359', 'Shelves'), +('14360', 'Cauldron'), +('14361', 'null'), +('14362', 'Charms'), +('14363', 'Table'), +('14364', 'Rocking chair'), +('14365', 'null'), +('14366', 'Counter'), +('14367', 'Bank booth'), +('14368', 'Bank booth'), +('14369', 'Crate'), +('14370', 'Crates'), +('14371', 'Boxes'), +('14372', 'Crates'), +('14373', 'Blacksmith's tools'), +('14374', 'Barrel'), +('14375', 'Shelves'), +('14376', 'Shelves'), +('14377', 'Shelves'), +('14378', 'Shelves'), +('14379', 'Shelves'), +('14380', 'null'), +('14381', 'Stool'), +('14382', 'Bank chest'), +('14383', 'null'), +('14384', 'null'), +('14385', 'null'), +('14386', 'null'), +('14387', 'null'), +('14388', 'null'), +('14389', 'null'), +('14390', 'null'), +('14391', 'null'), +('14392', 'null'), +('14393', 'null'), +('14394', 'null'), +('14395', 'null'), +('14396', 'null'), +('14397', 'null'), +('14398', 'null'), +('14399', 'null'), +('14400', 'null'), +('14401', 'null'), +('14402', 'null'), +('14403', 'null'), +('14404', 'null'), +('14405', 'null'), +('14406', 'null'), +('14407', 'null'), +('14408', 'null'), +('14409', 'null'), +('14410', 'null'), +('14411', 'null'), +('14412', 'null'), +('14413', 'null'), +('14414', 'null'), +('14415', 'Study desk'), +('14416', 'null'), +('14417', 'null'), +('14418', 'null'), +('14419', 'null'), +('14420', 'null'), +('14421', 'null'), +('14422', 'null'), +('14423', 'null'), +('14424', 'null'), +('14425', 'null'), +('14426', 'null'), +('14427', 'null'), +('14428', 'Fishing spot'), +('14429', 'null'), +('14430', 'null'), +('14431', 'Rift'), +('14432', 'null'), +('14433', 'null'), +('14434', 'Gas bubble'), +('14435', 'null'), +('14436', 'Cave entrance'), +('14437', 'null'), +('14438', 'null'), +('14439', 'null'), +('14440', 'null'), +('14441', 'null'), +('14442', 'null'), +('14443', 'Mushroom'), +('14444', 'Mushroom'), +('14445', 'Mushroom'), +('14446', 'Mushroom'), +('14447', 'Mushroom'), +('14448', 'Mushroom'), +('14449', 'Mushroom'), +('14450', 'null'), +('14451', 'null'), +('14452', 'null'), +('14453', 'null'), +('14454', 'null'), +('14455', 'null'), +('14456', 'null'), +('14457', 'null'), +('14458', 'null'), +('14459', 'null'), +('14460', 'null'), +('14461', 'null'), +('14462', 'null'), +('14463', 'null'), +('14464', 'null'), +('14465', 'null'), +('14466', 'null'), +('14467', 'null'), +('14468', 'null'), +('14469', 'null'), +('14470', 'null'), +('14471', 'null'), +('14472', 'Skeleton'), +('14473', 'Cage'), +('14474', 'Cage'), +('14475', 'Skeleton'), +('14476', 'Skeleton'), +('14477', 'Skeleton'), +('14478', 'Skeleton'), +('14479', 'Stocks'), +('14480', 'Skeleton'), +('14481', 'Skeleton'), +('14482', 'null'), +('14483', 'null'), +('14484', 'null'), +('14485', 'null'), +('14486', 'null'), +('14487', 'null'), +('14488', 'null'), +('14489', 'null'), +('14490', 'null'), +('14491', 'null'), +('14492', 'null'), +('14493', 'null'), +('14494', 'null'), +('14495', 'null'), +('14496', 'null'), +('14497', 'null'), +('14498', 'null'), +('14499', 'null'), +('14500', 'null'), +('14501', 'null'), +('14502', 'null'), +('14503', 'Wilderness Sign'), +('14504', 'Wilderness Sign'), +('14505', 'Wilderness Sign'), +('14506', 'Wilderness Sign'), +('14507', 'Wilderness Sign'), +('14508', 'null'), +('14509', 'null'), +('14510', 'null'), +('14511', 'null'), +('14512', 'null'), +('14513', 'Tree'), +('14514', 'Tree'), +('14515', 'Tree'), +('14516', 'Tree stump'), +('14517', 'Tree Stump'), +('14518', 'Roots'), +('14519', 'Roots'), +('14520', 'Roots'), +('14521', 'Tree'), +('14522', 'null'), +('14523', 'Skeleton'), +('14524', 'Skeleton'), +('14525', 'Skeleton'), +('14526', 'Bones'), +('14527', 'Bones'), +('14528', 'Bones'), +('14529', 'Bones'), +('14530', 'Bones'), +('14531', 'Bones'), +('14532', 'Bones'), +('14533', 'Bones'), +('14534', 'Bones'), +('14535', 'Bones'), +('14536', 'Bones'), +('14537', 'Bones'), +('14538', 'Mushroom'), +('14539', 'Mushroom'), +('14540', 'Mushroom'), +('14541', 'Mushroom'), +('14542', 'Mushroom'), +('14543', 'null'), +('14544', 'null'), +('14545', 'null'), +('14546', 'null'), +('14547', 'null'), +('14548', 'null'), +('14549', 'null'), +('14550', 'null'), +('14551', 'null'), +('14552', 'null'), +('14553', 'null'), +('14554', 'null'), +('14555', 'null'), +('14556', 'Stone Pile'), +('14557', 'Stone Pile'), +('14558', 'null'), +('14559', 'null'), +('14560', 'null'), +('14561', 'null'), +('14562', 'null'), +('14563', 'null'), +('14564', 'Tree'), +('14565', 'Tree'), +('14566', 'Tree'), +('14567', 'Tree Stump'), +('14568', 'Roots'), +('14569', 'Roots'), +('14570', 'Roots'), +('14571', 'Tree'), +('14572', 'null'), +('14573', 'Skeleton'), +('14574', 'Skeleton'), +('14575', 'Skeleton'), +('14576', 'Bones'), +('14577', 'Bones'), +('14578', 'Bones'), +('14579', 'Bones'), +('14580', 'Bones'), +('14581', 'Bones'), +('14582', 'Bones'), +('14583', 'Bones'), +('14584', 'Bones'), +('14585', 'Bones'), +('14586', 'Bones'), +('14587', 'Bones'), +('14588', 'Mushroom'), +('14589', 'Mushroom'), +('14590', 'Mushroom'), +('14591', 'Mushroom'), +('14592', 'Mushroom'), +('14593', 'Tree'), +('14594', 'Tree'), +('14595', 'Tree'), +('14596', 'Tree Stump'), +('14597', 'Roots'), +('14598', 'Roots'), +('14599', 'Roots'), +('14600', 'Tree'), +('14601', 'null'), +('14602', 'Skeleton'), +('14603', 'Skeleton'), +('14604', 'Skeleton'), +('14605', 'Bones'), +('14606', 'Bones'), +('14607', 'Bones'), +('14608', 'Bones'), +('14609', 'Bones'), +('14610', 'Bones'), +('14611', 'Bones'), +('14612', 'Bones'), +('14613', 'Bones'), +('14614', 'Bones'), +('14615', 'Bones'), +('14616', 'Bones'), +('14617', 'Mushroom'), +('14618', 'Mushroom'), +('14619', 'Mushroom'), +('14620', 'Mushroom'), +('14621', 'Mushroom'), +('14622', 'null'), +('14623', 'null'), +('14624', 'null'), +('14625', 'null'), +('14626', 'null'), +('14627', 'null'), +('14628', 'null'), +('14629', 'null'), +('14630', 'Stone Pile'), +('14631', 'Stone Pile'), +('14632', 'null'), +('14633', 'null'), +('14634', 'null'), +('14635', 'Tree'), +('14636', 'Tree'), +('14637', 'Tree'), +('14638', 'Tree Stump'), +('14639', 'Roots'), +('14640', 'Roots'), +('14641', 'Roots'), +('14642', 'Tree'), +('14643', 'null'), +('14644', 'Skeleton'), +('14645', 'Skeleton'), +('14646', 'Skeleton'), +('14647', 'Bones'), +('14648', 'Bones'), +('14649', 'Bones'), +('14650', 'Bones'), +('14651', 'Bones'), +('14652', 'Bones'), +('14653', 'Bones'), +('14654', 'Bones'), +('14655', 'Bones'), +('14656', 'Bones'), +('14657', 'Bones'), +('14658', 'Bones'), +('14659', 'Mushroom'), +('14660', 'Mushroom'), +('14661', 'Mushroom'), +('14662', 'Mushroom'), +('14663', 'Mushroom'), +('14664', 'Tree'), +('14665', 'Tree'), +('14666', 'Tree'), +('14667', 'Tree Stump'), +('14668', 'Roots'), +('14669', 'Roots'), +('14670', 'Roots'), +('14671', 'Tree'), +('14672', 'null'), +('14673', 'Skeleton'), +('14674', 'Skeleton'), +('14675', 'Skeleton'), +('14676', 'Bones'), +('14677', 'Bones'), +('14678', 'Bones'), +('14679', 'Bones'), +('14680', 'Bones'), +('14681', 'Bones'), +('14682', 'Bones'), +('14683', 'Bones'), +('14684', 'Bones'), +('14685', 'Bones'), +('14686', 'Bones'), +('14687', 'Bones'), +('14688', 'Mushroom'), +('14689', 'Mushroom'), +('14690', 'Mushroom'), +('14691', 'Mushroom'), +('14692', 'Mushroom'), +('14693', 'Tree'), +('14694', 'Tree'), +('14695', 'Tree'), +('14696', 'Tree'), +('14697', 'Tree Stump'), +('14698', 'Roots'), +('14699', 'Roots'), +('14700', 'Roots'), +('14701', 'Tree'), +('14702', 'null'), +('14703', 'Skeleton'), +('14704', 'Skeleton'), +('14705', 'Skeleton'), +('14706', 'Bones'), +('14707', 'Bones'), +('14708', 'Bones'), +('14709', 'Bones'), +('14710', 'Bones'), +('14711', 'Bones'), +('14712', 'Bones'), +('14713', 'Bones'), +('14714', 'Bones'), +('14715', 'Bones'), +('14716', 'Bones'), +('14717', 'Bones'), +('14718', 'Mushroom'), +('14719', 'Mushroom'), +('14720', 'Mushroom'), +('14721', 'Mushroom'), +('14722', 'Mushroom'), +('14723', 'null'), +('14724', 'null'), +('14725', 'null'), +('14726', 'null'), +('14727', 'null'), +('14728', 'null'), +('14729', 'null'), +('14730', 'null'), +('14731', 'Stone Pile'), +('14732', 'Stone Pile'), +('14733', 'null'), +('14734', 'null'), +('14735', 'Staircase'), +('14736', 'Staircase'), +('14737', 'Staircase'), +('14738', 'Tree'), +('14739', 'Crate'), +('14740', 'Barrel'), +('14741', 'Crates'), +('14742', 'Pile of Crates'), +('14743', 'Sack'), +('14744', 'null'), +('14745', 'Ladder'), +('14746', 'Ladder'), +('14747', 'Ladder'), +('14748', 'Ladder'), +('14749', 'Door'), +('14750', 'Door'), +('14751', 'Door'), +('14752', 'Door'), +('14753', 'Door'), +('14754', 'Door'), +('14755', 'Banner'), +('14756', 'Banner'), +('14757', 'Banner'), +('14758', 'Ladder'), +('14759', 'Roots'), +('14760', 'Roots'), +('14761', 'Roots'), +('14762', 'Table'), +('14763', 'Table'), +('14764', 'Stool'), +('14765', 'Gravestone'), +('14766', 'Gravestone'), +('14767', 'Gravestone'), +('14768', 'Gravestone'), +('14769', 'Gravestone'), +('14770', 'null'), +('14771', 'Bed'), +('14772', 'Bed'), +('14773', 'Chest'), +('14774', 'Chest'), +('14775', 'null'), +('14776', 'null'), +('14777', 'null'), +('14778', 'null'), +('14779', 'null'), +('14780', 'null'), +('14781', 'null'), +('14782', 'null'), +('14783', 'null'), +('14784', 'null'), +('14785', 'null'), +('14786', 'null'), +('14787', 'null'), +('14788', 'null'), +('14789', 'null'), +('14790', 'null'), +('14791', 'null'), +('14792', 'null'), +('14793', 'null'), +('14794', 'null'), +('14795', 'null'), +('14796', 'Tree'), +('14797', 'Tree'), +('14798', 'Tree'), +('14799', 'Tree'), +('14800', 'Tree'), +('14801', 'Tree'), +('14802', 'Tree'), +('14803', 'Tree'), +('14804', 'Tree'), +('14805', 'Tree'), +('14806', 'Tree'), +('14807', 'Tree'), +('14808', 'Creeper'), +('14809', 'Creeper'), +('14810', 'Creeper'), +('14811', 'Creeper'), +('14812', 'Creeper'), +('14813', 'Creeper'), +('14814', 'Rock'), +('14815', 'Rock'), +('14816', 'Rock'), +('14817', 'Rock'), +('14818', 'null'), +('14819', 'null'), +('14820', 'null'), +('14821', 'null'), +('14822', 'null'), +('14823', 'null'), +('14824', 'null'), +('14825', 'Obelisk'), +('14826', 'Obelisk'), +('14827', 'Obelisk'), +('14828', 'Obelisk'), +('14829', 'Obelisk'), +('14830', 'Obelisk'), +('14831', 'Obelisk'), +('14832', 'Rocks'), +('14833', 'Rocks'), +('14834', 'Rocks'), +('14835', 'Rocks'), +('14836', 'Rocks'), +('14837', 'Rocks'), +('14838', 'Rocks'), +('14839', 'Rocks'), +('14840', 'Rocks'), +('14841', 'Rocks'), +('14842', 'Rocks'), +('14843', 'Rocks'), +('14844', 'Rocks'), +('14845', 'Rocks'), +('14846', 'Rocks'), +('14847', 'Rocks'), +('14848', 'Rocks'), +('14849', 'Rocks'), +('14850', 'Rocks'), +('14851', 'Rocks'), +('14852', 'Rocks'), +('14853', 'Rocks'), +('14854', 'Rocks'), +('14855', 'Rocks'), +('14856', 'Rocks'), +('14857', 'Rocks'), +('14858', 'Rocks'), +('14859', 'Rocks'), +('14860', 'Rocks'), +('14861', 'Rocks'), +('14862', 'Rocks'), +('14863', 'Rocks'), +('14864', 'Rocks'), +('14865', 'Barrel'), +('14866', 'Barrel'), +('14867', 'Barrel'), +('14868', 'Sink'), +('14869', 'Shelves'), +('14870', 'null'), +('14871', 'null'), +('14872', 'Stool'), +('14873', 'Hanging meat'), +('14874', 'Hanging meat'), +('14875', 'null'), +('14876', 'null'), +('14877', 'null'), +('14878', 'null'), +('14879', 'null'), +('14880', 'null'), +('14881', 'null'), +('14882', 'null'), +('14883', 'Rocks'), +('14884', 'Rocks'), +('14885', 'Rocks'), +('14886', 'Rocks'), +('14887', 'Rocks'), +('14888', 'Rocks'), +('14889', 'Rocks'), +('14890', 'Rocks'), +('14891', 'Bed'), +('14892', 'Rocks'), +('14893', 'Rocks'), +('14894', 'Rocks'), +('14895', 'Rocks'), +('14896', 'Rocks'), +('14897', 'Rocks'), +('14898', 'Rocks'), +('14899', 'Rocks'), +('14900', 'Rocks'), +('14901', 'Rocks'), +('14902', 'Rocks'), +('14903', 'Rocks'), +('14904', 'Rocks'), +('14905', 'Rocks'), +('14906', 'Rocks'), +('14907', 'Rocks'), +('14908', 'null'), +('14909', 'null'), +('14910', 'Bronze pickaxe'), +('14911', 'null'), +('14912', 'Bronze axe'), +('14913', 'Rocks'), +('14914', 'Rocks'), +('14915', 'Rocks'), +('14916', 'Rocks'), +('14917', 'Sink'), +('14918', 'Washbasin'), +('14919', 'Range'), +('14920', 'Table'), +('14921', 'Small furnace'), +('14922', 'Hole'), +('14923', 'Door'), +('14924', 'Door'), +('14925', 'null'), +('14926', 'null'), +('14927', 'null'), +('14928', 'null'), +('14929', 'Colony gate'), +('14930', 'null'), +('14931', 'Colony gate'), +('14932', 'null'), +('14933', 'null'), +('14934', 'null'), +('14935', 'null'), +('14936', 'null'), +('14937', 'null'), +('14938', 'Fishing spot'), +('14939', 'null'), +('14940', 'null'), +('14941', 'null'), +('14942', 'null'), +('14943', 'null'), +('14944', 'null'), +('14945', 'Broken wall'), +('14946', 'Broken wall'), +('14947', 'Broken wall'), +('14948', 'Patched wall'), +('14949', 'Patched wall'), +('14950', 'Patched wall'), +('14951', 'Cogs'), +('14952', 'Junk'), +('14953', 'Fishing weights'), +('14954', 'null'), +('14955', 'null'), +('14956', 'Metal Press'), +('14957', 'Metal Press'), +('14958', 'Firebox'), +('14959', 'Firebox'), +('14960', 'Firebox'), +('14961', 'Shelves'), +('14962', 'Crates'), +('14963', 'Crates'), +('14964', 'Barrel'), +('14965', 'Large barrel'), +('14966', 'Rack of barrels'), +('14967', 'Large Barrel'), +('14968', 'Barrow'), +('14969', 'Barrow'), +('14970', 'Barrow'), +('14971', 'Herman's desk'), +('14972', 'Net'), +('14973', 'Net'), +('14974', 'null'), +('14975', 'null'), +('14976', 'Evil claw'), +('14977', 'null'), +('14978', 'Control panel'), +('14979', 'null'), +('14980', 'null'), +('14981', 'null'), +('14982', 'Door'), +('14983', 'null'), +('14984', 'null'), +('14985', 'Crates'), +('14986', 'Crate'), +('14987', 'Crates'), +('14988', 'Cogs'), +('14989', 'Junk'), +('14990', 'Rack of barrels'), +('14991', 'Barrel'), +('14992', 'Barrow'), +('14993', 'null'), +('14994', 'null'), +('14995', 'null'), +('14996', 'null'), +('14997', 'null'), +('14998', 'Sack Pile'), +('14999', 'Sack Pile'), +('15000', 'Pinball Post'), +('15001', 'Pinball Post'), +('15002', 'Pinball Post'), +('15003', 'Pinball Post'), +('15004', 'Pinball Post'), +('15005', 'Pinball Post'), +('15006', 'Pinball Post'), +('15007', 'Pinball Post'), +('15008', 'Pinball Post'), +('15009', 'Pinball Post'), +('15010', 'Cave Exit'), +('15011', 'null'), +('15012', 'null'), +('15013', 'null'), +('15014', 'null'), +('15015', 'null'), +('15016', 'null'), +('15017', 'null'), +('15018', 'null'), +('15019', 'null'), +('15020', 'null'), +('15021', 'null'), +('15022', 'null'), +('15023', 'null'), +('15024', 'null'), +('15025', 'null'), +('15026', 'null'), +('15027', 'null'), +('15028', 'null'), +('15029', 'null'), +('15030', 'Crate'), +('15031', 'Crate'), +('15032', 'Crates'), +('15033', 'null'), +('15034', 'null'), +('15035', 'null'), +('15036', 'null'), +('15037', 'null'), +('15038', 'null'), +('15039', 'Stool'), +('15040', 'Counter'), +('15041', 'Picnic table'), +('15042', 'null'), +('15043', 'null'), +('15044', 'Table'), +('15045', 'Bar pumps'), +('15046', 'Warehouse shelves'), +('15047', 'Warehouse shelves'), +('15048', 'Warehouse shelves'), +('15049', 'Warehouse shelves'), +('15050', 'Altar'), +('15051', 'Altar'), +('15052', 'Coffin'), +('15053', 'Coffin'), +('15054', 'null'), +('15055', 'null'), +('15056', 'Door'), +('15057', 'Skeleton'), +('15058', 'null'), +('15059', 'null'), +('15060', 'null'), +('15061', 'null'), +('15062', 'Teak'), +('15063', 'Weedy patch'), +('15064', 'Weedy patch'), +('15065', 'Weedy patch'), +('15066', 'Weedy patch'), +('15067', 'null'), +('15068', 'Dry patch'), +('15069', 'Dry patch'), +('15070', 'Dry patch'), +('15071', 'null'), +('15072', 'Barren patch'), +('15073', 'Barren patch'), +('15074', 'null'), +('15075', 'Flax'), +('15076', 'Flax'), +('15077', 'Flax'), +('15078', 'Flax'), +('15079', 'null'), +('15080', 'Herbs'), +('15081', 'Herbs'), +('15082', 'Herbs'), +('15083', 'Herbs'), +('15084', 'null'), +('15085', 'null'), +('15086', 'null'), +('15087', 'null'), +('15088', 'Bench'), +('15089', 'null'), +('15090', 'null'), +('15091', 'Chair'), +('15092', 'Table'), +('15093', 'Stool'), +('15094', 'Bed'), +('15095', 'Bed'), +('15096', 'Bed'), +('15097', 'Bed'), +('15098', 'Shelf'), +('15099', 'Shelf'), +('15100', 'Shelf'), +('15101', 'Shelf'), +('15102', 'Shelf'), +('15103', 'Bar pumps'), +('15104', 'Bar'), +('15105', 'Barrel'), +('15106', 'Crates'), +('15107', 'Crate'), +('15108', 'Barrel'), +('15109', 'Crates'), +('15110', 'Warehouse shelves'), +('15111', 'Warehouse shelves'), +('15112', 'Warehouse shelves'), +('15113', 'Warehouse shelves'), +('15114', 'Counter'), +('15115', 'Ladder'), +('15116', 'Ladder'), +('15117', 'Bookcase'), +('15118', 'Bookcase'), +('15119', 'Bookcase'), +('15120', 'Fungus'), +('15121', 'Fungus'), +('15122', 'null'), +('15123', 'null'), +('15124', 'null'), +('15125', 'null'), +('15126', 'null'), +('15127', 'Rocks'), +('15128', 'Rocks'), +('15129', 'null'), +('15130', 'null'), +('15131', 'null'), +('15132', 'null'), +('15133', 'null'), +('15134', 'Dyed fabric'), +('15135', 'Dyed fabric'), +('15136', 'Dyed fabric'), +('15137', 'Table'), +('15138', 'Dye Pots'), +('15139', 'Cloth'), +('15140', 'Clothes model'), +('15141', 'Clothes model'), +('15142', 'Clothes model'), +('15143', 'Clothes model'), +('15144', 'Clothes equipment'), +('15145', 'Clothing shelves'), +('15146', 'null'), +('15147', 'null'), +('15148', 'null'), +('15149', 'null'), +('15150', 'null'), +('15151', 'null'), +('15152', 'null'), +('15153', 'null'), +('15154', 'null'), +('15155', 'null'), +('15156', 'Fire'), +('15157', 'null'), +('15158', 'Standing torch'), +('15159', 'null'), +('15160', 'null'), +('15161', 'null'), +('15162', 'null'), +('15163', 'null'), +('15164', 'null'), +('15165', 'Hat stand'), +('15166', 'Armour'), +('15167', 'Armour'), +('15168', 'null'), +('15169', 'null'), +('15170', 'null'), +('15171', 'null'), +('15172', 'null'), +('15173', 'null'), +('15174', 'null'), +('15175', 'null'), +('15176', 'null'), +('15177', 'null'), +('15178', 'null'), +('15179', 'null'), +('15180', 'null'), +('15181', 'null'), +('15182', 'Eggs'), +('15183', 'Eggs'), +('15184', 'Eggs'), +('15185', 'Eggs'), +('15186', 'Crevice'), +('15187', 'Crevice'), +('15188', 'Tunnel'), +('15189', 'Tunnel'), +('15190', 'Light'), +('15191', 'Exit'), +('15192', 'null'), +('15193', 'null'), +('15194', 'Crevice'), +('15195', 'Crevice'), +('15196', 'Crevice'), +('15197', 'Crevice'), +('15198', 'Rock'), +('15199', 'Rock'), +('15200', 'null'), +('15201', 'Hole'), +('15202', 'Hole'), +('15203', 'null'), +('15204', 'Door'), +('15205', 'Door'), +('15206', 'Fire remains'), +('15207', 'Fire remains'), +('15208', 'Fire remains'), +('15209', 'Fire remains'), +('15210', 'Fire remains'), +('15211', 'null'), +('15212', 'null'), +('15213', 'Rocks'), +('15214', 'Steam Vent'), +('15215', 'Steam Vent'), +('15216', 'Ropeswing'), +('15217', 'Rock'), +('15218', 'Rock'), +('15219', 'Rock'), +('15220', 'null'), +('15221', 'null'), +('15222', 'Platform'), +('15223', 'Platform'), +('15224', 'Platform'), +('15225', 'Platform'), +('15226', 'Platform'), +('15227', 'Engine Platform'), +('15228', 'Lift Engine'), +('15229', 'Lift Engine'), +('15230', 'Broken Scaffold'), +('15231', 'Scaffold'), +('15232', 'Scaffold'), +('15233', 'Broken Scaffold'), +('15234', 'Scaffold'), +('15235', 'Scaffold'), +('15236', 'Scaffold'), +('15237', 'Lift Platform'), +('15238', 'null'), +('15239', 'null'), +('15240', 'null'), +('15241', 'null'), +('15242', 'null'), +('15243', 'Crate'), +('15244', 'Crate'), +('15245', 'Crate'), +('15246', 'Rocks'), +('15247', 'Rocks'), +('15248', 'Rocks'), +('15249', 'Rocks'), +('15250', 'Rocks'), +('15251', 'Rocks'), +('15252', 'null'), +('15253', 'Rocks'), +('15254', 'Rocks'), +('15255', 'Rocks'), +('15256', 'Treasure space'), +('15257', 'Monster space'), +('15258', 'Monster space 3'), +('15259', 'Decoration space'), +('15260', 'Bed space'), +('15261', 'Wardrobe space'), +('15262', 'Dresser space'), +('15263', 'Curtain space'), +('15264', 'Rug space'), +('15265', 'Rug space'), +('15266', 'Rug space'), +('15267', 'Fireplace space'), +('15268', 'Clock space'), +('15269', 'Icon space'), +('15270', 'Altar space'), +('15271', 'Lamp space'), +('15272', 'Rug space'), +('15273', 'Rug space'), +('15274', 'Rug space'), +('15275', 'Statue space'), +('15276', 'Musical space'), +('15277', 'Combat ring space'), +('15278', 'Combat ring space'), +('15279', 'Combat ring space'), +('15280', 'Combat ring space'), +('15281', 'Combat ring space'), +('15282', 'Combat ring space'), +('15283', 'Combat ring space'), +('15284', 'Combat ring space'), +('15285', 'Combat ring space'), +('15286', 'Combat ring space'), +('15287', 'Combat ring space'), +('15288', 'Combat ring space'), +('15289', 'Combat ring space'), +('15290', 'Combat ring space'), +('15291', 'Combat ring space'), +('15292', 'Combat ring space'), +('15293', 'Combat ring space'), +('15294', 'Combat ring space'), +('15295', 'Combat ring space'), +('15296', 'Storage space'), +('15297', 'Decoration space'), +('15298', 'Table space'), +('15299', 'Seating space'), +('15300', 'Seating space'), +('15301', 'Fireplace space'), +('15302', 'Curtain space'), +('15303', 'Decoration space'), +('15304', 'Bell pull space'), +('15305', 'Door hotspot'), +('15306', 'Door hotspot'), +('15307', 'Door hotspot'), +('15308', 'Door hotspot'), +('15309', 'Door hotspot'), +('15310', 'Door hotspot'), +('15311', 'Door hotspot'), +('15312', 'Door hotspot'), +('15313', 'Door hotspot'), +('15314', 'Door hotspot'), +('15315', 'Door hotspot'), +('15316', 'Door hotspot'), +('15317', 'Door hotspot'), +('15318', 'Door hotspot'), +('15319', 'Door hotspot'), +('15320', 'Door hotspot'), +('15321', 'Door hotspot'), +('15322', 'Door hotspot'), +('15323', 'Guard space'), +('15324', 'Trap space'), +('15325', 'Trap space'), +('15326', 'Door space'), +('15327', 'Door space'), +('15328', 'Door space'), +('15329', 'Door space'), +('15330', 'Lighting space'), +('15331', 'Decoration space'), +('15332', 'Rug space'), +('15333', 'Rug space'), +('15334', 'Rug space'), +('15335', 'Rug space'), +('15336', 'Guard space'), +('15337', 'Guard space'), +('15338', 'Door space'), +('15339', 'Door space'), +('15340', 'Lighting space'), +('15341', 'Decoration space'), +('15342', 'Game space'), +('15343', 'Prize chest space'), +('15344', 'Stone space'), +('15345', 'Elemental balance space'), +('15346', 'Ranging game space'), +('15347', 'Floor space mid'), +('15348', 'Floor space side'), +('15349', 'Floor space corner'), +('15350', 'Floor space'), +('15351', 'Floor space'), +('15352', 'Prison space'), +('15353', 'Prison space'), +('15354', 'Guard space'), +('15355', 'Lighting space'), +('15356', 'Ladder space'), +('15357', 'Door space'), +('15358', 'Door space'), +('15359', 'Door space'), +('15360', 'Door space'), +('15361', 'Centrepiece space'), +('15362', 'Big Tree space'), +('15363', 'Tree space'), +('15364', 'Big Plant space 1'), +('15365', 'Big Plant space 2'), +('15366', 'Small Plant space 1'), +('15367', 'Small Plant space 2'), +('15368', 'Centrepiece space'), +('15369', 'Fencing'), +('15370', 'Hedging'), +('15371', 'Hedging'), +('15372', 'Hedging'), +('15373', 'Big plant'), +('15374', 'Big plant 2'), +('15375', 'Small plant'), +('15376', 'Small plant 2'), +('15377', 'Rug space'), +('15378', 'Rug space'), +('15379', 'Rug space'), +('15380', 'Stair Space'), +('15381', 'Stair Space'), +('15382', 'Head trophy space'), +('15383', 'Fishing trophy space'), +('15384', 'Armour space'), +('15385', 'Armour space'), +('15386', 'Rune case space'), +('15387', 'Rug space'), +('15388', 'Rug space'), +('15389', 'Rug space'), +('15390', 'Stair Space'), +('15391', 'Stair Space'), +('15392', 'Portrait space'), +('15393', 'Landscape space'), +('15394', 'Guild trophy space'), +('15395', 'Sword space'), +('15396', 'Map space'), +('15397', 'Bookcase space'), +('15398', 'Stove space'), +('15399', 'Shelf space'), +('15400', 'Shelf space'), +('15401', 'Barrel space'), +('15402', 'Cat basket space'), +('15403', 'Larder space'), +('15404', 'Sink space'), +('15405', 'Table space'), +('15406', 'Portal space'), +('15407', 'Portal space'), +('15408', 'Portal space'), +('15409', 'Centrepiece space'), +('15410', 'Chair space'), +('15411', 'Chair space'), +('15412', 'Chair space'), +('15413', 'Rug space'), +('15414', 'Rug space'), +('15415', 'Rug space'), +('15416', 'Bookcase space'), +('15417', 'Bookcase space'), +('15418', 'Fireplace space'), +('15419', 'Curtain space'), +('15420', 'Lectern space'), +('15421', 'Globe space'), +('15422', 'Crystal ball space'), +('15423', 'Wall chart space'), +('15424', 'Telescope space'), +('15425', 'Bookcase space'), +('15426', 'Throne space'), +('15427', 'Floor space'), +('15428', 'Floor space'), +('15429', 'Floor space'), +('15430', 'Floor space'), +('15431', 'Floor space'), +('15432', 'Floor space'), +('15433', 'Decoration space'), +('15434', 'Decoration space'), +('15435', 'Lever space'), +('15436', 'Seating space'), +('15437', 'Seating space'), +('15438', 'Trapdoor space'), +('15439', 'Workbench space'), +('15440', 'Nothing'), +('15441', 'Clockmaking space'), +('15442', 'Nothing'), +('15443', 'Tool space'), +('15444', 'Tool space'), +('15445', 'Tool space'), +('15446', 'Tool space'), +('15447', 'Tool space'), +('15448', 'Repair space'), +('15449', 'Nothing'), +('15450', 'Heraldry space'), +('15451', 'Doorway'), +('15452', 'Wall'), +('15453', 'null'), +('15454', 'null'), +('15455', 'null'), +('15456', 'null'), +('15457', 'null'), +('15458', 'null'), +('15459', 'null'), +('15460', 'null'), +('15461', 'Bookcase'), +('15462', 'Chair'), +('15463', 'Hat stand'), +('15464', 'Picture'), +('15465', 'Display board'), +('15466', 'Stone crusher'), +('15467', 'Cleaning supplies'), +('15468', 'Power saw'), +('15469', 'Embalming tube'), +('15470', 'null'), +('15471', 'Fish bowl'), +('15472', 'Gloves and duster'), +('15473', 'Mahogany table'), +('15474', 'null'), +('15475', 'null'), +('15476', 'null'), +('15477', 'Portal'), +('15478', 'Portal'), +('15479', 'Portal'), +('15480', 'Portal'), +('15481', 'Portal'), +('15482', 'Portal'), +('15483', 'null'), +('15484', 'null'), +('15485', 'null'), +('15486', 'Pigeon'), +('15487', 'Chimney'), +('15488', 'Tree trunk'), +('15489', 'Tree'), +('15490', 'Kalphite Queen'), +('15491', 'Rocks'), +('15492', 'Rocks'), +('15493', 'Rocks'), +('15494', 'null'), +('15495', 'null'), +('15496', 'null'), +('15497', 'null'), +('15498', 'null'), +('15499', 'null'), +('15500', 'null'), +('15501', 'null'), +('15502', 'null'), +('15503', 'Rocks'), +('15504', 'Rocks'), +('15505', 'Rocks'), +('15506', 'Wheat'), +('15507', 'Wheat'), +('15508', 'Wheat'), +('15509', 'null'), +('15510', 'Gate'), +('15511', 'Gate'), +('15512', 'Gate'), +('15513', 'Gate'), +('15514', 'Gate'), +('15515', 'Gate'), +('15516', 'Gate'), +('15517', 'Gate'), +('15518', 'Mouse hole'), +('15519', 'Mouse hole'), +('15520', 'null'), +('15521', 'Piano stool'), +('15522', 'Signpost'), +('15523', 'Trapdoor'), +('15524', 'Barrel'), +('15525', 'null'), +('15526', 'null'), +('15527', 'null'), +('15528', 'null'), +('15529', 'null'), +('15530', 'null'), +('15531', 'null'), +('15532', 'null'), +('15533', 'null'), +('15534', 'null'), +('15535', 'Door'), +('15536', 'Door'), +('15537', 'Drain'), +('15538', 'null'), +('15539', 'null'), +('15540', 'null'), +('15541', 'Bookcase'), +('15542', 'Bookcase'), +('15543', 'Bookcase'), +('15544', 'Bookcase'), +('15545', 'null'), +('15546', 'Oak chair'), +('15547', 'Clock'), +('15548', 'null'), +('15549', 'null'), +('15550', 'null'), +('15551', 'Desk'), +('15552', 'null'), +('15553', 'null'), +('15554', 'null'), +('15555', 'null'), +('15556', 'null'), +('15557', 'null'), +('15558', 'null'), +('15559', 'Painting'), +('15560', 'Painting'), +('15561', 'Dragon's head'), +('15562', 'Dragon's head'), +('15563', 'Dragon's head'), +('15564', 'Dragon's head'), +('15565', 'Dragon's head'), +('15566', 'Warning sign'), +('15567', 'null'), +('15568', 'null'), +('15569', 'null'), +('15570', 'Rocks'), +('15571', 'Rocks'), +('15572', 'Rocks'), +('15573', 'Rocks'), +('15574', 'Rocks'), +('15575', 'Rocks'), +('15576', 'Rocks'), +('15577', 'Rocks'), +('15578', 'Rocks'), +('15579', 'Rocks'), +('15580', 'Rocks'), +('15581', 'Rocks'), +('15582', 'Rocks'), +('15583', 'Rocks'), +('15584', 'Rocks'), +('15585', 'null'), +('15586', 'null'), +('15587', 'null'), +('15588', 'null'), +('15589', 'null'), +('15590', 'null'), +('15591', 'null'), +('15592', 'null'), +('15593', 'null'), +('15594', 'null'), +('15595', 'null'), +('15596', 'Dwarf remains'), +('15597', 'null'), +('15598', 'Boxes'), +('15599', 'Crate'), +('15600', 'Crates'), +('15601', 'Railing'), +('15602', 'Railing'), +('15603', 'Railing'), +('15604', 'Gate'), +('15605', 'Gate'), +('15606', 'null'), +('15607', 'null'), +('15608', 'Statue of a warrior'), +('15609', 'Statue of a warrior'), +('15610', 'Statue of a king'), +('15611', 'Statue of a queen'), +('15612', 'Gnome statue'), +('15613', 'Statue of a king'), +('15614', 'null'), +('15615', 'null'), +('15616', 'Catapult'), +('15617', 'Catapult'), +('15618', 'Catapult'), +('15619', 'Catapult'), +('15620', 'Catapult'), +('15621', 'Magical Animator'), +('15622', 'null'), +('15623', 'null'), +('15624', 'Dummy'), +('15625', 'Dummy'), +('15626', 'Dummy'), +('15627', 'Dummy'), +('15628', 'Dummy'), +('15629', 'Dummy'), +('15630', 'Dummy'), +('15631', 'Hole'), +('15632', 'Hole'), +('15633', 'Hole'), +('15634', 'Hole'), +('15635', 'Hole'), +('15636', 'Hole'), +('15637', 'Hole'), +('15638', 'Staircase'), +('15639', 'null'), +('15640', 'null'), +('15641', 'Door'), +('15642', 'Door'), +('15643', 'null'), +('15644', 'Door'), +('15645', 'Door'), +('15646', 'null'), +('15647', 'Door'), +('15648', 'Door'), +('15649', 'null'), +('15650', 'Door'), +('15651', 'Door'), +('15652', 'null'), +('15653', 'Door'), +('15654', 'Door'), +('15655', 'null'), +('15656', 'Information Scroll'), +('15657', 'Information Scroll'), +('15658', 'Heavy door'), +('15659', 'Heavy door'), +('15660', 'Heavy door'), +('15661', 'Heavy door'), +('15662', 'Keg'), +('15663', 'Keg'), +('15664', 'Shot'), +('15665', 'Shot'), +('15666', 'null'), +('15667', 'null'), +('15668', 'Keg'), +('15669', 'null'), +('15670', 'null'), +('15671', 'null'), +('15672', 'null'), +('15673', 'null'), +('15674', 'Barrel'), +('15675', 'Barrel'), +('15676', 'Barrel'), +('15677', 'Bank table'), +('15678', 'Sink'), +('15679', 'Stool'), +('15680', 'Table'), +('15681', 'null'), +('15682', 'null'), +('15683', 'Bed'), +('15684', 'Table'), +('15685', 'Cooking shelves'), +('15686', 'Cooking shelves'), +('15687', 'null'), +('15688', 'null'), +('15689', 'null'), +('15690', 'Portrait'), +('15691', 'Painting'), +('15692', 'Crate'), +('15693', 'Crates'), +('15694', 'null'), +('15695', 'Crate'), +('15696', 'Crate'), +('15697', 'Crate'), +('15698', 'Crate'), +('15699', 'Box cart'), +('15700', 'Box cart'), +('15701', 'null'), +('15702', 'null'), +('15703', 'null'), +('15704', 'Crate'), +('15705', 'Crate'), +('15706', 'Crate'), +('15707', 'Crate'), +('15708', 'null'), +('15709', 'Zanik'), +('15710', 'null'), +('15711', 'Zanik'), +('15712', 'null'), +('15713', 'Drilling machine'), +('15714', 'Drilling machine'), +('15715', 'Broken drilling machine'), +('15716', 'null'), +('15717', 'null'), +('15718', 'null'), +('15719', 'Table'), +('15720', 'Crate'), +('15721', 'Crate'), +('15722', 'Small chest'), +('15723', 'Small chest'), +('15724', 'Small chest'), +('15725', 'Small chest'), +('15726', 'Small chest'), +('15727', 'Drip'), +('15728', 'Drips'), +('15729', 'null'), +('15730', 'null'), +('15731', 'Crack'), +('15732', 'Wall'), +('15733', 'Wall'), +('15734', 'null'), +('15735', 'null'), +('15736', 'null'), +('15737', 'null'), +('15738', 'null'), +('15739', 'null'), +('15740', 'null'), +('15741', 'null'), +('15742', 'null'), +('15743', 'null'), +('15744', 'null'), +('15745', 'null'), +('15746', 'Ladder'), +('15747', 'Ladder'), +('15748', 'Tunnel'), +('15749', 'Tunnel'), +('15750', 'Tunnel'), +('15751', 'Tunnel'), +('15752', 'Trapdoor'), +('15753', 'Trapdoor'), +('15754', 'Rubble'), +('15755', 'Hidden trapdoor'), +('15756', 'Trapdoor'), +('15757', 'Large door'), +('15758', 'Large door'), +('15759', 'Door'), +('15760', 'Sack'), +('15761', 'Sack Pile'), +('15762', 'Sacks'), +('15763', 'null'), +('15764', 'null'), +('15765', 'null'), +('15766', 'null'), +('15767', 'Cave entrance'), +('15768', 'Cave entrance'), +('15769', 'Cave'), +('15770', 'Cave'), +('15771', 'Boulders'), +('15772', 'Boulders'), +('15773', 'Ruins'), +('15774', 'Slab'), +('15775', 'Stump'), +('15776', 'Tree'), +('15777', 'Tree'), +('15778', 'Tropical tree'), +('15779', 'Tropical tree'), +('15780', 'Tropical tree'), +('15781', 'Tropical tree'), +('15782', 'Tropical tree'), +('15783', 'Tropical tree'), +('15784', 'Tropical tree'), +('15785', 'null'), +('15786', 'null'), +('15787', 'null'), +('15788', 'Leaves'), +('15789', 'Leaves'), +('15790', 'Staircase'), +('15791', 'Staircase'), +('15792', 'null'), +('15793', 'null'), +('15794', 'null'), +('15795', 'null'), +('15796', 'null'), +('15797', 'null'), +('15798', 'null'), +('15799', 'null'), +('15800', 'null'), +('15801', 'null'), +('15802', 'null'), +('15803', 'null'), +('15804', 'null'), +('15805', 'null'), +('15806', 'null'), +('15807', 'null'), +('15808', 'null'), +('15809', 'null'), +('15810', 'Hole'), +('15811', 'Cave'), +('15812', 'Cave'), +('15813', 'Boulders'), +('15814', 'Boulders'), +('15815', 'Mushrooms'), +('15816', 'Mushrooms'), +('15817', 'Rock'), +('15818', 'Small rock'), +('15819', 'Rock'), +('15820', 'null'), +('15821', 'null'), +('15822', 'null'), +('15823', 'null'), +('15824', 'null'), +('15825', 'null'), +('15826', 'null'), +('15827', 'null'), +('15828', 'null'), +('15829', 'null'), +('15830', 'null'), +('15831', 'null'), +('15832', 'null'), +('15833', 'null'), +('15834', 'null'), +('15835', 'null'), +('15836', 'null'), +('15837', 'Bamboo Pipes'), +('15838', 'Bamboo Pipes'), +('15839', 'Bamboo Pipes'), +('15840', 'Bamboo Pipes'), +('15841', 'Bamboo Pipes'), +('15842', 'Bamboo Pipes'), +('15843', 'Bamboo Pipes'), +('15844', 'Bamboo Pipes'), +('15845', 'Rum Crate'), +('15846', 'Red flowers'), +('15847', 'Hopper'), +('15848', 'Hopper'), +('15849', 'Hopper'), +('15850', 'Hopper'), +('15851', 'Hopper'), +('15852', 'Hopper'), +('15853', 'Hopper'), +('15854', 'Hopper'), +('15855', 'Bridge'), +('15856', 'Bridge'), +('15857', 'Bridge'), +('15858', 'Bridge'), +('15859', 'Bridge'), +('15860', 'Bridge'), +('15861', 'Bridge'), +('15862', 'Bridge'), +('15863', 'Bamboo Pipes'), +('15864', 'Bamboo Pipes'), +('15865', 'Bamboo Pipes'), +('15866', 'Bamboo Pipes'), +('15867', 'Bamboo Pipes'), +('15868', 'Bamboo Pipes'), +('15869', 'Bamboo Pipes'), +('15870', 'Bamboo Pipes'), +('15871', 'Rum Crate'), +('15872', 'Blue flowers'), +('15873', 'Hopper'), +('15874', 'Hopper'), +('15875', 'Hopper'), +('15876', 'Hopper'), +('15877', 'Hopper'), +('15878', 'Hopper'), +('15879', 'Hopper'), +('15880', 'Hopper'), +('15881', 'Bridge'), +('15882', 'Bridge'), +('15883', 'Bridge'), +('15884', 'Bridge'), +('15885', 'Bridge'), +('15886', 'Bridge'), +('15887', 'Bridge'), +('15888', 'Bridge'), +('15889', 'null'), +('15890', 'Bamboo Ladder'), +('15891', 'Bamboo Ladder'), +('15892', 'Bamboo Ladder'), +('15893', 'Bamboo Ladder'), +('15894', 'Bamboo Ladder'), +('15895', 'Bamboo Ladder'), +('15896', 'Copper Ladder'), +('15897', 'Copper Ladder'), +('15898', 'Copper Ladder'), +('15899', 'Copper Ladder'), +('15900', 'Copper Ladder'), +('15901', 'Copper Ladder'), +('15902', 'Posts'), +('15903', 'Boiler'), +('15904', 'Boiler'), +('15905', 'Boiler'), +('15906', 'Boiler'), +('15907', 'Boiler'), +('15908', 'Boiler'), +('15909', 'Boiler'), +('15910', 'Boiler'), +('15911', 'Boiler'), +('15912', 'Boiler'), +('15913', 'Boiler'), +('15914', 'Boiler'), +('15915', 'null'), +('15916', 'middle section'), +('15917', 'middle section'), +('15918', 'middle section'), +('15919', 'middle section'), +('15920', 'middle section'), +('15921', 'middle section'), +('15922', 'Bottle Machine'), +('15923', 'Bottle machine'), +('15924', 'Conveyor Belt'), +('15925', 'Conveyor Belt'), +('15926', 'Conveyor Belt'), +('15927', 'Conveyor Belt'), +('15928', 'Steam Pump'), +('15929', 'Steam Pump'), +('15930', 'Steam_Pump'), +('15931', 'Log Store'), +('15932', 'Workbench'), +('15933', 'Workbench'), +('15934', 'Workbench'), +('15935', 'Watering Hole'), +('15936', 'Water Pump'), +('15937', 'Water Pump'), +('15938', 'Water Pump'), +('15939', 'Red Flowers'), +('15940', 'Blue Flowers'), +('15941', 'Red Flowers'), +('15942', 'Blue Flowers'), +('15943', 'Bridge'), +('15944', 'Bridge'), +('15945', 'Bridge'), +('15946', 'Sweetgrub Mound'), +('15947', 'Sweetgrub Mound'), +('15948', 'Jungle Tree'), +('15949', 'Jungle Tree'), +('15950', 'Jungle Tree'), +('15951', 'Jungle Tree'), +('15952', 'Jungle Tree'), +('15953', 'Jungle Tree'), +('15954', 'Jungle Tree'), +('15955', 'Jungle Tree'), +('15956', 'Jungle Tree'), +('15957', 'Tropical tree'), +('15958', 'Tropical tree'), +('15959', 'Tropical tree'), +('15960', 'Tropical leaves'), +('15961', 'Bitternut Tree'), +('15962', 'Bitternut Tree'), +('15963', 'Bitternut Tree'), +('15964', 'Bitternut Tree'), +('15965', 'Bitternut Tree'), +('15966', 'Bitternut Tree'), +('15967', 'Bitternut Tree'), +('15968', 'Bitternut Tree'), +('15969', 'Bitternut Tree'), +('15970', 'Scrapey Tree'), +('15971', 'Scrapey Tree'), +('15972', 'null'), +('15973', 'null'), +('15974', 'null'), +('15975', 'null'), +('15976', 'null'), +('15977', 'null'), +('15978', 'Jungle Plant'), +('15979', 'null'), +('15980', 'null'), +('15981', 'Chair'), +('15982', 'Table'), +('15983', 'Kettle'), +('15984', 'Waiting Room Door'), +('15985', 'Deposit Box'), +('15986', 'Bitternut Sign'), +('15987', 'Sweetgrub Sign'), +('15988', 'Scrapey Bark Sign'), +('15989', 'Red Water Sign'), +('15990', 'Blue Water Sign'), +('15991', 'Water Sign'), +('15992', 'Sign'), +('15993', 'Sign'), +('15994', 'Sign'), +('15995', 'Stall'), +('15996', 'Portal'), +('15997', 'Pirate Flag'), +('15998', 'Pirate Flag'), +('15999', 'null'), +('16000', 'null'), +('16001', 'Crate'), +('16002', 'Crate'), +('16003', 'Barrel'), +('16004', 'null'), +('16005', 'Stepping log'), +('16006', 'Stepping log'), +('16007', 'Stepping log'), +('16008', 'null'), +('16009', 'null'), +('16010', 'Telescope'), +('16011', 'null'), +('16012', 'Stepping Stone'), +('16013', 'Stepping stone'), +('16014', 'null'), +('16015', 'null'), +('16016', 'null'), +('16017', 'null'), +('16018', 'null'), +('16019', 'null'), +('16020', 'null'), +('16021', 'null'), +('16022', 'null'), +('16023', 'null'), +('16024', 'null'), +('16025', 'null'), +('16026', 'null'), +('16027', 'null'), +('16028', 'null'), +('16029', 'null'), +('16030', 'null'), +('16031', 'null'), +('16032', 'null'), +('16033', 'null'), +('16034', 'null'), +('16035', 'null'), +('16036', 'null'), +('16037', 'null'), +('16038', 'null'), +('16039', 'null'), +('16040', 'null'), +('16041', 'Sulphur vent'), +('16042', 'null'), +('16043', 'Portal of Death'), +('16044', 'Portal of Death'), +('16045', 'Portal of Death'), +('16046', 'Portal of Death'), +('16047', 'Cradle of Life'), +('16048', 'Bone Chain'), +('16049', 'Boney ladder'), +('16050', 'Portal'), +('16051', 'null'), +('16052', 'null'), +('16053', 'null'), +('16054', 'null'), +('16055', 'Skeleton'), +('16056', 'Skeleton'), +('16057', 'Skeleton'), +('16058', 'null'), +('16059', 'null'), +('16060', 'null'), +('16061', 'null'), +('16062', 'null'), +('16063', 'null'), +('16064', 'null'), +('16065', 'Rickety door'), +('16066', 'Rickety door'), +('16067', 'Rickety door'), +('16068', 'Rickety door'), +('16069', 'null'), +('16070', 'null'), +('16071', 'null'), +('16072', 'null'), +('16073', 'null'), +('16074', 'Skeleton'), +('16075', 'Skeleton'), +('16076', 'Skeleton'), +('16077', 'Grain of Plenty'), +('16078', 'Rope'), +('16079', 'Rope'), +('16080', 'Ladder'), +('16081', 'Ladder'), +('16082', 'Portal'), +('16083', 'Danger Sign'), +('16084', 'null'), +('16085', 'null'), +('16086', 'null'), +('16087', 'null'), +('16088', 'null'), +('16089', 'Oozing barrier'), +('16090', 'Oozing barrier'), +('16091', 'null'), +('16092', 'Oozing barrier'), +('16093', 'null'), +('16094', 'null'), +('16095', 'null'), +('16096', 'null'), +('16097', 'null'), +('16098', 'null'), +('16099', 'null'), +('16100', 'null'), +('16101', 'null'), +('16102', 'null'), +('16103', 'Skeleton'), +('16104', 'Skeleton'), +('16105', 'Skeleton'), +('16106', 'null'), +('16107', 'null'), +('16108', 'null'), +('16109', 'Stinking tendrils'), +('16110', 'Dripping tendrils'), +('16111', 'Tendrils'), +('16112', 'Goo covered vine'), +('16113', 'Goo covered vine'), +('16114', 'Dripping vine'), +('16115', 'Dripping vine'), +('16116', 'Portal'), +('16117', 'Danger Sign'), +('16118', 'Box of Health'), +('16119', 'null'), +('16120', 'null'), +('16121', 'null'), +('16122', 'null'), +('16123', 'Gate of War'), +('16124', 'Gate of War'), +('16125', 'null'), +('16126', 'Gate of War'), +('16127', 'Gate of War'), +('16128', 'null'), +('16129', 'null'), +('16130', 'null'), +('16131', 'null'), +('16132', 'null'), +('16133', 'null'), +('16134', 'null'), +('16135', 'Gift of Peace'), +('16136', 'Rock'), +('16137', 'null'), +('16138', 'null'), +('16139', 'null'), +('16140', 'null'), +('16141', 'null'), +('16142', 'null'), +('16143', 'Skeleton'), +('16144', 'Skeleton'), +('16145', 'Skeleton'), +('16146', 'Spikey chain'), +('16147', 'Spikey chain'), +('16148', 'Ladder'), +('16149', 'Ladder'), +('16150', 'Portal'), +('16151', 'Danger Sign'), +('16152', 'Dead Explorer'), +('16153', 'Rock'), +('16154', 'Entrance'), +('16155', 'Beehive part'), +('16156', 'Beehive part'), +('16157', 'Beehive part'), +('16158', 'Beehive part'), +('16159', 'Interface surround'), +('16160', 'Button up'), +('16161', 'Button down'), +('16162', 'Button left'), +('16163', 'Button right'), +('16164', 'Button build'), +('16165', 'Beehive'), +('16166', 'null'), +('16167', 'null'), +('16168', 'null'), +('16169', 'Table'), +('16170', 'Table'), +('16171', 'null'), +('16172', 'Staircase'), +('16173', 'Staircase'), +('16174', 'Bone Chain'), +('16175', 'null'), +('16176', 'null'), +('16177', 'Waterlily'), +('16178', 'Waterlily'), +('16179', 'Waterlily'), +('16180', 'null'), +('16181', 'Fairy ring'), +('16182', 'null'), +('16183', 'null'), +('16184', 'Fairy ring'), +('16185', 'null'), +('16186', 'null'), +('16187', 'Cloud bank'), +('16188', 'null'), +('16189', 'Cloud bank'), +('16190', 'Lightning'), +('16191', 'Lightning'), +('16192', 'null'), +('16193', 'null'), +('16194', 'null'), +('16195', 'null'), +('16196', 'null'), +('16197', 'null'), +('16198', 'Lifeless Matter'), +('16199', 'Lifeless Matter'), +('16200', 'null'), +('16201', 'null'), +('16202', 'null'), +('16203', 'null'), +('16204', 'null'), +('16205', 'null'), +('16206', 'null'), +('16207', 'null'), +('16208', 'null'), +('16209', 'null'), +('16210', 'null'), +('16211', 'null'), +('16212', 'null'), +('16213', 'Fairy workbench'), +('16214', 'null'), +('16215', 'Fairy workbench'), +('16216', 'null'), +('16217', 'Potion shelves'), +('16218', 'null'), +('16219', 'Potion shelves'), +('16220', 'null'), +('16221', 'Potion shelf'), +('16222', 'null'), +('16223', 'Potion shelf'), +('16224', 'Healing certificate'), +('16225', 'null'), +('16226', 'null'), +('16227', 'null'), +('16228', 'null'), +('16229', 'null'), +('16230', 'null'), +('16231', 'null'), +('16232', 'null'), +('16233', 'null'), +('16234', 'Hurt fairy'), +('16235', 'Injured fairy'), +('16236', 'Wounded fairy'), +('16237', 'Hurt fairy'), +('16238', 'Stretcher'), +('16239', 'First aid box'), +('16240', 'Crutch'), +('16241', 'Crutch'), +('16242', 'Crutch'), +('16243', 'null'), +('16244', 'Medical table'), +('16245', 'Map table'), +('16246', 'Stool'), +('16247', 'Wall map'), +('16248', 'Crate of wands'), +('16249', 'Crate'), +('16250', 'Crate'), +('16251', 'Crates'), +('16252', 'Crate'), +('16253', 'Barrel'), +('16254', 'Tactical map frame'), +('16255', 'null'), +('16256', 'null'), +('16257', 'null'), +('16258', 'null'), +('16259', 'null'), +('16260', 'Stalagmite'), +('16261', 'Stalagmite'), +('16262', 'Stalagmite'), +('16263', 'Stalagmite'), +('16264', 'Tree'), +('16265', 'Tree'), +('16266', 'Tree Stump'), +('16267', 'Plant'), +('16268', 'Plant'), +('16269', 'Plant'), +('16270', 'Plant'), +('16271', 'null'), +('16272', 'null'), +('16273', 'null'), +('16274', 'null'), +('16275', 'null'), +('16276', 'null'), +('16277', 'null'), +('16278', 'null'), +('16279', 'null'), +('16280', 'null'), +('16281', 'null'), +('16282', 'null'), +('16283', 'Large rock'), +('16284', 'Large rock'), +('16285', 'null'), +('16286', 'null'), +('16287', 'null'), +('16288', 'null'), +('16289', 'null'), +('16290', 'null'), +('16291', 'null'), +('16292', 'null'), +('16293', 'null'), +('16294', 'null'), +('16295', 'null'), +('16296', 'null'), +('16297', 'null'), +('16298', 'null'), +('16299', 'null'), +('16300', 'null'), +('16301', 'null'), +('16302', 'null'), +('16303', 'Small rock'), +('16304', 'Stretcher'), +('16305', 'Fairy Queen'), +('16306', 'Fairy Queen'), +('16307', 'Rune temple sign'), +('16308', 'Cave entrance'), +('16309', 'Cave entrance'), +('16310', 'null'), +('16311', 'null'), +('16312', 'null'), +('16313', 'null'), +('16314', 'null'), +('16315', 'null'), +('16316', 'null'), +('16317', 'null'), +('16318', 'null'), +('16319', 'null'), +('16320', 'null'), +('16321', 'null'), +('16322', 'null'), +('16323', 'null'), +('16324', 'null'), +('16325', 'null'), +('16326', 'null'), +('16327', 'null'), +('16328', 'null'), +('16329', 'null'), +('16330', 'null'), +('16331', 'null'), +('16332', 'null'), +('16333', 'null'), +('16334', 'null'), +('16335', 'null'), +('16336', 'null'), +('16337', 'null'), +('16338', 'null'), +('16339', 'null'), +('16340', 'null'), +('16341', 'null'), +('16342', 'null'), +('16343', 'null'), +('16344', 'null'), +('16345', 'null'), +('16346', 'null'), +('16347', 'null'), +('16348', 'null'), +('16349', 'null'), +('16350', 'null'), +('16351', 'null'), +('16352', 'null'), +('16353', 'null'), +('16354', 'null'), +('16355', 'null'), +('16356', 'null'), +('16357', 'null'), +('16358', 'null'), +('16359', 'null'), +('16360', 'null'), +('16361', 'null'), +('16362', 'null'), +('16363', 'null'), +('16364', 'null'), +('16365', 'null'), +('16366', 'null'), +('16367', 'null'), +('16368', 'null'), +('16369', 'null'), +('16370', 'null'), +('16371', 'null'), +('16372', 'null'), +('16373', 'null'), +('16374', 'Potion shelves'), +('16375', 'Potion shelves'), +('16376', 'Potion shelf'), +('16377', 'Potion shelf'), +('16378', 'Healing certificate'), +('16379', 'Healing certificate'), +('16380', 'null'), +('16381', 'null'), +('16382', 'null'), +('16383', 'null'), +('16384', 'null'), +('16385', 'null'), +('16386', 'null'), +('16387', 'null'), +('16388', 'null'), +('16389', 'null'), +('16390', 'null'), +('16391', 'null'), +('16392', 'null'), +('16393', 'null'), +('16394', 'null'), +('16395', 'null'), +('16396', 'null'), +('16397', 'null'), +('16398', 'null'), +('16399', 'null'), +('16400', 'null'), +('16401', 'null'), +('16402', 'null'), +('16403', 'null'), +('16404', 'null'), +('16405', 'null'), +('16406', 'null'), +('16407', 'null'), +('16408', 'null'), +('16409', 'null'), +('16410', 'null'), +('16411', 'null'), +('16412', 'null'), +('16413', 'null'), +('16414', 'null'), +('16415', 'null'), +('16416', 'null'), +('16417', 'null'), +('16418', 'null'), +('16419', 'null'), +('16420', 'null'), +('16421', 'null'), +('16422', 'null'), +('16423', 'null'), +('16424', 'null'), +('16425', 'null'), +('16426', 'null'), +('16427', 'null'), +('16428', 'null'), +('16429', 'null'), +('16430', 'null'), +('16431', 'null'), +('16432', 'null'), +('16433', 'null'), +('16434', 'null'), +('16435', 'null'), +('16436', 'null'), +('16437', 'null'), +('16438', 'null'), +('16439', 'null'), +('16440', 'null'), +('16441', 'null'), +('16442', 'null'), +('16443', 'null'), +('16444', 'null'), +('16445', 'null'), +('16446', 'null'), +('16447', 'null'), +('16448', 'null'), +('16449', 'null'), +('16450', 'Ladder'), +('16451', 'null'), +('16452', 'null'), +('16453', 'null'), +('16454', 'null'), +('16455', 'null'), +('16456', 'null'), +('16457', 'null'), +('16458', 'Tomb Door'), +('16459', 'Tomb Door'), +('16460', 'null'), +('16461', 'null'), +('16462', 'null'), +('16463', 'null'), +('16464', 'null'), +('16465', 'null'), +('16466', 'null'), +('16467', 'null'), +('16468', 'null'), +('16469', 'null'), +('16470', 'null'), +('16471', 'null'), +('16472', 'null'), +('16473', 'Grand Gold Chest'), +('16474', 'Opened gold chest'), +('16475', 'Tomb Door'), +('16476', 'Tomb Door'), +('16477', 'null'), +('16478', 'null'), +('16479', 'null'), +('16480', 'Bust'), +('16481', 'Bust'), +('16482', 'Obelisk'), +('16483', 'An anonymous looking door'), +('16484', 'An anonymous looking door'), +('16485', 'An anonymous looking door'), +('16486', 'An anonymous looking door'), +('16487', 'An anonymous looking door'), +('16488', 'An anonymous looking door'), +('16489', 'An anonymous looking door'), +('16490', 'An anonymous looking door'), +('16491', 'An anonymous looking door'), +('16492', 'An anonymous looking door'), +('16493', 'An anonymous looking door'), +('16494', 'An anonymous looking door'), +('16495', 'Sarcophagus'), +('16496', 'Sarcophagus'), +('16497', 'Sarcophagus'), +('16498', 'Sarcophagus'), +('16499', 'Sarcophagus'), +('16500', 'Sarcophagus'), +('16501', 'Urn'), +('16502', 'Urn'), +('16503', 'Urn'), +('16504', 'Urn'), +('16505', 'Urn'), +('16506', 'Urn'), +('16507', 'Urn'), +('16508', 'Urn'), +('16509', 'Urn'), +('16510', 'Urn'), +('16511', 'Urn'), +('16512', 'Urn'), +('16513', 'Urn'), +('16514', 'Urn'), +('16515', 'Urn'), +('16516', 'Urn'), +('16517', 'Speartrap'), +('16518', 'null'), +('16519', 'null'), +('16520', 'null'), +('16521', 'null'), +('16522', 'null'), +('16523', 'null'), +('16524', 'null'), +('16525', 'null'), +('16526', 'null'), +('16527', 'null'), +('16528', 'null'), +('16529', 'null'), +('16530', 'null'), +('16531', 'null'), +('16532', 'null'), +('16533', 'null'), +('16534', 'null'), +('16535', 'Climbing rocks'), +('16536', 'Climbing rocks'), +('16537', 'null'), +('16538', 'null'), +('16539', 'null'), +('16540', 'null'), +('16541', 'null'), +('16542', 'null'), +('16543', 'null'), +('16544', 'null'), +('16545', 'null'), +('16546', 'null'), +('16547', 'null'), +('16548', 'null'), +('16549', 'null'), +('16550', 'null'), +('16551', 'null'), +('16552', 'null'), +('16553', 'null'), +('16554', 'null'), +('16555', 'null'), +('16556', 'Ladder'), +('16557', 'Ladder'), +('16558', 'Changing Curtain'), +('16559', 'Crate'), +('16560', 'Crate'), +('16561', 'Crate'), +('16562', 'Table'), +('16563', 'null'), +('16564', 'Crate'), +('16565', 'Crate'), +('16566', 'Barrel'), +('16567', 'null'), +('16568', 'Standard'), +('16569', 'Standard'), +('16570', 'null'), +('16571', 'null'), +('16572', 'null'), +('16573', 'Timber defence'), +('16574', 'null'), +('16575', 'null'), +('16576', 'Rocks'), +('16577', 'Rocks'), +('16578', 'Rocks'), +('16579', 'Rocks'), +('16580', 'Rocks'), +('16581', 'Rocks'), +('16582', 'Rocks'), +('16583', 'Rocks'), +('16584', 'Rocks'), +('16585', 'Log pile'), +('16586', 'Log pile'), +('16587', 'Log pile'), +('16588', 'Log pile'), +('16589', 'Log pile'), +('16590', 'Log pile'), +('16591', 'Log pile'), +('16592', 'Log pile'), +('16593', 'Log pile'), +('16594', 'Log pile'), +('16595', 'null'), +('16596', 'null'), +('16597', 'null'), +('16598', 'Dream puff'), +('16599', 'My life'), +('16600', 'Hurdle'), +('16601', 'Note'), +('16602', 'Note'), +('16603', 'null'), +('16604', 'Dream tree'), +('16605', 'Dream Tree stump'), +('16606', 'null'), +('16607', 'null'), +('16608', 'null'), +('16609', 'null'), +('16610', 'null'), +('16611', 'null'), +('16612', 'null'), +('16613', 'null'), +('16614', 'null'), +('16615', 'null'), +('16616', 'null'), +('16617', 'null'), +('16618', 'null'), +('16619', 'Zero'), +('16620', 'One'), +('16621', 'Two'), +('16622', 'Three'), +('16623', 'Four'), +('16624', 'Five'), +('16625', 'Six'), +('16626', 'Seven'), +('16627', 'Eight'), +('16628', 'Nine'), +('16629', 'null'), +('16630', 'null'), +('16631', 'null'), +('16632', 'Platform'), +('16633', 'Platform'), +('16634', 'Platform'), +('16635', 'Platform'), +('16636', 'Platform'), +('16637', 'Platform'), +('16638', 'Dream puff'), +('16639', 'Windswept Tree'), +('16640', 'Ladder'), +('16641', 'null'), +('16642', 'null'), +('16643', 'Water Source'), +('16644', 'null'), +('16645', 'null'), +('16646', 'null'), +('16647', 'null'), +('16648', 'null'), +('16649', 'null'), +('16650', 'null'), +('16651', 'null'), +('16652', 'null'), +('16653', 'null'), +('16654', 'null'), +('16655', 'null'), +('16656', 'null'), +('16657', 'null'), +('16658', 'null'), +('16659', 'null'), +('16660', 'null'), +('16661', 'null'), +('16662', 'null'), +('16663', 'null'), +('16664', 'null'), +('16665', 'null'), +('16666', 'null'), +('16667', 'null'), +('16668', 'null'), +('16669', 'null'), +('16670', 'null'), +('16671', 'null'), +('16672', 'null'), +('16673', 'null'), +('16674', 'null'), +('16675', 'null'), +('16676', 'null'), +('16677', 'null'), +('16678', 'null'), +('16679', 'Stalagmites'), +('16680', 'Stalagmite'), +('16681', 'null'), +('16682', 'null'), +('16683', 'null'), +('16684', 'Rock'), +('16685', 'null'), +('16686', 'Portal'), +('16687', 'Rune essence'), +('16688', 'Tar Barrel'), +('16689', 'Tanning Barrel'), +('16690', 'null'), +('16691', 'Hat rack'), +('16692', 'Hat rack'), +('16693', 'Clothes rack'), +('16694', 'null'), +('16695', 'Bank chest'), +('16696', 'Bank chest'), +('16697', 'Chest'), +('16698', 'null'), +('16699', 'null'), +('16700', 'Bank booth'), +('16701', 'Light'), +('16702', 'Cooker'), +('16703', 'Cooker'), +('16704', 'Sink'), +('16705', 'Sink'), +('16706', 'Bench'), +('16707', 'Bookcase'), +('16708', 'Tall mirror'), +('16709', 'null'), +('16710', 'null'), +('16711', 'null'), +('16712', 'null'), +('16713', 'null'), +('16714', 'Bags for sale'), +('16715', 'Bags for sale'), +('16716', 'null'), +('16717', 'null'), +('16718', 'null'), +('16719', 'Bed'), +('16720', 'Bed'), +('16721', 'Bed'), +('16722', 'null'), +('16723', 'null'), +('16724', 'null'), +('16725', 'null'), +('16726', 'null'), +('16727', 'null'), +('16728', 'null'), +('16729', 'Flowers'), +('16730', 'Flowers'), +('16731', 'Flowers'), +('16732', 'Stairs'), +('16733', 'Stairs'), +('16734', 'Stairs'), +('16735', 'Ladder'), +('16736', 'Ladder'), +('16737', 'Table'), +('16738', 'Table'), +('16739', 'Table'), +('16740', 'Table'), +('16741', 'Table'), +('16742', 'Table'), +('16743', 'Chair'), +('16744', 'Chair'), +('16745', 'Stool'), +('16746', 'null'), +('16747', 'null'), +('16748', 'null'), +('16749', 'null'), +('16750', 'null'), +('16751', 'null'), +('16752', 'null'), +('16753', 'null'), +('16754', 'null'), +('16755', 'null'), +('16756', 'null'), +('16757', 'null'), +('16758', 'null'), +('16759', 'null'), +('16760', 'null'), +('16761', 'null'), +('16762', 'null'), +('16763', 'null'), +('16764', 'null'), +('16765', 'null'), +('16766', 'null'), +('16767', 'null'), +('16768', 'null'), +('16769', 'null'), +('16770', 'null'), +('16771', 'null'), +('16772', 'null'), +('16773', 'null'), +('16774', 'Door'), +('16775', 'null'), +('16776', 'Door'), +('16777', 'Door'), +('16778', 'Door'), +('16779', 'Door'), +('16780', 'null'), +('16781', 'null'), +('16782', 'null'), +('16783', 'null'), +('16784', 'null'), +('16785', 'null'), +('16786', 'null'), +('16787', 'null'), +('16788', 'null'), +('16789', 'null'), +('16790', 'null'), +('16791', 'null'), +('16792', 'null'), +('16793', 'null'), +('16794', 'null'), +('16795', 'null'), +('16796', 'null'), +('16797', 'null'), +('16798', 'null'), +('16799', 'null'), +('16800', 'null'), +('16801', 'null'), +('16802', 'null'), +('16803', 'null'), +('16804', 'null'), +('16805', 'null'), +('16806', 'null'), +('16807', 'null'), +('16808', 'Ceremonial Brazier'), +('16809', 'Ceremonial Brazier'), +('16810', 'Ceremonial Brazier'), +('16811', 'Ceremonial Brazier'), +('16812', 'Cooker'), +('16813', 'Rack'), +('16814', 'Stool'), +('16815', 'Table'), +('16816', 'null'), +('16817', 'null'), +('16818', 'null'), +('16819', 'null'), +('16820', 'null'), +('16821', 'null'), +('16822', 'null'), +('16823', 'null'), +('16824', 'null'), +('16825', 'null'), +('16826', 'null'), +('16827', 'Table'), +('16828', 'Table'), +('16829', 'Transport platform'), +('16830', 'null'), +('16831', 'Transport platform'), +('16832', 'null'), +('16833', 'Transport platform'), +('16834', 'null'), +('16835', 'Transport platform'), +('16836', 'null'), +('16837', 'Transport platform'), +('16838', 'null'), +('16839', 'Transport platform'), +('16840', 'null'), +('16841', 'Transport platform'), +('16842', 'null'), +('16843', 'Dice'), +('16844', 'Dice'), +('16845', 'Dice'), +('16846', 'Dice'), +('16847', 'Dice'), +('16848', 'Dice'), +('16849', 'Dice'), +('16850', 'Dice'), +('16851', 'Dice'), +('16852', 'Dice'), +('16853', 'Dice'), +('16854', 'Dice'), +('16855', 'Dice'), +('16856', 'Dream puff'), +('16857', 'Dream puff'), +('16858', 'Platform edge'), +('16859', 'Hanging pirate'), +('16860', 'Tar barrel'), +('16861', 'Hammock'), +('16862', 'Crate'), +('16863', 'Crate'), +('16864', 'Crate'), +('16865', 'Crate'), +('16866', 'Sack pile'), +('16867', 'Sack pile'), +('16868', 'Sack pile'), +('16869', 'Sack pile'), +('16870', 'Sack pile'), +('16871', 'Sack pile'), +('16872', 'Fish bits'), +('16873', 'Fish bits'), +('16874', 'Table'), +('16875', 'Stool'), +('16876', 'Barrel'), +('16877', 'Barrel'), +('16878', 'Sack'), +('16879', 'Cannonballs'), +('16880', 'Cannonballs'), +('16881', 'Barrel'), +('16882', 'Barrel'), +('16883', 'Barrel'), +('16884', 'Barrel'), +('16885', 'Barrel'), +('16886', 'Barrel'), +('16887', 'Wooden chest'), +('16888', 'Wooden chest'), +('16889', 'Wooden chest'), +('16890', 'Chest'), +('16891', 'Chest'), +('16892', 'null'), +('16893', 'Cooking range'), +('16894', 'Extra anchor'), +('16895', 'Extra chain'), +('16896', 'null'), +('16897', 'null'), +('16898', 'null'), +('16899', 'Wooden table'), +('16900', 'Chair'), +('16901', 'Lantern'), +('16902', 'Door'), +('16903', 'Door'), +('16904', 'null'), +('16905', 'null'), +('16906', 'Wheel'), +('16907', 'null'), +('16908', 'null'), +('16909', 'null'), +('16910', 'null'), +('16911', 'null'), +('16912', 'null'), +('16913', 'null'), +('16914', 'null'), +('16915', 'null'), +('16916', 'null'), +('16917', 'null'), +('16918', 'null'), +('16919', 'null'), +('16920', 'null'), +('16921', 'null'), +('16922', 'null'), +('16923', 'null'), +('16924', 'null'), +('16925', 'null'), +('16926', 'null'), +('16927', 'null'), +('16928', 'null'), +('16929', 'null'), +('16930', 'null'), +('16931', 'null'), +('16932', 'null'), +('16933', 'null'), +('16934', 'null'), +('16935', 'null'), +('16936', 'null'), +('16937', 'null'), +('16938', 'Cannon'), +('16939', 'Cannon'), +('16940', 'null'), +('16941', 'Support'), +('16942', 'null'), +('16943', 'null'), +('16944', 'null'), +('16945', 'Stairs'), +('16946', 'Stairs'), +('16947', 'Stairs'), +('16948', 'Stairs'), +('16949', 'null'), +('16950', 'null'), +('16951', 'Support'), +('16952', 'Support'), +('16953', 'Cannon'), +('16954', 'Crate'), +('16955', 'Wall chart'), +('16956', 'Chest'), +('16957', 'Crane'), +('16958', 'Row boat'), +('16959', 'Ladder'), +('16960', 'Ladder'), +('16961', 'Ladder'), +('16962', 'Ladder'), +('16963', 'null'), +('16964', 'null'), +('16965', 'null'), +('16966', 'null'), +('16967', 'null'), +('16968', 'Shelf'), +('16969', 'Shelf'), +('16970', 'Shelf'), +('16971', 'Shelf'), +('16972', 'Shelf'), +('16973', 'Shelf'), +('16974', 'Table'), +('16975', 'Wallchart'), +('16976', 'null'), +('16977', 'null'), +('16978', 'Chart'), +('16979', 'Chart'), +('16980', 'Chart'), +('16981', 'Scrolls'), +('16982', 'null'), +('16983', 'null'), +('16984', 'null'), +('16985', 'null'), +('16986', 'null'), +('16987', 'null'), +('16988', 'null'), +('16989', 'null'), +('16990', 'null'), +('16991', 'null'), +('16992', 'null'), +('16993', 'null'), +('16994', 'null'), +('16995', 'null'), +('16996', 'null'), +('16997', 'null'), +('16998', 'Rocks'), +('16999', 'Rocks'), +('17000', 'Rocks'), +('17001', 'Rocks'), +('17002', 'Rocks'), +('17003', 'Rocks'), +('17004', 'Rocks'), +('17005', 'Rocks'), +('17006', 'Rocks'), +('17007', 'Rocks'), +('17008', 'Rocks'), +('17009', 'Rocks'), +('17010', 'Altar'), +('17011', 'Pillar'), +('17012', 'Pillar'), +('17013', 'Pillar'), +('17014', 'null'), +('17015', 'null'), +('17016', 'null'), +('17017', 'null'), +('17018', 'null'), +('17019', 'null'), +('17020', 'null'), +('17021', 'null'), +('17022', 'null'), +('17023', 'null'), +('17024', 'null'), +('17025', 'null'), +('17026', 'Rocks'), +('17027', 'Rocks'), +('17028', 'Rocks'), +('17029', 'null'), +('17030', 'null'), +('17031', 'Crossbow stall'), +('17032', 'null'), +('17033', 'Crate'), +('17034', 'null'), +('17035', 'null'), +('17036', 'Strong Tree'), +('17037', 'Strong Tree'), +('17038', 'Strong Tree'), +('17039', 'Strong Yew'), +('17040', 'Strong Yew'), +('17041', 'Strong Yew'), +('17042', 'Rocks'), +('17043', 'Rocks'), +('17044', 'null'), +('17045', 'null'), +('17046', 'Strong Tree'), +('17047', 'Wall'), +('17048', 'Wall'), +('17049', 'Wall'), +('17050', 'Wall'), +('17051', 'Wall'), +('17052', 'Wall'), +('17053', 'null'), +('17054', 'null'), +('17055', 'null'), +('17056', 'Crossbow Tree'), +('17057', 'Crossbow Tree'), +('17058', 'Crossbow Tree'), +('17059', 'Crossbow Tree'), +('17060', 'Crossbow Tree'), +('17061', 'Crossbow Tree'), +('17062', 'Crossbow Tree'), +('17063', 'Crossbow Tree'), +('17064', 'Rocks'), +('17065', 'Rocks'), +('17066', 'null'), +('17067', 'null'), +('17068', 'Broken Raft'), +('17069', 'Broken Raft'), +('17070', 'Broken Raft'), +('17071', 'Broken Raft'), +('17072', 'null'), +('17073', 'null'), +('17074', 'Strong Tree'), +('17075', 'Strong Tree'), +('17076', 'Strong Tree'), +('17077', 'Strong Tree'), +('17078', 'null'), +('17079', 'null'), +('17080', 'Strong Tree'), +('17081', 'Strong Tree'), +('17082', 'null'), +('17083', 'null'), +('17084', 'null'), +('17085', 'null'), +('17086', 'null'), +('17087', 'null'), +('17088', 'null'), +('17089', 'Large door'), +('17090', 'Large door'), +('17091', 'Large door'), +('17092', 'Large door'), +('17093', 'Large door'), +('17094', 'Large door'), +('17095', 'Shelf'), +('17096', 'Shelf'), +('17097', 'Shelf'), +('17098', 'Stool'), +('17099', 'Table'), +('17100', 'Crate'), +('17101', 'Crate'), +('17102', 'null'), +('17103', 'null'), +('17104', 'null'), +('17105', 'null'), +('17106', 'null'), +('17107', 'null'), +('17108', 'null'), +('17109', 'null'), +('17110', 'null'), +('17111', 'null'), +('17112', 'null'), +('17113', 'null'), +('17114', 'Door'), +('17115', 'Door'), +('17116', 'Pool of Slime'), +('17117', 'Pool of Slime'), +('17118', 'Pool of Slime'), +('17119', 'Pool of Slime'), +('17120', 'Ladder'), +('17121', 'Ladder'), +('17122', 'Ladder'), +('17123', 'null'), +('17124', 'null'), +('17125', 'Gnome chair'), +('17126', 'Gnome table'), +('17127', 'Gnome table'), +('17128', 'Gnome table'), +('17129', 'Gnome table'), +('17130', 'Office table'), +('17131', 'Gnome cooker'), +('17132', 'Kitchen cabinet'), +('17133', 'Gnome cabinet'), +('17134', 'Gnome barrel'), +('17135', 'Gnome barrels'), +('17136', 'Gnome crates'), +('17137', 'Gnome crate'), +('17138', 'null'), +('17139', 'null'), +('17140', 'Oaknock statue'), +('17141', 'Healthorg statue'), +('17142', 'null'), +('17143', 'Staircase'), +('17144', 'Boxes'), +('17145', 'Table'), +('17146', 'Chair'), +('17147', 'null'), +('17148', 'Ladder'), +('17149', 'Ladder'), +('17150', 'Storage shelves'), +('17151', 'Shelves'), +('17152', 'Shelves'), +('17153', 'Sinister barrel'), +('17154', 'null'), +('17155', 'Staircase'), +('17156', 'null'), +('17157', 'null'), +('17158', 'Stool'), +('17159', 'Ladder'), +('17160', 'Ladder'), +('17161', 'Cauldron'), +('17162', 'Cauldron'), +('17163', 'null'), +('17164', 'null'), +('17165', 'null'), +('17166', 'null'), +('17167', 'null'), +('17168', 'null'), +('17169', 'null'), +('17170', 'null'), +('17171', 'null'), +('17172', 'null'), +('17173', 'null'), +('17174', 'null'), +('17175', 'null'), +('17176', 'null'), +('17177', 'null'), +('17178', 'null'), +('17179', 'null'), +('17180', 'null'), +('17181', 'null'), +('17182', 'null'), +('17183', 'null'), +('17184', 'null'), +('17185', 'null'), +('17186', 'null'), +('17187', 'null'), +('17188', 'null'), +('17189', 'null'), +('17190', 'null'), +('17191', 'null'), +('17192', 'null'), +('17193', 'null'), +('17194', 'null'), +('17195', 'null'), +('17196', 'Goblin crowd'), +('17197', 'Gnome crowd'), +('17198', 'Gnome crowd'), +('17199', 'Goblin crowd'), +('17200', 'Goblin crowd'), +('17201', 'Gnome crowd'), +('17202', 'Gnome crowd'), +('17203', 'Goblin crowd'), +('17204', 'Goblin crowd'), +('17205', 'Gnome crowd'), +('17206', 'Gnome crowd'), +('17207', 'A Goblin standard'), +('17208', 'null'), +('17209', 'Cave entrance'), +('17210', 'null'), +('17211', 'null'), +('17212', 'null'), +('17213', 'null'), +('17214', 'null'), +('17215', 'null'), +('17216', 'null'), +('17217', 'null'), +('17218', 'null'), +('17219', 'null'), +('17220', 'null'), +('17221', 'null'), +('17222', 'Tunnel'), +('17223', 'Tunnel'), +('17224', 'null'), +('17225', 'null'), +('17226', 'null'), +('17227', 'null'), +('17228', 'null'), +('17229', 'null'), +('17230', 'null'), +('17231', 'null'), +('17232', 'Drawers'), +('17233', 'Drawers'), +('17234', 'Chair'), +('17235', 'Table'), +('17236', 'Hammock'), +('17237', 'Torch'), +('17238', 'Aspidistra plant'), +('17239', 'Singing bowl'), +('17240', 'Oaknock's machine'), +('17241', 'Oaknock's machine'), +('17242', 'Broken cogs'), +('17243', 'Cogs'), +('17244', 'null'), +('17245', 'Oaknock's Machine'), +('17246', 'Oaknock's Machine'), +('17247', 'Oaknock's Machine'), +('17248', 'Oaknock's exchanger'), +('17249', 'Oaknock's exchanger'), +('17250', 'null'), +('17251', 'null'), +('17252', 'null'), +('17253', 'null'), +('17254', 'null'), +('17255', 'null'), +('17256', 'Rift'), +('17257', 'Rift'), +('17258', 'Rift'), +('17259', 'Rift'), +('17260', 'Rift'), +('17261', 'Rift'), +('17262', 'Rift'), +('17263', 'Rift'), +('17264', 'Rift'), +('17265', 'Rift'), +('17266', 'Rift'), +('17267', 'Crystal bridge'), +('17268', 'A chasm'), +('17269', 'null'), +('17270', 'null'), +('17271', 'Crate'), +('17272', 'Machine panel'), +('17273', 'Argento'), +('17274', 'Argento'), +('17275', 'Argento'), +('17276', 'Argento'), +('17277', 'Argento'), +('17278', 'Argento'), +('17279', 'Argento'), +('17280', 'null'), +('17281', 'null'), +('17282', 'null'), +('17283', 'null'), +('17284', 'Door'), +('17285', 'null'), +('17286', 'Hoisted sail'), +('17287', 'Hoisted sail'), +('17288', 'Hoisted sail'), +('17289', 'Hoisted sail'), +('17290', 'Hoisted sail'), +('17291', 'Hoisted sail'), +('17292', 'Hoisted sail'), +('17293', 'Hoisted sail'), +('17294', 'Hoisted sail'), +('17295', 'Hoisted sail'), +('17296', 'Barrel'), +('17297', 'Barrel'), +('17298', 'null'), +('17299', 'Table'), +('17300', 'Cupboard'), +('17301', 'Cupboard'), +('17302', 'Cupboard'), +('17303', 'Cupboard'), +('17304', 'Crate'), +('17305', 'Crate'), +('17306', 'Stool'), +('17307', 'Barrel'), +('17308', 'Barrel'), +('17309', 'Study desk'), +('17310', 'null'), +('17311', 'Chair'), +('17312', 'Bench'), +('17313', 'Hedge'), +('17314', 'Hedge'), +('17315', 'Hedge'), +('17316', 'Door'), +('17317', 'Door'), +('17318', 'null'), +('17319', 'Bookcase'), +('17320', 'Bookcase'), +('17321', 'Bookcase'), +('17322', 'Log pile'), +('17323', 'Candles'), +('17324', 'null'), +('17325', 'Limestone fireplace'), +('17326', 'null'), +('17327', 'null'), +('17328', 'null'), +('17329', 'null'), +('17330', 'null'), +('17331', 'null'), +('17332', 'null'), +('17333', 'null'), +('17334', 'Lava'), +('17335', 'Lava'), +('17336', 'Lava'), +('17337', 'Lava'), +('17338', 'Lava'), +('17339', 'Lava'), +('17340', 'Lava'), +('17341', 'Lava'), +('17342', 'Lava'), +('17343', 'Lava'), +('17344', 'Lava'), +('17345', 'Lava'), +('17346', 'null'), +('17347', 'null'), +('17348', 'Table'), +('17349', 'null'), +('17350', 'Rock'), +('17351', 'Rock'), +('17352', 'Rock'), +('17353', 'Rock'), +('17354', 'Rock'), +('17355', 'Rock'), +('17356', 'Rock'), +('17357', 'Rock'), +('17358', 'Rock'), +('17359', 'null'), +('17360', 'null'), +('17361', 'null'), +('17362', 'Urn'), +('17363', 'null'), +('17364', 'Rock'), +('17365', 'Small rock'), +('17366', 'Rock'), +('17367', 'Stone Tablet'), +('17368', 'Floor'), +('17369', 'null'), +('17370', 'Rift'), +('17371', 'Rift'), +('17372', 'Rift'), +('17373', 'Rift'), +('17374', 'Rift'), +('17375', 'Rift'), +('17376', 'Rift'), +('17377', 'Rift'), +('17378', 'Rift'), +('17379', 'Rift'), +('17380', 'Rift'), +('17381', 'Rift'), +('17382', 'Bookcase'), +('17383', 'Rocks'), +('17384', 'Rocks'), +('17385', 'Rocks'), +('17386', 'Rocks'), +('17387', 'Rocks'), +('17388', 'Rocks'), +('17389', 'Rocks'), +('17390', 'Rocks'), +('17391', 'Rocks'), +('17392', 'Gangplank'), +('17393', 'Gangplank'), +('17394', 'Gangplank'), +('17395', 'Gangplank'), +('17396', 'Gangplank'), +('17397', 'Gangplank'), +('17398', 'Gangplank'), +('17399', 'Gangplank'), +('17400', 'Gangplank'), +('17401', 'Gangplank'), +('17402', 'Gangplank'), +('17403', 'Gangplank'), +('17404', 'Gangplank'), +('17405', 'Gangplank'), +('17406', 'Gangplank'), +('17407', 'Gangplank'), +('17408', 'Gangplank'), +('17409', 'Gangplank'), +('17410', 'null'), +('17411', 'null'), +('17412', 'null'), +('17413', 'null'), +('17414', 'null'), +('17415', 'null'), +('17416', 'null'), +('17417', 'null'), +('17418', 'null'), +('17419', 'null'), +('17420', 'null'), +('17421', 'null'), +('17422', 'null'), +('17423', 'Drain'), +('17424', 'Drain'), +('17425', 'Sword case'), +('17426', 'Sword case'), +('17427', 'Sword case'), +('17428', 'null'), +('17429', 'Rusty key'), +('17430', 'Mud'), +('17431', 'null'), +('17432', 'Sewer pipe'), +('17433', 'Wardrobe'), +('17434', 'Wardrobe'), +('17435', 'Stone table'), +('17436', 'Stone table'), +('17437', 'Stone table'), +('17438', 'Stone table'), +('17439', 'Stone circle wall'), +('17440', 'Stone circle wall'), +('17441', 'Stone circle wall'), +('17442', 'Stone circle wall'), +('17443', 'Stone circle wall'), +('17444', 'Stone circle wall'), +('17445', 'Stone circle wall'), +('17446', 'null'), +('17447', 'null'), +('17448', 'null'), +('17449', 'null'), +('17450', 'Dragon head'), +('17451', 'Chess'), +('17452', 'null'), +('17453', 'null'), +('17454', 'null'), +('17455', 'Crystal ball'), +('17456', 'null'), +('17457', 'null'), +('17458', 'null'), +('17459', 'null'), +('17460', 'null'), +('17461', 'Ornate candle'), +('17462', 'Chair'), +('17463', 'Chair'), +('17464', 'Desk'), +('17465', 'Bed'), +('17466', 'Drawers'), +('17467', 'Shelf'), +('17468', 'Shelf'), +('17469', 'null'), +('17470', 'null'), +('17471', 'null'), +('17472', 'null'), +('17473', 'null'), +('17474', 'null'), +('17475', 'null'), +('17476', 'null'), +('17477', 'Dragon's head'), +('17478', 'Dragon's head'), +('17479', 'Dragon's head'), +('17480', 'Dragon's head'), +('17481', 'Dragon's head'), +('17482', 'Dragon's head'), +('17483', 'Dragon's head'), +('17484', 'Dragon's head'), +('17485', 'Dragon's head'), +('17486', 'Dragon's head'), +('17487', 'null'), +('17488', 'Door'), +('17489', 'null'), +('17490', 'null'), +('17491', 'null'), +('17492', 'null'), +('17493', 'null'), +('17494', 'null'), +('17495', 'null'), +('17496', 'null'), +('17497', 'Wall'), +('17498', 'Wall'), +('17499', 'null'), +('17500', 'Wall'), +('17501', 'null'), +('17502', 'null'), +('17503', 'null'), +('17504', 'null'), +('17505', 'null'), +('17506', 'null'), +('17507', 'null'), +('17508', 'Waste pipes'), +('17509', 'Waste pipes'), +('17510', 'Waste pipes'), +('17511', 'Waste pipes'), +('17512', 'null'), +('17513', 'null'), +('17514', 'null'), +('17515', 'null'), +('17516', 'null'), +('17517', 'null'), +('17518', 'null'), +('17519', 'null'), +('17520', 'null'), +('17521', 'null'), +('17522', 'null'), +('17523', 'null'), +('17524', 'null'), +('17525', 'null'), +('17526', 'null'), +('17527', 'null'), +('17528', 'null'), +('17529', 'null'), +('17530', 'null'), +('17531', 'null'), +('17532', 'null'), +('17533', 'null'), +('17534', 'null'), +('17535', 'null'), +('17536', 'null'), +('17537', 'null'), +('17538', 'null'), +('17539', 'null'), +('17540', 'null'), +('17541', 'null'), +('17542', 'null'), +('17543', 'null'), +('17544', 'null'), +('17545', 'Table'), +('17546', 'Table'), +('17547', 'Chair'), +('17548', 'Chair'), +('17549', 'Chair'), +('17550', 'Chair'), +('17551', 'Stool'), +('17552', 'Stool'), +('17553', 'Bed'), +('17554', 'Bed'), +('17555', 'Bed'), +('17556', 'Bucket'), +('17557', 'Bucket'), +('17558', 'Bucket'), +('17559', 'Panning tray'), +('17560', 'Panning tray'), +('17561', 'Pots'), +('17562', 'Pots'), +('17563', 'Floor below'), +('17564', 'null'), +('17565', 'null'), +('17566', 'null'), +('17567', 'null'), +('17568', 'null'), +('17569', 'null'), +('17570', 'null'), +('17571', 'null'), +('17572', 'null'), +('17573', 'null'), +('17574', 'null'), +('17575', 'null'), +('17576', 'null'), +('17577', 'null'), +('17578', 'null'), +('17579', 'null'), +('17580', 'null'), +('17581', 'null'), +('17582', 'null'), +('17583', 'null'), +('17584', 'null'), +('17585', 'null'), +('17586', 'null'), +('17587', 'null'), +('17588', 'null'), +('17589', 'null'), +('17590', 'null'), +('17591', 'null'), +('17592', 'null'), +('17593', 'null'), +('17594', 'null'), +('17595', 'null'), +('17596', 'null'), +('17597', 'null'), +('17598', 'null'), +('17599', 'null'), +('17600', 'Door'), +('17601', 'Door'), +('17602', 'null'), +('17603', 'null'), +('17604', 'null'), +('17605', 'null'), +('17606', 'null'), +('17607', 'null'), +('17608', 'null'), +('17609', 'null'), +('17610', 'null'), +('17611', 'null'), +('17612', 'null'), +('17613', 'null'), +('17614', 'null'), +('17615', 'null'), +('17616', 'null'), +('17617', 'null'), +('17618', 'null'), +('17619', 'null'), +('17620', 'null'), +('17621', 'null'), +('17622', 'null'), +('17623', 'null'), +('17624', 'null'), +('17625', 'null'), +('17626', 'Rubble'), +('17627', 'Washing Line'), +('17628', 'null'), +('17629', 'null'), +('17630', 'null'), +('17631', 'null'), +('17632', 'null'), +('17633', 'null'), +('17634', 'null'), +('17635', 'Scaffolding'), +('17636', 'Scaffolding'), +('17637', 'Ladder'), +('17638', 'null'), +('17639', 'null'), +('17640', 'Fireplace'), +('17641', 'Fireplace'), +('17642', 'Fireplace'), +('17643', 'Fireplace'), +('17644', 'Barricade'), +('17645', 'Barricade'), +('17646', 'Barricade'), +('17647', 'Sickle logo'), +('17648', 'Sickle logo'), +('17649', 'null'), +('17650', 'null'), +('17651', 'null'), +('17652', 'null'), +('17653', 'null'), +('17654', 'Barrel'), +('17655', 'Crate'), +('17656', 'Crates'), +('17657', 'Boxes'), +('17658', 'Crate'), +('17659', 'Staircase'), +('17660', 'Staircase'), +('17661', 'Table'), +('17662', 'Table'), +('17663', 'Chair'), +('17664', 'null'), +('17665', 'null'), +('17666', 'Table'), +('17667', 'Stool'), +('17668', 'Bunk bed'), +('17669', 'Bunk bed'), +('17670', 'Blackboard'), +('17671', 'Locker'), +('17672', 'Locker'), +('17673', 'null'), +('17674', 'null'), +('17675', 'null'), +('17676', 'Wall'), +('17677', 'Wall'), +('17678', 'Wall'), +('17679', 'Rock'), +('17680', 'Wall'), +('17681', 'Wall'), +('17682', 'Wall'), +('17683', 'Wall'), +('17684', 'Wall'), +('17685', 'Wall'), +('17686', 'Wall'), +('17687', 'Wall'), +('17688', 'Wall'), +('17689', 'null'), +('17690', 'null'), +('17691', 'null'), +('17692', 'null'), +('17693', 'null'), +('17694', 'null'), +('17695', 'null'), +('17696', 'null'), +('17697', 'null'), +('17698', 'Wall'), +('17699', 'null'), +('17700', 'null'), +('17701', 'null'), +('17702', 'Floor'), +('17703', 'null'), +('17704', 'null'), +('17705', 'null'), +('17706', 'null'), +('17707', 'null'), +('17708', 'null'), +('17709', 'Floor'), +('17710', 'Floor'), +('17711', 'Floor'), +('17712', 'Floor'), +('17713', 'null'), +('17714', 'null'), +('17715', 'null'), +('17716', 'null'), +('17717', 'null'), +('17718', 'null'), +('17719', 'null'), +('17720', 'null'), +('17721', 'null'), +('17722', 'null'), +('17723', 'null'), +('17724', 'null'), +('17725', 'null'), +('17726', 'null'), +('17727', 'null'), +('17728', 'null'), +('17729', 'null'), +('17730', 'null'), +('17731', 'null'), +('17732', 'null'), +('17733', 'null'), +('17734', 'null'), +('17735', 'null'), +('17736', 'null'), +('17737', 'null'), +('17738', 'null'), +('17739', 'null'), +('17740', 'null'), +('17741', 'null'), +('17742', 'null'), +('17743', 'null'), +('17744', 'null'), +('17745', 'null'), +('17746', 'null'), +('17747', 'null'), +('17748', 'null'), +('17749', 'null'), +('17750', 'null'), +('17751', 'null'), +('17752', 'null'), +('17753', 'null'), +('17754', 'null'), +('17755', 'null'), +('17756', 'null'), +('17757', 'Chair'), +('17758', 'Chair'), +('17759', 'Chair'), +('17760', 'Chair'), +('17761', 'Chair'), +('17762', 'Table'), +('17763', 'Bookcase'), +('17764', 'Bench'), +('17765', 'Grandfather clock'), +('17766', 'The middle of a fireplace'), +('17767', 'Left side of a fireplace'), +('17768', 'Right side of a fireplace'), +('17769', 'Ornate vase'), +('17770', 'null'), +('17771', 'null'), +('17772', 'null'), +('17773', 'null'), +('17774', 'null'), +('17775', 'null'), +('17776', 'null'), +('17777', 'null'), +('17778', 'null'), +('17779', 'null'), +('17780', 'null'), +('17781', 'null'), +('17782', 'Fence end'), +('17783', 'Fence mid'), +('17784', 'Fence corner'), +('17785', 'Fence t-piece'), +('17786', 'Single pillar'), +('17787', 'Fence mid'), +('17788', 'Fence corner'), +('17789', 'Fence bits'), +('17790', 'Fence mid'), +('17791', 'Fence mid'), +('17792', 'null'), +('17793', 'null'), +('17794', 'null'), +('17795', 'null'), +('17796', 'null'), +('17797', 'null'), +('17798', 'null'), +('17799', 'null'), +('17800', 'null'), +('17801', 'null'), +('17802', 'null'), +('17803', 'null'), +('17804', 'null'), +('17805', 'null'), +('17806', 'null'), +('17807', 'null'), +('17808', 'null'), +('17809', 'null'), +('17810', 'null'), +('17811', 'null'), +('17812', 'null'), +('17813', 'null'), +('17814', 'null'), +('17815', 'null'), +('17816', 'null'), +('17817', 'null'), +('17818', 'null'), +('17819', 'null'), +('17820', 'null'), +('17821', 'null'), +('17822', 'null'), +('17823', 'null'), +('17824', 'null'), +('17825', 'null'), +('17826', 'null'), +('17827', 'null'), +('17828', 'Rock wall'), +('17829', 'null'), +('17830', 'null'), +('17831', 'null'), +('17832', 'null'), +('17833', 'null'), +('17834', 'null'), +('17835', 'null'), +('17836', 'null'), +('17837', 'null'), +('17838', 'null'), +('17839', 'null'), +('17840', 'null'), +('17841', 'null'), +('17842', 'null'), +('17843', 'null'), +('17844', 'null'), +('17845', 'null'), +('17846', 'Rift'), +('17847', 'Rift'), +('17848', 'Rift'), +('17849', 'Rift'), +('17850', 'Rift'), +('17851', 'Rift'), +('17852', 'Rift'), +('17853', 'Rift'), +('17854', 'Rift'), +('17855', 'Rift'), +('17856', 'Rift'), +('17857', 'null'), +('17858', 'null'), +('17859', 'null'), +('17860', 'null'), +('17861', 'null'), +('17862', 'null'), +('17863', 'null'), +('17864', 'null'), +('17865', 'null'), +('17866', 'null'), +('17867', 'null'), +('17868', 'null'), +('17869', 'null'), +('17870', 'null'), +('17871', 'null'), +('17872', 'null'), +('17873', 'null'), +('17874', 'null'), +('17875', 'null'), +('17876', 'null'), +('17877', 'null'), +('17878', 'null'), +('17879', 'Rift'), +('17880', 'Rift'), +('17881', 'Rift'), +('17882', 'Rift'), +('17883', 'Rift'), +('17884', 'Rift'), +('17885', 'Rift'), +('17886', 'Rift'), +('17887', 'Rift'), +('17888', 'Rift'), +('17889', 'Rift'), +('17890', 'Bookshelf'), +('17891', 'Bookshelf'), +('17892', 'null'), +('17893', 'Lab table'), +('17894', 'Lab table'), +('17895', 'Lab table'), +('17896', 'Lab table'), +('17897', 'Lab tube'), +('17898', 'Lab tube'), +('17899', 'Experiment booth'), +('17900', 'null'), +('17901', 'null'), +('17902', 'null'), +('17903', 'null'), +('17904', 'Barrel'), +('17905', 'Crate'), +('17906', 'Crates'), +('17907', 'Boxes'), +('17908', 'Crate'), +('17909', 'Stool'), +('17910', 'Stool'), +('17911', 'null'), +('17912', 'null'), +('17913', 'null'), +('17914', 'null'), +('17915', 'null'), +('17916', 'null'), +('17917', 'null'), +('17918', 'null'), +('17919', 'null'), +('17920', 'null'), +('17921', 'null'), +('17922', 'null'), +('17923', 'null'), +('17924', 'null'), +('17925', 'null'), +('17926', 'null'), +('17927', 'null'), +('17928', 'null'), +('17929', 'null'), +('17930', 'null'), +('17931', 'null'), +('17932', 'null'), +('17933', 'null'), +('17934', 'Wall'), +('17935', 'Wall'), +('17936', 'Wall'), +('17937', 'Wall'), +('17938', 'Wall'), +('17939', 'Wall'), +('17940', 'Wall'), +('17941', 'Wall'), +('17942', 'null'), +('17943', 'Wall'), +('17944', 'null'), +('17945', 'null'), +('17946', 'null'), +('17947', 'null'), +('17948', 'null'), +('17949', 'null'), +('17950', 'null'), +('17951', 'null'), +('17952', 'null'), +('17953', 'Boat'), +('17954', 'Boat'), +('17955', 'Boat'), +('17956', 'Boat Chute'), +('17957', 'Boat Chute'), +('17958', 'Rock'), +('17959', 'Rock'), +('17960', 'Rock'), +('17961', 'Boat'), +('17962', 'Daeyalt rocks'), +('17963', 'Daeyalt rocks'), +('17964', 'Daeyalt rocks'), +('17965', 'Daeyalt rocks'), +('17966', 'Mine cart'), +('17967', 'Mine cart'), +('17968', 'Mine cart'), +('17969', 'Mine cart'), +('17970', 'Rock'), +('17971', 'Rock'), +('17972', 'Rock'), +('17973', 'Door'), +('17974', 'Ladder'), +('17975', 'Ladder'), +('17976', 'Stairs up'), +('17977', 'Broken stairs'), +('17978', 'Stairs down'), +('17979', 'Broken stairs'), +('17980', 'Wall'), +('17981', 'null'), +('17982', 'Decorated wall'), +('17983', 'Rug'), +('17984', 'Lumpy rug'), +('17985', 'Trapdoor'), +('17986', 'Ladder'), +('17987', 'Boxes'), +('17988', 'Bush'), +('17989', 'Bush'), +('17990', 'Bush'), +('17991', 'Bush'), +('17992', 'null'), +('17993', 'null'), +('17994', 'null'), +('17995', 'Ladder'), +('17996', 'Ladder'), +('17997', 'Ladder'), +('17998', 'Ladder'), +('17999', 'Ladder'), +('18000', 'Ladder'), +('18001', 'Ladder'), +('18002', 'Ladder'), +('18003', 'null'), +('18004', 'null'), +('18005', 'null'), +('18006', 'Barrel of fishbones'), +('18007', 'Corner Table'), +('18008', 'Cutting Table'), +('18009', 'Broken fish display'), +('18010', 'Stagnant fish display'), +('18011', 'A fallen barrel'), +('18012', 'Broken barrel'), +('18013', 'Stacked crates'), +('18014', 'Table and till'), +('18015', 'Barrel'), +('18016', 'Broken counter'), +('18017', 'Counter'), +('18018', 'Counter'), +('18019', 'null'), +('18020', 'null'), +('18021', 'null'), +('18022', 'null'), +('18023', 'null'), +('18024', 'null'), +('18025', 'null'), +('18026', 'null'), +('18027', 'null'), +('18028', 'Skeleton'), +('18029', 'Skeleton'), +('18030', 'Machine'), +('18031', 'Door'), +('18032', 'Door'), +('18033', 'Floor'), +('18034', 'Floor'), +('18035', 'Floor'), +('18036', 'Floor'), +('18037', 'Wall rubble'), +('18038', 'Wall rubble'), +('18039', 'Fireplace'), +('18040', 'Tapestry'), +('18041', 'Slashed tapestry'), +('18042', 'Portrait'), +('18043', 'Portrait'), +('18044', 'Portrait'), +('18045', 'Vampyre statue'), +('18046', 'Statue with key'), +('18047', 'Door'), +('18048', 'Door'), +('18049', 'Staircase'), +('18050', 'Staircase'), +('18051', 'Table'), +('18052', 'Broken rune case'), +('18053', 'Rubble'), +('18054', 'Barricade'), +('18055', 'Barricade'), +('18056', 'Rocky surface'), +('18057', 'Door'), +('18058', 'Door'), +('18059', 'Table'), +('18060', 'Trapdoor table'), +('18061', 'Trapdoor tunnel'), +('18062', 'Table'), +('18063', 'Trapdoor table'), +('18064', 'Trapdoor table'), +('18065', 'Pots'), +('18066', 'Wall'), +('18067', 'Wall'), +('18068', 'Broken ladder'), +('18069', 'Ladder'), +('18070', 'Floorboards'), +('18071', 'Floorboards'), +('18072', 'Floorboards'), +('18073', 'Floorboards'), +('18074', 'Wall'), +('18075', 'Wall'), +('18076', 'Floor'), +('18077', 'Floor'), +('18078', 'Wall'), +('18079', 'Wall'), +('18080', 'Wall'), +('18081', 'Floor'), +('18082', 'Floor'), +('18083', 'null'), +('18084', 'null'), +('18085', 'Tunnel'), +('18086', 'Shelf'), +('18087', 'Shelf'), +('18088', 'Wall'), +('18089', 'Floorboards'), +('18090', 'Floorboards'), +('18091', 'Door'), +('18092', 'Door'), +('18093', 'Floorboards'), +('18094', 'Floorboards'), +('18095', 'Shelf'), +('18096', 'Shelf'), +('18097', 'Floorboards'), +('18098', 'Floorboards'), +('18099', 'Washing line'), +('18100', 'Washing line'), +('18101', 'Wall'), +('18102', 'Falling door'), +('18103', 'Floor'), +('18104', 'Floor'), +('18105', 'Shelf'), +('18106', 'Shelf'), +('18107', 'Shelf'), +('18108', 'Shelf'), +('18109', 'Floorboards'), +('18110', 'Floorboards'), +('18111', 'Floorboards'), +('18112', 'Floorboards'), +('18113', 'Floorboards'), +('18114', 'Floorboards'), +('18115', 'null'), +('18116', 'null'), +('18117', 'Floorboards'), +('18118', 'Floorboards'), +('18119', 'null'), +('18120', 'null'), +('18121', 'null'), +('18122', 'null'), +('18123', 'null'), +('18124', 'null'), +('18125', 'null'), +('18126', 'null'), +('18127', 'null'), +('18128', 'null'), +('18129', 'null'), +('18130', 'null'), +('18131', 'null'), +('18132', 'null'), +('18133', 'null'), +('18134', 'null'), +('18135', 'null'), +('18136', 'null'), +('18137', 'Windswept tree'), +('18138', 'null'), +('18139', 'null'), +('18140', 'null'), +('18141', 'null'), +('18142', 'null'), +('18143', 'null'), +('18144', 'Decorated wall'), +('18145', 'Decorated wall'), +('18146', 'null'), +('18147', 'null'), +('18148', 'null'), +('18149', 'null'), +('18150', 'null'), +('18151', 'null'), +('18152', 'null'), +('18153', 'null'), +('18154', 'Smashed table'), +('18155', 'Shelf'), +('18156', 'Shelf'), +('18157', 'Dolls and balls'), +('18158', 'null'), +('18159', 'null'), +('18160', 'null'), +('18161', 'null'), +('18162', 'null'), +('18163', 'null'), +('18164', 'null'), +('18165', 'null'), +('18166', 'null'), +('18167', 'null'), +('18168', 'Door'), +('18169', 'null'), +('18170', 'Clay oven'), +('18171', 'Washbasin'), +('18172', 'Hammock'), +('18173', 'null'), +('18174', 'null'), +('18175', 'null'), +('18176', 'Large table'), +('18177', 'Display table'), +('18178', 'Display table'), +('18179', 'null'), +('18180', 'null'), +('18181', 'null'), +('18182', 'Barrel'), +('18183', 'Bucket'), +('18184', 'Suit of armour'), +('18185', 'Suit of armour'), +('18186', 'Rowboat'), +('18187', 'Rowboat'), +('18188', 'null'), +('18189', 'Broken boat'), +('18190', 'Broken boat'), +('18191', 'Broken boat'), +('18192', 'null'), +('18193', 'null'), +('18194', 'null'), +('18195', 'null'), +('18196', 'null'), +('18197', 'null'), +('18198', 'null'), +('18199', 'null'), +('18200', 'A barrel of rainwater'), +('18201', 'Stacked crates'), +('18202', 'Crates'), +('18203', 'null'), +('18204', 'null'), +('18205', 'Barrel'), +('18206', 'null'), +('18207', 'null'), +('18208', 'Life buoy'), +('18209', 'null'), +('18210', 'null'), +('18211', 'null'), +('18212', 'null'), +('18213', 'null'), +('18214', 'null'), +('18215', 'null'), +('18216', 'null'), +('18217', 'null'), +('18218', 'null'), +('18219', 'null'), +('18220', 'Pillar'), +('18221', 'Study desk'), +('18222', 'Painting'), +('18223', 'Painting'), +('18224', 'Painting'), +('18225', 'Sailfish'), +('18226', 'Shark head'), +('18227', 'Large vase'), +('18228', 'Small vase'), +('18229', 'Vase set'), +('18230', 'Ladder'), +('18231', 'Ladder'), +('18232', 'Ladder'), +('18233', 'Ladder'), +('18234', 'Bench'), +('18235', 'Bookcase'), +('18236', 'Drawers'), +('18237', 'Wardrobe'), +('18238', 'Dummy'), +('18239', 'Anchor'), +('18240', 'Bed'), +('18241', 'Lectern'), +('18242', 'null'), +('18243', 'null'), +('18244', 'null'), +('18245', 'null'), +('18246', 'null'), +('18247', 'null'), +('18248', 'null'), +('18249', 'null'), +('18250', 'null'), +('18251', 'null'), +('18252', 'null'), +('18253', 'null'), +('18254', 'Altar'), +('18255', 'null'), +('18256', 'Steeple'), +('18257', 'Pillar'), +('18258', 'Pillar'), +('18259', 'Statue'), +('18260', 'null'), +('18261', 'null'), +('18262', 'null'), +('18263', 'null'), +('18264', 'null'), +('18265', 'null'), +('18266', 'Old ruin entrance'), +('18267', 'null'), +('18268', 'null'), +('18269', 'null'), +('18270', 'null'), +('18271', 'null'), +('18272', 'null'), +('18273', 'null'), +('18274', 'null'), +('18275', 'null'), +('18276', 'null'), +('18277', 'null'), +('18278', 'null'), +('18279', 'null'), +('18280', 'null'), +('18281', 'null'), +('18282', 'null'), +('18283', 'null'), +('18284', 'null'), +('18285', 'null'), +('18286', 'null'), +('18287', 'null'), +('18288', 'null'), +('18289', 'null'), +('18290', 'null'), +('18291', 'null'), +('18292', 'null'), +('18293', 'null'), +('18294', 'null'), +('18295', 'null'), +('18296', 'null'), +('18297', 'null'), +('18298', 'null'), +('18299', 'null'), +('18300', 'null'), +('18301', 'null'), +('18302', 'null'), +('18303', 'null'), +('18304', 'Chest'), +('18305', 'null'), +('18306', 'null'), +('18307', 'null'), +('18308', 'null'), +('18309', 'null'), +('18310', 'null'), +('18311', 'null'), +('18312', 'Stool'), +('18313', 'null'), +('18314', 'Table'), +('18315', 'null'), +('18316', 'Chair'), +('18317', 'Hanger'), +('18318', 'Mirror'), +('18319', 'null'), +('18320', 'null'), +('18321', 'Chest'), +('18322', 'Ladder'), +('18323', 'null'), +('18324', 'Ladder'), +('18325', 'Ladder'), +('18326', 'Crane'), +('18327', 'Crane'), +('18328', 'null'), +('18329', 'null'), +('18330', 'null'), +('18331', 'null'), +('18332', 'null'), +('18333', 'null'), +('18334', 'null'), +('18335', 'null'), +('18336', 'null'), +('18337', 'null'), +('18338', 'null'), +('18339', 'null'), +('18340', 'null'), +('18341', 'null'), +('18342', 'null'), +('18343', 'null'), +('18344', 'null'), +('18345', 'null'), +('18346', 'null'), +('18347', 'null'), +('18348', 'null'), +('18349', 'null'), +('18350', 'null'), +('18351', 'Barrel'), +('18352', 'Wreck'), +('18353', 'Wreck'), +('18354', 'Wreck'), +('18355', 'Wreck'), +('18356', 'Wreck'), +('18357', 'Wreck'), +('18358', 'null'), +('18359', 'null'), +('18360', 'null'), +('18361', 'null'), +('18362', 'Bed'), +('18363', 'Child's bed'), +('18364', 'Floats'), +('18365', 'Broken boat'), +('18366', 'Crow nest'), +('18367', 'Crate'), +('18368', 'Crate'), +('18369', 'null'), +('18370', 'null'), +('18371', 'null'), +('18372', 'null'), +('18373', 'null'), +('18374', 'null'), +('18375', 'null'), +('18376', 'null'), +('18377', 'null'), +('18378', 'null'), +('18379', 'null'), +('18380', 'Broken wall'), +('18381', 'Badly repaired wall'), +('18382', 'null'), +('18383', 'null'), +('18384', 'null'), +('18385', 'null'), +('18386', 'null'), +('18387', 'null'), +('18388', 'null'), +('18389', 'null'), +('18390', 'null'), +('18391', 'null'), +('18392', 'null'), +('18393', 'null'), +('18394', 'null'), +('18395', 'null'), +('18396', 'null'), +('18397', 'null'), +('18398', 'null'), +('18399', 'Bone barrel'), +('18400', 'Ice cube'), +('18401', 'null'), +('18402', 'null'), +('18403', 'Kennith's ball'), +('18404', 'Bottle'), +('18405', 'null'), +('18406', 'null'), +('18407', 'null'), +('18408', 'null'), +('18409', 'null'), +('18410', 'null'), +('18411', 'Broken fence'), +('18412', 'Broken boat'), +('18413', 'null'), +('18414', 'null'), +('18415', 'null'), +('18416', 'null'), +('18417', 'null'), +('18418', 'Wall corner'), +('18419', 'null'), +('18420', 'null'), +('18421', 'null'), +('18422', 'null'), +('18423', 'null'), +('18424', 'null'), +('18425', 'null'), +('18426', 'Torture Rack'), +('18427', 'Exit'), +('18428', 'null'), +('18429', 'null'), +('18430', 'Wall'), +('18431', 'Wall opening'), +('18432', 'null'), +('18433', 'null'), +('18434', 'null'), +('18435', 'null'), +('18436', 'null'), +('18437', 'null'), +('18438', 'null'), +('18439', 'null'), +('18440', 'Passage'), +('18441', 'Imposing Doors'), +('18442', 'Imposing Doors'), +('18443', 'Imposing Doors'), +('18444', 'Shortcut'), +('18445', 'null'), +('18446', 'null'), +('18447', 'null'), +('18448', 'null'), +('18449', 'null'), +('18450', 'null'), +('18451', 'null'), +('18452', 'null'), +('18453', 'null'), +('18454', 'null'), +('18455', 'null'), +('18456', 'null'), +('18457', 'null'), +('18458', 'null'), +('18459', 'null'), +('18460', 'null'), +('18461', 'null'), +('18462', 'Slug goo'), +('18463', 'null'), +('18464', 'null'), +('18465', 'null'), +('18466', 'null'), +('18467', 'null'), +('18468', 'null'), +('18469', 'null'), +('18470', 'null'), +('18471', 'null'), +('18472', 'null'), +('18473', 'null'), +('18474', 'null'), +('18475', 'null'), +('18476', 'null'), +('18477', 'null'), +('18478', 'null'), +('18479', 'null'), +('18480', 'null'), +('18481', 'null'), +('18482', 'Big fish'), +('18483', 'Shelves'), +('18484', 'null'), +('18485', 'Stool'), +('18486', 'Table'), +('18487', 'null'), +('18488', 'Bench'), +('18489', 'Door'), +('18490', 'Door'), +('18491', 'Bank booth'), +('18492', 'Closed booth'), +('18493', 'Signpost'), +('18494', 'null'), +('18495', 'Bookcase'), +('18496', 'null'), +('18497', 'Furnace'), +('18498', 'null'), +('18499', 'null'), +('18500', 'null'), +('18501', 'Crane'), +('18502', 'Crate'), +('18503', 'Staircase'), +('18504', 'Staircase'), +('18505', 'Odd looking wall'), +('18506', 'Crate'), +('18507', 'Crate'), +('18508', 'Crates'), +('18509', 'Water controls'), +('18510', 'Water controls'), +('18511', 'Water wheel'), +('18512', 'Water wheel'), +('18513', 'null'), +('18514', 'null'), +('18515', 'Bellows'), +('18516', 'Bellows'), +('18517', 'null'), +('18518', 'null'), +('18519', 'Lava trough'), +('18520', 'Lava trough'), +('18521', 'Lava trough'), +('18522', 'Lava trough'), +('18523', 'Lava trough'), +('18524', 'null'), +('18525', 'Furnace'), +('18526', 'Furnace'), +('18527', 'null'), +('18528', 'null'), +('18529', 'null'), +('18530', 'Machinery'), +('18531', 'null'), +('18532', 'null'), +('18533', 'null'), +('18534', 'null'), +('18535', 'null'), +('18536', 'null'), +('18537', 'null'), +('18538', 'null'), +('18539', 'null'), +('18540', 'null'), +('18541', 'null'), +('18542', 'null'), +('18543', 'null'), +('18544', 'null'), +('18545', 'null'), +('18546', 'null'), +('18547', 'null'), +('18548', 'null'), +('18549', 'null'), +('18550', 'null'), +('18551', 'null'), +('18552', 'null'), +('18553', 'null'), +('18554', 'null'), +('18555', 'null'), +('18556', 'null'), +('18557', 'null'), +('18558', 'null'), +('18559', 'null'), +('18560', 'null'), +('18561', 'null'), +('18562', 'null'), +('18563', 'null'), +('18564', 'null'), +('18565', 'null'), +('18566', 'null'), +('18567', 'null'), +('18568', 'null'), +('18569', 'null'), +('18570', 'null'), +('18571', 'null'), +('18572', 'null'), +('18573', 'null'), +('18574', 'null'), +('18575', 'null'), +('18576', 'null'), +('18577', 'null'), +('18578', 'null'), +('18579', 'null'), +('18580', 'null'), +('18581', 'null'), +('18582', 'null'), +('18583', 'null'), +('18584', 'null'), +('18585', 'null'), +('18586', 'null'), +('18587', 'Machinery'), +('18588', 'null'), +('18589', 'null'), +('18590', 'null'), +('18591', 'null'), +('18592', 'null'), +('18593', 'null'), +('18594', 'Machinery'), +('18595', 'Hatch'), +('18596', 'Hatch'), +('18597', 'Stairwell'), +('18598', 'Stairs'), +('18599', 'Stairs'), +('18600', 'null'), +('18601', 'null'), +('18602', 'null'), +('18603', 'null'), +('18604', 'null'), +('18605', 'null'), +('18606', 'null'), +('18607', 'null'), +('18608', 'null'), +('18609', 'null'), +('18610', 'Stairs'), +('18611', 'Stairs'), +('18612', 'Crate'), +('18613', 'Crate'), +('18614', 'Crates'), +('18615', 'Crates'), +('18616', 'Crate'), +('18617', 'Crates'), +('18618', 'Crate'), +('18619', 'Crate'), +('18620', 'Lever'), +('18621', 'An old lever'), +('18622', 'An old lever'), +('18623', 'Old crane'), +('18624', 'Old crane'), +('18625', 'Old crane'), +('18626', 'Old crane'), +('18627', 'Old crane'), +('18628', 'Old crane'), +('18629', 'Old crane'), +('18630', 'Old crane'), +('18631', 'Old crane'), +('18632', 'Old crane'), +('18633', 'Old crane'), +('18634', 'Old crane'), +('18635', 'Old crane'), +('18636', 'Old crane'), +('18637', 'Old crane'), +('18638', 'Old Crane'), +('18639', 'null'), +('18640', 'An old lever'), +('18641', 'Junction box'), +('18642', 'Press support'), +('18643', 'Steam press'), +('18644', 'Steam press'), +('18645', 'Steam press'), +('18646', 'Water valve'), +('18647', 'Water valve'), +('18648', 'An old lever'), +('18649', 'Corkscrew lever'), +('18650', 'Piping'), +('18651', 'Door'), +('18652', 'Door'), +('18653', 'Door'), +('18654', 'Door'), +('18655', 'Door'), +('18656', 'Door'), +('18657', 'Door'), +('18658', 'Door'), +('18659', 'Door'), +('18660', 'Water Tank'), +('18661', 'Water Tank'), +('18662', 'null'), +('18663', 'An old lever'), +('18664', 'Pin'), +('18665', 'Pin'), +('18666', 'Pin'), +('18667', 'Cog'), +('18668', 'Cog'), +('18669', 'Cog'), +('18670', 'Cog'), +('18671', 'Cog'), +('18672', 'Cog'), +('18673', 'Cog'), +('18674', 'Cog'), +('18675', 'Cog'), +('18676', 'Cog'), +('18677', 'Cog'), +('18678', 'Cog'), +('18679', 'Cog'), +('18680', 'Cog'), +('18681', 'Cog'), +('18682', 'Cog'), +('18683', 'Cog'), +('18684', 'Cog'), +('18685', 'null'), +('18686', 'null'), +('18687', 'null'), +('18688', 'null'), +('18689', 'null'), +('18690', 'Extractor hat'), +('18691', 'Extractor hat'), +('18692', 'Extractor hat-top'), +('18693', 'Extractor gun'), +('18694', 'Extractor gun'), +('18695', 'Extractor gun'), +('18696', 'Extractor gun'), +('18697', 'null'), +('18698', 'Mind Door'), +('18699', 'Mind Door'), +('18700', 'Mind Door'), +('18701', 'Mind Door'), +('18702', 'Door'), +('18703', 'Door'), +('18704', 'Connection pipe'), +('18705', 'Connection pipe'), +('18706', 'Connection pipe'), +('18707', 'Connection pipe'), +('18708', 'null'), +('18709', 'null'), +('18710', 'Stairs'), +('18711', 'Schematic crate'), +('18712', 'null'), +('18713', 'null'), +('18714', 'null'), +('18715', 'null'), +('18716', 'null'), +('18717', 'null'), +('18718', 'null'), +('18719', 'null'), +('18720', 'null'), +('18721', 'null'), +('18722', 'null'), +('18723', 'null'), +('18724', 'null'), +('18725', 'null'), +('18726', 'Piping'), +('18727', 'null'), +('18728', 'null'), +('18729', 'null'), +('18730', 'null'), +('18731', 'null'), +('18732', 'null'), +('18733', 'null'), +('18734', 'null'), +('18735', 'null'), +('18736', 'null'), +('18737', 'null'), +('18738', 'null'), +('18739', 'null'), +('18740', 'null'), +('18741', 'null'), +('18742', 'null'), +('18743', 'null'), +('18744', 'null'), +('18745', 'null'), +('18746', 'Mine cart sign'), +('18747', 'Track'), +('18748', 'null'), +('18749', 'null'), +('18750', 'Track'), +('18751', 'Track'), +('18752', 'null'), +('18753', 'null'), +('18754', 'null'), +('18755', 'null'), +('18756', 'null'), +('18757', 'null'), +('18758', 'Tunnel roof'), +('18759', 'Tunnel roof'), +('18760', 'Tunnel wall'), +('18761', 'null'), +('18762', 'null'), +('18763', 'null'), +('18764', 'null'), +('18765', 'null'), +('18766', 'Oak cape rack'), +('18767', 'Teak cape rack'), +('18768', 'Mahogany cape rack'), +('18769', 'Gilded cape rack'), +('18770', 'Marble cape rack'), +('18771', 'Magic cape rack'), +('18772', 'Fancy dress box'), +('18773', 'Fancy dress box'), +('18774', 'Fancy dress box'), +('18775', 'Fancy dress box'), +('18776', 'Fancy dress box'), +('18777', 'Fancy dress box'), +('18778', 'Armour case'), +('18779', 'Armour case'), +('18780', 'Armour case'), +('18781', 'Armour case'), +('18782', 'Armour case'), +('18783', 'Armour case'), +('18784', 'Magic wardrobe'), +('18785', 'Magic wardrobe'), +('18786', 'Magic wardrobe'), +('18787', 'Magic wardrobe'), +('18788', 'Magic wardrobe'), +('18789', 'Magic wardrobe'), +('18790', 'Magic wardrobe'), +('18791', 'Magic wardrobe'), +('18792', 'Magic wardrobe'), +('18793', 'Magic wardrobe'), +('18794', 'Magic wardrobe'), +('18795', 'Magic wardrobe'), +('18796', 'Magic wardrobe'), +('18797', 'Magic wardrobe'), +('18798', 'Toy box'), +('18799', 'Toy box'), +('18800', 'Toy box'), +('18801', 'Toy box'), +('18802', 'Toy box'), +('18803', 'Toy box'), +('18804', 'Treasure chest'), +('18805', 'Treasure chest'), +('18806', 'Treasure chest'), +('18807', 'Treasure chest'), +('18808', 'Treasure chest'), +('18809', 'Treasure chest'), +('18810', 'Cape rack space'), +('18811', 'Magic wardrobe space'), +('18812', 'Toy box space'), +('18813', 'Treasure chest space'), +('18814', 'Fancy dress box space'), +('18815', 'Armour case space'), +('18816', 'null'), +('18817', 'Rocks'), +('18818', 'Herb patch'), +('18819', 'Herb patch'), +('18820', 'Herb patch'), +('18821', 'Herb patch'), +('18822', 'Herb patch'), +('18823', 'Herb patch'), +('18824', 'Herbs'), +('18825', 'Herbs'), +('18826', 'Herbs'), +('18827', 'Diseased herbs'), +('18828', 'Diseased herbs'), +('18829', 'Diseased herbs'), +('18830', 'Dead herbs'), +('18831', 'Dead herbs'), +('18832', 'Dead herbs'), +('18833', 'Troll ladder'), +('18834', 'Troll ladder'), +('18835', 'Crate'), +('18836', 'Tree branch'), +('18837', 'Goat'), +('18838', 'Trolley'), +('18839', 'Fish'), +('18840', 'Rocks'), +('18841', 'Dolphin'), +('18842', 'Fish'), +('18843', 'Ladder'), +('18844', 'null'), +('18845', 'Soil patch'), +('18846', 'Soil patch'), +('18847', 'Weeds'), +('18848', 'Weeds'), +('18849', 'Weeds'), +('18850', 'New farming patch'), +('18851', 'Hardy goutweed'), +('18852', 'Diseased hardy goutweed'), +('18853', 'Dead hardy goutweed'), +('18854', 'Hardy goutweed'), +('18855', 'Hardy goutweed'), +('18856', 'Parasol'), +('18857', 'null'), +('18858', 'null'), +('18859', 'null'), +('18860', 'null'), +('18861', 'null'), +('18862', 'null'), +('18863', 'null'), +('18864', 'Drunken Dwarf'), +('18865', 'Broken beer glass'), +('18866', 'Deckchair'), +('18867', 'null'), +('18868', 'null'), +('18869', 'Cell wall window'), +('18870', 'Cell wall window'), +('18871', 'Rock'), +('18872', 'Rock'), +('18873', 'Rock'), +('18874', 'Danger sign'), +('18875', 'Cactus'), +('18876', 'Sign post'), +('18877', 'Footprints'), +('18878', 'Footprints'), +('18879', 'Footprints'), +('18880', 'Footprints'), +('18881', 'Footprints'), +('18882', 'Footprints'), +('18883', 'Footprints'), +('18884', 'Footprints'), +('18885', 'Footprints'), +('18886', 'Footprints'), +('18887', 'Barrel'), +('18888', 'Winch'), +('18889', 'Crate'), +('18890', 'Crate'), +('18891', 'null'), +('18892', 'Rockslide'), +('18893', 'Rockslide'), +('18894', 'Rockslide'), +('18895', 'Rockslide'), +('18896', 'null'), +('18897', 'null'), +('18898', 'Footprints'), +('18899', 'Footprints'), +('18900', 'Footprints'), +('18901', 'null'), +('18902', 'Table'), +('18903', 'Ladder'), +('18904', 'Ladder'), +('18905', 'null'), +('18906', 'null'), +('18907', 'Chest'), +('18908', 'null'), +('18909', 'null'), +('18910', 'null'), +('18911', 'null'), +('18912', 'null'), +('18913', 'null'), +('18914', 'null'), +('18915', 'null'), +('18916', 'null'), +('18917', 'null'), +('18918', 'Crate'), +('18919', 'Crate'), +('18920', 'Barrel'), +('18921', 'Barrel'), +('18922', 'Cliff edge'), +('18923', 'Cliff'), +('18924', 'Cliff'), +('18925', 'null'), +('18926', 'null'), +('18927', 'null'), +('18928', 'null'), +('18929', 'null'), +('18930', 'null'), +('18931', 'null'), +('18932', 'null'), +('18933', 'null'), +('18934', 'null'), +('18935', 'null'), +('18936', 'null'), +('18937', 'null'), +('18938', 'Cart track sign'), +('18939', 'null'), +('18940', 'null'), +('18941', 'null'), +('18942', 'null'), +('18943', 'null'), +('18944', 'null'), +('18945', 'null'), +('18946', 'Buffers'), +('18947', 'null'), +('18948', 'null'), +('18949', 'null'), +('18950', 'null'), +('18951', 'Winch bucket'), +('18952', 'Rocks'), +('18953', 'Rocks'), +('18954', 'Rocks'), +('18955', 'Skeleton'), +('18956', 'Skeleton'), +('18957', 'Skeleton'), +('18958', 'Wooden cart'), +('18959', 'Wooden cart'), +('18960', 'null'), +('18961', 'Rocks'), +('18962', 'Barrel'), +('18963', 'null'), +('18964', 'null'), +('18965', 'null'), +('18966', 'null'), +('18967', 'Rocks'), +('18968', 'Rocks'), +('18969', 'Rocks'), +('18970', 'Rocks'), +('18971', 'Rocks'), +('18972', 'Rocks'), +('18973', 'Rocks'), +('18974', 'Rocks'), +('18975', 'Rocks'), +('18976', 'Rocks'), +('18977', 'Rocks'), +('18978', 'Rocks'), +('18979', 'Rocks'), +('18980', 'Rocks'), +('18981', 'Rocks'), +('18982', 'Rocks'), +('18983', 'Rocks'), +('18984', 'Rocks'), +('18985', 'Rocks'), +('18986', 'Rocks'), +('18987', 'Rocks'), +('18988', 'Rocks'), +('18989', 'Rocks'), +('18990', 'Rocks'), +('18991', 'Rocks'), +('18992', 'Rocks'), +('18993', 'Rocks'), +('18994', 'Rocks'), +('18995', 'Rocks'), +('18996', 'Rocks'), +('18997', 'Rocks'), +('18998', 'Rocks'), +('18999', 'Rocks'), +('19000', 'Rocks'), +('19001', 'Rocks'), +('19002', 'Rocks'), +('19003', 'Rocks'), +('19004', 'Rocks'), +('19005', 'Rocks'), +('19006', 'Rocks'), +('19007', 'Rocks'), +('19008', 'Rocks'), +('19009', 'Rocks'), +('19010', 'Rocks'), +('19011', 'Rocks'), +('19012', 'Rocks'), +('19013', 'Rocks'), +('19014', 'Rocks'), +('19015', 'Rocks'), +('19016', 'Rocks'), +('19017', 'Rocks'), +('19018', 'Rocks'), +('19019', 'Rocks'), +('19020', 'Rocks'), +('19021', 'Rocks'), +('19022', 'Rocks'), +('19023', 'Rocks'), +('19024', 'Rocks'), +('19025', 'Rocks'), +('19026', 'Rocks'), +('19027', 'Rocks'), +('19028', 'Rocks'), +('19029', 'Rocks'), +('19030', 'Snow'), +('19031', 'Snow'), +('19032', 'Large root'), +('19033', 'Snow'), +('19034', 'Snow'), +('19035', 'Snow'), +('19036', 'Cage'), +('19037', 'Cage with gublinch'), +('19038', 'Wintumber tree'), +('19039', 'Cave entrance'), +('19040', 'Ladder'), +('19041', 'null'), +('19042', 'null'), +('19043', 'null'), +('19044', 'null'), +('19045', 'null'), +('19046', 'null'), +('19047', 'null'), +('19048', 'null'), +('19049', 'null'), +('19050', 'null'), +('19051', 'null'), +('19052', 'null'), +('19053', 'null'), +('19054', 'null'), +('19055', 'null'), +('19056', 'null'), +('19057', 'null'), +('19058', 'null'), +('19059', 'null'), +('19060', 'null'), +('19061', 'null'), +('19062', 'null'), +('19063', 'null'), +('19064', 'Paint cans'), +('19065', 'Large box'), +('19066', 'Puppet arms'), +('19067', 'Puppet arms'), +('19068', 'Puppet heads'), +('19069', 'Puppet heads'), +('19070', 'Crate'), +('19071', 'Crates'), +('19072', 'Crate'), +('19073', 'Crate'), +('19074', 'Crate'), +('19075', 'null'), +('19076', 'null'), +('19077', 'null'), +('19078', 'null'), +('19079', 'null'), +('19080', 'null'), +('19081', 'null'), +('19082', 'null'), +('19083', 'null'), +('19084', 'null'), +('19085', 'Decorations box'), +('19086', 'Decorations box'), +('19087', 'null'), +('19088', 'null'), +('19089', 'null'), +('19090', 'null'), +('19091', 'null'), +('19092', 'null'), +('19093', 'Climbing rope'), +('19094', 'Decorations box'), +('19095', 'Decorations box'), +('19096', 'Decorations box'), +('19097', 'Decorations box'), +('19098', 'Decorations box'), +('19099', 'Paint cans'), +('19100', 'Paint cans'), +('19101', 'Paint cans'), +('19102', 'Puppet torsos'), +('19103', 'Puppet legs'), +('19104', 'Puppet heads'), +('19105', 'Puppet torsos'), +('19106', 'Puppet legs'), +('19107', 'Puppet torsos'), +('19108', 'Puppet arms'), +('19109', 'Puppet legs'), +('19110', 'Roots'), +('19111', 'Roots'), +('19112', 'null'), +('19113', 'null'), +('19114', 'null'), +('19115', 'null'), +('19116', 'null'), +('19117', 'null'), +('19118', 'null'), +('19119', 'null'), +('19120', 'null'), +('19121', 'null'), +('19122', 'null'), +('19123', 'null'), +('19124', 'Shark head'), +('19125', 'Dirt'), +('19126', 'Plank'), +('19127', 'Candles'), +('19128', 'Basket'), +('19129', 'Basket'), +('19130', 'Air balloon'), +('19131', 'Rock'), +('19132', 'Basket'), +('19133', 'null'), +('19134', 'null'), +('19135', 'null'), +('19136', 'null'), +('19137', 'null'), +('19138', 'null'), +('19139', 'null'), +('19140', 'null'), +('19141', 'null'), +('19142', 'null'), +('19143', 'null'), +('19144', 'null'), +('19145', 'Altar'), +('19146', 'null'), +('19147', 'null'), +('19148', 'null'), +('19149', 'null'), +('19150', 'null'), +('19151', 'null'), +('19152', 'null'), +('19153', 'null'), +('19154', 'null'), +('19155', 'null'), +('19156', 'Basket'), +('19157', 'Bed'), +('19158', 'Table'), +('19159', 'Bookcase'), +('19160', 'null'), +('19161', 'Basket'), +('19162', 'Frame'), +('19163', 'null'), +('19164', 'Basket'), +('19165', 'Tree'), +('19166', 'Tree'), +('19167', 'Tree'), +('19168', 'null'), +('19169', 'null'), +('19170', 'null'), +('19171', 'Loose Railing'), +('19172', 'Raw bird'), +('19173', 'Raw hunting beast'), +('19174', 'Bird snare'), +('19175', 'Bird snare'), +('19176', 'Bird snare'), +('19177', 'Bird snare'), +('19178', 'Bird snare'), +('19179', 'Bird snare'), +('19180', 'Bird snare'), +('19181', 'Bird snare'), +('19182', 'Bird snare'), +('19183', 'Bird snare'), +('19184', 'Bird snare'), +('19185', 'Bird snare'), +('19186', 'Bird snare'), +('19187', 'Box trap'), +('19188', 'Box trap'), +('19189', 'Shaking box'), +('19190', 'Shaking box'), +('19191', 'Shaking box'), +('19192', 'Box trap'), +('19193', 'Box trap'), +('19194', 'Box trap'), +('19195', 'Box trap'), +('19196', 'Box trap'), +('19197', 'Box trap'), +('19198', 'Box trap'), +('19199', 'Box trap'), +('19200', 'Box trap'), +('19201', 'Box trap'), +('19202', 'Box trap'), +('19203', 'Box trap'), +('19204', 'Box trap'), +('19205', 'Boulder'), +('19206', 'Deadfall'), +('19207', 'Deadfall'), +('19208', 'Deadfall'), +('19209', 'Deadfall'), +('19210', 'Deadfall'), +('19211', 'Deadfall'), +('19212', 'Deadfall'), +('19213', 'Deadfall'), +('19214', 'Deadfall'), +('19215', 'Boulder'), +('19216', 'Boulder'), +('19217', 'Boulder'), +('19218', 'Boulder'), +('19219', 'Deadfall'), +('19220', 'Perch'), +('19221', 'Occupied perch'), +('19222', 'Stile'), +('19223', 'Magic box'), +('19224', 'Magic box failed'), +('19225', 'Magic box'), +('19226', 'Magic box'), +('19227', 'Pit'), +('19228', 'Spiked pit'), +('19229', 'Collapsed trap'), +('19230', 'Bank booth'), +('19231', 'Collapsed trap'), +('19232', 'Collapsed trap'), +('19233', 'Collapsed trap'), +('19234', 'Collapsed trap'), +('19235', 'Collapsed trap'), +('19236', 'Collapsed trap'), +('19237', 'null'), +('19238', 'null'), +('19239', 'null'), +('19240', 'null'), +('19241', 'null'), +('19242', 'null'), +('19243', 'null'), +('19244', 'null'), +('19245', 'null'), +('19246', 'null'), +('19247', 'null'), +('19248', 'null'), +('19249', 'null'), +('19250', 'null'), +('19251', 'null'), +('19252', 'null'), +('19253', 'null'), +('19254', 'null'), +('19255', 'null'), +('19256', 'null'), +('19257', 'null'), +('19258', 'null'), +('19259', 'null'), +('19260', 'null'), +('19261', 'null'), +('19262', 'null'), +('19263', 'null'), +('19264', 'null'), +('19265', 'null'), +('19266', 'null'), +('19267', 'null'), +('19268', 'null'), +('19269', 'null'), +('19270', 'null'), +('19271', 'null'), +('19272', 'null'), +('19273', 'null'), +('19274', 'null'), +('19275', 'null'), +('19276', 'null'), +('19277', 'null'), +('19278', 'null'), +('19279', 'null'), +('19280', 'null'), +('19281', 'null'), +('19282', 'null'), +('19283', 'null'), +('19284', 'null'), +('19285', 'null'), +('19286', 'null'), +('19287', 'null'), +('19288', 'null'), +('19289', 'null'), +('19290', 'null'), +('19291', 'null'), +('19292', 'null'), +('19293', 'null'), +('19294', 'null'), +('19295', 'null'), +('19296', 'null'), +('19297', 'null'), +('19298', 'null'), +('19299', 'null'), +('19300', 'null'), +('19301', 'null'), +('19302', 'null'), +('19303', 'null'), +('19304', 'null'), +('19305', 'null'), +('19306', 'null'), +('19307', 'null'), +('19308', 'null'), +('19309', 'null'), +('19310', 'null'), +('19311', 'null'), +('19312', 'null'), +('19313', 'null'), +('19314', 'null'), +('19315', 'null'), +('19316', 'null'), +('19317', 'null'), +('19318', 'null'), +('19319', 'null'), +('19320', 'null'), +('19321', 'null'), +('19322', 'null'), +('19323', 'null'), +('19324', 'null'), +('19325', 'null'), +('19326', 'null'), +('19327', 'null'), +('19328', 'null'), +('19329', 'null'), +('19330', 'null'), +('19331', 'null'), +('19332', 'null'), +('19333', 'Rabbit snare'), +('19334', 'Broken snare'), +('19335', 'Rabbit snare'), +('19336', 'Rabbit snare'), +('19337', 'Rabbit hole'), +('19338', 'Rabbitless hole'), +('19339', 'Plant'), +('19340', 'Plant'), +('19341', 'Plant'), +('19342', 'Plant'), +('19343', 'Plant'), +('19344', 'Plant'), +('19345', 'Plant'), +('19346', 'Plant'), +('19347', 'Plant'), +('19348', 'Plant'), +('19349', 'Plant'), +('19350', 'Plant'), +('19351', 'Plant'), +('19352', 'Plant'), +('19353', 'Plant'), +('19354', 'Plant'), +('19355', 'Plant'), +('19356', 'Plant'), +('19357', 'Plant'), +('19358', 'Plant'), +('19359', 'Plant'), +('19360', 'Plant'), +('19361', 'Plant'), +('19362', 'Plant'), +('19363', 'Plant'), +('19364', 'Plant'), +('19365', 'Plant'), +('19366', 'Plant'), +('19367', 'Plant'), +('19368', 'Plant'), +('19369', 'Plant'), +('19370', 'Plant'), +('19371', 'Plant'), +('19372', 'Plant'), +('19373', 'Plant'), +('19374', 'Plant'), +('19375', 'Plant'), +('19376', 'Plant'), +('19377', 'Plant'), +('19378', 'Plant'), +('19379', 'Plant'), +('19380', 'Plant'), +('19381', 'Plant'), +('19382', 'Plant'), +('19383', 'Plant'), +('19384', 'Plant'), +('19385', 'Plant'), +('19386', 'Plant'), +('19387', 'Plant'), +('19388', 'Cactus'), +('19389', 'Cactus'), +('19390', 'Rockslide'), +('19391', 'Cactus'), +('19392', 'Cactus'), +('19393', 'Rockslide'), +('19394', 'Cactus'), +('19395', 'Cactus'), +('19396', 'Rockslide'), +('19397', 'Rockslide'), +('19398', 'Cactus'), +('19399', 'Cactus'), +('19400', 'Rockslide'), +('19401', 'Cactus'), +('19402', 'Rockslide'), +('19403', 'Jungle plant'), +('19404', 'Jungle plant'), +('19405', 'Jungle plant'), +('19406', 'Jungle plant'), +('19407', 'Jungle plant'), +('19408', 'Jungle plant'), +('19409', 'Jungle plant'), +('19410', 'Jungle plant'), +('19411', 'Jungle plant'), +('19412', 'Jungle plant'), +('19413', 'Jungle plant'), +('19414', 'Jungle plant'), +('19415', 'Jungle plant'), +('19416', 'Jungle plant'), +('19417', 'Jungle plant'), +('19418', 'Wall'), +('19419', 'Tunnel'), +('19420', 'Tunnel'), +('19421', 'Tunnel'), +('19422', 'Wall'), +('19423', 'Tunnel'), +('19424', 'Tunnel'), +('19425', 'Cave'), +('19426', 'Tunnel'), +('19427', 'Bush'), +('19428', 'Bush'), +('19429', 'Bush'), +('19430', 'Disturbed sand'), +('19431', 'null'), +('19432', 'null'), +('19433', 'null'), +('19434', 'Tunnel'), +('19435', 'Snow drift'), +('19436', 'null'), +('19437', 'null'), +('19438', 'Burrow'), +('19439', 'Burrow'), +('19440', 'Burrow'), +('19441', 'null'), +('19442', 'null'), +('19443', 'null'), +('19444', 'null'), +('19445', 'null'), +('19446', 'null'), +('19447', 'null'), +('19448', 'null'), +('19449', 'null'), +('19450', 'null'), +('19451', 'null'), +('19452', 'null'), +('19453', 'null'), +('19454', 'null'), +('19455', 'null'), +('19456', 'null'), +('19457', 'null'), +('19458', 'null'), +('19459', 'null'), +('19460', 'null'), +('19461', 'null'), +('19462', 'null'), +('19463', 'null'), +('19464', 'null'), +('19465', 'null'), +('19466', 'null'), +('19467', 'null'), +('19468', 'null'), +('19469', 'null'), +('19470', 'null'), +('19471', 'null'), +('19472', 'null'), +('19473', 'null'), +('19474', 'null'), +('19475', 'null'), +('19476', 'null'), +('19477', 'null'), +('19478', 'null'), +('19479', 'null'), +('19480', 'null'), +('19481', 'null'), +('19482', 'null'), +('19483', 'null'), +('19484', 'null'), +('19485', 'null'), +('19486', 'null'), +('19487', 'null'), +('19488', 'null'), +('19489', 'null'), +('19490', 'null'), +('19491', 'null'), +('19492', 'Burrow'), +('19493', 'Burrow'), +('19494', 'Burrow'), +('19495', 'null'), +('19496', 'null'), +('19497', 'null'), +('19498', 'null'), +('19499', 'null'), +('19500', 'null'), +('19501', 'null'), +('19502', 'null'), +('19503', 'null'), +('19504', 'null'), +('19505', 'null'), +('19506', 'null'), +('19507', 'null'), +('19508', 'null'), +('19509', 'null'), +('19510', 'null'), +('19511', 'null'), +('19512', 'null'), +('19513', 'null'), +('19514', 'null'), +('19515', 'null'), +('19516', 'null'), +('19517', 'null'), +('19518', 'null'), +('19519', 'null'), +('19520', 'null'), +('19521', 'null'), +('19522', 'null'), +('19523', 'null'), +('19524', 'null'), +('19525', 'null'), +('19526', 'null'), +('19527', 'null'), +('19528', 'null'), +('19529', 'null'), +('19530', 'null'), +('19531', 'null'), +('19532', 'null'), +('19533', 'null'), +('19534', 'null'), +('19535', 'null'), +('19536', 'null'), +('19537', 'null'), +('19538', 'null'), +('19539', 'null'), +('19540', 'null'), +('19541', 'null'), +('19542', 'null'), +('19543', 'null'), +('19544', 'null'), +('19545', 'null'), +('19546', 'null'), +('19547', 'null'), +('19548', 'null'), +('19549', 'null'), +('19550', 'null'), +('19551', 'null'), +('19552', 'Burrow'), +('19553', 'Burrow'), +('19554', 'null'), +('19555', 'null'), +('19556', 'null'), +('19557', 'null'), +('19558', 'null'), +('19559', 'null'), +('19560', 'null'), +('19561', 'null'), +('19562', 'null'), +('19563', 'null'), +('19564', 'null'), +('19565', 'null'), +('19566', 'null'), +('19567', 'null'), +('19568', 'null'), +('19569', 'null'), +('19570', 'null'), +('19571', 'null'), +('19572', 'null'), +('19573', 'null'), +('19574', 'null'), +('19575', 'null'), +('19576', 'null'), +('19577', 'null'), +('19578', 'null'), +('19579', 'null'), +('19580', 'null'), +('19581', 'null'), +('19582', 'null'), +('19583', 'null'), +('19584', 'null'), +('19585', 'null'), +('19586', 'null'), +('19587', 'null'), +('19588', 'null'), +('19589', 'null'), +('19590', 'null'), +('19591', 'null'), +('19592', 'null'), +('19593', 'Burrow'), +('19594', 'Burrow'), +('19595', 'null'), +('19596', 'null'), +('19597', 'null'), +('19598', 'null'), +('19599', 'null'), +('19600', 'null'), +('19601', 'null'), +('19602', 'null'), +('19603', 'null'), +('19604', 'null'), +('19605', 'null'), +('19606', 'null'), +('19607', 'null'), +('19608', 'null'), +('19609', 'null'), +('19610', 'null'), +('19611', 'null'), +('19612', 'null'), +('19613', 'null'), +('19614', 'null'), +('19615', 'null'), +('19616', 'null'), +('19617', 'null'), +('19618', 'null'), +('19619', 'null'), +('19620', 'null'), +('19621', 'null'), +('19622', 'null'), +('19623', 'null'), +('19624', 'null'), +('19625', 'null'), +('19626', 'null'), +('19627', 'null'), +('19628', 'null'), +('19629', 'null'), +('19630', 'null'), +('19631', 'null'), +('19632', 'null'), +('19633', 'null'), +('19634', 'null'), +('19635', 'null'), +('19636', 'null'), +('19637', 'null'), +('19638', 'null'), +('19639', 'null'), +('19640', 'Hole'), +('19641', 'Hole'), +('19642', 'null'), +('19643', 'null'), +('19644', 'null'), +('19645', 'null'), +('19646', 'null'), +('19647', 'null'), +('19648', 'null'), +('19649', 'null'), +('19650', 'Young tree'), +('19651', 'Net trap'), +('19652', 'Young tree'), +('19653', 'Young tree'), +('19654', 'Net trap'), +('19655', 'Net trap'), +('19656', 'Net trap'), +('19657', 'Net trap'), +('19658', 'Net trap'), +('19659', 'Net trap'), +('19660', 'Net trap'), +('19661', 'Net trap'), +('19662', 'Young tree'), +('19663', 'Young tree'), +('19664', 'Young tree'), +('19665', 'Net trap'), +('19666', 'Net trap'), +('19667', 'Net trap'), +('19668', 'Net trap'), +('19669', 'Net trap'), +('19670', 'Young tree'), +('19671', 'Young tree'), +('19672', 'Young tree'), +('19673', 'Net trap'), +('19674', 'Net trap'), +('19675', 'Net trap'), +('19676', 'Net trap'), +('19677', 'Net trap'), +('19678', 'Young tree'), +('19679', 'Young tree'), +('19680', 'Young tree'), +('19681', 'Net trap'), +('19682', 'null'), +('19683', 'null'), +('19684', 'null'), +('19685', 'null'), +('19686', 'null'), +('19687', 'null'), +('19688', 'null'), +('19689', 'null'), +('19690', 'Steps'), +('19691', 'Steps'), +('19692', 'null'), +('19693', 'null'), +('19694', 'null'), +('19695', 'null'), +('19696', 'null'), +('19697', 'null'), +('19698', 'null'), +('19699', 'Counter'), +('19700', 'null'), +('19701', 'null'), +('19702', 'null'), +('19703', 'null'), +('19704', 'null'), +('19705', 'null'), +('19706', 'null'), +('19707', 'null'), +('19708', 'null'), +('19709', 'null'), +('19710', 'null'), +('19711', 'null'), +('19712', 'null'), +('19713', 'null'), +('19714', 'null'), +('19715', 'null'), +('19716', 'null'), +('19717', 'null'), +('19718', 'null'), +('19719', 'null'), +('19720', 'null'), +('19721', 'null'), +('19722', 'null'), +('19723', 'null'), +('19724', 'null'), +('19725', 'null'), +('19726', 'null'), +('19727', 'null'), +('19728', 'null'), +('19729', 'null'), +('19730', 'null'), +('19731', 'null'), +('19732', 'null'), +('19733', 'null'), +('19734', 'null'), +('19735', 'null'), +('19736', 'null'), +('19737', 'null'), +('19738', 'null'), +('19739', 'null'), +('19740', 'null'), +('19741', 'null'), +('19742', 'null'), +('19743', 'null'), +('19744', 'null'), +('19745', 'null'), +('19746', 'null'), +('19747', 'null'), +('19748', 'null'), +('19749', 'null'), +('19750', 'null'), +('19751', 'null'), +('19752', 'Rockslide'), +('19753', 'Cave'), +('19754', 'Cave'), +('19755', 'null'), +('19756', 'null'), +('19757', 'null'), +('19758', 'null'), +('19759', 'Cave'), +('19760', 'Cave'), +('19761', 'Cave'), +('19762', 'Cave'), +('19763', 'Cave'), +('19764', 'Cave'), +('19765', 'null'), +('19766', 'null'), +('19767', 'null'), +('19768', 'null'), +('19769', 'null'), +('19770', 'null'), +('19771', 'null'), +('19772', 'null'), +('19773', 'null'), +('19774', 'null'), +('19775', 'null'), +('19776', 'null'), +('19777', 'null'), +('19778', 'null'), +('19779', 'null'), +('19780', 'null'), +('19781', 'null'), +('19782', 'null'), +('19783', 'null'), +('19784', 'null'), +('19785', 'null'), +('19786', 'null'), +('19787', 'null'), +('19788', 'null'), +('19789', 'null'), +('19790', 'null'), +('19791', 'Cave'), +('19792', 'Cave'), +('19793', 'null'), +('19794', 'null'), +('19795', 'null'), +('19796', 'null'), +('19797', 'Cave'), +('19798', 'Cave'), +('19799', 'null'), +('19800', 'null'), +('19801', 'null'), +('19802', 'null'), +('19803', 'null'), +('19804', 'null'), +('19805', 'null'), +('19806', 'null'), +('19807', 'null'), +('19808', 'Rockslide'), +('19809', 'Cave'), +('19810', 'Large cave'), +('19811', 'Cave'), +('19812', 'Cave'), +('19813', 'null'), +('19814', 'null'), +('19815', 'null'), +('19816', 'null'), +('19817', 'null'), +('19818', 'null'), +('19819', 'null'), +('19820', 'null'), +('19821', 'null'), +('19822', 'null'), +('19823', 'null'), +('19824', 'null'), +('19825', 'null'), +('19826', 'null'), +('19827', 'null'), +('19828', 'null'), +('19829', 'null'), +('19830', 'null'), +('19831', 'null'), +('19832', 'null'), +('19833', 'null'), +('19834', 'null'), +('19835', 'null'), +('19836', 'null'), +('19837', 'null'), +('19838', 'null'), +('19839', 'Fern'), +('19840', 'Fern'), +('19841', 'null'), +('19842', 'null'), +('19843', 'null'), +('19844', 'null'), +('19845', 'null'), +('19846', 'Rocky handholds'), +('19847', 'Rocky handholds'), +('19848', 'null'), +('19849', 'Rocks'), +('19850', 'null'), +('19851', 'Boulder'), +('19852', 'Hill'), +('19853', 'null'), +('19854', 'null'), +('19855', 'null'), +('19856', 'null'), +('19857', 'null'), +('19858', 'null'), +('19859', 'null'), +('19860', 'null'), +('19861', 'null'), +('19862', 'null'), +('19863', 'null'), +('19864', 'null'), +('19865', 'null'), +('19866', 'null'), +('19867', 'null'), +('19868', 'null'), +('19869', 'null'), +('19870', 'Stone Gate'), +('19871', 'Stone Gate'), +('19872', 'null'), +('19873', 'null'), +('19874', 'null'), +('19875', 'null'), +('19876', 'null'), +('19877', 'Eagle lever'), +('19878', 'Eagle lever'), +('19879', 'null'), +('19880', 'null'), +('19881', 'Campfire'), +('19882', 'null'), +('19883', 'null'), +('19884', 'Campfire'), +('19885', 'Books'), +('19886', 'Books'), +('19887', 'Camping equipment'), +('19888', 'Camping equipment'), +('19889', 'null'), +('19890', 'null'), +('19891', 'Cave entrance'), +('19892', 'null'), +('19893', 'null'), +('19894', 'Tunnel'), +('19895', 'null'), +('19896', 'null'), +('19897', 'Tunnel'), +('19898', 'null'), +('19899', 'null'), +('19900', 'Tunnel'), +('19901', 'null'), +('19902', 'null'), +('19903', 'Tunnel'), +('19904', 'null'), +('19905', 'null'), +('19906', 'Tunnel'), +('19907', 'null'), +('19908', 'null'), +('19909', 'Tunnel'), +('19910', 'null'), +('19911', 'Stone pedestal'), +('19912', 'null'), +('19913', 'null'), +('19914', 'Stone door'), +('19915', 'Stone door'), +('19916', 'Stone door'), +('19917', 'Stone door'), +('19918', 'Stone door'), +('19919', 'Birdseed holder'), +('19920', 'Bird feeder'), +('19921', 'Bird feeder'), +('19922', 'Giant feathers'), +('19923', 'Rocky outcrop'), +('19924', 'Cave entrance'), +('19925', 'Rocky outcrop'), +('19926', 'Cave entrance'), +('19927', 'null'), +('19928', 'Table'), +('19929', 'Chair'), +('19930', 'null'), +('19931', 'Chest'), +('19932', 'Bookcase'), +('19933', 'Chair'), +('19934', 'Armour'), +('19935', 'Metal bird'), +('19936', 'Bird feeder'), +('19937', 'Bird feeder'), +('19938', 'Bird feeder'), +('19939', 'Bird feeder'), +('19940', 'Bird feeder'), +('19941', 'Bird feeder'), +('19942', 'Bird feeder'), +('19943', 'Bird feeder'), +('19944', 'Bird feeder'), +('19945', 'Reset Lever'), +('19946', 'null'), +('19947', 'null'), +('19948', 'null'), +('19949', 'null'), +('19950', 'Stone pedestal'), +('19951', 'null'), +('19952', 'null'), +('19953', 'null'), +('19954', 'null'), +('19955', 'null'), +('19956', 'null'), +('19957', 'null'), +('19958', 'null'), +('19959', 'null'), +('19960', 'null'), +('19961', 'null'), +('19962', 'null'), +('19963', 'null'), +('19964', 'null'), +('19965', 'null'), +('19966', 'null'), +('19967', 'null'), +('19968', 'null'), +('19969', 'Rocks'), +('19970', 'Rocks'), +('19971', 'Rocks'), +('19972', 'Rocks'), +('19973', 'Rocks'), +('19974', 'Stone pedestal'), +('19975', 'Stone pedestal'), +('19976', 'Winch'), +('19977', 'Winch'), +('19978', 'Winch'), +('19979', 'Winch'), +('19980', 'Pedestal'), +('19981', 'Pedestal'), +('19982', 'Pedestal'), +('19983', 'Pedestal'), +('19984', 'Stone pedestal'), +('19985', 'Young vine'), +('19986', 'Young vine'), +('19987', 'Growing vine'), +('19988', 'Tall vine'), +('19989', 'Tall vine'), +('19990', 'null'), +('19991', 'null'), +('19992', 'null'), +('19993', 'null'), +('19994', 'null'), +('19995', 'null'), +('19996', 'Buried skeleton'), +('19997', 'Animal skull'), +('19998', 'Curved bone'), +('19999', 'Large bone'), +('20000', 'Fire'), +('20001', 'Fire'), +('20002', 'null'), +('20003', 'null'), +('20004', 'Rope bridge support'), +('20005', 'Rope bridge support'), +('20006', 'Rope bridge support'), +('20007', 'Rope bridge support'), +('20008', 'null'), +('20009', 'null'), +('20010', 'null'), +('20011', 'null'), +('20012', 'null'), +('20013', 'null'), +('20014', 'null'), +('20015', 'null'), +('20016', 'null'), +('20017', 'null'), +('20018', 'null'), +('20019', 'null'), +('20020', 'null'), +('20021', 'null'), +('20022', 'Pillar'), +('20023', 'Pillar'), +('20024', 'Pillar'), +('20025', 'null'), +('20026', 'Pillar'), +('20027', 'Pillar'), +('20028', 'Pillar'), +('20029', 'null'), +('20030', 'Pillar'), +('20031', 'Pillar'), +('20032', 'Pillar'), +('20033', 'null'), +('20034', 'null'), +('20035', 'null'), +('20036', 'null'), +('20037', 'Bed'), +('20038', 'Switch'), +('20039', 'Switch'), +('20040', 'Machine'), +('20041', 'null'), +('20042', 'null'), +('20043', 'null'), +('20044', 'null'), +('20045', 'Gate'), +('20046', 'Gate'), +('20047', 'null'), +('20048', 'null'), +('20049', 'Gate'), +('20050', 'Gate'), +('20051', 'null'), +('20052', 'null'), +('20053', 'null'), +('20054', 'null'), +('20055', 'null'), +('20056', 'Trellis'), +('20057', 'Trellis'), +('20058', 'Table'), +('20059', 'Stool'), +('20060', 'Table'), +('20061', 'Shelf'), +('20062', 'Shelf'), +('20063', 'A bunk bed'), +('20064', 'null'), +('20065', 'Chair'), +('20066', 'null'), +('20067', 'null'), +('20068', 'null'), +('20069', 'null'), +('20070', 'null'), +('20071', 'null'), +('20072', 'null'), +('20073', 'null'), +('20074', 'null'), +('20075', 'null'), +('20076', 'null'), +('20077', 'null'), +('20078', 'null'), +('20079', 'null'), +('20080', 'null'), +('20081', 'null'), +('20082', 'null'), +('20083', 'null'), +('20084', 'Castle wall'), +('20085', 'Hole'), +('20086', 'null'), +('20087', 'City gate'), +('20088', 'City gate'), +('20089', 'City gate'), +('20090', 'City gate'), +('20091', 'null'), +('20092', 'null'), +('20093', 'null'), +('20094', 'null'), +('20095', 'Open chest'), +('20096', 'Bed'), +('20097', 'Bed'), +('20098', 'null'), +('20099', 'null'), +('20100', 'Childerkin slaves'), +('20101', 'null'), +('20102', 'null'), +('20103', 'null'), +('20104', 'null'), +('20105', 'null'), +('20106', 'null'), +('20107', 'null'), +('20108', 'null'), +('20109', 'null'), +('20110', 'null'), +('20111', 'null'), +('20112', 'null'), +('20113', 'null'), +('20114', 'null'), +('20115', 'null'), +('20116', 'null'), +('20117', 'Childerkin slaves'), +('20118', 'null'), +('20119', 'null'), +('20120', 'null'), +('20121', 'null'), +('20122', 'null'), +('20123', 'null'), +('20124', 'null'), +('20125', 'null'), +('20126', 'null'), +('20127', 'null'), +('20128', 'null'), +('20129', 'null'), +('20130', 'null'), +('20131', 'null'), +('20132', 'null'), +('20133', 'Egg launcher'), +('20134', 'Blackboard'), +('20135', 'Runner trap(2)'), +('20136', 'Trapdoor'), +('20137', 'Trapdoor'), +('20138', 'Trapdoor'), +('20139', 'Trapdoor'), +('20140', 'Trapdoor'), +('20141', 'Trapdoor'), +('20142', 'Trapdoor'), +('20143', 'Trapdoor'), +('20144', 'Trapdoor'), +('20145', 'Trapdoor'), +('20146', 'Trapdoor'), +('20147', 'Trapdoor'), +('20148', 'Winch'), +('20149', 'Scroll table'), +('20150', 'Healer spring'), +('20151', 'Lure cave'), +('20152', 'null'), +('20153', 'null'), +('20154', 'null'), +('20155', 'null'), +('20156', 'null'), +('20157', 'null'), +('20158', 'null'), +('20159', 'null'), +('20160', 'null'), +('20161', 'null'), +('20162', 'null'), +('20163', 'null'), +('20164', 'Penance Fighter statue'), +('20165', 'Penance Healer statue'), +('20166', 'Penance Runner statue'), +('20167', 'Penance Ranger statue'), +('20168', 'Penance Queen spawn statue'), +('20169', 'null'), +('20170', 'null'), +('20171', 'null'), +('20172', 'null'), +('20173', 'null'), +('20174', 'null'), +('20175', 'null'), +('20176', 'null'), +('20177', 'null'), +('20178', 'null'), +('20179', 'null'), +('20180', 'null'), +('20181', 'null'), +('20182', 'null'), +('20183', 'One'), +('20184', 'Two'), +('20185', 'Three'), +('20186', 'Four'), +('20187', 'Five'), +('20188', 'Six'), +('20189', 'Seven'), +('20190', 'Eight'), +('20191', 'Nine'), +('20192', 'Ten'), +('20193', 'Ladder'), +('20194', 'Ladder'), +('20195', 'Barbarian door'), +('20196', 'Barbarian door'), +('20197', 'Barbarian door'), +('20198', 'Barbarian door'), +('20199', 'Door'), +('20200', 'Door'), +('20201', 'Door'), +('20202', 'Door'), +('20203', 'Door'), +('20204', 'Door'), +('20205', 'Door'), +('20206', 'Door'), +('20207', 'Door'), +('20208', 'Door'), +('20209', 'Door'), +('20210', 'Obstacle pipe'), +('20211', 'Obstacle net'), +('20212', 'null'), +('20213', 'null'), +('20214', 'null'), +('20215', 'null'), +('20216', 'Crate'), +('20217', 'Barrel'), +('20218', 'null'), +('20219', 'null'), +('20220', 'null'), +('20221', 'null'), +('20222', 'null'), +('20223', 'null'), +('20224', 'null'), +('20225', 'null'), +('20226', 'Ladder'), +('20227', 'Ladder'), +('20228', 'Bank deposit box'), +('20229', 'Information scroll'), +('20230', 'Runner trap(1)'), +('20231', 'Broken trap(0)'), +('20232', 'Lava crater'), +('20233', 'Poison crater'), +('20234', 'Lava crater'), +('20235', 'Poison crater'), +('20236', 'null'), +('20237', 'Penance cave'), +('20238', 'Penance cave'), +('20239', 'Penance cave'), +('20240', 'null'), +('20241', 'Attacker item machine'), +('20242', 'Defender item machine'), +('20243', 'Healer item machine'), +('20244', 'null'), +('20245', 'null'), +('20246', 'null'), +('20247', 'Horn of glory'), +('20248', 'Horn of glory'), +('20249', 'null'), +('20250', 'Petrified mushroom'), +('20251', 'Petrified mushroom'), +('20252', 'null'), +('20253', 'null'), +('20254', 'null'), +('20255', 'null'), +('20256', 'null'), +('20257', 'null'), +('20258', 'null'), +('20259', 'Egg launcher'), +('20260', 'Hopper'), +('20261', 'Hopper'), +('20262', 'Hopper'), +('20263', 'Egg launcher'), +('20264', 'Egg hopper'), +('20265', 'Egg hopper'), +('20266', 'Egg hopper'), +('20267', 'null'), +('20268', 'null'), +('20269', 'null'), +('20270', 'null'), +('20271', 'Floor'), +('20272', 'Odd markings'), +('20273', 'Speartrap'), +('20274', 'Trapdoor'), +('20275', 'Ladder'), +('20276', 'null'), +('20277', 'Ladder'), +('20278', 'Ladder'), +('20279', 'Trapdoor'), +('20280', 'Ladder'), +('20281', 'Ladder'), +('20282', 'null'), +('20283', 'null'), +('20284', 'Ladder'), +('20285', 'Ladder'), +('20286', 'Ladder'), +('20287', 'Ladder'), +('20288', 'Kaleef's body'), +('20289', 'null'), +('20290', 'null'), +('20291', 'null'), +('20292', 'null'), +('20293', 'null'), +('20294', 'null'), +('20295', 'null'), +('20296', 'null'), +('20297', 'Corpse'), +('20298', 'Corpse'), +('20299', 'Corpse'), +('20300', 'Corpse'), +('20301', 'null'), +('20302', 'null'), +('20303', 'null'), +('20304', 'null'), +('20305', 'null'), +('20306', 'null'), +('20307', 'null'), +('20308', 'null'), +('20309', 'null'), +('20310', 'null'), +('20311', 'null'), +('20312', 'null'), +('20313', 'null'), +('20314', 'null'), +('20315', 'null'), +('20316', 'null'), +('20317', 'null'), +('20318', 'null'), +('20319', 'null'), +('20320', 'null'), +('20321', 'null'), +('20322', 'Red Castlewars armour'), +('20323', 'Private bank booth'), +('20324', 'Private bank booth'), +('20325', 'Bank booth'), +('20326', 'Bank booth'), +('20327', 'Bank booth'), +('20328', 'Bank booth'), +('20329', 'Bank table'), +('20330', 'Bank table'), +('20331', 'Dagger stall'), +('20332', 'Craft stall'), +('20333', 'null'), +('20334', 'null'), +('20335', 'Floor'), +('20336', 'null'), +('20337', 'null'), +('20338', 'null'), +('20339', 'null'), +('20340', 'Trapdoor'), +('20341', 'Gate'), +('20342', 'Cart'), +('20343', 'Cart'), +('20344', 'Silk stall'), +('20345', 'Bakery stall'), +('20346', 'Gem stall'), +('20347', 'Fur stall'), +('20348', 'Spice stall'), +('20349', 'Market stall'), +('20350', 'Tea stall'), +('20351', 'Table'), +('20352', 'Chair'), +('20353', 'Ladder'), +('20354', 'Ladder'), +('20355', 'null'), +('20356', 'Ladder'), +('20357', 'Ladder'), +('20358', 'Sink'), +('20359', 'Wheelbarrow'), +('20360', 'Work bench'), +('20361', 'null'), +('20362', 'Shelf'), +('20363', 'null'), +('20364', 'Clothing shelves'), +('20365', 'Spinning wheel'), +('20366', 'null'), +('20367', 'Crate'), +('20368', 'Crate'), +('20369', 'Boxes'), +('20370', 'Log pile'), +('20371', 'Broken logs'), +('20372', 'Hollow log'), +('20373', 'Logs'), +('20374', 'Logs'), +('20375', 'Potter's wheel'), +('20376', 'Clothes'), +('20377', 'Altar'), +('20378', 'Altar'), +('20379', 'Altar'), +('20380', 'null'), +('20381', 'null'), +('20382', 'null'), +('20383', 'null'), +('20384', 'null'), +('20385', 'null'), +('20386', 'Bed'), +('20387', 'Bed'), +('20388', 'Cloth covered table'), +('20389', 'null'), +('20390', 'null'), +('20391', 'Gate'), +('20392', 'null'), +('20393', 'null'), +('20394', 'null'), +('20395', 'null'), +('20396', 'null'), +('20397', 'null'), +('20398', 'null'), +('20399', 'null'), +('20400', 'null'), +('20401', 'null'), +('20402', 'Buffers'), +('20403', 'null'), +('20404', 'null'), +('20405', 'null'), +('20406', 'null'), +('20407', 'Ore vein'), +('20408', 'Ore vein'), +('20409', 'Ore vein'), +('20410', 'Ore vein'), +('20411', 'Ore vein'), +('20412', 'Ore vein'), +('20413', 'Ore vein'), +('20414', 'Ore vein'), +('20415', 'Ore vein'), +('20416', 'Ore vein'), +('20417', 'Ore vein'), +('20418', 'Ore vein'), +('20419', 'Ore vein'), +('20420', 'Ore vein'), +('20421', 'Ore vein'), +('20422', 'Ore vein'), +('20423', 'Ore vein'), +('20424', 'Ore vein'), +('20425', 'Ore vein'), +('20426', 'Stairs'), +('20427', 'null'), +('20428', 'null'), +('20429', 'Crate'), +('20430', 'Crate'), +('20431', 'Barrel'), +('20432', 'null'), +('20433', 'Cart tunnel'), +('20434', 'null'), +('20435', 'Stairs'), +('20436', 'null'), +('20437', 'null'), +('20438', 'null'), +('20439', 'Depleted vein'), +('20440', 'Depleted vein'), +('20441', 'Depleted vein'), +('20442', 'Depleted vein'), +('20443', 'Ore vein'), +('20444', 'Ore vein'), +('20445', 'Ore vein'), +('20446', 'Ore vein'), +('20447', 'Ore vein'), +('20448', 'Ore vein'), +('20449', 'Ore vein'), +('20450', 'Ore vein'), +('20451', 'Ore vein'), +('20452', 'Armour'), +('20453', 'Armour'), +('20454', 'Skeleton'), +('20455', 'Skeleton'), +('20456', 'Skeleton'), +('20457', 'Skeleton'), +('20458', 'Locker'), +('20459', 'Stool'), +('20460', 'Small table'), +('20461', 'Bookcase'), +('20462', 'Bed'), +('20463', 'Crate'), +('20464', 'Crate'), +('20465', 'Passageway'), +('20466', 'Passageway'), +('20467', 'Passageway'), +('20468', 'Passageway'), +('20469', 'Passageway'), +('20470', 'null'), +('20471', 'null'), +('20472', 'null'), +('20473', 'null'), +('20474', 'null'), +('20475', 'null'), +('20476', 'null'), +('20477', 'null'), +('20478', 'null'), +('20479', 'null'), +('20480', 'null'), +('20481', 'null'), +('20482', 'null'), +('20483', 'null'), +('20484', 'null'), +('20485', 'null'), +('20486', 'null'), +('20487', 'null'), +('20488', 'null'), +('20489', 'null'), +('20490', 'null'), +('20491', 'null'), +('20492', 'null'), +('20493', 'null'), +('20494', 'null'), +('20495', 'null'), +('20496', 'null'), +('20497', 'null'), +('20498', 'null'), +('20499', 'null'), +('20500', 'null'), +('20501', 'null'), +('20502', 'null'), +('20503', 'null'), +('20504', 'null'), +('20505', 'null'), +('20506', 'null'), +('20507', 'null'), +('20508', 'null'), +('20509', 'null'), +('20510', 'Crate'), +('20511', 'Barrel'), +('20512', 'null'), +('20513', 'null'), +('20514', 'null'), +('20515', 'null'), +('20516', 'null'), +('20517', 'null'), +('20518', 'null'), +('20519', 'Buffers'), +('20520', 'null'), +('20521', 'null'), +('20522', 'null'), +('20523', 'null'), +('20524', 'Cart tunnel'), +('20525', 'Cart tunnel'), +('20526', 'Wall support'), +('20527', 'Entrance'), +('20528', 'Entrance'), +('20529', 'null'), +('20530', 'null'), +('20531', 'Bars'), +('20532', 'Bars'), +('20533', 'Bars'), +('20534', 'Bars'), +('20535', 'Stairs'), +('20536', 'Stairs'), +('20537', 'null'), +('20538', 'null'), +('20539', 'null'), +('20540', 'null'), +('20541', 'null'), +('20542', 'null'), +('20543', 'null'), +('20544', 'null'), +('20545', 'null'), +('20546', 'null'), +('20547', 'null'), +('20548', 'null'), +('20549', 'null'), +('20550', 'null'), +('20551', 'null'), +('20552', 'null'), +('20553', 'null'), +('20554', 'null'), +('20555', 'null'), +('20556', 'null'), +('20557', 'null'), +('20558', 'null'), +('20559', 'null'), +('20560', 'null'), +('20561', 'null'), +('20562', 'null'), +('20563', 'null'), +('20564', 'null'), +('20565', 'null'), +('20566', 'null'), +('20567', 'null'), +('20568', 'null'), +('20569', 'null'), +('20570', 'null'), +('20571', 'null'), +('20572', 'Passageway'), +('20573', 'Passageway'), +('20574', 'Passageway'), +('20575', 'Passageway'), +('20576', 'Passageway'), +('20577', 'Passageway'), +('20578', 'null'), +('20579', 'null'), +('20580', 'null'), +('20581', 'null'), +('20582', 'null'), +('20583', 'null'), +('20584', 'null'), +('20585', 'null'), +('20586', 'null'), +('20587', 'null'), +('20588', 'null'), +('20589', 'null'), +('20590', 'null'), +('20591', 'null'), +('20592', 'null'), +('20593', 'null'), +('20594', 'null'), +('20595', 'null'), +('20596', 'null'), +('20597', 'null'), +('20598', 'null'), +('20599', 'null'), +('20600', 'null'), +('20601', 'null'), +('20602', 'null'), +('20603', 'null'), +('20604', 'null'), +('20605', 'null'), +('20606', 'null'), +('20607', 'null'), +('20608', 'null'), +('20609', 'null'), +('20610', 'null'), +('20611', 'null'), +('20612', 'null'), +('20613', 'null'), +('20614', 'null'), +('20615', 'null'), +('20616', 'null'), +('20617', 'null'), +('20618', 'null'), +('20619', 'Stairs'), +('20620', 'Stairs'), +('20621', 'null'), +('20622', 'null'), +('20623', 'null'), +('20624', 'null'), +('20625', 'null'), +('20626', 'null'), +('20627', 'null'), +('20628', 'null'), +('20629', 'null'), +('20630', 'null'), +('20631', 'null'), +('20632', 'null'), +('20633', 'null'), +('20634', 'null'), +('20635', 'null'), +('20636', 'null'), +('20637', 'null'), +('20638', 'null'), +('20639', 'null'), +('20640', 'null'), +('20641', 'null'), +('20642', 'null'), +('20643', 'null'), +('20644', 'null'), +('20645', 'null'), +('20646', 'null'), +('20647', 'null'), +('20648', 'null'), +('20649', 'null'), +('20650', 'null'), +('20651', 'null'), +('20652', 'Passageway'), +('20653', 'Passageway'), +('20654', 'Passageway'), +('20655', 'Passageway'), +('20656', 'Passageway'), +('20657', 'Passageway'), +('20658', 'null'), +('20659', 'null'), +('20660', 'null'), +('20661', 'null'), +('20662', 'null'), +('20663', 'null'), +('20664', 'null'), +('20665', 'null'), +('20666', 'null'), +('20667', 'null'), +('20668', 'null'), +('20669', 'null'), +('20670', 'null'), +('20671', 'null'), +('20672', 'null'), +('20673', 'null'), +('20674', 'null'), +('20675', 'null'), +('20676', 'null'), +('20677', 'null'), +('20678', 'null'), +('20679', 'null'), +('20680', 'null'), +('20681', 'null'), +('20682', 'null'), +('20683', 'null'), +('20684', 'Stairs'), +('20685', 'Stairs'), +('20686', 'null'), +('20687', 'null'), +('20688', 'null'), +('20689', 'null'), +('20690', 'null'), +('20691', 'null'), +('20692', 'null'), +('20693', 'Ledge'), +('20694', 'null'), +('20695', 'null'), +('20696', 'null'), +('20697', 'null'), +('20698', 'null'), +('20699', 'null'), +('20700', 'null'), +('20701', 'null'), +('20702', 'null'), +('20703', 'null'), +('20704', 'null'), +('20705', 'null'), +('20706', 'null'), +('20707', 'null'), +('20708', 'null'), +('20709', 'null'), +('20710', 'null'), +('20711', 'null'), +('20712', 'null'), +('20713', 'null'), +('20714', 'null'), +('20715', 'null'), +('20716', 'null'), +('20717', 'Passageway'), +('20718', 'Passageway'), +('20719', 'Passageway'), +('20720', 'Passageway'), +('20721', 'Passageway'), +('20722', 'Passageway'), +('20723', 'null'), +('20724', 'null'), +('20725', 'null'), +('20726', 'null'), +('20727', 'null'), +('20728', 'null'), +('20729', 'null'), +('20730', 'null'), +('20731', 'null'), +('20732', 'null'), +('20733', 'null'), +('20734', 'null'), +('20735', 'null'), +('20736', 'null'), +('20737', 'null'), +('20738', 'null'), +('20739', 'null'), +('20740', 'null'), +('20741', 'null'), +('20742', 'null'), +('20743', 'null'), +('20744', 'null'), +('20745', 'null'), +('20746', 'null'), +('20747', 'null'), +('20748', 'null'), +('20749', 'Stairs'), +('20750', 'Stairs'), +('20751', 'null'), +('20752', 'null'), +('20753', 'null'), +('20754', 'null'), +('20755', 'null'), +('20756', 'null'), +('20757', 'null'), +('20758', 'null'), +('20759', 'null'), +('20760', 'null'), +('20761', 'null'), +('20762', 'null'), +('20763', 'null'), +('20764', 'null'), +('20765', 'null'), +('20766', 'null'), +('20767', 'null'), +('20768', 'null'), +('20769', 'null'), +('20770', 'null'), +('20771', 'null'), +('20772', 'null'), +('20773', 'null'), +('20774', 'null'), +('20775', 'null'), +('20776', 'null'), +('20777', 'null'), +('20778', 'null'), +('20779', 'null'), +('20780', 'null'), +('20781', 'null'), +('20782', 'Passageway'), +('20783', 'Passageway'), +('20784', 'Passageway'), +('20785', 'Passageway'), +('20786', 'Passageway'), +('20787', 'Passageway'), +('20788', 'null'), +('20789', 'null'), +('20790', 'null'), +('20791', 'null'), +('20792', 'null'), +('20793', 'null'), +('20794', 'null'), +('20795', 'null'), +('20796', 'null'), +('20797', 'null'), +('20798', 'null'), +('20799', 'null'), +('20800', 'null'), +('20801', 'null'), +('20802', 'null'), +('20803', 'null'), +('20804', 'null'), +('20805', 'null'), +('20806', 'null'), +('20807', 'null'), +('20808', 'null'), +('20809', 'null'), +('20810', 'null'), +('20811', 'null'), +('20812', 'null'), +('20813', 'null'), +('20814', 'Passageway'), +('20815', 'Passageway'), +('20816', 'Stairs'), +('20817', 'Passageway'), +('20818', 'Stairs'), +('20819', 'Stairs'), +('20820', 'Passageway'), +('20821', 'Passageway'), +('20822', 'Passageway'), +('20823', 'Passageway'), +('20824', 'Passageway'), +('20825', 'Passageway'), +('20826', 'Stairs'), +('20827', 'Passageway'), +('20828', 'Stairs'), +('20829', 'Passageway'), +('20830', 'Passageway'), +('20831', 'Passageway'), +('20832', 'Passageway'), +('20833', 'Passageway'), +('20834', 'Passageway'), +('20835', 'Passageway'), +('20836', 'Passageway'), +('20837', 'Passageway'), +('20838', 'Passageway'), +('20839', 'Passageway'), +('20840', 'Stairs'), +('20841', 'Passageway'), +('20842', 'Passageway'), +('20843', 'Passageway'), +('20844', 'Passageway'), +('20845', 'Passageway'), +('20846', 'Passageway'), +('20847', 'Passageway'), +('20848', 'Passageway'), +('20849', 'Passageway'), +('20850', 'Passageway'), +('20851', 'Passageway'), +('20852', 'Passageway'), +('20853', 'Passageway'), +('20854', 'Passageway'), +('20855', 'Passageway'), +('20856', 'Passageway'), +('20857', 'Passageway'), +('20858', 'Passageway'), +('20859', 'Passageway'), +('20860', 'Passageway'), +('20861', 'Passageway'), +('20862', 'Passageway'), +('20863', 'Passageway'), +('20864', 'Passageway'), +('20865', 'Passageway'), +('20866', 'Passageway'), +('20867', 'Passageway'), +('20868', 'Passageway'), +('20869', 'Passageway'), +('20870', 'Passageway'), +('20871', 'Passageway'), +('20872', 'Pillar'), +('20873', 'Pillar'), +('20874', 'Pillar'), +('20875', 'Pillar'), +('20876', 'Pillar'), +('20877', 'Pillar'), +('20878', 'Pillar'), +('20879', 'Pillar'), +('20880', 'Pillar'), +('20881', 'Pillar'), +('20882', 'Pillar'), +('20883', 'Pillar'), +('20884', 'Pillar'), +('20885', 'Pillar'), +('20886', 'Pillar'), +('20887', 'Pillar'), +('20888', 'Pillar'), +('20889', 'Pillar'), +('20890', 'Ledge'), +('20891', 'Ledge'), +('20892', 'Ledge'), +('20893', 'Ledge'), +('20894', 'Ledge'), +('20895', 'Ledge'), +('20896', 'Ledge'), +('20897', 'Ledge'), +('20898', 'Ledge'), +('20899', 'Ledge'), +('20900', 'Ledge'), +('20901', 'Ledge'), +('20902', 'Trap bypass'), +('20903', 'Hanging log'), +('20904', 'Hanging log'), +('20905', 'Hanging log'), +('20906', 'Hanging log'), +('20907', 'null'), +('20908', 'null'), +('20909', 'null'), +('20910', 'null'), +('20911', 'null'), +('20912', 'null'), +('20913', 'null'), +('20914', 'null'), +('20915', 'Floor'), +('20916', 'Floor'), +('20917', 'Floor'), +('20918', 'Floor'), +('20919', 'Floor'), +('20920', 'Wall'), +('20921', 'Wall'), +('20922', 'Wall'), +('20923', 'Wall'), +('20924', 'Wall'), +('20925', 'Wall'), +('20926', 'Wall'), +('20927', 'Wall'), +('20928', 'Wall'), +('20929', 'Wall'), +('20930', 'Wall'), +('20931', 'Wall'), +('20932', 'Wall'), +('20933', 'Wall'), +('20934', 'Wall'), +('20935', 'Wall'), +('20936', 'Wall'), +('20937', 'Wall'), +('20938', 'Wall'), +('20939', 'Wall'), +('20940', 'Wall'), +('20941', 'Wall'), +('20942', 'Wall'), +('20943', 'Wall'), +('20944', 'Wall'), +('20945', 'Wall'), +('20946', 'Wall'), +('20947', 'Wall'), +('20948', 'Wall'), +('20949', 'Wall'), +('20950', 'Wall'), +('20951', 'Wall'), +('20952', 'Wall'), +('20953', 'Wall'), +('20954', 'Wall'), +('20955', 'Wall'), +('20956', 'Floor'), +('20957', 'Floor'), +('20958', 'Floor'), +('20959', 'Floor'), +('20960', 'Floor'), +('20961', 'Floor'), +('20962', 'Floor'), +('20963', 'Floor'), +('20964', 'Floor'), +('20965', 'Floor'), +('20966', 'Floor'), +('20967', 'Floor'), +('20968', 'Floor'), +('20969', 'Floor'), +('20970', 'Floor'), +('20971', 'Floor'), +('20972', 'null'), +('20973', 'null'), +('20974', 'null'), +('20975', 'null'), +('20976', 'null'), +('20977', 'null'), +('20978', 'Gnome skeleton'), +('20979', 'null'), +('20980', 'null'), +('20981', 'null'), +('20982', 'null'), +('20983', 'null'), +('20984', 'null'), +('20985', 'Mummy'), +('20986', 'Mummy'), +('20987', 'Ladder'), +('20988', 'null'), +('20989', 'null'), +('20990', 'null'), +('20991', 'null'), +('20992', 'null'), +('20993', 'null'), +('20994', 'null'), +('20995', 'Golf-cart'), +('20996', 'Table'), +('20997', 'null'), +('20998', 'null'), +('20999', 'Chair'), +('21000', 'Map'), +('21001', 'Interrogation chair'), +('21002', 'Steam generator'), +('21003', 'null'), +('21004', 'null'), +('21005', 'null'), +('21006', 'null'), +('21007', 'null'), +('21008', 'Drill'), +('21009', 'Lathe'), +('21010', 'Gigantic penguin'), +('21011', 'null'), +('21012', 'null'), +('21013', 'Crate'), +('21014', 'Crate'), +('21015', 'Crates'), +('21016', 'Barrel'), +('21017', 'null'), +('21018', 'Workbench'), +('21019', 'Workbench'), +('21020', 'null'), +('21021', 'null'), +('21022', 'Bed'), +('21023', 'Lockers'), +('21024', 'Foot lockers'), +('21025', 'Cello'), +('21026', 'Guitar'), +('21027', 'Harp'), +('21028', 'Flute'), +('21029', 'Trumpet'), +('21030', 'Piano'), +('21031', 'Stool'), +('21032', 'Clarinet'), +('21033', 'Music Scores'), +('21034', 'null'), +('21035', 'Chasm'), +('21036', 'null'), +('21037', 'null'), +('21038', 'null'), +('21039', 'null'), +('21040', 'null'), +('21041', 'null'), +('21042', 'null'), +('21043', 'null'), +('21044', 'null'), +('21045', 'null'), +('21046', 'null'), +('21047', 'null'), +('21048', 'null'), +('21049', 'null'), +('21050', 'null'), +('21051', 'null'), +('21052', 'null'), +('21053', 'null'), +('21054', 'null'), +('21055', 'Control panel'), +('21056', 'null'), +('21057', 'null'), +('21058', 'null'), +('21059', 'null'), +('21060', 'null'), +('21061', 'null'), +('21062', 'null'), +('21063', 'null'), +('21064', 'null'), +('21065', 'Door'), +('21066', 'Door'), +('21067', 'Door'), +('21068', 'Door'), +('21069', 'null'), +('21070', 'null'), +('21071', 'null'), +('21072', 'null'), +('21073', 'null'), +('21074', 'null'), +('21075', 'null'), +('21076', 'null'), +('21077', 'null'), +('21078', 'null'), +('21079', 'null'), +('21080', 'null'), +('21081', 'null'), +('21082', 'null'), +('21083', 'null'), +('21084', 'null'), +('21085', 'Spinning light'), +('21086', 'Big Button'), +('21087', 'null'), +('21088', 'null'), +('21089', 'null'), +('21090', 'null'), +('21091', 'null'), +('21092', 'Crazy penguin'), +('21093', 'Crazy penguin'), +('21094', 'Crazy penguin'), +('21095', 'Ice steps'), +('21096', 'null'), +('21097', 'null'), +('21098', 'null'), +('21099', 'null'), +('21100', 'null'), +('21101', 'null'), +('21102', 'null'), +('21103', 'null'), +('21104', 'null'), +('21105', 'null'), +('21106', 'Start'), +('21107', 'Sign'), +('21108', 'null'), +('21109', 'null'), +('21110', 'null'), +('21111', 'null'), +('21112', 'null'), +('21113', 'null'), +('21114', 'null'), +('21115', 'null'), +('21116', 'null'), +('21117', 'null'), +('21118', 'null'), +('21119', 'null'), +('21120', 'Stepping Stone'), +('21121', 'Stepping Stone'), +('21122', 'Stepping Stone'), +('21123', 'Stepping Stone'), +('21124', 'Stepping Stone'), +('21125', 'null'), +('21126', 'Stepping Stone'), +('21127', 'Stepping Stone'), +('21128', 'Stepping Stone'), +('21129', 'Stepping Stone'), +('21130', 'Stepping Stone'), +('21131', 'Stepping Stone'), +('21132', 'Stepping Stone'), +('21133', 'Stepping Stone'), +('21134', 'Icicles'), +('21135', 'null'), +('21136', 'null'), +('21137', 'null'), +('21138', 'null'), +('21139', 'null'), +('21140', 'null'), +('21141', 'null'), +('21142', 'Snow jump'), +('21143', 'Snow jump'), +('21144', 'null'), +('21145', 'null'), +('21146', 'null'), +('21147', 'Wooden platform'), +('21148', 'Ice'), +('21149', 'Ice'), +('21150', 'Ice'), +('21151', 'Ice'), +('21152', 'Ice'), +('21153', 'Ice'), +('21154', 'Ice'), +('21155', 'Ice'), +('21156', 'Ice'), +('21157', 'A crack'), +('21158', 'Avalanche'), +('21159', 'Avalanche'), +('21160', 'Door'), +('21161', 'Door'), +('21162', 'Door'), +('21163', 'null'), +('21164', 'Door'), +('21165', 'null'), +('21166', 'Door'), +('21167', 'Door'), +('21168', 'null'), +('21169', 'Door'), +('21170', 'Door'), +('21171', 'Door'), +('21172', 'Gate'), +('21173', 'null'), +('21174', 'null'), +('21175', 'Boat'), +('21176', 'Boat'), +('21177', 'Boat'), +('21178', 'null'), +('21179', 'Firm snow patch'), +('21180', 'Bird hide structure'), +('21181', 'Snowy bird hide'), +('21182', 'Destroyed bird hide'), +('21183', 'Suspicious footprints'), +('21184', 'Suspicious footprints'), +('21185', 'Suspicious footprints'), +('21186', 'null'), +('21187', 'Chasm'), +('21188', 'null'), +('21189', 'null'), +('21190', 'null'), +('21191', 'null'), +('21192', 'null'), +('21193', 'null'), +('21194', 'null'), +('21195', 'null'), +('21196', 'null'), +('21197', 'null'), +('21198', 'null'), +('21199', 'Snow'), +('21200', 'Snow'), +('21201', 'Door'), +('21202', 'null'), +('21203', 'null'), +('21204', 'null'), +('21205', 'null'), +('21206', 'null'), +('21207', 'null'), +('21208', 'null'), +('21209', 'null'), +('21210', 'null'), +('21211', 'null'), +('21212', 'null'), +('21213', 'null'), +('21214', 'null'), +('21215', 'null'), +('21216', 'null'), +('21217', 'null'), +('21218', 'null'), +('21219', 'null'), +('21220', 'null'), +('21221', 'null'), +('21222', 'null'), +('21223', 'null'), +('21224', 'null'), +('21225', 'null'), +('21226', 'null'), +('21227', 'null'), +('21228', 'null'), +('21229', 'null'), +('21230', 'null'), +('21231', 'null'), +('21232', 'null'), +('21233', 'null'), +('21234', 'null'), +('21235', 'null'), +('21236', 'null'), +('21237', 'null'), +('21238', 'null'), +('21239', 'null'), +('21240', 'null'), +('21241', 'null'), +('21242', 'null'), +('21243', 'Door'), +('21244', 'null'), +('21245', 'null'), +('21246', 'null'), +('21247', 'null'), +('21248', 'null'), +('21249', 'null'), +('21250', 'Collector Converter'), +('21251', 'Rocks'), +('21252', 'Rocks'), +('21253', 'Rocks'), +('21254', 'Rocks'), +('21255', 'Rocks'), +('21256', 'Rocks'), +('21257', 'Rocks'), +('21258', 'Rocks'), +('21259', 'Rocks'), +('21260', 'Rocks'), +('21261', 'Rocks'), +('21262', 'Rocks'), +('21263', 'Rocks'), +('21264', 'Rocks'), +('21265', 'Rocks'), +('21266', 'Rocks'), +('21267', 'Rocks'), +('21268', 'Rocks'), +('21269', 'Rocks'), +('21270', 'Rocks'), +('21271', 'Funeral pyre'), +('21272', 'Funeral pyre'), +('21273', 'Arctic Pine'), +('21274', 'Tree Stump'), +('21275', 'Rocks'), +('21276', 'Rocks'), +('21277', 'Rocks'), +('21278', 'Rocks'), +('21279', 'Rocks'), +('21280', 'Rocks'), +('21281', 'Rocks'), +('21282', 'Rocks'), +('21283', 'Rocks'), +('21284', 'Rocks'), +('21285', 'Rocks'), +('21286', 'Rocks'), +('21287', 'Rocks'), +('21288', 'Rocks'), +('21289', 'Rocks'), +('21290', 'Rocks'), +('21291', 'Rocks'), +('21292', 'Rocks'), +('21293', 'Rocks'), +('21294', 'Rocks'), +('21295', 'Rocks'), +('21296', 'Rocks'), +('21297', 'Rocks'), +('21298', 'Rocks'), +('21299', 'Chest'), +('21300', 'Chest'), +('21301', 'Bank chest'), +('21302', 'Clay oven'), +('21303', 'Clay forge'), +('21304', 'Spinning wheel'), +('21305', 'Woodcutting stump'), +('21306', 'Rope bridge'), +('21307', 'Rope bridge'), +('21308', 'Rope bridge'), +('21309', 'Rope bridge'), +('21310', 'Rope bridge'), +('21311', 'Rope bridge'), +('21312', 'Rope bridge'), +('21313', 'Rope bridge'), +('21314', 'Rope bridge'), +('21315', 'Rope bridge'), +('21316', 'Rope bridge'), +('21317', 'Rope bridge'), +('21318', 'Rope bridge'), +('21319', 'Rope bridge'), +('21320', 'null'), +('21321', 'null'), +('21322', 'null'), +('21323', 'null'), +('21324', 'null'), +('21325', 'null'), +('21326', 'null'), +('21327', 'null'), +('21328', 'null'), +('21329', 'null'), +('21330', 'null'), +('21331', 'null'), +('21332', 'null'), +('21333', 'null'), +('21334', 'null'), +('21335', 'null'), +('21336', 'null'), +('21337', 'null'), +('21338', 'null'), +('21339', 'null'), +('21340', 'Door'), +('21341', 'Door'), +('21342', 'Door'), +('21343', 'Door'), +('21344', 'null'), +('21345', 'null'), +('21346', 'null'), +('21347', 'null'), +('21348', 'null'), +('21349', 'null'), +('21350', 'null'), +('21351', 'null'), +('21352', 'null'), +('21353', 'null'), +('21354', 'Chair'), +('21355', 'Large Geyser'), +('21356', 'Small Geyser'), +('21357', 'null'), +('21358', 'Bank Table'), +('21359', 'Table'), +('21360', 'Table'), +('21361', 'Smashed chair'), +('21362', 'Bed'), +('21363', 'null'), +('21364', 'null'), +('21365', 'null'), +('21366', 'null'), +('21367', 'null'), +('21368', 'null'), +('21369', 'null'), +('21370', 'null'), +('21371', 'null'), +('21372', 'null'), +('21373', 'null'), +('21374', 'null'), +('21375', 'null'), +('21376', 'null'), +('21377', 'null'), +('21378', 'null'), +('21379', 'null'), +('21380', 'null'), +('21381', 'null'), +('21382', 'null'), +('21383', 'null'), +('21384', 'null'), +('21385', 'null'), +('21386', 'null'), +('21387', 'null'), +('21388', 'Table'), +('21389', 'Table'), +('21390', 'Sacks'), +('21391', 'null'), +('21392', 'null'), +('21393', 'Throne'), +('21394', 'Bell'), +('21395', 'Ladder'), +('21396', 'Ladder'), +('21397', 'Large door'), +('21398', 'Large door'), +('21399', 'Large door'), +('21400', 'Large door'), +('21401', 'Large door'), +('21402', 'Large door'), +('21403', 'Gate'), +('21404', 'Gate'), +('21405', 'Gate'), +('21406', 'Gate'), +('21407', 'null'), +('21408', 'null'), +('21409', 'null'), +('21410', 'null'), +('21411', 'null'), +('21412', 'null'), +('21413', 'null'), +('21414', 'null'), +('21415', 'null'), +('21416', 'null'), +('21417', 'null'), +('21418', 'null'), +('21419', 'null'), +('21420', 'null'), +('21421', 'null'), +('21422', 'null'), +('21423', 'null'), +('21424', 'null'), +('21425', 'null'), +('21426', 'null'), +('21427', 'null'), +('21428', 'null'), +('21429', 'null'), +('21430', 'null'), +('21431', 'null'), +('21432', 'null'), +('21433', 'null'), +('21434', 'null'), +('21435', 'null'), +('21436', 'null'), +('21437', 'Axe case'), +('21438', 'Sword case'), +('21439', 'Swords'), +('21440', 'null'), +('21441', 'Chopping table'), +('21442', 'Ore crate'), +('21443', 'Ore table'), +('21444', 'Ore stones'), +('21445', 'Shield display'), +('21446', 'Shield display'), +('21447', 'Armour display'), +('21448', 'null'), +('21449', 'null'), +('21450', 'null'), +('21451', 'null'), +('21452', 'null'), +('21453', 'null'), +('21454', 'null'), +('21455', 'Staircase'), +('21456', 'null'), +('21457', 'null'), +('21458', 'null'), +('21459', 'Arch'), +('21460', 'Arch'), +('21461', 'Arch'), +('21462', 'null'), +('21463', 'null'), +('21464', 'Throne'), +('21465', 'Torch'), +('21466', 'null'), +('21467', 'null'), +('21468', 'null'), +('21469', 'null'), +('21470', 'null'), +('21471', 'null'), +('21472', 'null'), +('21473', 'null'), +('21474', 'null'), +('21475', 'null'), +('21476', 'null'), +('21477', 'null'), +('21478', 'null'), +('21479', 'null'), +('21480', 'null'), +('21481', 'null'), +('21482', 'null'), +('21483', 'null'), +('21484', 'null'), +('21485', 'null'), +('21486', 'null'), +('21487', 'null'), +('21488', 'null'), +('21489', 'null'), +('21490', 'null'), +('21491', 'null'), +('21492', 'null'), +('21493', 'null'), +('21494', 'null'), +('21495', 'null'), +('21496', 'null'), +('21497', 'null'), +('21498', 'null'), +('21499', 'null'), +('21500', 'Banner'), +('21501', 'Banner'), +('21502', 'null'), +('21503', 'null'), +('21504', 'null'), +('21505', 'Door'), +('21506', 'Door'), +('21507', 'Door'), +('21508', 'Door'), +('21509', 'Rope bridge'), +('21510', 'Broken rope bridge'), +('21511', 'null'), +('21512', 'Ladder'), +('21513', 'Ladder'), +('21514', 'Ladder'), +('21515', 'Ladder'), +('21516', 'null'), +('21517', 'null'), +('21518', 'null'), +('21519', 'null'), +('21520', 'null'), +('21521', 'null'), +('21522', 'null'), +('21523', 'null'), +('21524', 'null'), +('21525', 'null'), +('21526', 'null'), +('21527', 'null'), +('21528', 'null'), +('21529', 'Rift'), +('21530', 'Rift'), +('21531', 'Rift'), +('21532', 'Rift'), +('21533', 'Rift'), +('21534', 'Rift'), +('21535', 'Rift'), +('21536', 'Rift'), +('21537', 'Rift'), +('21538', 'Rift'), +('21539', 'Rift'), +('21540', 'null'), +('21541', 'null'), +('21542', 'null'), +('21543', 'null'), +('21544', 'null'), +('21545', 'Vault'), +('21546', 'Pillar'), +('21547', 'Pillar'), +('21548', 'Pillar'), +('21549', 'null'), +('21550', 'Banana Tree'), +('21551', 'null'), +('21552', 'null'), +('21553', 'null'), +('21554', 'null'), +('21555', 'null'), +('21556', 'null'), +('21557', 'null'), +('21558', 'null'), +('21559', 'null'), +('21560', 'Exit cavern'), +('21561', 'null'), +('21562', 'null'), +('21563', 'null'), +('21564', 'null'), +('21565', 'null'), +('21566', 'null'), +('21567', 'null'), +('21568', 'null'), +('21569', 'Mushrooms'), +('21570', 'Mushrooms'), +('21571', 'Rock'), +('21572', 'Small rock'), +('21573', 'Rock'), +('21574', 'Boulders'), +('21575', 'Boulders'), +('21576', 'null'), +('21577', 'null'), +('21578', 'Staircase'), +('21579', 'null'), +('21580', 'Cave'), +('21581', 'Cave'), +('21582', 'Cave'), +('21583', 'Cave'), +('21584', 'Cave'), +('21585', 'Cave'), +('21586', 'Cave'), +('21587', 'Cave'), +('21588', 'Cave'), +('21589', 'Cave'), +('21590', 'Cave'), +('21591', 'Stone ladder'), +('21592', 'Stone ladder'), +('21593', 'Stone ladder'), +('21594', 'Cave opening'), +('21595', 'Cave opening'), +('21596', 'Cave opening'), +('21597', 'Cave opening'), +('21598', 'Cave opening'), +('21599', 'Cave opening'), +('21600', 'Gate'), +('21601', 'Gate'), +('21602', 'null'), +('21603', 'Broken barrel'), +('21604', 'null'), +('21605', 'null'), +('21606', 'null'), +('21607', 'Chair'), +('21608', 'Table'), +('21609', 'Table'), +('21610', 'Table'), +('21611', 'Bed'), +('21612', 'Crate'), +('21613', 'null'), +('21614', 'Shelf'), +('21615', 'Shelf'), +('21616', 'null'), +('21617', 'null'), +('21618', 'null'), +('21619', 'null'), +('21620', 'Fire'), +('21621', 'null'), +('21622', 'Ice Troll King'), +('21623', 'Ice Troll King'), +('21624', 'null'), +('21625', 'null'), +('21626', 'null'), +('21627', 'null'), +('21628', 'null'), +('21629', 'null'), +('21630', 'null'), +('21631', 'null'), +('21632', 'null'), +('21633', 'null'), +('21634', 'Fremennik boat'), +('21635', 'Standard'), +('21636', 'Standard'), +('21637', 'Standard'), +('21638', 'null'), +('21639', 'null'), +('21640', 'null'), +('21641', 'null'), +('21642', 'null'), +('21643', 'null'), +('21644', 'null'), +('21645', 'null'), +('21646', 'null'), +('21647', 'null'), +('21648', 'null'), +('21649', 'null'), +('21650', 'null'), +('21651', 'null'), +('21652', 'null'), +('21653', 'null'), +('21654', 'null'), +('21655', 'null'), +('21656', 'null'), +('21657', 'null'), +('21658', 'null'), +('21659', 'null'), +('21660', 'null'), +('21661', 'null'), +('21662', 'null'), +('21663', 'null'), +('21664', 'null'), +('21665', 'null'), +('21666', 'null'), +('21667', 'Torch'), +('21668', 'Herbs'), +('21669', 'Herbs'), +('21670', 'Herbs'), +('21671', 'Herbs'), +('21672', 'Gate'), +('21673', 'Gate'), +('21674', 'Gate'), +('21675', 'Gate'), +('21676', 'null'), +('21677', 'null'), +('21678', 'null'), +('21679', 'null'), +('21680', 'null'), +('21681', 'null'), +('21682', 'null'), +('21683', 'null'), +('21684', 'null'), +('21685', 'null'), +('21686', 'null'), +('21687', 'Gate'), +('21688', 'null'), +('21689', 'null'), +('21690', 'null'), +('21691', 'null'), +('21692', 'null'), +('21693', 'null'), +('21694', 'null'), +('21695', 'null'), +('21696', 'null'), +('21697', 'null'), +('21698', 'null'), +('21699', 'null'), +('21700', 'null'), +('21701', 'null'), +('21702', 'null'), +('21703', 'null'), +('21704', 'null'), +('21705', 'null'), +('21706', 'null'), +('21707', 'null'), +('21708', 'null'), +('21709', 'Gate'), +('21710', 'null'), +('21711', 'null'), +('21712', 'null'), +('21713', 'null'), +('21714', 'null'), +('21715', 'null'), +('21716', 'null'), +('21717', 'null'), +('21718', 'null'), +('21719', 'null'), +('21720', 'null'), +('21721', 'null'), +('21722', 'null'), +('21723', 'null'), +('21724', 'null'), +('21725', 'null'), +('21726', 'null'), +('21727', 'null'), +('21728', 'null'), +('21729', 'null'), +('21730', 'null'), +('21731', 'Gate'), +('21732', 'null'), +('21733', 'null'), +('21734', 'null'), +('21735', 'null'), +('21736', 'null'), +('21737', 'null'), +('21738', 'null'), +('21739', 'null'), +('21740', 'null'), +('21741', 'null'), +('21742', 'null'), +('21743', 'null'), +('21744', 'null'), +('21745', 'null'), +('21746', 'null'), +('21747', 'null'), +('21748', 'null'), +('21749', 'null'), +('21750', 'null'), +('21751', 'null'), +('21752', 'null'), +('21753', 'Gate'), +('21754', 'null'), +('21755', 'null'), +('21756', 'null'), +('21757', 'null'), +('21758', 'null'), +('21759', 'null'), +('21760', 'null'), +('21761', 'null'), +('21762', 'null'), +('21763', 'null'), +('21764', 'Fountain'), +('21765', 'null'), +('21766', 'Sq'irk tree'), +('21767', 'Sq'irk tree'), +('21768', 'Sq'irk tree'), +('21769', 'Sq'irk tree'), +('21770', 'null'), +('21771', 'null'), +('21772', 'null'), +('21773', 'null'), +('21774', 'null'), +('21775', 'null'), +('21776', 'null'), +('21777', 'null'), +('21778', 'null'), +('21779', 'null'), +('21780', 'null'), +('21781', 'Ladder'), +('21782', 'Ladder'), +('21783', 'null'), +('21784', 'null'), +('21785', 'null'), +('21786', 'null'), +('21787', 'null'), +('21788', 'null'), +('21789', 'null'), +('21790', 'null'), +('21791', 'null'), +('21792', 'Range'), +('21793', 'Table'), +('21794', 'Shelves'), +('21795', 'Fireplace'), +('21796', 'null'), +('21797', 'null'), +('21798', 'null'), +('21799', 'null'), +('21800', 'Crack'), +('21801', 'null'), +('21802', 'Corpse'), +('21803', 'Corpse'), +('21804', 'null'), +('21805', 'null'), +('21806', 'null'), +('21807', 'null'), +('21808', 'null'), +('21809', 'null'), +('21810', 'null'), +('21811', 'null'), +('21812', 'null'), +('21813', 'null'), +('21814', 'Tower door'), +('21815', 'null'), +('21816', 'null'), +('21817', 'null'), +('21818', 'null'), +('21819', 'null'), +('21820', 'null'), +('21821', 'null'), +('21822', 'null'), +('21823', 'null'), +('21824', 'null'), +('21825', 'null'), +('21826', 'null'), +('21827', 'null'), +('21828', 'null'), +('21829', 'null'), +('21830', 'null'), +('21831', 'null'), +('21832', 'null'), +('21833', 'null'), +('21834', 'null'), +('21835', 'null'), +('21836', 'null'), +('21837', 'null'), +('21838', 'null'), +('21839', 'null'), +('21840', 'null'), +('21841', 'null'), +('21842', 'null'), +('21843', 'null'), +('21844', 'Water pipes'), +('21845', 'Water pipes'), +('21846', 'Water pipes'), +('21847', 'Water pipes'), +('21848', 'Water pipes'), +('21849', 'Barricade'), +('21850', 'null'), +('21851', 'null'), +('21852', 'null'), +('21853', 'null'), +('21854', 'null'), +('21855', 'null'), +('21856', 'null'), +('21857', 'null'), +('21858', 'null'), +('21859', 'null'), +('21860', 'null'), +('21861', 'null'), +('21862', 'null'), +('21863', 'null'), +('21864', 'null'), +('21865', 'null'), +('21866', 'null'), +('21867', 'null'), +('21868', 'Rift'), +('21869', 'Cage'), +('21870', 'Cage'), +('21871', 'Stairs'), +('21872', 'Stairs'), +('21873', 'Pressure machine'), +('21874', 'Huge vat'), +('21875', 'Pipe'), +('21876', 'Pipe'), +('21877', 'Pipe'), +('21878', 'Pipe'), +('21879', 'Furnace'), +('21880', 'Pipe machine'), +('21881', 'Pipe machine'), +('21882', 'Pipe'), +('21883', 'Pipe'), +('21884', 'null'), +('21885', 'null'), +('21886', 'null'), +('21887', 'null'), +('21888', 'null'), +('21889', 'null'), +('21890', 'Support'), +('21891', 'null'), +('21892', 'null'), +('21893', 'Symbol of life'), +('21894', 'Symbol of life'), +('21895', 'null'), +('21896', 'null'), +('21897', 'null'), +('21898', 'null'), +('21899', 'null'), +('21900', 'null'), +('21901', 'Tube'), +('21902', 'Magic well'), +('21903', 'Magic well'), +('21904', 'Magic well'), +('21905', 'Pipe'), +('21906', 'Operation table'), +('21907', 'Operation chair'), +('21908', 'Crate'), +('21909', 'Crate'), +('21910', 'Crate'), +('21911', 'Crate'), +('21912', 'Crate'), +('21913', 'Crate'), +('21914', 'Crate'), +('21915', 'Crate'), +('21916', 'Crate'), +('21917', 'Crate'), +('21918', 'Magic table'), +('21919', 'null'), +('21920', 'Spinning pipe'), +('21921', 'Trapdoor'), +('21922', 'Trapdoor'), +('21923', 'Specimen'), +('21924', 'Plant'), +('21925', 'Pipe'), +('21926', 'Pipe'), +('21927', 'null'), +('21928', 'null'), +('21929', 'Tower door'), +('21930', 'Cage'), +('21931', 'Cage'), +('21932', 'Shackle table'), +('21933', 'Retorts'), +('21934', 'Experiment table'), +('21935', 'Experiment table'), +('21936', 'Experiment table'), +('21937', 'Experiment cabinet'), +('21938', 'Crate'), +('21939', 'Crate'), +('21940', 'Crate'), +('21941', 'null'), +('21942', 'null'), +('21943', 'null'), +('21944', 'null'), +('21945', 'Lighting mechanism'), +('21946', 'Staircase'), +('21947', 'Staircase'), +('21948', 'null'), +('21949', 'null'), +('21950', 'null'), +('21951', 'null'), +('21952', 'null'), +('21953', 'null'), +('21954', 'null'), +('21955', 'null'), +('21956', 'null'), +('21957', 'null'), +('21958', 'null'), +('21959', 'null'), +('21960', 'null'), +('21961', 'null'), +('21962', 'null'), +('21963', 'null'), +('21964', 'null'), +('21965', 'null'), +('21966', 'null'), +('21967', 'null'), +('21968', 'null'), +('21969', 'null'), +('21970', 'null'), +('21971', 'null'), +('21972', 'null'), +('21973', 'null'), +('21974', 'null'), +('21975', 'null'), +('21976', 'null'), +('21977', 'null'), +('21978', 'null'), +('21979', 'null'), +('21980', 'null'), +('21981', 'null'), +('21982', 'null'), +('21983', 'null'), +('21984', 'null'), +('21985', 'null'), +('21986', 'null'), +('21987', 'null'), +('21988', 'null'), +('21989', 'null'), +('21990', 'null'), +('21991', 'null'), +('21992', 'null'), +('21993', 'null'), +('21994', 'null'), +('21995', 'null'), +('21996', 'null'), +('21997', 'null'), +('21998', 'null'), +('21999', 'null'), +('22000', 'null'), +('22001', 'null'), +('22002', 'null'), +('22003', 'null'), +('22004', 'null'), +('22005', 'null'), +('22006', 'null'), +('22007', 'Door'), +('22008', 'null'), +('22009', 'null'), +('22010', 'null'), +('22011', 'null'), +('22012', 'null'), +('22013', 'null'), +('22014', 'null'), +('22015', 'null'), +('22016', 'null'), +('22017', 'null'), +('22018', 'null'), +('22019', 'null'), +('22020', 'null'), +('22021', 'null'), +('22022', 'null'), +('22023', 'null'), +('22024', 'null'), +('22025', 'null'), +('22026', 'null'), +('22027', 'null'), +('22028', 'null'), +('22029', 'null'), +('22030', 'null'), +('22031', 'null'), +('22032', 'null'), +('22033', 'null'), +('22034', 'null'), +('22035', 'null'), +('22036', 'null'), +('22037', 'null'), +('22038', 'null'), +('22039', 'null'), +('22040', 'null'), +('22041', 'null'), +('22042', 'null'), +('22043', 'null'), +('22044', 'null'), +('22045', 'null'), +('22046', 'null'), +('22047', 'null'), +('22048', 'null'), +('22049', 'null'), +('22050', 'null'), +('22051', 'null'), +('22052', 'null'), +('22053', 'null'), +('22054', 'null'), +('22055', 'null'), +('22056', 'null'), +('22057', 'null'), +('22058', 'null'), +('22059', 'null'), +('22060', 'null'), +('22061', 'null'), +('22062', 'null'), +('22063', 'null'), +('22064', 'null'), +('22065', 'null'), +('22066', 'null'), +('22067', 'null'), +('22068', 'null'), +('22069', 'null'), +('22070', 'null'), +('22071', 'null'), +('22072', 'null'), +('22073', 'null'), +('22074', 'null'), +('22075', 'null'), +('22076', 'null'), +('22077', 'null'), +('22078', 'null'), +('22079', 'null'), +('22080', 'null'), +('22081', 'null'), +('22082', 'null'), +('22083', 'null'), +('22084', 'null'), +('22085', 'null'), +('22086', 'null'), +('22087', 'null'), +('22088', 'null'), +('22089', 'null'), +('22090', 'null'), +('22091', 'Wall'), +('22092', 'Wall'), +('22093', 'Wall'), +('22094', 'Wall'), +('22095', 'Wall'), +('22096', 'Wall'), +('22097', 'Peephole'), +('22098', 'Rubble'), +('22099', 'Rubble'), +('22100', 'null'), +('22101', 'null'), +('22102', 'null'), +('22103', 'null'), +('22104', 'null'), +('22105', 'Wall'), +('22106', 'Wall'), +('22107', 'Wall'), +('22108', 'Wall'), +('22109', 'Collapsed wall'), +('22110', 'Collapsed wall'), +('22111', 'null'), +('22112', 'null'), +('22113', 'Door'), +('22114', 'Door'), +('22115', 'Door'), +('22116', 'Door'), +('22117', 'Door'), +('22118', 'Door'), +('22119', 'null'), +('22120', 'Bench'), +('22121', 'Ladder'), +('22122', 'Ladder'), +('22123', 'Stand'), +('22124', 'Stand'), +('22125', 'Candle stand'), +('22126', 'Bookcase'), +('22127', 'Bookcase'), +('22128', 'Bookcase'), +('22129', 'Bookcase'), +('22130', 'null'), +('22131', 'Bookcase'), +('22132', 'Bed'), +('22133', 'Bed'), +('22134', 'Drawers'), +('22135', 'Drawers'), +('22136', 'Drawers'), +('22137', 'Drawers'), +('22138', 'Drawers'), +('22139', 'Drawers'), +('22140', 'Drawers'), +('22141', 'Drawers'), +('22142', 'Drawers'), +('22143', 'Drawers'), +('22144', 'Wardrobe'), +('22145', 'Wardrobe'), +('22146', 'Wardrobe'), +('22147', 'Wardrobe'), +('22148', 'Wardrobe'), +('22149', 'Wardrobe'), +('22150', 'Wardrobe'), +('22151', 'Wardrobe'), +('22152', 'Wardrobe'), +('22153', 'Wardrobe'), +('22154', 'Cooking range'), +('22155', 'Clock'), +('22156', 'Chair'), +('22157', 'Chair'), +('22158', 'Bench'), +('22159', 'Table'), +('22160', 'Table'), +('22161', 'Potted plant'), +('22162', 'Larder'), +('22163', 'null'), +('22164', 'Ladder'), +('22165', 'null'), +('22166', 'null'), +('22167', 'null'), +('22168', 'null'), +('22169', 'null'), +('22170', 'null'), +('22171', 'null'), +('22172', 'Ladder'), +('22173', 'Ladder'), +('22174', 'null'), +('22175', 'null'), +('22176', 'null'), +('22177', 'null'), +('22178', 'null'), +('22179', 'null'), +('22180', 'null'), +('22181', 'null'), +('22182', 'null'), +('22183', 'null'), +('22184', 'null'), +('22185', 'null'), +('22186', 'null'), +('22187', 'null'), +('22188', 'null'), +('22189', 'null'), +('22190', 'null'), +('22191', 'null'), +('22192', 'null'), +('22193', 'null'), +('22194', 'null'), +('22195', 'null'), +('22196', 'null'), +('22197', 'null'), +('22198', 'null'), +('22199', 'null'), +('22200', 'null'), +('22201', 'null'), +('22202', 'null'), +('22203', 'null'), +('22204', 'null'), +('22205', 'null'), +('22206', 'null'), +('22207', 'null'), +('22208', 'null'), +('22209', 'null'), +('22210', 'null'), +('22211', 'null'), +('22212', 'null'), +('22213', 'null'), +('22214', 'null'), +('22215', 'null'), +('22216', 'null'), +('22217', 'null'), +('22218', 'null'), +('22219', 'null'), +('22220', 'null'), +('22221', 'null'), +('22222', 'null'), +('22223', 'null'), +('22224', 'null'), +('22225', 'null'), +('22226', 'null'), +('22227', 'null'), +('22228', 'null'), +('22229', 'null'), +('22230', 'null'), +('22231', 'null'), +('22232', 'null'), +('22233', 'null'), +('22234', 'null'), +('22235', 'null'), +('22236', 'null'), +('22237', 'null'), +('22238', 'null'), +('22239', 'null'), +('22240', 'null'), +('22241', 'null'), +('22242', 'null'), +('22243', 'null'), +('22244', 'null'), +('22245', 'null'), +('22246', 'null'), +('22247', 'Stairs'), +('22248', 'Stairs'), +('22249', 'null'), +('22250', 'Stairs'), +('22251', 'null'), +('22252', 'Stairs'), +('22253', 'Stairs'), +('22254', 'Stairs'), +('22255', 'null'), +('22256', 'null'), +('22257', 'null'), +('22258', 'null'), +('22259', 'null'), +('22260', 'null'), +('22261', 'null'), +('22262', 'null'), +('22263', 'null'), +('22264', 'null'), +('22265', 'null'), +('22266', 'null'), +('22267', 'null'), +('22268', 'null'), +('22269', 'null'), +('22270', 'Support'), +('22271', 'Cannon'), +('22272', 'Cannon'), +('22273', 'Broken cannon'), +('22274', 'Ladder'), +('22275', 'Ladder'), +('22276', 'null'), +('22277', 'Crate'), +('22278', 'Barrel'), +('22279', 'Barrel'), +('22280', 'Barrel'), +('22281', 'Locked door'), +('22282', 'Locked door'), +('22283', 'Locked door'), +('22284', 'null'), +('22285', 'null'), +('22286', 'null'), +('22287', 'null'), +('22288', 'null'), +('22289', 'null'), +('22290', 'null'), +('22291', 'null'), +('22292', 'null'), +('22293', 'null'), +('22294', 'null'), +('22295', 'null'), +('22296', 'null'), +('22297', 'null'), +('22298', 'Locker'), +('22299', 'Locker'), +('22300', 'Wheat'), +('22301', 'Cabbage'), +('22302', 'Stile'), +('22303', 'null'), +('22304', 'null'), +('22305', 'null'), +('22306', 'null'), +('22307', 'null'), +('22308', 'null'), +('22309', 'null'), +('22310', 'null'), +('22311', 'null'), +('22312', 'null'), +('22313', 'null'), +('22314', 'null'), +('22315', 'null'), +('22316', 'null'), +('22317', 'null'), +('22318', 'null'), +('22319', 'null'), +('22320', 'null'), +('22321', 'null'), +('22322', 'null'), +('22323', 'null'), +('22324', 'null'), +('22325', 'null'), +('22326', 'null'), +('22327', 'null'), +('22328', 'null'), +('22329', 'null'), +('22330', 'null'), +('22331', 'null'), +('22332', 'null'), +('22333', 'null'), +('22334', 'null'), +('22335', 'null'), +('22336', 'null'), +('22337', 'null'), +('22338', 'null'), +('22339', 'null'), +('22340', 'null'), +('22341', 'null'), +('22342', 'null'), +('22343', 'null'), +('22344', 'null'), +('22345', 'null'), +('22346', 'null'), +('22347', 'null'), +('22348', 'null'), +('22349', 'null'), +('22350', 'null'), +('22351', 'null'), +('22352', 'Statue'), +('22353', 'Statue'), +('22354', 'Statue'), +('22355', 'null'), +('22356', 'null'), +('22357', 'null'), +('22358', 'null'), +('22359', 'null'), +('22360', 'null'), +('22361', 'null'), +('22362', 'null'), +('22363', 'null'), +('22364', 'null'), +('22365', 'Stairs'), +('22366', 'Stairs'), +('22367', 'Stairs'), +('22368', 'Stairs'), +('22369', 'Stairs'), +('22370', 'null'), +('22371', 'Ladder'), +('22372', 'Ladder'), +('22373', 'Granary wall'), +('22374', 'Granary wall'), +('22375', 'Granary wall'), +('22376', 'Granary wall'), +('22377', 'Granary wall'), +('22378', 'Granary wall'), +('22379', 'Granary wall'), +('22380', 'Granary wall'), +('22381', 'null'), +('22382', 'null'), +('22383', 'null'), +('22384', 'null'), +('22385', 'Granary roof'), +('22386', 'Granary roof'), +('22387', 'Granary roof'), +('22388', 'Granary roof'), +('22389', 'Granary roof'), +('22390', 'Granary roof'), +('22391', 'Granary roof'), +('22392', 'Granary roof'), +('22393', 'Granary roof'), +('22394', 'Granary roof'), +('22395', 'Granary roof'), +('22396', 'Granary roof'), +('22397', 'Granary roof'), +('22398', 'Granary roof'), +('22399', 'Granary roof'), +('22400', 'Granary roof'), +('22401', 'Granary roof'), +('22402', 'Granary roof'), +('22403', 'Granary roof'), +('22404', 'Granary roof'), +('22405', 'Granary roof'), +('22406', 'Granary roof'), +('22407', 'Granary roof'), +('22408', 'Granary roof'), +('22409', 'Granary roof'), +('22410', 'Granary roof'), +('22411', 'Granary roof'), +('22412', 'Granary roof'), +('22413', 'Granary roof'), +('22414', 'Granary roof'), +('22415', 'Granary roof'), +('22416', 'Granary roof'), +('22417', 'Granary roof'), +('22418', 'Sails'), +('22419', 'Millstones'), +('22420', 'Flour bin'), +('22421', 'Flour bin'), +('22422', 'Hopper'), +('22423', 'null'), +('22424', 'Lever'), +('22425', 'null'), +('22426', 'Crate'), +('22427', 'Crate'), +('22428', 'null'), +('22429', 'null'), +('22430', 'Sack'), +('22431', 'Table'), +('22432', 'Ladder'), +('22433', 'Ladder'), +('22434', 'Ladder'), +('22435', 'Large door'), +('22436', 'Large door'), +('22437', 'Large door'), +('22438', 'Large door'), +('22439', 'Rock wall'), +('22440', 'Rock wall'), +('22441', 'Rock wall'), +('22442', 'Rock wall'), +('22443', 'Rock wall'), +('22444', 'Rock wall'), +('22445', 'Rock wall'), +('22446', 'Rock wall'), +('22447', 'Rock wall'), +('22448', 'Rock wall'), +('22449', 'Rock wall'), +('22450', 'Rock wall'), +('22451', 'Rock wall'), +('22452', 'Rock wall'), +('22453', 'Crate'), +('22454', 'Crate'), +('22455', 'Crate'), +('22456', 'Crate'), +('22457', 'Crate'), +('22458', 'null'), +('22459', 'null'), +('22460', 'null'), +('22461', 'null'), +('22462', 'null'), +('22463', 'null'), +('22464', 'null'), +('22465', 'null'), +('22466', 'null'), +('22467', 'null'), +('22468', 'null'), +('22469', 'null'), +('22470', 'null'), +('22471', 'null'), +('22472', 'Lectern'), +('22473', 'Wheat'), +('22474', 'Wheat'), +('22475', 'Wheat'), +('22476', 'Wheat'), +('22477', 'Door'), +('22478', 'Wall'), +('22479', 'Wall'), +('22480', 'Wall'), +('22481', 'Wall'), +('22482', 'Wall'), +('22483', 'Fuse'), +('22484', 'Fuse'), +('22485', 'null'), +('22486', 'null'), +('22487', 'null'), +('22488', 'null'), +('22489', 'null'), +('22490', 'null'), +('22491', 'null'), +('22492', 'null'), +('22493', 'null'), +('22494', 'null'), +('22495', 'null'), +('22496', 'Path'), +('22497', 'Marv (sick)'), +('22498', 'Marv (very sick)'), +('22499', 'Marv (ghastly!)'), +('22500', 'Marv (sick)'), +('22501', 'Marv (very sick)'), +('22502', 'Marv (ghastly!)'), +('22503', 'Marv (Well)'), +('22504', 'Hank (sick)'), +('22505', 'Hank (very sick)'), +('22506', 'Hank (ghastly!)'), +('22507', 'Hank (sick)'), +('22508', 'Hank (very sick)'), +('22509', 'Hank (ghastly!)'), +('22510', 'Hank (Well)'), +('22511', 'Wilf (sick)'), +('22512', 'Wilf (very sick)'), +('22513', 'Wilf (ghastly!)'), +('22514', 'Wilf (sick)'), +('22515', 'Wilf (very sick)'), +('22516', 'Wilf (ghastly!)'), +('22517', 'Wilf (Well)'), +('22518', 'Sarah (sick!)'), +('22519', 'Sarah (very sick!)'), +('22520', 'Sarah (ghastly!)'), +('22521', 'Sarah (sick!)'), +('22522', 'Sarah (very sick!)'), +('22523', 'Sarah (ghastly!)'), +('22524', 'Sarah (Well)'), +('22525', 'Rachel (sick)'), +('22526', 'Rachel (very sick)'), +('22527', 'Rachel (ghastly!)'), +('22528', 'Rachel (sick)'), +('22529', 'Rachel (very sick)'), +('22530', 'Rachel (ghastly!)'), +('22531', 'Rachel (Well)'), +('22532', 'Empty clothes'), +('22533', 'Partially broken bridge'), +('22534', 'Slightly broken bridge'), +('22535', 'Fixed bridge'), +('22536', 'null'), +('22537', 'Tunnel'), +('22538', 'Tunnel'), +('22539', 'null'), +('22540', 'null'), +('22541', 'Stalagmite'), +('22542', 'Large stalagmite'), +('22543', 'Connected stalagmites'), +('22544', 'null'), +('22545', 'Molanisk'), +('22546', 'null'), +('22547', 'null'), +('22548', 'null'), +('22549', 'Rock'), +('22550', 'Rock'), +('22551', 'Rock'), +('22552', 'Jutting wall'), +('22553', 'null'), +('22554', 'null'), +('22555', 'null'), +('22556', 'Hole'), +('22557', 'Tunnel'), +('22558', 'null'), +('22559', 'null'), +('22560', 'null'), +('22561', 'null'), +('22562', 'null'), +('22563', 'Ladder'), +('22564', 'Ladder'), +('22565', 'null'), +('22566', 'Ladder'), +('22567', 'Ladder'), +('22568', 'Cable'), +('22569', 'Cable'), +('22570', 'Lamppost'), +('22571', 'Lamppost'), +('22572', 'Cable'), +('22573', 'null'), +('22574', 'null'), +('22575', 'null'), +('22576', 'Cable'), +('22577', 'null'), +('22578', 'null'), +('22579', 'null'), +('22580', 'null'), +('22581', 'null'), +('22582', 'null'), +('22583', 'null'), +('22584', 'null'), +('22585', 'null'), +('22586', 'null'), +('22587', 'null'), +('22588', 'null'), +('22589', 'Pylon'), +('22590', 'Pylon'), +('22591', 'Pylon'), +('22592', 'null'), +('22593', 'null'), +('22594', 'null'), +('22595', 'null'), +('22596', 'null'), +('22597', 'null'), +('22598', 'null'), +('22599', 'null'), +('22600', 'Ladder'), +('22601', 'Ladder'), +('22602', 'Ladder'), +('22603', 'null'), +('22604', 'null'), +('22605', 'null'), +('22606', 'null'), +('22607', 'Stairs'), +('22608', 'Stairs'), +('22609', 'Stairs'), +('22610', 'null'), +('22611', 'null'), +('22612', 'null'), +('22613', 'null'), +('22614', 'null'), +('22615', 'null'), +('22616', 'null'), +('22617', 'null'), +('22618', 'null'), +('22619', 'null'), +('22620', 'null'), +('22621', 'null'), +('22622', 'null'), +('22623', 'null'), +('22624', 'Dial'), +('22625', 'Levers'), +('22626', 'null'), +('22627', 'null'), +('22628', 'null'), +('22629', 'null'), +('22630', 'null'), +('22631', 'null'), +('22632', 'null'), +('22633', 'null'), +('22634', 'Console'), +('22635', 'Boiler'), +('22636', 'null'), +('22637', 'null'), +('22638', 'null'), +('22639', 'null'), +('22640', 'null'), +('22641', 'null'), +('22642', 'null'), +('22643', 'null'), +('22644', 'null'), +('22645', 'null'), +('22646', 'null'), +('22647', 'null'), +('22648', 'null'), +('22649', 'Stairs'), +('22650', 'Stairs'), +('22651', 'Stairs'), +('22652', 'null'), +('22653', 'null'), +('22654', 'null'), +('22655', 'null'), +('22656', 'Blocked tunnel'), +('22657', 'Blocked tunnel'), +('22658', 'Open gate'), +('22659', 'Blocked tunnel'), +('22660', 'null'), +('22661', 'null'), +('22662', 'null'), +('22663', 'Pylon'), +('22664', 'Pylon'), +('22665', 'Rocks'), +('22666', 'Ladder top'), +('22667', 'Rocks'), +('22668', 'Sign'), +('22669', 'Bench'), +('22670', 'Stool'), +('22671', 'Shelf'), +('22672', 'Table'), +('22673', 'null'), +('22674', 'null'), +('22675', 'null'), +('22676', 'Chair'), +('22677', 'Table'), +('22678', 'Table'), +('22679', 'Bed'), +('22680', 'Bed'), +('22681', 'Chest'), +('22682', 'Chest'), +('22683', 'Chest'), +('22684', 'Ladder'), +('22685', 'Shelf'), +('22686', 'Shelf'), +('22687', 'null'), +('22688', 'null'), +('22689', 'null'), +('22690', 'Table'), +('22691', 'Stool'), +('22692', 'Chair'), +('22693', 'Table'), +('22694', 'Table'), +('22695', 'Bed'), +('22696', 'Bed'), +('22697', 'Chest'), +('22698', 'Chest'), +('22699', 'Chest'), +('22700', 'Ladder'), +('22701', 'Shelf'), +('22702', 'Shelf'), +('22703', 'Chair'), +('22704', 'Chair'), +('22705', 'Table'), +('22706', 'Carving'), +('22707', 'Carving'), +('22708', 'Carving'), +('22709', 'Statue'), +('22710', 'Statue'), +('22711', 'Bust'), +('22712', 'Bust'), +('22713', 'Range'), +('22714', 'Range'), +('22715', 'Sink'), +('22716', 'Kitchen table'), +('22717', 'Pots'), +('22718', 'Shelves'), +('22719', 'Shelves'), +('22720', 'Shelves'), +('22721', 'Furnace'), +('22722', 'Bellows'), +('22723', 'Chimney'), +('22724', 'Chimney pipe'), +('22725', 'Anvil'), +('22726', 'Sandpit'), +('22727', 'Chimney'), +('22728', 'Wire machine'), +('22729', 'Wire machine'), +('22730', 'Wire'), +('22731', 'Wire'), +('22732', 'Cogs'), +('22733', 'Smoke'), +('22734', 'Moths'), +('22735', 'Zapper'), +('22736', 'Zapper'), +('22737', 'Zapper'), +('22738', 'Lamppost'), +('22739', 'Lamppost'), +('22740', 'Lamppost'), +('22741', 'Lamppost'), +('22742', 'Lamppost'), +('22743', 'Lamppost'), +('22744', 'Lamppost'), +('22745', 'Lamppost'), +('22746', 'Lamppost'), +('22747', 'Lamppost'), +('22748', 'Lamppost'), +('22749', 'Lamppost'), +('22750', 'Cable'), +('22751', 'Cable'), +('22752', 'Cable'), +('22753', 'Cable'), +('22754', 'Cable'), +('22755', 'Cable'), +('22756', 'Cable'), +('22757', 'Cable'), +('22758', 'Cable'), +('22759', 'Cable'), +('22760', 'Lamp'), +('22761', 'Lamp'), +('22762', 'Lamp'), +('22763', 'Empty lamp'), +('22764', 'Lamp'), +('22765', 'Market stall'), +('22766', 'Market stall'), +('22767', 'Market stall'), +('22768', 'Market stall'), +('22769', 'Market stall'), +('22770', 'Market stall'), +('22771', 'Market stall'), +('22772', 'Lamp stall'), +('22773', 'Lamp still'), +('22774', 'Armour stall'), +('22775', 'Barrier'), +('22776', 'Barrier'), +('22777', 'null'), +('22778', 'Gate'), +('22779', 'Gate'), +('22780', 'null'), +('22781', 'Toy range'), +('22782', 'Toy sink'), +('22783', 'Toy table'), +('22784', 'Play blocks'), +('22785', 'Play blocks'), +('22786', 'Play blocks'), +('22787', 'Crib'), +('22788', 'Chalk patterns'), +('22789', 'Chalk patterns'), +('22790', 'Chalk patterns'), +('22791', 'Chalk patterns'), +('22792', 'Chalk patterns'), +('22793', 'Chalk patterns'), +('22794', 'Shape puzzle'), +('22795', 'Shape puzzle'), +('22796', 'Mushrooms'), +('22797', 'Mushrooms'), +('22798', 'Mushrooms'), +('22799', 'Mushrooms'), +('22800', 'Mushrooms'), +('22801', 'Mushrooms'), +('22802', 'Mushrooms'), +('22803', 'Mushrooms'), +('22804', 'Fern'), +('22805', 'Fern'), +('22806', 'Fern'), +('22807', 'Fern'), +('22808', 'Flowering fern'), +('22809', 'Flowering fern'), +('22810', 'Box'), +('22811', 'Counter'), +('22812', 'Bone rack'), +('22813', 'Bone rack'), +('22814', 'Bone rack'), +('22815', 'Bone rack'), +('22816', 'Bone rack'), +('22817', 'Bone rack'), +('22818', 'Bone rack'), +('22819', 'Bank booth'), +('22820', 'Desk'), +('22821', 'Desk'), +('22822', 'Bank safe'), +('22823', 'Thingymajig'), +('22824', 'Oojimaflip'), +('22825', 'Plinth'), +('22826', 'Magic ball'), +('22827', 'Workbench'), +('22828', 'Beetle'), +('22829', 'Frog'), +('22830', 'Table'), +('22831', 'Table'), +('22832', 'Table'), +('22833', 'Shelf'), +('22834', 'Shelf'), +('22835', 'Fungus seat'), +('22836', 'Moth'), +('22837', 'null'), +('22838', 'null'), +('22839', 'null'), +('22840', 'null'), +('22841', 'Bust'), +('22842', 'Bust'), +('22843', 'Chair'), +('22844', 'Table'), +('22845', 'Table'), +('22846', 'Table'), +('22847', 'Table'), +('22848', 'Table'), +('22849', 'Table'), +('22850', 'null'), +('22851', 'null'), +('22852', 'null'), +('22853', 'null'), +('22854', 'null'), +('22855', 'Bookshelf'), +('22856', 'Fungus doormat'), +('22857', 'Fungus doormat'), +('22858', 'Fungus doormat'), +('22859', 'Crates'), +('22860', 'Crate'), +('22861', 'null'), +('22862', 'Water'), +('22863', 'Water'), +('22864', 'Water'), +('22865', 'Water'), +('22866', 'null'), +('22867', 'null'), +('22868', 'null'), +('22869', 'null'), +('22870', 'null'), +('22871', 'null'), +('22872', 'null'), +('22873', 'null'), +('22874', 'null'), +('22875', 'null'), +('22876', 'null'), +('22877', 'null'), +('22878', 'null'), +('22879', 'null'), +('22880', 'null'), +('22881', 'null'), +('22882', 'null'), +('22883', 'null'), +('22884', 'null'), +('22885', 'null'), +('22886', 'null'), +('22887', 'null'), +('22888', 'null'), +('22889', 'null'), +('22890', 'null'), +('22891', 'null'), +('22892', 'null'), +('22893', 'null'), +('22894', 'null'), +('22895', 'null'), +('22896', 'null'), +('22897', 'null'), +('22898', 'null'), +('22899', 'null'), +('22900', 'null'), +('22901', 'null'), +('22902', 'null'), +('22903', 'null'), +('22904', 'null'), +('22905', 'null'), +('22906', 'null'), +('22907', 'null'), +('22908', 'null'), +('22909', 'null'), +('22910', 'null'), +('22911', 'null'), +('22912', 'null'), +('22913', 'Door'), +('22914', 'Door'), +('22915', 'null'), +('22916', 'null'), +('22917', 'null'), +('22918', 'null'), +('22919', 'null'), +('22920', 'Door'), +('22921', 'Door'), +('22922', 'null'), +('22923', 'null'), +('22924', 'null'), +('22925', 'null'), +('22926', 'null'), +('22927', 'null'), +('22928', 'null'), +('22929', 'null'), +('22930', 'null'), +('22931', 'Stairs'), +('22932', 'Stairs'), +('22933', 'Stairs'), +('22934', 'Ladder'), +('22935', 'Ladder'), +('22936', 'Ladder'), +('22937', 'Stairs'), +('22938', 'Stairs'), +('22939', 'Stairs'), +('22940', 'Stairs'), +('22941', 'Stairs'), +('22942', 'Stairs'), +('22943', 'Stairs'), +('22944', 'null'), +('22945', 'Bone door'), +('22946', 'null'), +('22947', 'null'), +('22948', 'null'), +('22949', 'null'), +('22950', 'null'), +('22951', 'null'), +('22952', 'null'), +('22953', 'null'), +('22954', 'null'), +('22955', 'null'), +('22956', 'null'), +('22957', 'null'), +('22958', 'null'), +('22959', 'null'), +('22960', 'null'), +('22961', 'null'), +('22962', 'null'), +('22963', 'null'), +('22964', 'null'), +('22965', 'null'), +('22966', 'null'), +('22967', 'null'), +('22968', 'null'), +('22969', 'null'), +('22970', 'null'), +('22971', 'null'), +('22972', 'null'), +('22973', 'Fountain'), +('22974', 'Frog spit'), +('22975', 'Smoke'), +('22976', 'Lamp'), +('22977', 'Broken lamp'), +('22978', 'null'), +('22979', 'null'), +('22980', 'null'), +('22981', 'null'), +('22982', 'null'), +('22983', 'null'), +('22984', 'null'), +('22985', 'null'), +('22986', 'null'), +('22987', 'null'), +('22988', 'null'), +('22989', 'null'), +('22990', 'null'), +('22991', 'null'), +('22992', 'null'), +('22993', 'null'), +('22994', 'null'), +('22995', 'null'), +('22996', 'null'), +('22997', 'null'), +('22998', 'null'), +('22999', 'null'), +('23000', 'null'), +('23001', 'null'), +('23002', 'null'), +('23003', 'null'), +('23004', 'null'), +('23005', 'null'), +('23006', 'null'), +('23007', 'null'), +('23008', 'null'), +('23009', 'null'), +('23010', 'null'), +('23011', 'null'), +('23012', 'null'), +('23013', 'null'), +('23014', 'null'), +('23015', 'null'), +('23016', 'null'), +('23017', 'null'), +('23018', 'null'), +('23019', 'null'), +('23020', 'null'), +('23021', 'null'), +('23022', 'null'), +('23023', 'null'), +('23024', 'null'), +('23025', 'null'), +('23026', 'null'), +('23027', 'null'), +('23028', 'null'), +('23029', 'null'), +('23030', 'null'), +('23031', 'null'), +('23032', 'null'), +('23033', 'null'), +('23034', 'null'), +('23035', 'null'), +('23036', 'null'), +('23037', 'null'), +('23038', 'null'), +('23039', 'null'), +('23040', 'null'), +('23041', 'null'), +('23042', 'Tools'), +('23043', 'Tools'), +('23044', 'Metal'), +('23045', 'Tools'), +('23046', 'Fire'), +('23047', 'Fairy ring'), +('23048', 'null'), +('23049', 'null'), +('23050', 'null'), +('23051', 'null'), +('23052', 'Doorway'), +('23053', 'null'), +('23054', 'Tree stump'), +('23055', 'Broken cart'), +('23056', 'Door'), +('23057', 'Statue'), +('23058', 'Open statue'), +('23059', 'Statue'), +('23060', 'Statue'), +('23061', 'Tent'), +('23062', 'Tent'), +('23063', 'Camp fire'), +('23064', 'Locker'), +('23065', 'Stool'), +('23066', 'Small table'), +('23067', 'Bed'), +('23068', 'null'), +('23069', 'null'), +('23070', 'null'), +('23071', 'null'), +('23072', 'null'), +('23073', 'null'), +('23074', 'Stairs'), +('23075', 'null'), +('23076', 'null'), +('23077', 'null'), +('23078', 'null'), +('23079', 'null'), +('23080', 'null'), +('23081', 'null'), +('23082', 'null'), +('23083', 'null'), +('23084', 'null'), +('23085', 'null'), +('23086', 'null'), +('23087', 'null'), +('23088', 'null'), +('23089', 'null'), +('23090', 'null'), +('23091', 'Bookcase'), +('23092', 'Bookcase'), +('23093', 'Portal'), +('23094', 'Floor'), +('23095', 'Portal'), +('23096', 'null'), +('23097', 'null'), +('23098', 'null'), +('23099', 'null'), +('23100', 'null'), +('23101', 'null'), +('23102', 'Bookcase'), +('23103', 'null'), +('23104', 'null'), +('23105', 'null'), +('23106', 'null'), +('23107', 'null'), +('23108', 'null'), +('23109', 'Bench'), +('23110', 'null'), +('23111', 'null'), +('23112', 'Hole'), +('23113', 'Pile of eggs'), +('23114', 'Pile of eggs'), +('23115', 'Pile of eggs'), +('23116', 'Pile of eggs'), +('23117', 'Rabbit hole'), +('23118', 'Warren exit'), +('23119', 'Door'), +('23120', 'Door'), +('23121', 'null'), +('23122', 'null'), +('23123', 'Kebbit chute'), +('23124', 'null'), +('23125', 'null'), +('23126', 'null'), +('23127', 'null'), +('23128', 'null'), +('23129', 'null'), +('23130', 'null'), +('23131', 'null'), +('23132', 'null'), +('23133', 'null'), +('23134', 'null'), +('23135', 'Fence'), +('23136', 'null'), +('23137', 'Hedge'), +('23138', 'Hedge'), +('23139', 'Hedge'), +('23140', 'null'), +('23141', 'null'), +('23142', 'null'), +('23143', 'null'), +('23144', 'Crate'), +('23145', 'null'), +('23146', 'null'), +('23147', 'null'), +('23148', 'null'), +('23149', 'null'), +('23150', 'null'), +('23151', 'null'), +('23152', 'null'), +('23153', 'null'), +('23154', 'null'), +('23155', 'Wall'), +('23156', 'Picture wall'), +('23157', 'Cave'), +('23158', 'Cave'), +('23159', 'null'), +('23160', 'null'), +('23161', 'null'), +('23162', 'null'), +('23163', 'Boulders'), +('23164', 'Boulders'), +('23165', 'Rock'), +('23166', 'Cave entrance'), +('23167', 'Cave entrance'), +('23168', 'Cave'), +('23169', 'Cave'), +('23170', 'Cave'), +('23171', 'Cave'), +('23172', 'Drip'), +('23173', 'Drips'), +('23174', 'Camping gear'), +('23175', 'Camping fire'), +('23176', 'Sleeping bag'), +('23177', 'Table'), +('23178', 'Stool'), +('23179', 'Stool'), +('23180', 'Barrel'), +('23181', 'Barrel'), +('23182', 'Barrel'), +('23183', 'Barrel'), +('23184', 'Barrel'), +('23185', 'Wreck'), +('23186', 'Wreck'), +('23187', 'Wreck'), +('23188', 'Wreck'), +('23189', 'Wreck'), +('23190', 'null'), +('23191', 'null'), +('23192', 'null'), +('23193', 'null'), +('23194', 'null'), +('23195', 'null'), +('23196', 'null'), +('23197', 'Gravestone'), +('23198', 'null'), +('23199', 'null'), +('23200', 'null'), +('23201', 'null'), +('23202', 'null'), +('23203', 'null'), +('23204', 'null'), +('23205', 'null'), +('23206', 'null'), +('23207', 'null'), +('23208', 'null'), +('23209', 'null'), +('23210', 'null'), +('23211', 'null'), +('23212', 'null'), +('23213', 'Walkway'), +('23214', 'Walkway'), +('23215', 'null'), +('23216', 'Gate'), +('23217', 'Gate'), +('23218', 'null'), +('23219', 'null'), +('23220', 'null'), +('23221', 'null'), +('23222', 'null'), +('23223', 'null'), +('23224', 'null'), +('23225', 'null'), +('23226', 'null'), +('23227', 'null'), +('23228', 'null'), +('23229', 'null'), +('23230', 'Wreck'), +('23231', 'Wreck'), +('23232', 'Wreck'), +('23233', 'Wreck'), +('23234', 'Wreck'), +('23235', 'Wreck'), +('23236', 'Wreck'), +('23237', 'Wreck'), +('23238', 'Wreck'), +('23239', 'Wreck'), +('23240', 'Wreck'), +('23241', 'Wreck'), +('23242', 'Wreck'), +('23243', 'Wreck'), +('23244', 'Wreck'), +('23245', 'Wreck'), +('23246', 'Wreck'), +('23247', 'Wreck'), +('23248', 'Wreck'), +('23249', 'Wreck'), +('23250', 'Wreck'), +('23251', 'Wreck'), +('23252', 'Wreck'), +('23253', 'Wreck'), +('23254', 'Wreck'), +('23255', 'Wreck'), +('23256', 'Wreck'), +('23257', 'null'), +('23258', 'null'), +('23259', 'null'), +('23260', 'null'), +('23261', 'null'), +('23262', 'null'), +('23263', 'null'), +('23264', 'null'), +('23265', 'null'), +('23266', 'null'), +('23267', 'null'), +('23268', 'null'), +('23269', 'null'), +('23270', 'null'), +('23271', 'Wilderness Ditch'), +('23272', 'null'), +('23273', 'null'), +('23274', 'Gate'), +('23275', 'Sign'), +('23276', 'Sign'), +('23277', 'null'), +('23278', 'null'), +('23279', 'Ladder'), +('23280', 'Rocks'), +('23281', 'Rocks'), +('23282', 'null'), +('23283', 'Crate'), +('23284', 'Zanik'), +('23285', 'Doorway'), +('23286', 'Doorway'), +('23287', 'Doorway'), +('23288', 'Artefact'), +('23289', 'Hole'), +('23290', 'null'), +('23291', 'Artefact'), +('23292', 'Hole'), +('23293', 'null'), +('23294', 'Artefact'), +('23295', 'Hole'), +('23296', 'null'), +('23297', 'Artefact'), +('23298', 'Hole'), +('23299', 'Artefact'), +('23300', 'Hole'), +('23301', 'null'), +('23302', 'Artefact'), +('23303', 'Hole'), +('23304', 'null'), +('23305', 'Specimen table'), +('23306', 'Goblin crowd'), +('23307', 'Goblin crowd'), +('23308', 'Goblin crowd'), +('23309', 'Goblin crowd'), +('23310', 'Goblin crowd'), +('23311', 'Goblin crowd'), +('23312', 'Goblin crowd'), +('23313', 'Goblin crowd'), +('23314', 'Goblin crowd'), +('23315', 'Crowd of dwarves'), +('23316', 'Crowd of dwarves'), +('23317', 'Crowd of dwarves'), +('23318', 'Council members'), +('23319', 'Cave gobins'), +('23320', 'null'), +('23321', 'null'), +('23322', 'null'), +('23323', 'null'), +('23324', 'null'), +('23325', 'null'), +('23326', 'null'), +('23327', 'null'), +('23328', 'null'), +('23329', 'null'), +('23330', 'null'), +('23331', 'null'), +('23332', 'null'), +('23333', 'null'), +('23334', 'null'), +('23335', 'null'), +('23336', 'null'), +('23337', 'null'), +('23338', 'Door'), +('23339', 'Door'), +('23340', 'Large door'), +('23341', 'Large door'), +('23342', 'Large door'), +('23343', 'Large door'), +('23344', 'null'), +('23345', 'null'), +('23346', 'null'), +('23347', 'null'), +('23348', 'Wall'), +('23349', 'Wall'), +('23350', 'Wall'), +('23351', 'null'), +('23352', 'null'), +('23353', 'null'), +('23354', 'null'), +('23355', 'null'), +('23356', 'Crate'), +('23357', 'Crate'), +('23358', 'Crate'), +('23359', 'null'), +('23360', 'null'), +('23361', 'null'), +('23362', 'null'), +('23363', 'null'), +('23364', 'null'), +('23365', 'null'), +('23366', 'Barrel'), +('23367', 'null'), +('23368', 'null'), +('23369', 'null'), +('23370', 'null'), +('23371', 'null'), +('23372', 'null'), +('23373', 'null'), +('23374', 'null'), +('23375', 'null'), +('23376', 'Ladder'), +('23377', 'Ladder'), +('23378', 'Door'), +('23379', 'Door'), +('23380', 'null'), +('23381', 'Dead tree'), +('23382', 'null'), +('23383', 'null'), +('23384', 'null'), +('23385', 'null'), +('23386', 'null'), +('23387', 'null'), +('23388', 'null'), +('23389', 'null'), +('23390', 'null'), +('23391', 'null'), +('23392', 'null'), +('23393', 'null'), +('23394', 'null'), +('23395', 'null'), +('23396', 'null'), +('23397', 'null'), +('23398', 'null'), +('23399', 'null'), +('23400', 'null'), +('23401', 'null'), +('23402', 'null'), +('23403', 'null'), +('23404', 'null'), +('23405', 'null'), +('23406', 'null'), +('23407', 'null'), +('23408', 'null'), +('23409', 'null'), +('23410', 'null'), +('23411', 'null'), +('23412', 'null'), +('23413', 'null'), +('23414', 'null'), +('23415', 'null'), +('23416', 'null'), +('23417', 'null'), +('23418', 'null'), +('23419', 'null'), +('23420', 'null'), +('23421', 'null'), +('23422', 'null'), +('23423', 'null'), +('23424', 'null'), +('23425', 'null'), +('23426', 'null'), +('23427', 'null'), +('23428', 'null'), +('23429', 'null'), +('23430', 'null'), +('23431', 'null'), +('23432', 'null'), +('23433', 'null'), +('23434', 'null'), +('23435', 'null'), +('23436', 'null'), +('23437', 'null'), +('23438', 'null'), +('23439', 'null'), +('23440', 'null'), +('23441', 'null'), +('23442', 'null'), +('23443', 'null'), +('23444', 'null'), +('23445', 'null'), +('23446', 'null'), +('23447', 'null'), +('23448', 'null'), +('23449', 'null'), +('23450', 'null'), +('23451', 'null'), +('23452', 'null'), +('23453', 'null'), +('23454', 'null'), +('23455', 'null'), +('23456', 'null'), +('23457', 'null'), +('23458', 'null'), +('23459', 'null'), +('23460', 'null'), +('23461', 'null'), +('23462', 'null'), +('23463', 'null'), +('23464', 'null'), +('23465', 'null'), +('23466', 'null'), +('23467', 'null'), +('23468', 'null'), +('23469', 'null'), +('23470', 'null'), +('23471', 'null'), +('23472', 'null'), +('23473', 'null'), +('23474', 'null'), +('23475', 'null'), +('23476', 'null'), +('23477', 'null'), +('23478', 'null'), +('23479', 'null'), +('23480', 'null'), +('23481', 'null'), +('23482', 'null'), +('23483', 'null'), +('23484', 'null'), +('23485', 'null'), +('23486', 'null'), +('23487', 'null'), +('23488', 'null'), +('23489', 'null'), +('23490', 'null'), +('23491', 'null'), +('23492', 'null'), +('23493', 'null'), +('23494', 'null'), +('23495', 'null'), +('23496', 'null'), +('23497', 'null'), +('23498', 'null'), +('23499', 'Tunnel'), +('23500', 'Tunnel'), +('23501', 'null'), +('23502', 'null'), +('23503', 'null'), +('23504', 'Ladder'), +('23505', 'null'), +('23506', 'null'), +('23507', 'null'), +('23508', 'null'), +('23509', 'null'), +('23510', 'null'), +('23511', 'null'), +('23512', 'null'), +('23513', 'null'), +('23514', 'null'), +('23515', 'null'), +('23516', 'null'), +('23517', 'null'), +('23518', 'null'), +('23519', 'null'), +('23520', 'null'), +('23521', 'null'), +('23522', 'null'), +('23523', 'null'), +('23524', 'null'), +('23525', 'null'), +('23526', 'Sample table'), +('23527', 'Sample table'), +('23528', 'Buried artefact'), +('23529', 'Hole'), +('23530', 'Crate'), +('23531', 'Ladder'), +('23532', 'Ladder'), +('23533', 'Crate'), +('23534', 'null'), +('23535', 'null'), +('23536', 'null'), +('23537', 'null'), +('23538', 'null'), +('23539', 'null'), +('23540', 'null'), +('23541', 'null'), +('23542', 'Trawler net'), +('23543', 'Trawler net'), +('23544', 'Trawler net'), +('23545', 'Trawler net'), +('23546', 'Trawler net'), +('23547', 'null'), +('23548', 'Trawler net'), +('23549', 'Trawler net'), +('23550', 'null'), +('23551', 'Chest'), +('23552', 'Chest'), +('23553', 'null'), +('23554', 'Rocks'), +('23555', 'Rocks'), +('23556', 'Rocks'), +('23557', 'Rocks'), +('23558', 'Rocks'), +('23559', 'Rocks'), +('23560', 'Rocks'), +('23561', 'Rocks'), +('23562', 'Rocks'), +('23563', 'Rocks'), +('23564', 'Rocks'), +('23565', 'Rocks'), +('23566', 'Rocks'), +('23567', 'Rocks'), +('23568', 'Rocks'), +('23569', 'Rocks'), +('23570', 'Rocks'), +('23571', 'Rocks'), +('23572', 'null'), +('23573', 'null'), +('23574', 'null'), +('23575', 'null'), +('23576', 'null'), +('23577', 'null'), +('23578', 'null'), +('23579', 'null'), +('23580', 'null'), +('23581', 'null'), +('23582', 'null'), +('23583', 'null'), +('23584', 'Ladder'), +('23585', 'Ladder'), +('23586', 'null'), +('23587', 'null'), +('23588', 'null'), +('23589', 'null'), +('23590', 'null'), +('23591', 'Kalphite queen legs'), +('23592', 'null'), +('23593', 'null'), +('23594', 'null'), +('23595', 'null'), +('23596', 'Tunnel'), +('23597', 'null'), +('23598', 'null'), +('23599', 'null'), +('23600', 'null'), +('23601', 'null'), +('23602', 'null'), +('23603', 'null'), +('23604', 'null'), +('23605', 'null'), +('23606', 'Stalagmites'), +('23607', 'Stalagmites'), +('23608', 'null'), +('23609', 'Tunnel entrance'), +('23610', 'Tunnel entrance'), +('23611', 'Cocoon'), +('23612', 'null'), +('23613', 'null'), +('23614', 'null'), +('23615', 'A cart full of logs'), +('23616', 'Roses'), +('23617', 'null'), +('23618', 'null'), +('23619', 'null'), +('23620', 'null'), +('23621', 'null'), +('23622', 'null'), +('23623', 'null'), +('23624', 'Chair'), +('23625', 'Cadava bush'), +('23626', 'Cadava bush'), +('23627', 'Cadava bush'), +('23628', 'Redberry bush'), +('23629', 'Redberry bush'), +('23630', 'Redberry bush'), +('23631', 'Door'), +('23632', 'Stand'), +('23633', 'Newspapers'), +('23634', 'Display case'), +('23635', 'Display case'), +('23636', 'Plaque'), +('23637', 'Door'), +('23638', 'null'), +('23639', 'null'), +('23640', 'Door'), +('23641', 'null'), +('23642', 'null'), +('23643', 'null'), +('23644', 'null'), +('23645', 'null'), +('23646', 'null'), +('23647', 'null'), +('23648', 'null'), +('23649', 'null'), +('23650', 'null'), +('23651', 'null'), +('23652', 'null'), +('23653', 'null'), +('23654', 'null'), +('23655', 'null'), +('23656', 'null'), +('23657', 'null'), +('23658', 'null'), +('23659', 'null'), +('23660', 'null'), +('23661', 'null'), +('23662', 'null'), +('23663', 'null'), +('23664', 'null'), +('23665', 'null'), +('23666', 'null'), +('23667', 'null'), +('23668', 'null'), +('23669', 'null'), +('23670', 'null'), +('23671', 'null'), +('23672', 'null'), +('23673', 'null'), +('23674', 'null'), +('23675', 'null'), +('23676', 'null'), +('23677', 'null'), +('23678', 'null'), +('23679', 'null'), +('23680', 'null'), +('23681', 'null'), +('23682', 'null'), +('23683', 'null'), +('23684', 'null'), +('23685', 'null'), +('23686', 'null'), +('23687', 'null'), +('23688', 'null'), +('23689', 'null'), +('23690', 'null'), +('23691', 'null'), +('23692', 'null'), +('23693', 'null'), +('23694', 'null'), +('23695', 'null'), +('23696', 'null'), +('23697', 'null'), +('23698', 'null'), +('23699', 'null'), +('23700', 'null'), +('23701', 'null'), +('23702', 'null'), +('23703', 'null'), +('23704', 'null'), +('23705', 'null'), +('23706', 'null'), +('23707', 'null'), +('23708', 'null'), +('23709', 'null'), +('23710', 'null'), +('23711', 'null'), +('23712', 'null'), +('23713', 'null'), +('23714', 'null'), +('23715', 'null'), +('23716', 'null'), +('23717', 'null'), +('23718', 'null'), +('23719', 'null'), +('23720', 'null'), +('23721', 'null'), +('23722', 'null'), +('23723', 'null'), +('23724', 'null'), +('23725', 'null'), +('23726', 'null'), +('23727', 'null'), +('23728', 'null'), +('23729', 'null'), +('23730', 'null'), +('23731', 'Door'), +('23732', 'null'), +('23733', 'null'), +('23734', 'null'), +('23735', 'null'), +('23736', 'null'), +('23737', 'null'), +('23738', 'null'), +('23739', 'null'), +('23740', 'null'), +('23741', 'null'), +('23742', 'null'), +('23743', 'null'), +('23744', 'null'), +('23745', 'null'), +('23746', 'null'), +('23747', 'null'), +('23748', 'null'), +('23749', 'null'), +('23750', 'null'), +('23751', 'null'), +('23752', 'null'), +('23753', 'null'), +('23754', 'null'), +('23755', 'null'), +('23756', 'null'), +('23757', 'null'), +('23758', 'null'), +('23759', 'null'), +('23760', 'null'), +('23761', 'null'), +('23762', 'null'), +('23763', 'null'), +('23764', 'null'), +('23765', 'null'), +('23766', 'null'), +('23767', 'null'), +('23768', 'null'), +('23769', 'null'), +('23770', 'null'), +('23771', 'null'), +('23772', 'null'), +('23773', 'null'), +('23774', 'null'), +('23775', 'null'), +('23776', 'null'), +('23777', 'null'), +('23778', 'null'), +('23779', 'null'), +('23780', 'null'), +('23781', 'null'), +('23782', 'null'), +('23783', 'null'), +('23784', 'null'), +('23785', 'null'), +('23786', 'null'), +('23787', 'null'), +('23788', 'null'), +('23789', 'null'), +('23790', 'null'), +('23791', 'null'), +('23792', 'null'), +('23793', 'null'), +('23794', 'null'), +('23795', 'null'), +('23796', 'null'), +('23797', 'null'), +('23798', 'null'), +('23799', 'null'), +('23800', 'null'), +('23801', 'null'), +('23802', 'null'), +('23803', 'null'), +('23804', 'null'), +('23805', 'null'), +('23806', 'null'), +('23807', 'null'), +('23808', 'null'), +('23809', 'null'), +('23810', 'null'), +('23811', 'null'), +('23812', 'null'), +('23813', 'null'), +('23814', 'null'), +('23815', 'null'), +('23816', 'null'), +('23817', 'null'), +('23818', 'null'), +('23819', 'null'), +('23820', 'null'), +('23821', 'null'), +('23822', 'null'), +('23823', 'null'), +('23824', 'null'), +('23825', 'null'), +('23826', 'null'), +('23827', 'null'), +('23828', 'null'), +('23829', 'null'), +('23830', 'null'), +('23831', 'null'), +('23832', 'null'), +('23833', 'null'), +('23834', 'null'), +('23835', 'null'), +('23836', 'null'), +('23837', 'null'), +('23838', 'null'), +('23839', 'null'), +('23840', 'null'), +('23841', 'null'), +('23842', 'null'), +('23843', 'null'), +('23844', 'null'), +('23845', 'null'), +('23846', 'null'), +('23847', 'null'), +('23848', 'null'), +('23849', 'null'), +('23850', 'null'), +('23851', 'null'), +('23852', 'null'), +('23853', 'null'), +('23854', 'null'), +('23855', 'null'), +('23856', 'null'), +('23857', 'null'), +('23858', 'null'), +('23859', 'null'), +('23860', 'null'), +('23861', 'null'), +('23862', 'null'), +('23863', 'null'), +('23864', 'null'), +('23865', 'null'), +('23866', 'null'), +('23867', 'null'), +('23868', 'null'), +('23869', 'null'), +('23870', 'null'), +('23871', 'null'), +('23872', 'null'), +('23873', 'null'), +('23874', 'null'), +('23875', 'null'), +('23876', 'null'), +('23877', 'null'), +('23878', 'null'), +('23879', 'null'), +('23880', 'null'), +('23881', 'null'), +('23882', 'null'), +('23883', 'null'), +('23884', 'null'), +('23885', 'null'), +('23886', 'null'), +('23887', 'null'), +('23888', 'null'), +('23889', 'null'), +('23890', 'null'), +('23891', 'null'), +('23892', 'null'), +('23893', 'null'), +('23894', 'null'), +('23895', 'null'), +('23896', 'null'), +('23897', 'null'), +('23898', 'null'), +('23899', 'null'), +('23900', 'null'), +('23901', 'null'), +('23902', 'null'), +('23903', 'null'), +('23904', 'null'), +('23905', 'null'), +('23906', 'null'), +('23907', 'null'), +('23908', 'null'), +('23909', 'null'), +('23910', 'null'), +('23911', 'null'), +('23912', 'null'), +('23913', 'null'), +('23914', 'null'), +('23915', 'null'), +('23916', 'null'), +('23917', 'Gate'), +('23918', 'Gate'), +('23919', 'Gate'), +('23920', 'Pump and drain'), +('23921', 'Dummy'), +('23922', 'null'), +('23923', 'null'), +('23924', 'Leaflets'), +('23925', 'Chest'), +('23926', 'Chest'), +('23927', 'null'), +('23928', 'Bank table'), +('23929', 'Gold'), +('23930', 'Statue'), +('23931', 'null'), +('23932', 'null'), +('23933', 'Chandelier'), +('23934', 'null'), +('23935', 'null'), +('23936', 'null'), +('23937', 'null'), +('23938', 'null'), +('23939', 'Safe'), +('23940', 'Rack'), +('23941', 'Barrel'), +('23942', 'Table'), +('23943', 'Barrel'), +('23944', 'Rack'), +('23945', 'null'), +('23946', 'null'), +('23947', 'Bellows'), +('23948', 'null'), +('23949', 'null'), +('23950', 'null'), +('23951', 'Metal pieces'), +('23952', 'null'), +('23953', 'null'), +('23954', 'null'), +('23955', 'Chimney'), +('23956', 'null'), +('23957', 'null'), +('23958', 'null'), +('23959', 'null'), +('23960', 'Workbench'), +('23961', 'Lathe'), +('23962', 'Drill'), +('23963', 'Hearth'), +('23964', 'Mould'), +('23965', 'Poster'), +('23966', 'null'), +('23967', 'Sign'), +('23968', 'Sign'), +('23969', 'Sign'), +('23970', 'Sign'), +('23971', 'null'), +('23972', 'Sign'), +('23973', 'null'), +('23974', 'Sign'), +('23975', 'null'), +('23976', 'null'), +('23977', 'Sign'), +('23978', 'Sign'), +('23979', 'null'), +('23980', 'Sign'), +('23981', 'null'), +('23982', 'Sign'), +('23983', 'Market stall'), +('23984', 'Market stall'), +('23985', 'Market stall'), +('23986', 'Market stall'), +('23987', 'Market stall'), +('23988', 'Scuttle'), +('23989', 'Pokers'), +('23990', 'null'), +('23991', 'null'), +('23992', 'null'), +('23993', 'Bar'), +('23994', 'Bar'), +('23995', 'Bar'), +('23996', 'Bar'), +('23997', 'Bar'), +('23998', 'Bar'), +('23999', 'Bar'), +('24000', 'Bar'), +('24001', 'Bar'), +('24002', 'null'), +('24003', 'null'), +('24004', 'null'), +('24005', 'null'), +('24006', 'null'), +('24007', 'null'), +('24008', 'null'), +('24009', 'null'), +('24010', 'null'), +('24011', 'Table'), +('24012', 'Table'), +('24013', 'Table'), +('24014', 'Table'), +('24015', 'null'), +('24016', 'Wine rack'), +('24017', 'null'), +('24018', 'null'), +('24019', 'null'), +('24020', 'null'), +('24021', 'null'), +('24022', 'null'), +('24023', 'null'), +('24024', 'null'), +('24025', 'Lamp'), +('24026', 'Lantern'), +('24027', 'Sewing machine'), +('24028', 'Table'), +('24029', 'null'), +('24030', 'Clothes'), +('24031', 'Cloth'), +('24032', 'null'), +('24033', 'Oil lamp'), +('24034', 'Fabric'), +('24035', 'Fabric'), +('24036', 'null'), +('24037', 'null'), +('24038', 'null'), +('24039', 'null'), +('24040', 'null'), +('24041', 'null'), +('24042', 'null'), +('24043', 'Bed'), +('24044', 'Clothes'), +('24045', 'Clothes'), +('24046', 'Clothes'), +('24047', 'Clothes'), +('24048', 'Clothes'), +('24049', 'Clothes'), +('24050', 'Clothes'), +('24051', 'null'), +('24052', 'null'), +('24053', 'null'), +('24054', 'null'), +('24055', 'null'), +('24056', 'null'), +('24057', 'null'), +('24058', 'null'), +('24059', 'null'), +('24060', 'null'), +('24061', 'null'), +('24062', 'null'), +('24063', 'null'), +('24064', 'null'), +('24065', 'Sails'), +('24066', 'Mill'), +('24067', 'Mill'), +('24068', 'Mill'), +('24069', 'Mill'), +('24070', 'Flour bin'), +('24071', 'Hopper'), +('24072', 'Hopper controls'), +('24073', 'Staircase'), +('24074', 'Staircase'), +('24075', 'Staircase'), +('24076', 'Table'), +('24077', 'null'), +('24078', 'null'), +('24079', 'Shelves'), +('24080', 'Shelves'), +('24081', 'Picture'), +('24082', 'Picture'), +('24083', 'Picture'), +('24084', 'Table'), +('24085', 'Shelves'), +('24086', 'Shelves'), +('24087', 'Study desk'), +('24088', 'Table'), +('24089', 'null'), +('24090', 'Dead bat'), +('24091', 'Herbs'), +('24092', 'Cabinet'), +('24093', 'Cabinet'), +('24094', 'Swings'), +('24095', 'Washing line'), +('24096', 'Toy bricks'), +('24097', 'Toy weapons'), +('24098', 'Cat basket'), +('24099', 'Bunkbed'), +('24100', 'Flowerbed'), +('24101', 'Flowerbed'), +('24102', 'null'), +('24103', 'null'), +('24104', 'Table'), +('24105', 'Sword cabinet'), +('24106', 'Sword in stone'), +('24107', 'null'), +('24108', 'null'), +('24109', 'Sword case'), +('24110', 'Sword case'), +('24111', 'Sword case'), +('24112', 'Sink'), +('24113', 'Dishes'), +('24114', 'Dishes'), +('24115', 'Dishes'), +('24116', 'Sword case'), +('24117', 'Poster'), +('24118', 'Poster'), +('24119', 'Poster'), +('24120', 'null'), +('24121', 'null'), +('24122', 'Stepladder'), +('24123', 'null'), +('24124', 'Shop counter'), +('24125', 'null'), +('24126', 'null'), +('24127', 'Notices'), +('24128', 'null'), +('24129', 'null'), +('24130', 'null'), +('24131', 'null'), +('24132', 'null'), +('24133', 'null'), +('24134', 'Bow cabinet'), +('24135', 'Workbench'), +('24136', 'null'), +('24137', 'null'), +('24138', 'Bow case'), +('24139', 'Crate'), +('24140', 'Crate'), +('24141', 'Wood'), +('24142', 'Barrel'), +('24143', 'Poster'), +('24144', 'Poster'), +('24145', 'null'), +('24146', 'null'), +('24147', 'Mannequin'), +('24148', 'Bookcase'), +('24149', 'null'), +('24150', 'null'), +('24151', 'null'), +('24152', 'null'), +('24153', 'Cart'), +('24154', 'null'), +('24155', 'null'), +('24156', 'null'), +('24157', 'null'), +('24158', 'null'), +('24159', 'null'), +('24160', 'Waterpump'), +('24161', 'Fountain'), +('24162', 'Statue'), +('24163', 'Statue'), +('24164', 'Trough'), +('24165', 'Plough'), +('24166', 'Well'), +('24167', 'Spear wall'), +('24168', 'Dying tree'), +('24169', 'Dying tree Stump'), +('24170', 'Washing Line'), +('24171', 'Washing Line'), +('24172', 'Washing Line'), +('24173', 'null'), +('24174', 'null'), +('24175', 'null'), +('24176', 'null'), +('24177', 'null'), +('24178', 'null'), +('24179', 'null'), +('24180', 'null'), +('24181', 'null'), +('24182', 'null'), +('24183', 'Painting'), +('24184', 'Painting'), +('24185', 'null'), +('24186', 'null'), +('24187', 'null'), +('24188', 'null'), +('24189', 'null'), +('24190', 'null'), +('24191', 'null'), +('24192', 'Combat Scroll'), +('24193', 'null'), +('24194', 'Smoking vent'), +('24195', 'Smoking vent'), +('24196', 'null'), +('24197', 'null'), +('24198', 'null'), +('24199', 'null'), +('24200', 'Shield'), +('24201', 'null'), +('24202', 'null'), +('24203', 'Closed chest'), +('24204', 'Open chest'), +('24205', 'Crate'), +('24206', 'Boxes'), +('24207', 'Barrel'), +('24208', 'Crate'), +('24209', 'Barrel'), +('24210', 'null'), +('24211', 'Barrel'), +('24212', 'Barrel'), +('24213', 'null'), +('24214', 'Fountain'), +('24215', 'Suit of armour'), +('24216', 'Standard'), +('24217', 'null'), +('24218', 'null'), +('24219', 'null'), +('24220', 'null'), +('24221', 'null'), +('24222', 'null'), +('24223', 'null'), +('24224', 'null'), +('24225', 'null'), +('24226', 'null'), +('24227', 'null'), +('24228', 'null'), +('24229', 'null'), +('24230', 'null'), +('24231', 'null'), +('24232', 'Paper'), +('24233', 'Paper'), +('24234', 'Drain'), +('24235', 'Drain'), +('24236', 'null'), +('24237', 'null'), +('24238', 'null'), +('24239', 'null'), +('24240', 'null'), +('24241', 'null'), +('24242', 'null'), +('24243', 'null'), +('24244', 'null'), +('24245', 'null'), +('24246', 'null'), +('24247', 'null'), +('24248', 'null'), +('24249', 'null'), +('24250', 'null'), +('24251', 'null'), +('24252', 'Rotten food'), +('24253', 'Rotten food'), +('24254', 'Rotten food'), +('24255', 'Rat'), +('24256', 'Mushroom'), +('24257', 'Mushrooms'), +('24258', 'Mushroom'), +('24259', 'Cannon'), +('24260', 'Banner'), +('24261', 'null'), +('24262', 'null'), +('24263', 'Signpost'), +('24264', 'Hole'), +('24265', 'Fountain'), +('24266', 'null'), +('24267', 'null'), +('24268', 'null'), +('24269', 'null'), +('24270', 'null'), +('24271', 'null'), +('24272', 'null'), +('24273', 'null'), +('24274', 'null'), +('24275', 'null'), +('24276', 'null'), +('24277', 'null'), +('24278', 'null'), +('24279', 'null'), +('24280', 'null'), +('24281', 'Bookcase'), +('24282', 'Bookcase'), +('24283', 'Range'), +('24284', 'Range'), +('24285', 'Fireplace'), +('24286', 'null'), +('24287', 'Chair'), +('24288', 'Bed'), +('24289', 'Bed'), +('24290', 'Bed'), +('24291', 'Bed'), +('24292', 'Chest'), +('24293', 'Wardrobe'), +('24294', 'Drawers'), +('24295', 'Drawers'), +('24296', 'Dresser'), +('24297', 'Wardrobe'), +('24298', 'Wardrobe'), +('24299', 'Bed'), +('24300', 'Mossy rock'), +('24301', 'Table'), +('24302', 'Table'), +('24303', 'Table'), +('24304', 'Chair'), +('24305', 'Teak table'), +('24306', 'Teak table'), +('24307', 'Table'), +('24308', 'Table'), +('24309', 'Table'), +('24310', 'Throne'), +('24311', 'Cabinet'), +('24312', 'Cabinet'), +('24313', 'Oven'), +('24314', 'Sink'), +('24315', 'Larder'), +('24316', 'Dresser'), +('24317', 'Mirror'), +('24318', 'Bath screen'), +('24319', 'Bathtub'), +('24320', 'Table'), +('24321', 'Bench'), +('24322', 'Drawers'), +('24323', 'Piano'), +('24324', 'Piano stool'), +('24325', 'null'), +('24326', 'null'), +('24327', 'null'), +('24328', 'Cooking pot'), +('24329', 'Fireplace'), +('24330', 'null'), +('24331', 'null'), +('24332', 'null'), +('24333', 'Chair'), +('24334', 'Chair'), +('24335', 'Table'), +('24336', 'Table'), +('24337', 'Chest'), +('24338', 'Bed'), +('24339', 'Bunk bed'), +('24340', 'Trunk'), +('24341', 'Locker'), +('24342', 'Saradomin star'), +('24343', 'Altar'), +('24344', 'Church pew'), +('24345', 'null'), +('24346', 'null'), +('24347', 'null'), +('24348', 'Candles'), +('24349', 'Staircase'), +('24350', 'Staircase'), +('24351', 'Staircase'), +('24352', 'Staircase'), +('24353', 'Staircase'), +('24354', 'Ladder'), +('24355', 'Ladder'), +('24356', 'Staircase'), +('24357', 'Staircase'), +('24358', 'Staircase'), +('24359', 'Staircase'), +('24360', 'Staircase'), +('24361', 'Ladder'), +('24362', 'Ladder'), +('24363', 'Ladder'), +('24364', 'Ladder'), +('24365', 'Staircase'), +('24366', 'Ladder'), +('24367', 'Staircase'), +('24368', 'Door'), +('24369', 'Gate'), +('24370', 'Gate'), +('24371', 'null'), +('24372', 'null'), +('24373', 'Gate'), +('24374', 'Gate'), +('24375', 'Door'), +('24376', 'Door'), +('24377', 'Door'), +('24378', 'Door'), +('24379', 'Door'), +('24380', 'null'), +('24381', 'Door'), +('24382', 'Door'), +('24383', 'Door'), +('24384', 'Door'), +('24385', 'null'), +('24386', 'null'), +('24387', 'null'), +('24388', 'null'), +('24389', 'Door'), +('24390', 'Map'), +('24391', 'Map'), +('24392', 'Map'), +('24393', 'null'), +('24394', 'null'), +('24395', 'null'), +('24396', 'null'), +('24397', 'null'), +('24398', 'null'), +('24399', 'null'), +('24400', 'null'), +('24401', 'null'), +('24402', 'null'), +('24403', 'null'), +('24404', 'null'), +('24405', 'null'), +('24406', 'null'), +('24407', 'null'), +('24408', 'null'), +('24409', 'null'), +('24410', 'null'), +('24411', 'null'), +('24412', 'null'), +('24413', 'null'), +('24414', 'null'), +('24415', 'null'), +('24416', 'null'), +('24417', 'null'), +('24418', 'null'), +('24419', 'null'), +('24420', 'null'), +('24421', 'null'), +('24422', 'null'), +('24423', 'null'), +('24424', 'null'), +('24425', 'null'), +('24426', 'null'), +('24427', 'Stairs'), +('24428', 'Stairs'), +('24429', 'null'), +('24430', 'null'), +('24431', 'null'), +('24432', 'null'), +('24433', 'null'), +('24434', 'null'), +('24435', 'null'), +('24436', 'null'), +('24437', 'null'), +('24438', 'null'), +('24439', 'null'), +('24440', 'null'), +('24441', 'null'), +('24442', 'null'), +('24443', 'null'), +('24444', 'null'), +('24445', 'null'), +('24446', 'null'), +('24447', 'null'), +('24448', 'null'), +('24449', 'null'), +('24450', 'null'), +('24451', 'null'), +('24452', 'Information booth'), +('24453', 'null'), +('24454', 'null'), +('24455', 'Canal barge'), +('24456', 'Canal barge'), +('24457', 'Canal barge'), +('24458', 'Canal barge'), +('24459', 'Canal barge'), +('24460', 'Canal barge'), +('24461', 'Canal barge'), +('24462', 'Canal barge'), +('24463', 'Canal barge'), +('24464', 'Canal barge'), +('24465', 'Canal barge'), +('24466', 'Canal barge'), +('24467', 'Canal barge'), +('24468', 'Canal barge'), +('24469', 'Canal barge'), +('24470', 'Canal barge'), +('24471', 'Canal barge'), +('24472', 'Canal barge'), +('24473', 'Canal barge'), +('24474', 'Canal barge'), +('24475', 'Canal barge'), +('24476', 'Canal barge'), +('24477', 'Canal barge'), +('24478', 'Canal barge'), +('24479', 'Canal barge'), +('24480', 'Canal barge'), +('24481', 'Canal barge'), +('24482', 'Canal barge'), +('24483', 'Canal barge'), +('24484', 'Canal barge'), +('24485', 'Canal barge'), +('24486', 'Canal barge'), +('24487', 'Canal wall'), +('24488', 'Canal wall'), +('24489', 'null'), +('24490', 'null'), +('24491', 'null'), +('24492', 'null'), +('24493', 'null'), +('24494', 'null'), +('24495', 'null'), +('24496', 'null'), +('24497', 'null'), +('24498', 'null'), +('24499', 'null'), +('24500', 'Tar buckets'), +('24501', 'Short planks'), +('24502', 'Long planks'), +('24503', 'Canal barge'), +('24504', 'Canal barge'), +('24505', 'Canal barge'), +('24506', 'Canal barge'), +('24507', 'Canal barge'), +('24508', 'Canal barge'), +('24509', 'Canal barge'), +('24510', 'Canal barge'), +('24511', 'Canal barge'), +('24512', 'Canal barge'), +('24513', 'Canal barge'), +('24514', 'Canal barge'), +('24515', 'Canal barge'), +('24516', 'Canal barge'), +('24517', 'Canal barge'), +('24518', 'Canal barge'), +('24519', 'Canal barge'), +('24520', 'Canal barge'), +('24521', 'Canal barge'), +('24522', 'Canal barge'), +('24523', 'Canal barge'), +('24524', 'Canal barge'), +('24525', 'Canal barge'), +('24526', 'Canal barge'), +('24527', 'Canal barge'), +('24528', 'Canal barge'), +('24529', 'Canal barge'), +('24530', 'Canal barge'), +('24531', 'Canal wall'), +('24532', 'Canal wall'), +('24533', 'null'), +('24534', 'Storage crate'), +('24535', 'Tools'), +('24536', 'Gate'), +('24537', 'null'), +('24538', 'null'), +('24539', 'Display case'), +('24540', 'Display case'), +('24541', 'Display case'), +('24542', 'Display case'), +('24543', 'Display case'), +('24544', 'Display case'), +('24545', 'Display case'), +('24546', 'Display case'), +('24547', 'Display case'), +('24548', 'Display case'), +('24549', 'Display case'), +('24550', 'Display case'), +('24551', 'Display case'), +('24552', 'null'), +('24553', 'null'), +('24554', 'null'), +('24555', 'Specimen table'), +('24556', 'Specimen table'), +('24557', 'Rocks'), +('24558', 'null'), +('24559', 'Dig Site specimen rocks'), +('24560', 'Gate'), +('24561', 'Gate'), +('24562', 'Gap'), +('24563', 'Doorway'), +('24564', 'Gate'), +('24565', 'Door'), +('24566', 'Door'), +('24567', 'Door'), +('24568', 'Door'), +('24569', 'Snake'), +('24570', 'null'), +('24571', 'Machine'), +('24572', 'Machine'), +('24573', 'Machine'), +('24574', 'Machine'), +('24575', 'Machine'), +('24576', 'Machine'), +('24577', 'Machine'), +('24578', 'Machine'), +('24579', 'Machine'), +('24580', 'Machine'), +('24581', 'Machine'), +('24582', 'Machine'), +('24583', 'Machine'), +('24584', 'Machine'), +('24585', 'Machine'), +('24586', 'Machine'), +('24587', 'Machine'), +('24588', 'Button'), +('24589', 'Button'), +('24590', 'Button'), +('24591', 'Button'), +('24592', 'Button'), +('24593', 'Button'), +('24594', 'Button'), +('24595', 'Button'), +('24596', 'Button'), +('24597', 'Button'), +('24598', 'Button'), +('24599', 'Button'), +('24600', 'Button'), +('24601', 'Button'), +('24602', 'Button'), +('24603', 'Button'), +('24604', 'null'), +('24605', 'Plaque'), +('24606', 'Plaque'), +('24607', 'Plaque'), +('24608', 'Plaque'), +('24609', 'Plaque'), +('24610', 'Plaque'), +('24611', 'Plaque'), +('24612', 'Plaque'), +('24613', 'Plaque'), +('24614', 'Plaque'), +('24615', 'Plaque'), +('24616', 'Plaque'), +('24617', 'Plaque'), +('24618', 'Plaque'), +('24619', 'Display case'), +('24620', 'Painting'), +('24621', 'Display case'), +('24622', 'Display case'), +('24623', 'null'), +('24624', 'Display case'), +('24625', 'Display case'), +('24626', 'null'), +('24627', 'Display case'), +('24628', 'Display case'), +('24629', 'Display case'), +('24630', 'Display case'), +('24631', 'Display case'), +('24632', 'Display case'), +('24633', 'null'), +('24634', 'Display case'), +('24635', 'Display case'), +('24636', 'null'), +('24637', 'Display case'), +('24638', 'null'), +('24639', 'Display case'), +('24640', 'Display case'), +('24641', 'Display case'), +('24642', 'null'), +('24643', 'Display case'), +('24644', 'Display case'), +('24645', 'Display case'), +('24646', 'Display case'), +('24647', 'Display case'), +('24648', 'Display case'), +('24649', 'Display case'), +('24650', 'Display case'), +('24651', 'Display case'), +('24652', 'Display case'), +('24653', 'null'), +('24654', 'Display case'), +('24655', 'Display case'), +('24656', 'Display case'), +('24657', 'Display case'), +('24658', 'Display case'), +('24659', 'Display case'), +('24660', 'Display case'), +('24661', 'Display case'), +('24662', 'null'), +('24663', 'Display case'), +('24664', 'null'), +('24665', 'null'), +('24666', 'Candles'), +('24667', 'Table'), +('24668', 'Wardrobe'), +('24669', 'Wardrobe'), +('24670', 'Wardrobe'), +('24671', 'Wardrobe'), +('24672', 'Staircase'), +('24673', 'Staircase'), +('24674', 'Mirror'), +('24675', 'Shelf'), +('24676', 'Shelf'), +('24677', 'Charms'), +('24678', 'null'), +('24679', 'Bed'), +('24680', 'Dresser'), +('24681', 'Drawers'), +('24682', 'Drawers'), +('24683', 'Chair'), +('24684', 'Table'), +('24685', 'Door'), +('24686', 'Door'), +('24687', 'Staircase'), +('24688', 'Broken experiment tube'), +('24689', 'Experiment tube'), +('24690', 'Box'), +('24691', 'Stacked Boxes'), +('24692', 'Boxes'), +('24693', 'Rock'), +('24694', 'Rock'), +('24695', 'Rock'), +('24696', 'Rock'), +('24697', 'Rock'), +('24698', 'Rock'), +('24699', 'Rock'), +('24700', 'Rock'), +('24701', 'Rock'), +('24702', 'null'), +('24703', 'null'), +('24704', 'null'), +('24705', 'null'), +('24706', 'Skeleton'), +('24707', 'Skeleton'), +('24708', 'Skeleton'), +('24709', 'Barrel'), +('24710', 'Sack'), +('24711', 'Smashed chair'), +('24712', 'Broken cart wheel'), +('24713', 'null'), +('24714', 'null'), +('24715', 'null'), +('24716', 'Mysterious statue'), +('24717', 'Ladder'), +('24718', 'Ladder'), +('24719', 'null'), +('24720', 'null'), +('24721', 'Piano'), +('24722', 'Piano'), +('24723', 'Drain Pipe'), +('24724', 'Gramophone'), +('24725', 'Gramophone'), +('24726', 'Gramophone'), +('24727', 'Gramophone'), +('24728', 'Music Stand'), +('24729', 'Music Stand'), +('24730', 'Earth Mound'), +('24731', 'Bean Mound'), +('24732', 'Beanstalk'), +('24733', 'Beanstalk'), +('24734', 'Beanstalk'), +('24735', 'Beanstalk'), +('24736', 'Beanstalk'), +('24737', 'Beanstalk'), +('24738', 'Beanstump'), +('24739', 'null'), +('24740', 'null'), +('24741', 'null'), +('24742', 'null'), +('24743', 'null'), +('24744', 'null'), +('24745', 'null'), +('24746', 'null'), +('24747', 'null'), +('24748', 'null'), +('24749', 'Crumbling wall'), +('24750', 'null'), +('24751', 'null'), +('24752', 'null'), +('24753', 'null'), +('24754', 'null'), +('24755', 'null'), +('24756', 'null'), +('24757', 'null'), +('24758', 'null'), +('24759', 'Door'), +('24760', 'null'), +('24761', 'null'), +('24762', 'null'), +('24763', 'null'), +('24764', 'null'), +('24765', 'Window'), +('24766', 'Window'), +('24767', 'Beard'), +('24768', 'Window'), +('24769', 'Rupert'), +('24770', 'Rupert'), +('24771', 'Rupert'), +('24772', 'Rupert'), +('24773', 'null'), +('24774', 'null'), +('24775', 'null'), +('24776', 'null'), +('24777', 'null'), +('24778', 'Window'), +('24779', 'Beard'), +('24780', 'Pendant'), +('24781', 'Rock'), +('24782', 'null'), +('24783', 'null'), +('24784', 'null'), +('24785', 'null'), +('24786', 'null'), +('24787', 'null'), +('24788', 'null'), +('24789', 'null'), +('24790', 'null'), +('24791', 'null'), +('24792', 'null'), +('24793', 'null'), +('24794', 'null'), +('24795', 'Nails'), +('24796', 'Nails'), +('24797', 'null'), +('24798', 'null'), +('24799', 'Mouse hole'), +('24800', 'null'), +('24801', 'null'), +('24802', 'Grate'), +('24803', 'Lock'), +('24804', 'Nails'), +('24805', 'Witch's charm'), +('24806', 'null'), +('24807', 'null'), +('24808', 'Drain'), +('24809', 'null'), +('24810', 'null'), +('24811', 'null'), +('24812', 'null'), +('24813', 'null'), +('24814', 'Chair'), +('24815', 'Door'), +('24816', 'Door'), +('24817', 'null'), +('24818', 'null'), +('24819', 'Beanstalk'), +('24820', 'null'), +('24821', 'null'), +('24822', 'null'), +('24823', 'null'), +('24824', 'null'), +('24825', 'null'), +('24826', 'null'), +('24827', 'null'), +('24828', 'null'), +('24829', 'null'), +('24830', 'null'), +('24831', 'null'), +('24832', 'null'), +('24833', 'null'), +('24834', 'null'), +('24835', 'null'), +('24836', 'null'), +('24837', 'null'), +('24838', 'null'), +('24839', 'Grimgnash'), +('24840', 'null'), +('24841', 'Feathers'), +('24842', 'Manhole'), +('24843', 'Floor'), +('24844', 'Floor'), +('24845', 'Floor'), +('24846', 'Floor'), +('24847', 'Floor'), +('24848', 'null'), +('24849', 'null'), +('24850', 'null'), +('24851', 'null'), +('24852', 'null'), +('24853', 'null'), +('24854', 'null'), +('24855', 'null'), +('24856', 'null'), +('24857', 'null'), +('24858', 'null'), +('24859', 'null'), +('24860', 'null'), +('24861', 'null'), +('24862', 'null'), +('24863', 'null'), +('24864', 'null'), +('24865', 'null'), +('24866', 'null'), +('24867', 'null'), +('24868', 'null'), +('24869', 'null'), +('24870', 'null'), +('24871', 'null'), +('24872', 'null'), +('24873', 'null'), +('24874', 'Cheese'), +('24875', 'Coins'), +('24876', 'Bones'), +('24877', 'Witch Glyph'), +('24878', 'Witch Glyph'), +('24879', 'null'), +('24880', 'Crumbling wall'), +('24881', 'null'), +('24882', 'null'), +('24883', 'null'), +('24884', 'null'), +('24885', 'null'), +('24886', 'null'), +('24887', 'Cage'), +('24888', 'Scuttle'), +('24889', 'Barstool'), +('24890', 'Barstool'), +('24891', 'Bar'), +('24892', 'Bar'), +('24893', 'Bar'), +('24894', 'Bar'), +('24895', 'Bar'), +('24896', 'Bar'), +('24897', 'Bar'), +('24898', 'Bar'), +('24899', 'Bar'), +('24900', 'Table'), +('24901', 'null'), +('24902', 'null'), +('24903', 'null'), +('24904', 'null'), +('24905', 'null'), +('24906', 'null'), +('24907', 'Old Bookshelf'), +('24908', 'Old Bookshelf'), +('24909', 'Old Bookshelf'), +('24910', 'Old Bookshelf'), +('24911', 'Crate'), +('24912', 'null'), +('24913', 'Bed'), +('24914', 'Bank booth'), +('24915', 'null'), +('24916', 'Shelves'), +('24917', 'Stepladder'), +('24918', 'Ladder'), +('24919', 'Ladder'), +('24920', 'Mangle'), +('24921', 'Mangle'), +('24922', 'Table'), +('24923', 'null'), +('24924', 'null'), +('24925', 'Staircase'), +('24926', 'Staircase'), +('24927', 'Table'), +('24928', 'null'), +('24929', 'Tanning line'), +('24930', 'Door'), +('24931', 'Door'), +('24932', 'Door'), +('24933', 'Door'), +('24934', 'Door'), +('24935', 'Door'), +('24936', 'Door'), +('24937', 'null'), +('24938', 'null'), +('24939', 'null'), +('24940', 'null'), +('24941', 'null'), +('24942', 'null'), +('24943', 'null'), +('24944', 'null'), +('24945', 'null'), +('24946', 'null'), +('24947', 'null'), +('24948', 'null'), +('24949', 'null'), +('24950', 'null'), +('24951', 'null'), +('24952', 'null'), +('24953', 'null'), +('24954', 'null'), +('24955', 'null'), +('24956', 'null'), +('24957', 'null'), +('24958', 'null'), +('24959', 'null'), +('24960', 'null'), +('24961', 'null'), +('24962', 'null'), +('24963', 'null'), +('24964', 'null'), +('24965', 'null'), +('24966', 'null'), +('24967', 'null'), +('24968', 'null'), +('24969', 'null'), +('24970', 'null'), +('24971', 'null'), +('24972', 'null'), +('24973', 'null'), +('24974', 'null'), +('24975', 'null'), +('24976', 'Clothes equipment'), +('24977', 'null'), +('24978', 'null'), +('24979', 'null'), +('24980', 'null'), +('24981', 'null'), +('24982', 'null'), +('24983', 'null'), +('24984', 'Crop circle'), +('24985', 'Crop circle'), +('24986', 'Crop circle'), +('24987', 'Crop circle'), +('24988', 'Centre of crop circle'), +('24989', 'Magic wheat'), +('24990', 'Magic wheat'), +('24991', 'Centre of crop circle'), +('24992', 'null'), +('24993', 'null'), +('24994', 'null'), +('24995', 'null'), +('24996', 'null'), +('24997', 'null'), +('24998', 'null'), +('24999', 'null'), +('25000', 'null'), +('25001', 'null'), +('25002', 'null'), +('25003', 'null'), +('25004', 'null'), +('25005', 'null'), +('25006', 'null'), +('25007', 'null'), +('25008', 'null'), +('25009', 'null'), +('25010', 'null'), +('25011', 'null'), +('25012', 'null'), +('25013', 'null'), +('25014', 'Portal'), +('25015', 'null'), +('25016', 'Magical wheat'), +('25017', 'Magical wheat'), +('25018', 'Magical wheat'), +('25019', 'Magical wheat'), +('25020', 'Magical wheat'), +('25021', 'Magical wheat'), +('25022', 'Growing wheat'), +('25023', 'Wilting wheat'), +('25024', 'Magical wheat'), +('25025', 'Magical wheat'), +('25026', 'Magical wheat'), +('25027', 'Magical wheat'), +('25028', 'Magical wheat'), +('25029', 'Magical wheat'), +('25030', 'null'), +('25031', 'null'), +('25032', 'null'), +('25033', 'Dragon's head'), +('25034', 'Drawers'), +('25035', 'Drawers'), +('25036', 'null'), +('25037', 'Hull'), +('25038', 'Ladder'), +('25039', 'Wall'), +('25040', 'Wardrobe'), +('25041', 'Wardrobe'), +('25042', 'Wardrobe'), +('25043', 'Wardrobe'), +('25044', 'Wardrobe'), +('25045', 'Ladder'), +('25046', 'Bookshelves'), +('25047', 'Table'), +('25048', 'Chair'), +('25049', 'null'), +('25050', 'null'), +('25051', 'null'), +('25052', 'null'), +('25053', 'null'), +('25054', 'null'), +('25055', 'null'), +('25056', 'null'), +('25057', 'null'), +('25058', 'null'), +('25059', 'null'), +('25060', 'null'), +('25061', 'null'), +('25062', 'null'), +('25063', 'null'), +('25064', 'null'), +('25065', 'null'), +('25066', 'null'), +('25067', 'null'), +('25068', 'null'), +('25069', 'null'), +('25070', 'null'), +('25071', 'null'), +('25072', 'null'), +('25073', 'null'), +('25074', 'null'), +('25075', 'null'), +('25076', 'null'), +('25077', 'null'), +('25078', 'null'), +('25079', 'null'), +('25080', 'Column'), +('25081', 'Column'), +('25082', 'Column'), +('25083', 'Stalactite'), +('25084', 'Stalagmites'), +('25085', 'Stalagmites'), +('25086', 'null'), +('25087', 'Skeleton'), +('25088', 'Skeleton'), +('25089', 'Skeleton'), +('25090', 'Skeleton'), +('25091', 'Shield'), +('25092', 'null'), +('25093', 'null'), +('25094', 'null'), +('25095', 'null'), +('25096', 'null'), +('25097', 'null'), +('25098', 'null'), +('25099', 'null'), +('25100', 'null'), +('25101', 'null'), +('25102', 'null'), +('25103', 'null'), +('25104', 'null'), +('25105', 'null'), +('25106', 'null'), +('25107', 'null'), +('25108', 'null'), +('25109', 'null'), +('25110', 'null'), +('25111', 'null'), +('25112', 'null'), +('25113', 'null'), +('25114', 'null'), +('25115', 'Magic door'), +('25116', 'Magic door'), +('25117', 'Magic door'), +('25118', 'Magic door'), +('25119', 'null'), +('25120', 'null'), +('25121', 'null'), +('25122', 'Candle stand'), +('25123', 'Candle stand'), +('25124', 'null'), +('25125', 'null'), +('25126', 'null'), +('25127', 'null'), +('25128', 'null'), +('25129', 'Vines'), +('25130', 'Vines'), +('25131', 'Vines'), +('25132', 'Vines'), +('25133', 'null'), +('25134', 'null'), +('25135', 'null'), +('25136', 'Vines'), +('25137', 'Plant'), +('25138', 'Fungus'), +('25139', 'Fungus'), +('25140', 'null'), +('25141', 'null'), +('25142', 'null'), +('25143', 'null'), +('25144', 'null'), +('25145', 'null'), +('25146', 'null'), +('25147', 'null'), +('25148', 'Wall'), +('25149', 'Wall'), +('25150', 'Wall'), +('25151', 'Wall'), +('25152', 'Pillar'), +('25153', 'Pillar'), +('25154', 'Hole'), +('25155', 'Fire'), +('25156', 'Fire'), +('25157', 'Jenkins'), +('25158', 'Rock'), +('25159', 'Rock'), +('25160', 'Rock'), +('25161', 'Wall'), +('25162', 'null'), +('25163', 'null'), +('25164', 'null'), +('25165', 'null'), +('25166', 'null'), +('25167', 'null'), +('25168', 'null'), +('25169', 'Tree'), +('25170', 'White tree'), +('25171', 'Tree'), +('25172', 'Tree'), +('25173', 'null'), +('25174', 'Tree'), +('25175', 'Fern'), +('25176', 'Fern'), +('25177', 'Fern'), +('25178', 'Fern'), +('25179', 'Flowering fern'), +('25180', 'Flowering fern'), +('25181', 'Dead calquat'), +('25182', 'Diseased calquat'), +('25183', 'Tree'), +('25184', 'Tree'), +('25185', 'Tree'), +('25186', 'Tree stump'), +('25187', 'A burnt tree'), +('25188', 'A burnt tree'), +('25189', 'Tree'), +('25190', 'A tropical tree'), +('25191', 'A tropical tree'), +('25192', 'Weeds'), +('25193', 'null'), +('25194', 'Dragon statue'), +('25195', 'null'), +('25196', 'null'), +('25197', 'null'), +('25198', 'null'), +('25199', 'Circle'), +('25200', 'Beacon'), +('25201', 'Flames'), +('25202', 'Dragon corpse'), +('25203', 'Dragon corpse'), +('25204', 'Tent'), +('25205', 'Flag'), +('25206', 'Suit of armour'), +('25207', 'Hoisted sail'), +('25208', 'Hoisted sail'), +('25209', 'null'), +('25210', 'Magic door'), +('25211', 'Magic door'), +('25212', 'null'), +('25213', 'Climbing rope'), +('25214', 'Trapdoor'), +('25215', 'null'), +('25216', 'Aged log'), +('25217', 'null'), +('25218', 'null'), +('25219', 'null'), +('25220', 'null'), +('25221', 'null'), +('25222', 'null'), +('25223', 'null'), +('25224', 'null'), +('25225', 'null'), +('25226', 'null'), +('25227', 'null'), +('25228', 'null'), +('25229', 'null'), +('25230', 'null'), +('25231', 'null'), +('25232', 'null'), +('25233', 'null'), +('25234', 'null'), +('25235', 'null'), +('25236', 'null'), +('25237', 'null'), +('25238', 'null'), +('25239', 'null'), +('25240', 'null'), +('25241', 'null'), +('25242', 'null'), +('25243', 'null'), +('25244', 'null'), +('25245', 'null'), +('25246', 'null'), +('25247', 'null'), +('25248', 'null'), +('25249', 'null'), +('25250', 'null'), +('25251', 'null'), +('25252', 'Door'), +('25253', 'null'), +('25254', 'null'), +('25255', 'null'), +('25256', 'null'), +('25257', 'null'), +('25258', 'null'), +('25259', 'null'), +('25260', 'null'), +('25261', 'null'), +('25262', 'null'), +('25263', 'funeral pyre'), +('25264', 'funeral pyre'), +('25265', 'funeral pyre'), +('25266', 'funeral pyre'), +('25267', 'funeral pyre'), +('25268', 'Barbarian bed'), +('25269', 'Barbarian table'), +('25270', 'Barbarian chair'), +('25271', 'null'), +('25272', 'null'), +('25273', 'null'), +('25274', 'Whirlpool'), +('25275', 'Whirlpool'), +('25276', 'Mighty torrent'), +('25277', 'Mighty torrent'), +('25278', 'Mighty torrent'), +('25279', 'Mighty torrent'), +('25280', 'null'), +('25281', 'null'), +('25282', 'null'), +('25283', 'null'), +('25284', 'null'), +('25285', 'null'), +('25286', 'Pyre site'), +('25287', 'Boat station'), +('25288', 'Carved log'), +('25289', 'Carved log'), +('25290', 'Pyre boat'), +('25291', 'Pyre boat'), +('25292', 'Pyre boat'), +('25293', 'Pyre boat'), +('25294', 'Pyre boat'), +('25295', 'Pyre boat'), +('25296', 'null'), +('25297', 'null'), +('25298', 'null'), +('25299', 'null'), +('25300', 'null'), +('25301', 'null'), +('25302', 'null'), +('25303', 'null'), +('25304', 'null'), +('25305', 'null'), +('25306', 'null'), +('25307', 'null'), +('25308', 'null'), +('25309', 'null'), +('25310', 'null'), +('25311', 'null'), +('25312', 'null'), +('25313', 'null'), +('25314', 'null'), +('25315', 'null'), +('25316', 'null'), +('25317', 'null'), +('25318', 'null'), +('25319', 'null'), +('25320', 'null'), +('25321', 'null'), +('25322', 'null'), +('25323', 'null'), +('25324', 'null'), +('25325', 'null'), +('25326', 'null'), +('25327', 'null'), +('25328', 'null'), +('25329', 'null'), +('25330', 'null'), +('25331', 'null'), +('25332', 'null'), +('25333', 'null'), +('25334', 'null'), +('25335', 'null'), +('25336', 'Stairs'), +('25337', 'Stairs'), +('25338', 'Stairs'), +('25339', 'Stairs'), +('25340', 'Stairs'), +('25341', 'Mithril door'), +('25342', 'null'), +('25343', 'null'), +('25344', 'null'), +('25345', 'null'), +('25346', 'null'), +('25347', 'null'), +('25348', 'null'), +('25349', 'Barbarian anvil'), +('25350', 'null'), +('25351', 'null'), +('25352', 'null'), +('25353', 'null'), +('25354', 'null'), +('25355', 'null'), +('25356', 'null'), +('25357', 'null'), +('25358', 'null'), +('25359', 'null'), +('25360', 'null'), +('25361', 'null'), +('25362', 'Skeleton'), +('25363', 'null'), +('25364', 'null'), +('25365', 'null'), +('25366', 'null'), +('25367', 'null'), +('25368', 'Rocks'), +('25369', 'Rocks'), +('25370', 'Rocks'), +('25371', 'Rocks'), +('25372', 'Rocks'), +('25373', 'Rocks'), +('25374', 'campfire'), +('25375', 'null'), +('25376', 'Wardrobe'), +('25377', 'Drawers'), +('25378', 'Drawers'), +('25379', 'null'), +('25380', 'null'), +('25381', 'null'), +('25382', 'null'), +('25383', 'null'), +('25384', 'null'), +('25385', 'Chest'), +('25386', 'Chest'), +('25387', 'Chest'), +('25388', 'Chest'), +('25389', 'Chest'), +('25390', 'Chest'), +('25391', 'Chest'), +('25392', 'Chest'), +('25393', 'Telescope'), +('25394', 'null'), +('25395', 'null'), +('25396', 'null'), +('25397', 'Signpost'), +('25398', 'null'), +('25399', 'null'), +('25400', 'null'), +('25401', 'Orrery'), +('25402', 'Bookcase'), +('25403', 'Bookcase'), +('25404', 'Bookcase'), +('25405', 'Bookcase'), +('25406', 'Bookcase'), +('25407', 'Old bookshelf'), +('25408', 'Old bookshelf'), +('25409', 'null'), +('25410', 'null'), +('25411', 'Professor's table'), +('25412', 'null'), +('25413', 'null'), +('25414', 'null'), +('25415', 'Stalagmites'), +('25416', 'null'), +('25417', 'Door'), +('25418', 'Door'), +('25419', 'Bluebells'), +('25420', 'Sunflower'), +('25421', 'Sunflowers'), +('25422', 'Students' art'), +('25423', 'Work board'), +('25424', 'Work board'), +('25425', 'Coat rack'), +('25426', 'Rocking unicorn'), +('25427', 'Blackboard'), +('25428', 'Empty desk'), +('25429', 'Stairs'), +('25430', 'null'), +('25431', 'Stairs'), +('25432', 'Stairs'), +('25433', 'null'), +('25434', 'Stairs'), +('25435', 'null'), +('25436', 'null'), +('25437', 'Stairs'), +('25438', 'Telescope'), +('25439', 'Telescope'), +('25440', 'Goblin stove'), +('25441', 'Goblin stove'), +('25442', 'null'), +('25443', 'Spiderwebs'), +('25444', 'null'), +('25445', 'null'), +('25446', 'null'), +('25447', 'null'), +('25448', 'null'), +('25449', 'null'), +('25450', 'null'), +('25451', 'null'), +('25452', 'null'), +('25453', 'null'), +('25454', 'null'), +('25455', 'null'), +('25456', 'null'), +('25457', 'null'), +('25458', 'null'), +('25459', 'null'), +('25460', 'null'), +('25461', 'null'), +('25462', 'null'), +('25463', 'null'), +('25464', 'Potential fire'), +('25465', 'Fire'), +('25466', 'null'), +('25467', 'null'), +('25468', 'null'), +('25469', 'null'), +('25470', 'null'), +('25471', 'null'), +('25472', 'null'), +('25473', 'null'), +('25474', 'null'), +('25475', 'null'), +('25476', 'null'), +('25477', 'null'), +('25478', 'null'), +('25479', 'null'), +('25480', 'null'), +('25481', 'null'), +('25482', 'null'), +('25483', 'null'), +('25484', 'null'), +('25485', 'null'), +('25486', 'null'), +('25487', 'null'), +('25488', 'null'), +('25489', 'null'), +('25490', 'null'), +('25491', 'null'), +('25492', 'null'), +('25493', 'null'), +('25494', 'null'), +('25495', 'null'), +('25496', 'null'), +('25497', 'null'), +('25498', 'null'), +('25499', 'null'), +('25500', 'null'), +('25501', 'null'), +('25502', 'null'), +('25503', 'null'), +('25504', 'null'), +('25505', 'null'), +('25506', 'null'), +('25507', 'null'), +('25508', 'null'), +('25509', 'null'), +('25510', 'null'), +('25511', 'null'), +('25512', 'null'), +('25513', 'null'), +('25514', 'null'), +('25515', 'null'), +('25516', 'null'), +('25517', 'null'), +('25518', 'null'), +('25519', 'null'), +('25520', 'null'), +('25521', 'null'), +('25522', 'null'), +('25523', 'null'), +('25524', 'null'), +('25525', 'null'), +('25526', 'Door'), +('25527', 'Door'), +('25528', 'null'), +('25529', 'null'), +('25530', 'null'), +('25531', 'null'), +('25532', 'null'), +('25533', 'null'), +('25534', 'null'), +('25535', 'null'), +('25536', 'null'), +('25537', 'null'), +('25538', 'null'), +('25539', 'null'), +('25540', 'null'), +('25541', 'null'), +('25542', 'null'), +('25543', 'null'), +('25544', 'null'), +('25545', 'null'), +('25546', 'null'), +('25547', 'null'), +('25548', 'null'), +('25549', 'null'), +('25550', 'null'), +('25551', 'null'), +('25552', 'null'), +('25553', 'null'), +('25554', 'null'), +('25555', 'null'), +('25556', 'null'), +('25557', 'null'), +('25558', 'null'), +('25559', 'null'), +('25560', 'null'), +('25561', 'null'), +('25562', 'null'), +('25563', 'null'), +('25564', 'null'), +('25565', 'null'), +('25566', 'null'), +('25567', 'null'), +('25568', 'null'), +('25569', 'null'), +('25570', 'null'), +('25571', 'null'), +('25572', 'null'), +('25573', 'null'), +('25574', 'null'), +('25575', 'null'), +('25576', 'null'), +('25577', 'null'), +('25578', 'Star chart'), +('25579', 'Star chart'), +('25580', 'Star chart'), +('25581', 'Star chart'), +('25582', 'Star chart'), +('25583', 'Star chart'), +('25584', 'null'), +('25585', 'null'), +('25586', 'null'), +('25587', 'null'), +('25588', 'Stone arch'), +('25589', 'null'), +('25590', 'Rat wheel'), +('25591', 'null'), +('25592', 'Closed chest'), +('25593', 'Open chest'), +('25594', 'Large door'), +('25595', 'Large door'), +('25596', 'null'), +('25597', 'null'), +('25598', 'null'), +('25599', 'Suit of armour'), +('25600', 'Barrel'), +('25601', 'Bench'), +('25602', 'Bow cabinet'), +('25603', 'Table'), +('25604', 'Staircase'), +('25605', 'Throne'), +('25606', 'Ladder'), +('25607', 'Bookcase'), +('25608', 'Cabinet'), +('25609', 'Cabinet'), +('25610', 'Wardrobe'), +('25611', 'Shelves'), +('25612', 'Shelves'), +('25613', 'null'), +('25614', 'Crystal ball'), +('25615', 'Table'), +('25616', 'Chair'), +('25617', 'null'), +('25618', 'null'), +('25619', 'null'), +('25620', 'Novice Flag'), +('25621', 'Intermediate Flag'), +('25622', 'Veteran Flag'), +('25623', 'Novice flag'), +('25624', 'Intermediate Flag'), +('25625', 'Veteran Flag'), +('25626', 'null'), +('25627', 'null'), +('25628', 'null'), +('25629', 'Ladder'), +('25630', 'Ladder'), +('25631', 'Gangplank'), +('25632', 'Gangplank'), +('25633', 'null'), +('25634', 'null'), +('25635', 'null'), +('25636', 'Barricade'), +('25637', 'null'), +('25638', 'Large door'), +('25639', 'Large door'), +('25640', 'Large door'), +('25641', 'Large door'), +('25642', 'Door'), +('25643', 'Door'), +('25644', 'Crate'), +('25645', 'Crate'), +('25646', 'Cannon'), +('25647', 'Closed chest'), +('25648', 'Dummy'), +('25649', 'Rack'), +('25650', 'null'), +('25651', 'Bow and arrow'), +('25652', 'Shelf'), +('25653', 'Shelf'), +('25654', 'Charms'), +('25655', 'Crate'), +('25656', 'null'), +('25657', 'null'), +('25658', 'null'), +('25659', 'null'), +('25660', 'Crate'), +('25661', 'Crate'), +('25662', 'Ladder'), +('25663', 'Ladder'), +('25664', 'Sir Lucan'), +('25665', 'Mossy rock'), +('25666', 'Sir Lancelot'), +('25667', 'Sir Bedivere'), +('25668', 'Hedge'), +('25669', 'Hedge'), +('25670', 'Hedge'), +('25671', 'null'), +('25672', 'null'), +('25673', 'null'), +('25674', 'null'), +('25675', 'Food trough'), +('25676', 'Bench'), +('25677', 'null'), +('25678', 'null'), +('25679', 'null'), +('25680', 'null'), +('25681', 'Bed'), +('25682', 'Staircase'), +('25683', 'Staircase'), +('25684', 'Bookcase'), +('25685', 'Chest'), +('25686', 'Chest'), +('25687', 'Ladder'), +('25688', 'Ladder'), +('25689', 'Bookcase'), +('25690', 'Bookcase'), +('25691', 'Bookcase'), +('25692', 'Bookcase'), +('25693', 'Bookcase'), +('25694', 'Bookcase'), +('25695', 'Bookcase'), +('25696', 'Bookcase'), +('25697', 'Bookcase'), +('25698', 'Bookcase'), +('25699', 'Cabinet'), +('25700', 'Cabinet'), +('25701', 'Drawers'), +('25702', 'Drawers'), +('25703', 'Drawers'), +('25704', 'Drawers'), +('25705', 'Drawers'), +('25706', 'Drawers'), +('25707', 'Drawers'), +('25708', 'Drawers'), +('25709', 'Drawers'), +('25710', 'Drawers'), +('25711', 'Drawers'), +('25712', 'Drawers'), +('25713', 'Drawers'), +('25714', 'Drawers'), +('25715', 'Drawers'), +('25716', 'Door'), +('25717', 'Door'), +('25718', 'Door'), +('25719', 'Door'), +('25720', 'Dairy churn'), +('25721', 'Barrel'), +('25722', 'Barrel of flour'), +('25723', 'Anna's barrel'), +('25724', 'Bob's barrel'), +('25725', 'Carol's barrel'), +('25726', 'David's barrel'), +('25727', 'Elizabeth's barrel'), +('25728', 'Frank's barrel'), +('25729', 'Sink'), +('25730', 'Range'), +('25731', 'Grandfather clock'), +('25732', 'Dragon's head'), +('25733', 'Table'), +('25734', 'Table'), +('25735', 'Bed'), +('25736', 'Shelf'), +('25737', 'Shelf'), +('25738', 'Painting'), +('25739', 'Portrait'), +('25740', 'Landscape'), +('25741', 'Painting'), +('25742', 'Painting'), +('25743', 'Landscape'), +('25744', 'Painting'), +('25745', 'null'), +('25746', 'null'), +('25747', 'null'), +('25748', 'Large door'), +('25749', 'null'), +('25750', 'Large door'), +('25751', 'null'), +('25752', 'null'), +('25753', 'null'), +('25754', 'null'), +('25755', 'null'), +('25756', 'null'), +('25757', 'null'), +('25758', 'null'), +('25759', 'null'), +('25760', 'null'), +('25761', 'Blacksmith's tools'), +('25762', 'Sign'), +('25763', 'Clock'), +('25764', 'Piano'), +('25765', 'Piano stool'), +('25766', 'Drawers'), +('25767', 'Drawers'), +('25768', 'Bench'), +('25769', 'Cabinet'), +('25770', 'Cabinet'), +('25771', 'Chair'), +('25772', 'Smashed chair'), +('25773', 'Stool'), +('25774', 'Workbench'), +('25775', 'Crate'), +('25776', 'Crates'), +('25777', 'null'), +('25778', 'Table'), +('25779', 'Statue'), +('25780', 'Barrel'), +('25781', 'Cooking shelves'), +('25782', 'Old bookshelf'), +('25783', 'Rocking chair'), +('25784', 'Chair'), +('25785', 'Rack'), +('25786', 'Staircase'), +('25787', 'Staircase'), +('25788', 'Large door'), +('25789', 'Large door'), +('25790', 'Large door'), +('25791', 'Large door'), +('25792', 'Suit of armour'), +('25793', 'Closed chest'), +('25794', 'Ladder'), +('25795', 'null'), +('25796', 'null'), +('25797', 'null'), +('25798', 'Cannon'), +('25799', 'Door'), +('25800', 'Door'), +('25801', 'Staircase'), +('25802', 'null'), +('25803', 'null'), +('25804', 'Large door'), +('25805', 'Large door'), +('25806', 'Large door'), +('25807', 'Large door'), +('25808', 'Bank booth'), +('25809', 'Closed booth'), +('25810', 'null'), +('25811', 'null'), +('25812', 'null'), +('25813', 'Large door'), +('25814', 'Large door'), +('25815', 'Large door'), +('25816', 'Large door'), +('25817', 'Study desk'), +('25818', 'Church organ'), +('25819', 'Door'), +('25820', 'Door'), +('25821', 'Bow cabinet'), +('25822', 'Bed'), +('25823', 'Mirror'), +('25824', 'Spinning wheel'), +('25825', 'Door'), +('25826', 'Door'), +('25827', 'Door'), +('25828', 'Door'), +('25829', 'null'), +('25830', 'null'), +('25831', 'null'), +('25832', 'Chair'), +('25833', 'null'), +('25834', 'null'), +('25835', 'null'), +('25836', 'Crate'), +('25837', 'Crate'), +('25838', 'null'), +('25839', 'null'), +('25840', 'null'), +('25841', 'null'), +('25842', 'null'), +('25843', 'Ladder'), +('25844', 'Ladder'), +('25845', 'null'), +('25846', 'null'), +('25847', 'null'), +('25848', 'null'), +('25849', 'null'), +('25850', 'null'), +('25851', 'null'), +('25852', 'null'), +('25853', 'null'), +('25854', 'null'), +('25855', 'null'), +('25856', 'null'), +('25857', 'null'), +('25858', 'null'), +('25859', 'null'), +('25860', 'null'), +('25861', 'null'), +('25862', 'null'), +('25863', 'null'), +('25864', 'null'), +('25865', 'null'), +('25866', 'null'), +('25867', 'null'), +('25868', 'null'), +('25869', 'null'), +('25870', 'null'), +('25871', 'null'), +('25872', 'null'), +('25873', 'null'), +('25874', 'null'), +('25875', 'null'), +('25876', 'Metal door'), +('25877', 'Metal door'), +('25878', 'null'), +('25879', 'Vent'), +('25880', 'Vent'), +('25881', 'null'), +('25882', 'null'), +('25883', 'null'), +('25884', 'null'), +('25885', 'null'), +('25886', 'null'), +('25887', 'null'), +('25888', 'null'), +('25889', 'Sir Tristram'), +('25890', 'null'), +('25891', 'null'), +('25892', 'null'), +('25893', 'null'), +('25894', 'null'), +('25895', 'null'), +('25896', 'null'), +('25897', 'null'), +('25898', 'null'), +('25899', 'null'), +('25900', 'null'), +('25901', 'null'), +('25902', 'null'), +('25903', 'null'), +('25904', 'null'), +('25905', 'null'), +('25906', 'null'), +('25907', 'null'), +('25908', 'null'), +('25909', 'null'), +('25910', 'null'), +('25911', 'null'), +('25912', 'null'), +('25913', 'null'), +('25914', 'null'), +('25915', 'null'), +('25916', 'null'), +('25917', 'null'), +('25918', 'null'), +('25919', 'null'), +('25920', 'null'), +('25921', 'null'), +('25922', 'null'), +('25923', 'null'), +('25924', 'null'), +('25925', 'null'), +('25926', 'null'), +('25927', 'Bookcase'), +('25928', 'Table'), +('25929', 'Sink'), +('25930', 'Table'), +('25931', 'Table'), +('25932', 'Bar pumps'), +('25933', 'Shelves'), +('25934', 'Shelves'), +('25935', 'Staircase'), +('25936', 'null'), +('25937', 'Bank deposit box'), +('25938', 'Ladder'), +('25939', 'Ladder'), +('25940', 'Ladder'), +('25941', 'Ladder'), +('25942', 'King Arthur'), +('25943', 'null'), +('25944', 'The jury'), +('25945', 'The jury'), +('25946', 'The jury'), +('25947', 'The jury'), +('25948', 'The jury'), +('25949', 'The jury'), +('25950', 'The jury'), +('25951', 'The jury'), +('25952', 'The jury'), +('25953', 'null'), +('25954', 'null'), +('25955', 'Alan'), +('25956', 'Court judge'), +('25957', 'null'), +('25958', 'null'), +('25959', 'null'), +('25960', 'null'), +('25961', 'null'), +('25962', 'null'), +('25963', 'null'), +('25964', 'null'), +('25965', 'null'), +('25966', 'null'), +('25967', 'null'), +('25968', 'null'), +('25969', 'null'), +('25970', 'null'), +('25971', 'null'), +('25972', 'null'), +('25973', 'null'), +('25974', 'null'), +('25975', 'null'), +('25976', 'null'), +('25977', 'null'), +('25978', 'null'), +('25979', 'null'), +('25980', 'null'), +('25981', 'Locked gate'), +('25982', 'null'), +('25983', 'null'), +('25984', 'null'), +('25985', 'null'), +('25986', 'null'), +('25987', 'null'), +('25988', 'null'), +('25989', 'null'), +('25990', 'null'), +('25991', 'null'), +('25992', 'null'), +('25993', 'null'), +('25994', 'null'), +('25995', 'null'), +('25996', 'null'), +('25997', 'null'), +('25998', 'null'), +('25999', 'null'), +('26000', 'null'), +('26001', 'null'), +('26002', 'null'), +('26003', 'null'), +('26004', 'null'), +('26005', 'null'), +('26006', 'null'), +('26007', 'null'), +('26008', 'null'), +('26009', 'null'), +('26010', 'null'), +('26011', 'null'), +('26012', 'null'), +('26013', 'null'), +('26014', 'null'), +('26015', 'null'), +('26016', 'null'), +('26017', 'Stairs'), +('26018', 'null'), +('26019', 'null'), +('26020', 'Table'), +('26021', 'null'), +('26022', 'null'), +('26023', 'null'), +('26024', 'null'), +('26025', 'null'), +('26026', 'null'), +('26027', 'null'), +('26028', 'null'), +('26029', 'null'), +('26030', 'null'), +('26031', 'null'), +('26032', 'null'), +('26033', 'null'), +('26034', 'null'), +('26035', 'null'), +('26036', 'null'), +('26037', 'null'), +('26038', 'null'), +('26039', 'null'), +('26040', 'null'), +('26041', 'null'), +('26042', 'Gate'), +('26043', 'Desk'), +('26044', 'Desk'), +('26045', 'Citizen'), +('26046', 'Citizen'), +('26047', 'Citizen'), +('26048', 'Citizen'), +('26049', 'Citizen'), +('26050', 'Citizen'), +('26051', 'Stairs'), +('26052', 'null'), +('26053', 'Bookcase'), +('26054', 'null'), +('26055', 'null'), +('26056', 'null'), +('26057', 'null'), +('26058', 'null'), +('26059', 'null'), +('26060', 'null'), +('26061', 'null'), +('26062', 'null'), +('26063', 'null'), +('26064', 'null'), +('26065', 'null'), +('26066', 'null'), +('26067', 'null'), +('26068', 'null'), +('26069', 'null'), +('26070', 'null'), +('26071', 'null'), +('26072', 'null'), +('26073', 'Statue'), +('26074', 'Table'), +('26075', 'Chair'), +('26076', 'Chair'), +('26077', 'Chair'), +('26078', 'null'), +('26079', 'null'), +('26080', 'null'), +('26081', 'Gate'), +('26082', 'Gate'), +('26083', 'null'), +('26084', 'null'), +('26085', 'null'), +('26086', 'null'), +('26087', 'null'), +('26088', 'null'), +('26089', 'null'), +('26090', 'null'), +('26091', 'null'), +('26092', 'null'), +('26093', 'null'), +('26094', 'null'), +('26095', 'null'), +('26096', 'null'), +('26097', 'null'), +('26098', 'null'), +('26099', 'null'), +('26100', 'null'), +('26101', 'null'), +('26102', 'null'), +('26103', 'null'), +('26104', 'null'), +('26105', 'null'), +('26106', 'Staircase'), +('26107', 'Ladder'), +('26108', 'null'), +('26109', 'Spiders' nest'), +('26110', 'Smashed window'), +('26111', 'Smashed window'), +('26112', 'Window'), +('26113', 'Bookcase'), +('26114', 'Odd looking wall'), +('26115', 'Odd looking wall'), +('26116', 'Odd looking wall'), +('26117', 'Odd looking wall'), +('26118', 'Ladder'), +('26119', 'Trapdoor'), +('26120', 'Sinclair family compost heap'), +('26121', 'Sinclair family beehive'), +('26122', 'Barrel of flour'), +('26123', 'null'), +('26124', 'null'), +('26125', 'null'), +('26126', 'null'), +('26127', 'null'), +('26128', 'null'), +('26129', 'null'), +('26130', 'Gate'), +('26131', 'Gate'), +('26132', 'Gate'), +('26133', 'Gate'), +('26134', 'null'), +('26135', 'null'), +('26136', 'null'), +('26137', 'Fly paper'), +('26138', 'null'), +('26139', 'null'), +('26140', 'Gramophone'), +('26141', 'Gramophone'), +('26142', 'Table'), +('26143', 'Spinning wheel'), +('26144', 'Staircase'), +('26145', 'Staircase'), +('26146', 'Staircase'), +('26147', 'Staircase'), +('26148', 'Staircase'), +('26149', 'Staircase'), +('26150', 'Staircase'), +('26151', 'Staircase'), +('26152', 'null'), +('26153', 'null'), +('26154', 'null'), +('26155', 'null'), +('26156', 'null'), +('26157', 'null'), +('26158', 'null'), +('26159', 'null'), +('26160', 'null'), +('26161', 'null'), +('26162', 'null'), +('26163', 'null'), +('26164', 'null'), +('26165', 'null'), +('26166', 'null'), +('26167', 'null'), +('26168', 'null'), +('26169', 'null'), +('26170', 'null'), +('26171', 'null'), +('26172', 'null'), +('26173', 'null'), +('26174', 'null'), +('26175', 'null'), +('26176', 'null'), +('26177', 'null'), +('26178', 'null'), +('26179', 'null'), +('26180', 'null'), +('26181', 'null'), +('26182', 'null'), +('26183', 'null'), +('26184', 'null'), +('26185', 'null'), +('26186', 'null'), +('26187', 'null'), +('26188', 'Locked door'), +('26189', 'Locked door'), +('26190', 'null'), +('26191', 'Lever'), +('26192', 'null'), +('26193', 'Chest'), +('26194', 'Lever'), +('26195', 'null'), +('26196', 'null'), +('26197', 'null'), +('26198', 'Birthday cake'), +('26199', 'Birthday cake'), +('26200', 'Birthday cake'), +('26201', 'Table'), +('26202', 'Table'), +('26203', 'Table'), +('26204', 'Present'), +('26205', 'Present'), +('26206', 'Table'), +('26207', 'Large door'), +('26208', 'Staircase'), +('26209', 'Skeleton'), +('26210', 'Skeleton'), +('26211', 'Skeleton'), +('26212', 'Skeleton'), +('26213', 'Bones'), +('26214', 'Bones'), +('26215', 'Bones'), +('26216', 'Skeleton'), +('26217', 'Crushed skeleton'), +('26218', 'Skeleton'), +('26219', 'null'), +('26220', 'null'), +('26221', 'null'), +('26222', 'null'), +('26223', 'null'), +('26224', 'null'), +('26225', 'null'), +('26226', 'null'), +('26227', 'Skeleton'), +('26228', 'null'), +('26229', 'Battle tower'), +('26230', 'Broken catapult'), +('26231', 'Crossbow'), +('26232', 'Chain'), +('26233', 'Battering ram'), +('26234', 'Arrow'), +('26235', 'Broken mast'), +('26236', 'Skeleton'), +('26237', 'Wheel'), +('26238', 'Hammer'), +('26239', 'Armour'), +('26240', 'Ladder'), +('26241', 'Crate'), +('26242', 'Arm'), +('26243', 'Barrels'), +('26244', 'null'), +('26245', 'null'), +('26246', 'null'), +('26247', 'Old axe'), +('26248', 'Column'), +('26249', 'Cannonball'), +('26250', 'Spikes'), +('26251', 'Crate'), +('26252', 'Spikes'), +('26253', 'Barrels'), +('26254', 'Barrels'), +('26255', 'Pole'), +('26256', 'Catapult'), +('26257', 'Crates'), +('26258', 'Crates'), +('26259', 'Crossbow'), +('26260', 'Crates'), +('26261', 'Crates'), +('26262', 'Spikes'), +('26263', 'Wood'), +('26264', 'Spikes'), +('26265', 'Stormram'), +('26266', 'Skullshield'), +('26267', 'Barrels'), +('26268', 'Boards'), +('26269', 'Crane'), +('26270', 'Handle'), +('26271', 'Frozen warrior'), +('26272', 'Frozen warrior'), +('26273', 'Frozen warrior'), +('26274', 'Frozen warrior'), +('26275', 'Frozen warrior'), +('26276', 'Frozen warrior'), +('26277', 'Frozen warrior'), +('26278', 'Frozen warrior'), +('26279', 'Frozen warrior'), +('26280', 'Frozen warrior'), +('26281', 'Frozen demon'), +('26282', 'Frozen demon'), +('26283', 'Frozen orc'), +('26284', 'Frozen orc'), +('26285', 'Frozen orc'), +('26286', 'Zamorak altar'), +('26287', 'Saradomin altar'), +('26288', 'Armadyl altar'), +('26289', 'Bandos altar'), +('26290', 'null'), +('26291', 'Big hole'), +('26292', 'Rope'), +('26293', 'Rope'), +('26294', 'null'), +('26295', 'Rock'), +('26296', 'Rock'), +('26297', 'Rope'), +('26298', 'null'), +('26299', 'Rock'), +('26300', 'Rock'), +('26301', 'Rope'), +('26302', 'Pillar'), +('26303', 'Pillar'), +('26304', 'null'), +('26305', 'Little crack'), +('26306', 'Knight'), +('26307', 'null'), +('26308', 'null'), +('26309', 'null'), +('26310', 'null'), +('26311', 'null'), +('26312', 'null'), +('26313', 'null'), +('26314', 'null'), +('26315', 'null'), +('26316', 'null'), +('26317', 'null'), +('26318', 'null'), +('26319', 'null'), +('26320', 'null'), +('26321', 'null'), +('26322', 'null'), +('26323', 'Rocky handholds'), +('26324', 'Rocky handholds'), +('26325', 'null'), +('26326', 'null'), +('26327', 'Rocky handholds'), +('26328', 'Rocky handholds'), +('26329', 'null'), +('26330', 'null'), +('26331', 'null'), +('26332', 'null'), +('26333', 'null'), +('26334', 'null'), +('26335', 'null'), +('26336', 'null'), +('26337', 'null'), +('26338', 'Boulder'), +('26339', 'Boulder'), +('26340', 'Hole'), +('26341', 'Hole'), +('26342', 'null'), +('26343', 'Broken pillar'), +('26344', 'Broken pillar'), +('26345', 'Rope'), +('26346', 'null'), +('26347', 'null'), +('26348', 'null'), +('26349', 'null'), +('26350', 'null'), +('26351', 'null'), +('26352', 'null'), +('26353', 'null'), +('26354', 'null'), +('26355', 'null'), +('26356', 'null'), +('26357', 'null'), +('26358', 'null'), +('26359', 'null'), +('26360', 'null'), +('26361', 'null'), +('26362', 'null'), +('26363', 'null'), +('26364', 'null'), +('26365', 'null'), +('26366', 'null'), +('26367', 'null'), +('26368', 'null'), +('26369', 'null'), +('26370', 'null'), +('26371', 'null'), +('26372', 'null'), +('26373', 'null'), +('26374', 'null'), +('26375', 'null'), +('26376', 'null'), +('26377', 'null'), +('26378', 'null'), +('26379', 'null'), +('26380', 'Frozen door'), +('26381', 'Frozen door'), +('26382', 'null'), +('26383', 'null'), +('26384', 'Big door'), +('26385', 'null'), +('26386', 'null'), +('26387', 'Door'), +('26388', 'null'), +('26389', 'null'), +('26390', 'null'), +('26391', 'null'), +('26392', 'null'), +('26393', 'null'), +('26394', 'null'), +('26395', 'null'), +('26396', 'null'), +('26397', 'null'), +('26398', 'null'), +('26399', 'null'), +('26400', 'null'), +('26401', 'null'), +('26402', 'null'), +('26403', 'null'), +('26404', 'null'), +('26405', 'null'), +('26406', 'null'), +('26407', 'null'), +('26408', 'null'), +('26409', 'null'), +('26410', 'null'), +('26411', 'null'), +('26412', 'null'), +('26413', 'null'), +('26414', 'Large geyser'), +('26415', 'Snow'), +('26416', 'null'), +('26417', 'Snowfall'), +('26418', 'Waterfall'), +('26419', 'Waterfall'), +('26420', 'Waterfall'), +('26421', 'Waterfall'), +('26422', 'Waterfall'), +('26423', 'null'), +('26424', 'null'), +('26425', 'Big door'), +('26426', 'Big door'), +('26427', 'Big door'), +('26428', 'Big door'), +('26429', 'null'), +('26430', 'null'), +('26431', 'null'), +('26432', 'null'), +('26433', 'null'), +('26434', 'null'), +('26435', 'null'), +('26436', 'null'), +('26437', 'null'), +('26438', 'null'), +('26439', 'Ice bridge'), +('26440', 'Crate'), +('26441', 'null'), +('26442', 'null'), +('26443', 'null'), +('26444', 'null'), +('26445', 'null'), +('26446', 'null'), +('26447', 'null'), +('26448', 'null'), +('26449', 'null'), +('26450', 'null'), +('26451', 'null'), +('26452', 'null'), +('26453', 'null'), +('26454', 'null'), +('26455', 'null'), +('26456', 'null'), +('26457', 'null'), +('26458', 'null'), +('26459', 'null'), +('26460', 'null'), +('26461', 'null'), +('26462', 'null'), +('26463', 'null'), +('26464', 'null'), +('26465', 'null'), +('26466', 'null'), +('26467', 'null'), +('26468', 'null'), +('26469', 'null'), +('26470', 'null'), +('26471', 'null'), +('26472', 'null'), +('26473', 'null'), +('26474', 'null'), +('26475', 'null'), +('26476', 'null'), +('26477', 'null'), +('26478', 'null'), +('26479', 'null'), +('26480', 'null'), +('26481', 'null'), +('26482', 'null'), +('26483', 'null'), +('26484', 'null'), +('26485', 'null'), +('26486', 'null'), +('26487', 'null'), +('26488', 'Staircase'), +('26489', 'Staircase'), +('26490', 'null'), +('26491', 'null'), +('26492', 'null'), +('26493', 'null'), +('26494', 'Crate'), +('26495', 'Crate'), +('26496', 'null'), +('26497', 'null'), +('26498', 'null'), +('26499', 'null'), +('26500', 'null'), +('26501', 'null'), +('26502', 'null'), +('26503', 'null'), +('26504', 'null'), +('26505', 'null'), +('26506', 'null'), +('26507', 'null'), +('26508', 'null'), +('26509', 'null'), +('26510', 'null'), +('26511', 'null'), +('26512', 'null'), +('26513', 'null'), +('26514', 'null'), +('26515', 'null'), +('26516', 'null'), +('26517', 'null'), +('26518', 'Ladder'), +('26519', 'Ladder'), +('26520', 'null'), +('26521', 'null'), +('26522', 'null'), +('26523', 'null'), +('26524', 'null'), +('26525', 'null'), +('26526', 'null'), +('26527', 'null'), +('26528', 'null'), +('26529', 'null'), +('26530', 'null'), +('26531', 'null'), +('26532', 'null'), +('26533', 'null'), +('26534', 'null'), +('26535', 'null'), +('26536', 'null'), +('26537', 'null'), +('26538', 'null'), +('26539', 'null'), +('26540', 'null'), +('26541', 'null'), +('26542', 'null'), +('26543', 'null'), +('26544', 'null'), +('26545', 'null'), +('26546', 'null'), +('26547', 'null'), +('26548', 'null'), +('26549', 'null'), +('26550', 'null'), +('26551', 'null'), +('26552', 'null'), +('26553', 'null'), +('26554', 'null'), +('26555', 'null'), +('26556', 'null'), +('26557', 'null'), +('26558', 'null'), +('26559', 'null'), +('26560', 'Metal door'), +('26561', 'Metal door'), +('26562', 'null'), +('26563', 'null'), +('26564', 'null'), +('26565', 'null'), +('26566', 'null'), +('26567', 'null'), +('26568', 'null'), +('26569', 'null'), +('26570', 'Sewer exit'), +('26571', 'Sewer exit'), +('26572', 'Sewer exit'), +('26573', 'Sewer exit'), +('26574', 'Sewer exit'), +('26575', 'Sewer exit'), +('26576', 'null'), +('26577', 'null'), +('26578', 'Gas'), +('26579', 'Gas jet'), +('26580', 'null'), +('26581', 'null'), +('26582', 'null'), +('26583', 'null'), +('26584', 'null'), +('26585', 'null'), +('26586', 'null'), +('26587', 'null'), +('26588', 'null'), +('26589', 'null'), +('26590', 'null'), +('26591', 'null'), +('26592', 'null'), +('26593', 'null'), +('26594', 'null'), +('26595', 'null'), +('26596', 'null'), +('26597', 'null'), +('26598', 'null'), +('26599', 'null'), +('26600', 'null'), +('26601', 'null'), +('26602', 'null'), +('26603', 'null'), +('26604', 'null'), +('26605', 'null'), +('26606', 'null'), +('26607', 'null'), +('26608', 'null'), +('26609', 'null'), +('26610', 'null'), +('26611', 'null'), +('26612', 'null'), +('26613', 'null'), +('26614', 'null'), +('26615', 'null'), +('26616', 'null'), +('26617', 'null'), +('26618', 'null'), +('26619', 'null'), +('26620', 'null'), +('26621', 'null'), +('26622', 'null'), +('26623', 'null'), +('26624', 'null'), +('26625', 'null'), +('26626', 'null'), +('26627', 'null'), +('26628', 'null'), +('26629', 'null'), +('26630', 'null'), +('26631', 'null'), +('26632', 'null'), +('26633', 'null'), +('26634', 'null'), +('26635', 'null'), +('26636', 'null'), +('26637', 'null'), +('26638', 'null'), +('26639', 'null'), +('26640', 'null'), +('26641', 'null'), +('26642', 'null'), +('26643', 'null'), +('26644', 'null'), +('26645', 'null'), +('26646', 'null'), +('26647', 'null'), +('26648', 'null'), +('26649', 'null'), +('26650', 'null'), +('26651', 'null'), +('26652', 'null'), +('26653', 'null'), +('26654', 'null'), +('26655', 'null'), +('26656', 'null'), +('26657', 'null'), +('26658', 'null'), +('26659', 'null'), +('26660', 'null'), +('26661', 'null'), +('26662', 'null'), +('26663', 'null'), +('26664', 'null'), +('26665', 'null'), +('26666', 'null'), +('26667', 'null'), +('26668', 'null'), +('26669', 'null'), +('26670', 'null'), +('26671', 'null'), +('26672', 'null'), +('26673', 'null'), +('26674', 'null'), +('26675', 'null'), +('26676', 'null'), +('26677', 'null'), +('26678', 'null'), +('26679', 'null'), +('26680', 'null'), +('26681', 'null'), +('26682', 'null'), +('26683', 'null'), +('26684', 'Sewer entrance'), +('26685', 'Sewer entrance'), +('26686', 'Sewer entrance'), +('26687', 'null'), +('26688', 'null'), +('26689', 'null'), +('26690', 'null'), +('26691', 'null'), +('26692', 'null'), +('26693', 'null'), +('26694', 'null'), +('26695', 'null'), +('26696', 'null'), +('26697', 'null'), +('26698', 'null'), +('26699', 'null'), +('26700', 'null'), +('26701', 'null'), +('26702', 'Secure door'), +('26703', 'Secure door'), +('26704', 'null'), +('26705', 'null'), +('26706', 'Metal door'), +('26707', 'Metal door'), +('26708', 'Pipe'), +('26709', 'Pipe'), +('26710', 'Pipe'), +('26711', 'Pipe'), +('26712', 'null'), +('26713', 'Warped tree roots'), +('26714', 'Warped tree roots'), +('26715', 'Warped tree roots'), +('26716', 'Parted tree roots'), +('26717', 'Parted tree roots'), +('26718', 'Warped tree roots'), +('26719', 'Parted tree roots'), +('26720', 'Spirit tree'), +('26721', 'Spirit tree'), +('26722', 'Spirit tree'), +('26723', 'null'), +('26724', 'Tree'), +('26725', 'Tree'), +('26726', 'Healthorg'), +('26727', 'Human food'), +('26728', 'Human food'), +('26729', 'Human food'), +('26730', 'null'), +('26731', 'Spirit tree'), +('26732', 'Healthorg'), +('26733', 'Healthorg'), +('26734', 'Alarm button'), +('26735', 'null'), +('26736', 'null'), +('26737', 'null'), +('26738', 'null'), +('26739', 'null'), +('26740', 'null'), +('26741', 'null'), +('26742', 'Singing bowl'), +('26743', 'Mahogany chest'), +('26744', 'Mahogany chest'), +('26745', 'Chest'), +('26746', 'Chest'), +('26747', 'Chest'), +('26748', 'Chest'), +('26749', 'Tunnel'), +('26750', 'Tunnel'), +('26751', 'null'), +('26752', 'null'), +('26753', 'null'), +('26754', 'Tunnel'), +('26755', 'null'), +('26756', 'null'), +('26757', 'null'), +('26758', 'null'), +('26759', 'null'), +('26760', 'null'), +('26761', 'null'), +('26762', 'Rocks'), +('26763', 'Rocks'), +('26764', 'Rocks'), +('26765', 'Rocks'), +('26766', 'Gnome barrel'), +('26767', 'Gnome barrels'), +('26768', 'Gnome crates'), +('26769', 'Gnome crate'), +('26770', 'Barrel'), +('26771', 'Crate'), +('26772', 'Crate'), +('26773', 'Crate'), +('26774', 'null'), +('26775', 'null'), +('26776', 'null'), +('26777', 'null'), +('26778', 'null'), +('26779', 'null'), +('26780', 'null'), +('26781', 'null'), +('26782', 'null'), +('26783', 'Table'), +('26784', 'Stool'), +('26785', 'Smashed chair'), +('26786', 'null'), +('26787', 'Door'), +('26788', 'Yewnock's machine'), +('26789', 'Cogs'), +('26790', 'null'), +('26791', 'Yewnock's machine'), +('26792', 'Yewnock's exchanger'), +('26793', 'null'), +('26794', 'null'), +('26795', 'null'), +('26796', 'null'), +('26797', 'null'), +('26798', 'null'), +('26799', 'null'), +('26800', 'null'), +('26801', 'null'), +('26802', 'Lectern'), +('26803', 'Hatch door'), +('26804', 'Hatch door'), +('26805', 'null'), +('26806', 'Staircase'), +('26807', 'Table'), +('26808', 'Door'), +('26809', 'null'), +('26810', 'Door'), +('26811', 'null'), +('26812', 'null'), +('26813', 'null'), +('26814', 'Furnace'), +('26815', 'Workbench'), +('26816', 'Workbench'), +('26817', 'Lathe'), +('26818', 'Workbench'), +('26819', 'Workbench'), +('26820', 'Whetstone'), +('26821', 'Lathe'), +('26822', 'Anvil'), +('26823', 'Bellows'), +('26824', 'Cart'), +('26825', 'Junk'), +('26826', 'null'), +('26827', 'null'), +('26828', 'null'), +('26829', 'null'), +('26830', 'null'), +('26831', 'null'), +('26832', 'null'), +('26833', 'null'), +('26834', 'null'), +('26835', 'null'), +('26836', 'null'), +('26837', 'null'), +('26838', 'null'), +('26839', 'null'), +('26840', 'null'), +('26841', 'null'), +('26842', 'null'), +('26843', 'null'), +('26844', 'Crack'), +('26845', 'Crack'), +('26846', 'null'), +('26847', 'Runecrafting altar'), +('26848', 'null'), +('26849', 'Ladder'), +('26850', 'Ladder'), +('26851', 'Big door'), +('26852', 'Big door'), +('26853', 'null'), +('26854', 'null'), +('26855', 'null'), +('26856', 'null'), +('26857', 'null'), +('26858', 'null'), +('26859', 'null'), +('26860', 'null'), +('26861', 'null'), +('26862', 'null'), +('26863', 'null'), +('26864', 'null'), +('26865', 'null'), +('26866', 'null'), +('26867', 'null'), +('26868', 'null'), +('26869', 'null'), +('26870', 'null'), +('26871', 'null'), +('26872', 'null'), +('26873', 'null'), +('26874', 'null'), +('26875', 'null'), +('26876', 'null'), +('26877', 'null'), +('26878', 'null'), +('26879', 'null'), +('26880', 'null'), +('26881', 'null'), +('26882', 'null'), +('26883', 'null'), +('26884', 'Rocks'), +('26885', 'null'), +('26886', 'null'), +('26887', 'null'), +('26888', 'Rocks'), +('26889', 'null'), +('26890', 'null'), +('26891', 'null'), +('26892', 'null'), +('26893', 'null'), +('26894', 'null'), +('26895', 'null'), +('26896', 'null'), +('26897', 'null'), +('26898', 'null'), +('26899', 'null'), +('26900', 'null'), +('26901', 'null'), +('26902', 'null'), +('26903', 'null'), +('26904', 'null'), +('26905', 'null'), +('26906', 'Large door'), +('26907', 'Large door'), +('26908', 'Large door'), +('26909', 'Large door'), +('26910', 'Large door'), +('26911', 'Large door'), +('26912', 'null'), +('26913', 'Large door'), +('26914', 'Large door'), +('26915', 'null'), +('26916', 'Door'), +('26917', 'Door'), +('26918', 'Rack'), +('26919', 'null'), +('26920', 'null'), +('26921', 'null'), +('26922', 'null'), +('26923', 'null'), +('26924', 'null'), +('26925', 'null'), +('26926', 'null'), +('26927', 'null'), +('26928', 'null'), +('26929', 'null'), +('26930', 'null'), +('26931', 'null'), +('26932', 'null'), +('26933', 'Trapdoor'), +('26934', 'Trapdoor'), +('26935', 'Coffin'), +('26936', 'Cave'), +('26937', 'Coffin'), +('26938', 'Cave'), +('26939', 'Coffin'), +('26940', 'Wall'), +('26941', 'Coffin'), +('26942', 'null'), +('26943', 'Coffin'), +('26944', 'Coffin'), +('26945', 'Well'), +('26946', 'null'), +('26947', 'Warehouse shelves'), +('26948', 'Warehouse shelves'), +('26949', 'Warehouse shelves'), +('26950', 'Warehouse shelves'), +('26951', 'Bookcase'), +('26952', 'Bookcase'), +('26953', 'Stepladder'), +('26954', 'Bed'), +('26955', 'Bed'), +('26956', 'null'), +('26957', 'Large table'), +('26958', 'Small table'), +('26959', 'Small table'), +('26960', 'null'), +('26961', 'Crate'), +('26962', 'Crates'), +('26963', 'Stool'), +('26964', 'null'), +('26965', 'null'), +('26966', 'Sink'), +('26967', 'null'), +('26968', 'null'), +('26969', 'Bank deposit box'), +('26970', 'Bank table'), +('26971', 'Sign'), +('26972', 'Bank booth'), +('26973', 'null'), +('26974', 'null'), +('26975', 'null'), +('26976', 'null'), +('26977', 'null'), +('26978', 'null'), +('26979', 'null'), +('26980', 'null'), +('26981', 'null'), +('26982', 'Ladder'), +('26983', 'Ladder'), +('26984', 'null'), +('26985', 'null'), +('26986', 'null'), +('26987', 'null'), +('26988', 'null'), +('26989', 'null'), +('26990', 'null'), +('26991', 'null'), +('26992', 'null'), +('26993', 'null'), +('26994', 'null'), +('26995', 'null'), +('26996', 'null'), +('26997', 'null'), +('26998', 'null'), +('26999', 'null'), +('27000', 'null'), +('27001', 'null'), +('27002', 'null'), +('27003', 'null'), +('27004', 'null'), +('27005', 'Suit of armour'), +('27006', 'Hanging banner'), +('27007', 'Hanging banner'), +('27008', 'Clothes equipment'), +('27009', 'null'), +('27010', 'Staircase'), +('27011', 'Staircase'), +('27012', 'Crate'), +('27013', 'Crate'), +('27014', 'Table'), +('27015', 'Crate'), +('27016', 'Boxes'), +('27017', 'Crate'), +('27018', 'null'), +('27019', 'null'), +('27020', 'null'), +('27021', 'null'), +('27022', 'Jade vine patch'), +('27023', 'Jade vine patch'), +('27024', 'Jade vine patch'), +('27025', 'Jade vine patch'), +('27026', 'Jade vine'), +('27027', 'Jade vine'), +('27028', 'Jade vine'), +('27029', 'Jade vine'), +('27030', 'Jade vine'), +('27031', 'Jade vine'), +('27032', 'Jade vine'), +('27033', 'Jade vine'), +('27034', 'Jade vine'), +('27035', 'Jade vine'), +('27036', 'Jade vine'), +('27037', 'Jade vine'), +('27038', 'Jade vine'), +('27039', 'Jade vine'), +('27040', 'Diseased jade vine'), +('27041', 'Diseased jade vine'), +('27042', 'Diseased jade vine'), +('27043', 'Diseased jade vine'), +('27044', 'Diseased jade vine'), +('27045', 'Dead jade vine'), +('27046', 'Dead jade vine'), +('27047', 'Dead jade vine'), +('27048', 'Dead jade vine'), +('27049', 'Dead jade vine'), +('27050', 'null'), +('27051', 'Grandfather clock'), +('27052', 'Table'), +('27053', 'A parcel'), +('27054', 'Smelly package'), +('27055', 'Smelly package'), +('27056', 'Table'), +('27057', 'Open package'), +('27058', 'Loose soil'), +('27059', 'Roots'), +('27060', 'Cut roots'), +('27061', 'Horacio's jade vine patch'), +('27062', 'Wild jade vine'), +('27063', 'Horacio's patch'), +('27064', 'Horacio's jade vine patch'), +('27065', 'Gate'), +('27066', 'Gate'), +('27067', 'Grave'), +('27068', 'Grave'), +('27069', 'null'), +('27070', 'Loose earth'), +('27071', 'Exposed root'), +('27072', 'Cut root'), +('27073', 'Ugly flowerbed'), +('27074', 'Beautiful flowerbed'), +('27075', 'null'), +('27076', 'Wild jade vine'), +('27077', 'Wild jade vine'), +('27078', 'Wild jade vine'), +('27079', 'null'), +('27080', 'null'), +('27081', 'null'), +('27082', 'Counter'), +('27083', 'Table'), +('27084', 'Barrel'), +('27085', 'Boxes'), +('27086', 'Crates'), +('27087', 'Crate'), +('27088', 'null'), +('27089', 'Tree'), +('27090', 'null'), +('27091', 'null'), +('27092', 'null'), +('27093', 'null'), +('27094', 'null'), +('27095', 'null'), +('27096', 'null'), +('27097', 'null'), +('27098', 'null'), +('27099', 'null'), +('27100', 'null'), +('27101', 'null'), +('27102', 'null'), +('27103', 'null'), +('27104', 'null'), +('27105', 'null'), +('27106', 'null'), +('27107', 'null'), +('27108', 'null'), +('27109', 'null'), +('27110', 'null'), +('27111', 'null'), +('27112', 'null'), +('27113', 'null'), +('27114', 'null'), +('27115', 'null'), +('27116', 'null'), +('27117', 'null'), +('27118', 'null'), +('27119', 'null'), +('27120', 'null'), +('27121', 'null'), +('27122', 'null'), +('27123', 'null'), +('27124', 'null'), +('27125', 'null'), +('27126', 'Vine'), +('27127', 'null'), +('27128', 'Vine'), +('27129', 'Vine'), +('27130', 'Vine'), +('27131', 'null'), +('27132', 'Vine'), +('27133', 'Vine'), +('27134', 'null'), +('27135', 'null'), +('27136', 'null'), +('27137', 'null'), +('27138', 'null'), +('27139', 'null'), +('27140', 'null'), +('27141', 'null'), +('27142', 'null'), +('27143', 'null'), +('27144', 'null'), +('27145', 'null'), +('27146', 'null'), +('27147', 'null'), +('27148', 'null'), +('27149', 'null'), +('27150', 'null'), +('27151', 'Vine'), +('27152', 'Vine'), +('27153', 'null'), +('27154', 'null'), +('27155', 'null'), +('27156', 'null'), +('27157', 'null'), +('27158', 'null'), +('27159', 'null'), +('27160', 'null'), +('27161', 'null'), +('27162', 'null'), +('27163', 'null'), +('27164', 'null'), +('27165', 'null'), +('27166', 'null'), +('27167', 'null'), +('27168', 'null'), +('27169', 'null'), +('27170', 'null'), +('27171', 'null'), +('27172', 'null'), +('27173', 'Vines'), +('27174', 'Cut vines'), +('27175', 'Vines'), +('27176', 'Vines'), +('27177', 'null'), +('27178', 'null'), +('27179', 'null'), +('27180', 'Vine'), +('27181', 'Vine'), +('27182', 'Vine'), +('27183', 'null'), +('27184', 'null'), +('27185', 'Vine'), +('27186', 'Hole'), +('27187', 'Wasp nest'), +('27188', 'null'), +('27189', 'null'), +('27190', 'null'), +('27191', 'null'), +('27192', 'null'), +('27193', 'null'), +('27194', 'null'), +('27195', 'null'), +('27196', 'null'), +('27197', 'null'), +('27198', 'null'), +('27199', 'null'), +('27200', 'null'), +('27201', 'Bush'), +('27202', 'null'), +('27203', 'null'), +('27204', 'null'), +('27205', 'null'), +('27206', 'null'), +('27207', 'null'), +('27208', 'null'), +('27209', 'null'), +('27210', 'null'), +('27211', 'Ramp'), +('27212', 'Ramp'), +('27213', 'null'), +('27214', 'null'), +('27215', 'null'), +('27216', 'null'), +('27217', 'null'), +('27218', 'Slide'), +('27219', 'null'), +('27220', 'null'), +('27221', 'null'), +('27222', 'null'), +('27223', 'null'), +('27224', 'null'), +('27225', 'null'), +('27226', 'null'), +('27227', 'null'), +('27228', 'null'), +('27229', 'null'), +('27230', 'null'), +('27231', 'null'), +('27232', 'null'), +('27233', 'null'), +('27234', 'null'), +('27235', 'null'), +('27236', 'null'), +('27237', 'null'), +('27238', 'null'), +('27239', 'null'), +('27240', 'Pitfall'), +('27241', 'Torch'), +('27242', 'Staircase'), +('27243', 'Staircase'), +('27244', 'Chair'), +('27245', 'Table'), +('27246', 'Cabinets'), +('27247', 'Cabinets'), +('27248', 'Bookcases'), +('27249', 'Bookcases'), +('27250', 'Bookcases'), +('27251', 'Fireplace'), +('27252', 'Sofa'), +('27253', 'Fishtank'), +('27254', 'Dark portal'), +('27255', 'Grim chest'), +('27256', 'Grim chest'), +('27257', 'Skull'), +('27258', 'Skeleton portrait'), +('27259', 'Zombie portrait'), +('27260', 'Shelves'), +('27261', 'Shelves'), +('27262', 'Sullen tree'), +('27263', 'Bleak tree'), +('27264', 'Foul tree'), +('27265', 'Wretched tree'), +('27266', 'Spider web'), +('27267', 'null'), +('27268', 'null'), +('27269', 'null'), +('27270', 'null'), +('27271', 'null'), +('27272', 'null'), +('27273', 'null'), +('27274', 'Gargoyle'), +('27275', 'Gargoyle'), +('27276', 'Doorway'), +('27277', 'null'), +('27278', 'Springboard'), +('27279', 'null'), +('27280', 'Worm'), +('27281', 'Cursed tree'), +('27282', 'Doorway'), +('27283', 'Grave'), +('27284', 'Grave'), +('27285', 'Grave'), +('27286', 'Grave'), +('27287', 'Grave'), +('27288', 'Grave'), +('27289', 'null'), +('27290', 'null'), +('27291', 'null'), +('27292', 'null'), +('27293', 'null'), +('27294', 'Tendrils'), +('27295', 'Tendrils'), +('27296', 'Tendrils'), +('27297', 'Fire'), +('27298', 'null'), +('27299', 'null'), +('27300', 'null'), +('27301', 'null'), +('27302', 'null'), +('27303', 'null'), +('27304', 'null'), +('27305', 'Crate'), +('27306', 'Altar'), +('27307', 'Altar'), +('27308', 'Altar'), +('27309', 'Altar'), +('27310', 'null'), +('27311', 'null'), +('27312', 'null'), +('27313', 'null'), +('27314', 'Stone pew'), +('27315', 'Stool'), +('27316', 'null'), +('27317', 'null'), +('27318', 'null'), +('27319', 'null'), +('27320', 'Machine'), +('27321', 'Rock wall'), +('27322', 'null'), +('27323', 'null'), +('27324', 'null'), +('27325', 'Fairy ring'), +('27326', 'null'), +('27327', 'null'), +('27328', 'null'), +('27329', 'Fairy portal'), +('27330', 'Fairy portal'), +('27331', 'null'), +('27332', 'Door'), +('27333', 'Door'), +('27334', 'Altar'), +('27335', 'null'), +('27336', 'null'), +('27337', 'null'), +('27338', 'Altar'), +('27339', 'Altar'), +('27340', 'Archway'), +('27341', 'Mushroom tree'), +('27342', 'Mushroom tree'), +('27343', 'Mushroom tree'), +('27344', 'Plant'), +('27345', 'Plants'), +('27346', 'Plant'), +('27347', 'Plant'), +('27348', 'Plant'), +('27349', 'null'), +('27350', 'null'), +('27351', 'null'), +('27352', 'null'), +('27353', 'null'), +('27354', 'Tent'), +('27355', 'Plant'), +('27356', 'Plant'), +('27357', 'Plant'), +('27358', 'null'), +('27359', 'null'), +('27360', 'null'), +('27361', 'null'), +('27362', 'null'), +('27363', 'null'), +('27364', 'null'), +('27365', 'null'), +('27366', 'null'), +('27367', 'null'), +('27368', 'null'), +('27369', 'null'), +('27370', 'null'), +('27371', 'null'), +('27372', 'null'), +('27373', 'null'), +('27374', 'null'), +('27375', 'null'), +('27376', 'null'), +('27377', 'null'), +('27378', 'null'), +('27379', 'null'), +('27380', 'null'), +('27381', 'null'), +('27382', 'null'), +('27383', 'null'), +('27384', 'null'), +('27385', 'null'), +('27386', 'null'), +('27387', 'null'), +('27388', 'null'), +('27389', 'null'), +('27390', 'null'), +('27391', 'null'), +('27392', 'null'), +('27393', 'null'), +('27394', 'null'), +('27395', 'null'), +('27396', 'null'), +('27397', 'null'), +('27398', 'null'), +('27399', 'null'), +('27400', 'null'), +('27401', 'null'), +('27402', 'null'), +('27403', 'null'), +('27404', 'null'), +('27405', 'null'), +('27406', 'null'), +('27407', 'null'), +('27408', 'null'), +('27409', 'null'), +('27410', 'null'), +('27411', 'null'), +('27412', 'null'), +('27413', 'null'), +('27414', 'null'), +('27415', 'null'), +('27416', 'null'), +('27417', 'null'), +('27418', 'null'), +('27419', 'null'), +('27420', 'null'), +('27421', 'null'), +('27422', 'null'), +('27423', 'null'), +('27424', 'null'), +('27425', 'null'), +('27426', 'null'), +('27427', 'null'), +('27428', 'null'), +('27429', 'null'), +('27430', 'null'), +('27431', 'null'), +('27432', 'null'), +('27433', 'null'), +('27434', 'null'), +('27435', 'null'), +('27436', 'null'), +('27437', 'null'), +('27438', 'null'), +('27439', 'null'), +('27440', 'null'), +('27441', 'null'), +('27442', 'null'), +('27443', 'null'), +('27444', 'null'), +('27445', 'null'), +('27446', 'null'), +('27447', 'null'), +('27448', 'null'), +('27449', 'null'), +('27450', 'null'), +('27451', 'null'), +('27452', 'null'), +('27453', 'null'), +('27454', 'null'), +('27455', 'null'), +('27456', 'null'), +('27457', 'null'), +('27458', 'null'), +('27459', 'null'), +('27460', 'null'), +('27461', 'null'), +('27462', 'null'), +('27463', 'null'), +('27464', 'null'), +('27465', 'null'), +('27466', 'null'), +('27467', 'null'), +('27468', 'null'), +('27469', 'null'), +('27470', 'null'), +('27471', 'null'), +('27472', 'null'), +('27473', 'null'), +('27474', 'null'), +('27475', 'null'), +('27476', 'null'), +('27477', 'null'), +('27478', 'null'), +('27479', 'null'), +('27480', 'null'), +('27481', 'null'), +('27482', 'null'), +('27483', 'null'), +('27484', 'null'), +('27485', 'null'), +('27486', 'null'), +('27487', 'null'), +('27488', 'null'), +('27489', 'null'), +('27490', 'null'), +('27491', 'null'), +('27492', 'null'), +('27493', 'null'), +('27494', 'null'), +('27495', 'null'), +('27496', 'null'), +('27497', 'null'), +('27498', 'null'), +('27499', 'null'), +('27500', 'null'), +('27501', 'null'), +('27502', 'null'), +('27503', 'null'), +('27504', 'null'), +('27505', 'null'), +('27506', 'null'), +('27507', 'null'), +('27508', 'null'), +('27509', 'null'), +('27510', 'null'), +('27511', 'null'), +('27512', 'null'), +('27513', 'null'), +('27514', 'null'), +('27515', 'null'), +('27516', 'null'), +('27517', 'null'), +('27518', 'null'), +('27519', 'null'), +('27520', 'null'), +('27521', 'null'), +('27522', 'null'), +('27523', 'null'), +('27524', 'null'), +('27525', 'Prison door'), +('27526', 'Prison door'), +('27527', 'Candle'), +('27528', 'null'), +('27529', 'Crater'), +('27530', 'Crater'), +('27531', 'Crater'), +('27532', 'null'), +('27533', 'null'), +('27534', 'null'), +('27535', 'null'), +('27536', 'null'), +('27537', 'null'), +('27538', 'null'), +('27539', 'null'), +('27540', 'null'), +('27541', 'null'), +('27542', 'null'), +('27543', 'Stairs'), +('27544', 'null'), +('27545', 'null'), +('27546', 'null'), +('27547', 'null'), +('27548', 'null'), +('27549', 'null'), +('27550', 'null'), +('27551', 'null'), +('27552', 'null'), +('27553', 'null'), +('27554', 'null'), +('27555', 'null'), +('27556', 'null'), +('27557', 'null'), +('27558', 'null'), +('27559', 'null'), +('27560', 'Gate'), +('27561', 'Goblin door'), +('27562', 'null'), +('27563', 'null'), +('27564', 'null'), +('27565', 'null'), +('27566', 'null'), +('27567', 'Portal'), +('27568', 'Portal'), +('27569', 'null'), +('27570', 'null'), +('27571', 'null'), +('27572', 'null'), +('27573', 'null'), +('27574', 'null'), +('27575', 'null'), +('27576', 'null'), +('27577', 'null'), +('27578', 'null'), +('27579', 'null'), +('27580', 'null'), +('27581', 'null'), +('27582', 'null'), +('27583', 'null'), +('27584', 'null'), +('27585', 'null'), +('27586', 'null'), +('27587', 'null'), +('27588', 'null'), +('27589', 'null'), +('27590', 'null'), +('27591', 'null'), +('27592', 'null'), +('27593', 'null'), +('27594', 'null'), +('27595', 'null'), +('27596', 'null'), +('27597', 'null'), +('27598', 'null'), +('27599', 'null'), +('27600', 'null'), +('27601', 'null'), +('27602', 'null'), +('27603', 'null'), +('27604', 'null'), +('27605', 'null'), +('27606', 'null'), +('27607', 'null'), +('27608', 'null'), +('27609', 'null'), +('27610', 'null'), +('27611', 'null'), +('27612', 'null'), +('27613', 'null'), +('27614', 'null'), +('27615', 'Oozing rock'), +('27616', 'null'), +('27617', 'null'), +('27618', 'null'), +('27619', 'null'), +('27620', 'null'), +('27621', 'null'), +('27622', 'null'), +('27623', 'null'), +('27624', 'null'), +('27625', 'null'), +('27626', 'null'), +('27627', 'null'), +('27628', 'null'), +('27629', 'null'), +('27630', 'null'), +('27631', 'null'), +('27632', 'null'), +('27633', 'null'), +('27634', 'null'), +('27635', 'null'), +('27636', 'null'), +('27637', 'null'), +('27638', 'null'), +('27639', 'null'), +('27640', 'null'), +('27641', 'null'), +('27642', 'null'), +('27643', 'null'), +('27644', 'null'), +('27645', 'null'), +('27646', 'null'), +('27647', 'null'), +('27648', 'null'), +('27649', 'null'), +('27650', 'null'), +('27651', 'null'), +('27652', 'null'), +('27653', 'null'), +('27654', 'Strange box'), +('27655', 'Strange box'), +('27656', 'Strange box'), +('27657', 'null'), +('27658', 'null'), +('27659', 'null'), +('27660', 'null'), +('27661', 'Altar'), +('27662', 'Bank chest'), +('27663', 'Bank chest'), +('27664', 'null'), +('27665', 'null'), +('27666', 'null'), +('27667', 'Bookcase'), +('27668', 'Tournament exit'), +('27669', 'Tournament entrance'), +('27670', 'Roof'), +('27671', 'null'), +('27672', 'Stool'), +('27673', 'Hospital bench'), +('27674', 'null'), +('27675', 'Door'), +('27676', 'Drawers'), +('27677', 'Drawers'), +('27678', 'Drawers'), +('27679', 'Drawers'), +('27680', 'Upcoming tournament rules'), +('27681', 'Upcoming tournament rules'), +('27682', 'Upcoming tournament rules'), +('27683', 'Upcoming tournament rules'), +('27684', 'Ladder'), +('27685', 'Ladder'), +('27686', 'Trapdoor'), +('27687', 'Entrance'), +('27688', 'Entrance'), +('27689', 'Entrance'), +('27690', 'Entrance'), +('27691', 'Entrance'), +('27692', 'Entrance'), +('27693', 'Wall'), +('27694', 'Wall'), +('27695', 'Wall'), +('27696', 'Wall'), +('27697', 'Wall'), +('27698', 'Tournament scoreboard'), +('27699', 'KO Board - Arena 2'), +('27700', 'KO Board - Arena 2'), +('27701', 'KO Board - Arena 3'), +('27702', 'KO Board - Arena 4'), +('27703', 'KO Board - Arena 5'), +('27704', 'KO Board - Arena 6'), +('27705', 'null'), +('27706', 'Crates'), +('27707', 'Crates'), +('27708', 'Crate'), +('27709', 'Barrel'), +('27710', 'Barrel'), +('27711', 'Barrel'), +('27712', 'Barrel'), +('27713', 'Barrel of swords'), +('27714', 'Bench'), +('27715', 'Operation lights'), +('27716', 'Drip'), +('27717', 'Hospital bed'), +('27718', 'Hospital bed'), +('27719', 'Hospital bed'), +('27720', 'Shelves'), +('27721', 'Cabinet'), +('27722', 'Shelves'), +('27723', 'Shelves'), +('27724', 'Shelves'), +('27725', 'Shelves'), +('27726', 'Shelves'), +('27727', 'Boxes'), +('27728', 'Boxes'), +('27729', 'Boxes'), +('27730', 'Crate'), +('27731', 'Hospital chair'), +('27732', 'Hospital chair'), +('27733', 'null'), +('27734', 'null'), +('27735', 'null'), +('27736', 'null'), +('27737', 'null'), +('27738', 'null'), +('27739', 'null'), +('27740', 'null'), +('27741', 'null'), +('27742', 'null'), +('27743', 'null'), +('27744', 'null'), +('27745', 'null'), +('27746', 'null'), +('27747', 'null'), +('27748', 'null'), +('27749', 'null'), +('27750', 'null'), +('27751', 'null'), +('27752', 'null'), +('27753', 'null'), +('27754', 'null'), +('27755', 'null'), +('27756', 'null'), +('27757', 'null'), +('27758', 'null'), +('27759', 'null'), +('27760', 'null'), +('27761', 'null'), +('27762', 'null'), +('27763', 'null'), +('27764', 'null'), +('27765', 'null'), +('27766', 'null'), +('27767', 'null'), +('27768', 'null'), +('27769', 'null'), +('27770', 'null'), +('27771', 'null'), +('27772', 'null'), +('27773', 'null'), +('27774', 'null'), +('27775', 'null'), +('27776', 'null'), +('27777', 'null'), +('27778', 'null'), +('27779', 'null'), +('27780', 'null'), +('27781', 'null'), +('27782', 'null'), +('27783', 'null'), +('27784', 'null'), +('27785', 'null'), +('27786', 'null'), +('27787', 'null'), +('27788', 'null'), +('27789', 'null'), +('27790', 'null'), +('27791', 'null'), +('27792', 'null'), +('27793', 'null'), +('27794', 'null'), +('27795', 'null'), +('27796', 'null'), +('27797', 'null'), +('27798', 'null'), +('27799', 'null'), +('27800', 'null'), +('27801', 'null'), +('27802', 'null'), +('27803', 'null'), +('27804', 'null'), +('27805', 'null'), +('27806', 'null'), +('27807', 'null'), +('27808', 'null'), +('27809', 'null'), +('27810', 'null'), +('27811', 'null'), +('27812', 'null'), +('27813', 'null'), +('27814', 'null'), +('27815', 'null'), +('27816', 'null'), +('27817', 'null'), +('27818', 'null'), +('27819', 'null'), +('27820', 'null'), +('27821', 'null'), +('27822', 'null'), +('27823', 'null'), +('27824', 'null'), +('27825', 'null'), +('27826', 'null'), +('27827', 'null'), +('27828', 'null'), +('27829', 'null'), +('27830', 'null'), +('27831', 'null'), +('27832', 'null'), +('27833', 'null'), +('27834', 'null'), +('27835', 'null'), +('27836', 'null'), +('27837', 'null'), +('27838', 'null'), +('27839', 'null'), +('27840', 'null'), +('27841', 'null'), +('27842', 'null'), +('27843', 'null'), +('27844', 'null'), +('27845', 'Gate'), +('27846', 'Gate'), +('27847', 'Gate'), +('27848', 'Gate'), +('27849', 'Chair'), +('27850', 'Table'), +('27851', 'Gate'), +('27852', 'Gate'), +('27853', 'Gate'), +('27854', 'Gate'), +('27855', 'null'), +('27856', 'null'), +('27857', 'null'), +('27858', 'null'), +('27859', 'null'), +('27860', 'null'), +('27861', 'null'), +('27862', 'null'), +('27863', 'null'), +('27864', 'null'), +('27865', 'null'), +('27866', 'null'), +('27867', 'null'), +('27868', 'null'), +('27869', 'null'), +('27870', 'null'), +('27871', 'null'), +('27872', 'null'), +('27873', 'null'), +('27874', 'null'), +('27875', 'null'), +('27876', 'null'), +('27877', 'null'), +('27878', 'null'), +('27879', 'null'), +('27880', 'null'), +('27881', 'null'), +('27882', 'null'), +('27883', 'null'), +('27884', 'null'), +('27885', 'null'), +('27886', 'null'), +('27887', 'null'), +('27888', 'null'), +('27889', 'null'), +('27890', 'null'), +('27891', 'Torch'), +('27892', 'Operation lights'), +('27893', 'Operation lights'), +('27894', 'Operation lights'), +('27895', 'Operation side table'), +('27896', 'null'), +('27897', 'null'), +('27898', 'null'), +('27899', 'null'), +('27900', 'null'), +('27901', 'null'), +('27902', 'null'), +('27903', 'Operation side table'), +('27904', 'Plant'), +('27905', 'Plant'), +('27906', 'null'), +('27907', 'null'), +('27908', 'null'), +('27909', 'null'), +('27910', 'null'), +('27911', 'null'), +('27912', 'null'), +('27913', 'null'), +('27914', 'null'), +('27915', 'null'), +('27916', 'null'), +('27917', 'null'), +('27918', 'null'), +('27919', 'null'), +('27920', 'null'), +('27921', 'null'), +('27922', 'null'), +('27923', 'null'), +('27924', 'null'), +('27925', 'null'), +('27926', 'null'), +('27927', 'null'), +('27928', 'null'), +('27929', 'null'), +('27930', 'null'), +('27931', 'null'), +('27932', 'null'), +('27933', 'null'), +('27934', 'null'), +('27935', 'null'), +('27936', 'null'), +('27937', 'null'), +('27938', 'null'), +('27939', 'null'), +('27940', 'null'), +('27941', 'null'), +('27942', 'null'), +('27943', 'null'), +('27944', 'null'), +('27945', 'null'), +('27946', 'null'), +('27947', 'null'), +('27948', 'null'), +('27949', 'null'), +('27950', 'null'), +('27951', 'null'), +('27952', 'null'), +('27953', 'null'), +('27954', 'null'), +('27955', 'null'), +('27956', 'null'), +('27957', 'null'), +('27958', 'null'), +('27959', 'null'), +('27960', 'null'), +('27961', 'null'), +('27962', 'null'), +('27963', 'null'), +('27964', 'null'), +('27965', 'null'), +('27966', 'null'), +('27967', 'null'), +('27968', 'null'), +('27969', 'null'), +('27970', 'null'), +('27971', 'null'), +('27972', 'null'), +('27973', 'null'), +('27974', 'null'), +('27975', 'null'), +('27976', 'null'), +('27977', 'null'), +('27978', 'null'), +('27979', 'null'), +('27980', 'null'), +('27981', 'null'), +('27982', 'null'), +('27983', 'Plant'), +('27984', 'null'), +('27985', 'null'), +('27986', 'null'), +('27987', 'null'), +('27988', 'Door'), +('27989', 'Door'), +('27990', 'null'), +('27991', 'null'), +('27992', 'null'), +('27993', 'null'), +('27994', 'null'), +('27995', 'null'), +('27996', 'null'), +('27997', 'null'), +('27998', 'null'), +('27999', 'null'), +('28000', 'null'), +('28001', 'null'), +('28002', 'null'), +('28003', 'null'), +('28004', 'null'), +('28005', 'null'), +('28006', 'null'), +('28007', 'null'), +('28008', 'null'), +('28009', 'null'), +('28010', 'null'), +('28011', 'null'), +('28012', 'null'), +('28013', 'null'), +('28014', 'null'), +('28015', 'null'), +('28016', 'null'), +('28017', 'null'), +('28018', 'null'), +('28019', 'null'), +('28020', 'null'), +('28021', 'null'), +('28022', 'null'), +('28023', 'null'), +('28024', 'null'), +('28025', 'null'), +('28026', 'null'), +('28027', 'null'), +('28028', 'null'), +('28029', 'null'), +('28030', 'null'), +('28031', 'null'), +('28032', 'null'), +('28033', 'null'), +('28034', 'null'), +('28035', 'null'), +('28036', 'null'), +('28037', 'null'), +('28038', 'null'), +('28039', 'null'), +('28040', 'null'), +('28041', 'null'), +('28042', 'null'), +('28043', 'null'), +('28044', 'null'), +('28045', 'null'), +('28046', 'null'), +('28047', 'null'), +('28048', 'null'), +('28049', 'null'), +('28050', 'null'), +('28051', 'null'), +('28052', 'null'), +('28053', 'null'), +('28054', 'null'), +('28055', 'null'), +('28056', 'null'), +('28057', 'null'), +('28058', 'null'), +('28059', 'null'), +('28060', 'null'), +('28061', 'null'), +('28062', 'null'), +('28063', 'null'), +('28064', 'null'), +('28065', 'null'), +('28066', 'null'), +('28067', 'null'), +('28068', 'null'), +('28069', 'null'), +('28070', 'null'), +('28071', 'null'), +('28072', 'null'), +('28073', 'null'), +('28074', 'null'), +('28075', 'null'), +('28076', 'null'), +('28077', 'null'), +('28078', 'null'), +('28079', 'null'), +('28080', 'null'), +('28081', 'null'), +('28082', 'null'), +('28083', 'null'), +('28084', 'null'), +('28085', 'null'), +('28086', 'null'), +('28087', 'null'), +('28088', 'null'), +('28089', 'Desk'), +('28090', 'null'), +('28091', 'null'), +('28092', 'null'), +('28093', 'Grand Exchange pillar'), +('28094', 'Hidden trapdoor'), +('28095', 'Upcoming tournament rules'), +('28096', 'null'), +('28097', 'null'), +('28098', 'null'), +('28099', 'null'), +('28100', 'null'), +('28101', 'null'), +('28102', 'null'), +('28103', 'null'), +('28104', 'null'), +('28105', 'null'), +('28106', 'null'), +('28107', 'null'), +('28108', 'null'), +('28109', 'null'), +('28110', 'Cave'), +('28111', 'null'), +('28112', 'null'), +('28113', 'null'), +('28114', 'null'), +('28115', 'Rogues' scoreboard'), +('28116', 'Hunters' scoreboard'), +('28117', 'null'), +('28118', 'null'), +('28119', 'Low-level crater'), +('28120', 'Med-level crater'), +('28121', 'High-level crater'), +('28122', 'Cave'), +('28123', 'null'), +('28124', 'null'), +('28125', 'null'), +('28126', 'null'), +('28127', 'null'), +('28128', 'null'), +('28129', 'null'), +('28130', 'null'), +('28131', 'null'), +('28132', 'null'), +('28133', 'null'), +('28134', 'null'), +('28135', 'null'), +('28136', 'null'), +('28137', 'null'), +('28138', 'null'), +('28139', 'Tomato barrel'), +('28140', 'Portal'), +('28141', 'null'), +('28142', 'null'), +('28143', 'null'), +('28144', 'null'), +('28145', 'null'), +('28146', 'null'), +('28147', 'null'), +('28148', 'null'), +('28149', 'null'), +('28150', 'null'), +('28151', 'null'), +('28152', 'null'), +('28153', 'null'), +('28154', 'null'), +('28155', 'null'), +('28156', 'null'), +('28157', 'null'), +('28158', 'null'), +('28159', 'null'), +('28160', 'null'), +('28161', 'null'), +('28162', 'null'), +('28163', 'null'), +('28164', 'null'), +('28165', 'null'), +('28166', 'null'), +('28167', 'null'), +('28168', 'null'), +('28169', 'null'), +('28170', 'null'), +('28171', 'null'), +('28172', 'null'), +('28173', 'null'), +('28174', 'null'), +('28175', 'null'), +('28176', 'null'), +('28177', 'null'), +('28178', 'null'), +('28179', 'null'), +('28180', 'null'), +('28181', 'null'), +('28182', 'null'), +('28183', 'null'), +('28184', 'null'), +('28185', 'null'), +('28186', 'null'), +('28187', 'null'), +('28188', 'null'), +('28189', 'null'), +('28190', 'null'), +('28191', 'null'), +('28192', 'null'), +('28193', 'null'), +('28194', 'Viewing orb'), +('28195', 'null'), +('28196', 'null'), +('28197', 'null'), +('28198', 'null'), +('28199', 'Table'), +('28200', 'Stool'), +('28201', 'Crate'), +('28202', 'Barrel'), +('28203', 'Pile of crates'), +('28204', 'Torch'), +('28205', 'Banner'), +('28206', 'Banner'), +('28207', 'null'), +('28208', 'null'), +('28209', 'Low-level orb'), +('28210', 'Mid-level orb'), +('28211', 'High-level orb'), +('28212', 'null'), +('28213', 'Portal'), +('28214', 'Portal'), +('28215', 'null'), +('28216', 'null'), +('28217', 'null'), +('28218', 'null'), +('28219', 'null'), +('28220', 'Lava crater'), +('28221', 'null'), +('28222', 'null'), +('28223', 'null'), +('28224', 'null'), +('28225', 'null'), +('28226', 'null'), +('28227', 'null'), +('28228', 'null'), +('28229', 'null'), +('28230', 'null'), +('28231', 'null'), +('28232', 'null'), +('28233', 'null'), +('28234', 'null'), +('28235', 'null'), +('28236', 'null'), +('28237', 'null'), +('28238', 'null'), +('28239', 'null'), +('28240', 'null'), +('28241', 'null'), +('28242', 'null'), +('28243', 'null'), +('28244', 'null'), +('28245', 'null'), +('28246', 'null'), +('28247', 'null'), +('28248', 'null'), +('28249', 'null'), +('28250', 'null'), +('28251', 'null'), +('28252', 'null'), +('28253', 'null'), +('28254', 'null'), +('28255', 'null'), +('28256', 'null'), +('28257', 'null'), +('28258', 'null'), +('28259', 'null'), +('28260', 'null'), +('28261', 'null'), +('28262', 'Table'), +('28263', 'null'), +('28264', 'null'), +('28265', 'null'), +('28266', 'Snowman'), +('28267', 'Snowman'), +('28268', 'Snowman'), +('28269', 'Snowman'), +('28270', 'Snowman'), +('28271', 'Snowman'), +('28272', 'Snowman'), +('28273', 'Snowman'), +('28274', 'Snowman'), +('28275', 'Snowman'), +('28276', 'Snowman'), +('28277', 'Snowman'), +('28278', 'Snowman'), +('28279', 'Snowman'), +('28280', 'Snowman'), +('28281', 'Snowman'), +('28282', 'Snowman'), +('28283', 'Snowman'), +('28284', 'Snowman'), +('28285', 'Snowman'), +('28286', 'Snowman'), +('28287', 'Snowman'), +('28288', 'Snowman'), +('28289', 'Snowman'), +('28290', 'Snowman'), +('28291', 'Snowman'), +('28292', 'Snowman'), +('28293', 'Snowman'), +('28294', 'Snowman'), +('28295', 'Snowman'), +('28296', 'Snow'), +('28297', 'Snow'), +('28298', 'Sleigh'), +('28299', 'Sleigh'), +('28300', 'null'), +('28301', 'null'), +('28302', 'null'), +('28303', 'null'), +('28304', 'null'), +('28305', 'null'), +('28306', 'null'), +('28307', 'null'), +('28308', 'null'), +('28309', 'null'), +('28310', 'null'), +('28311', 'null'), +('28312', 'null'), +('28313', 'null'), +('28314', 'null'), +('28315', 'null'), +('28316', 'Throne'), +('28317', 'Food trough'), +('28318', 'Stags'), +('28319', 'Stags'), +('28320', 'null'), +('28321', 'null'), +('28322', 'Zip line'), +('28323', 'null'), +('28324', 'null'), +('28325', 'null'), +('28326', 'Door'), +('28327', 'null'), +('28328', 'Jar'), +('28329', 'null'), +('28330', 'null'), +('28331', 'null'), +('28332', 'null'), +('28333', 'Shelves'), +('28334', 'null'), +('28335', 'Birdcage'), +('28336', 'Incubator'), +('28337', 'Cat basket'), +('28338', 'Dog basket'), +('28339', 'Dog baskets'), +('28340', 'Fish tank'), +('28341', 'Pen'), +('28342', 'null'), +('28343', 'Hay'), +('28344', 'Scale'), +('28345', 'Collars'), +('28346', 'null'), +('28347', 'null'), +('28348', 'null'), +('28349', 'null'), +('28350', 'null'), +('28351', 'Pet shop'), +('28352', 'null'), +('28353', 'Shelves'), +('28354', 'Shelves'), +('28355', 'Shelves'), +('28356', 'Cat'), +('28357', 'Counter'), +('28358', 'Counter'), +('28359', 'Incubator'), +('28360', 'Ball'), +('28361', 'Pillow'), +('28362', 'null'), +('28363', 'Counter'), +('28364', 'Counter'), +('28365', 'null'), +('28366', 'null'), +('28367', 'null'), +('28368', 'null'), +('28369', 'null'), +('28370', 'Spring'), +('28371', 'null'), +('28372', 'null'), +('28373', 'null'), +('28374', 'null'), +('28375', 'null'), +('28376', 'Sealed door'), +('28377', 'Sealed door'), +('28378', 'Sealed door'), +('28379', 'Sealed door'), +('28380', 'Sealed door'), +('28381', 'null'), +('28382', 'null'), +('28383', 'null'), +('28384', 'null'), +('28385', 'null'), +('28386', 'Ladder'), +('28387', 'null'), +('28388', 'Ladder'), +('28389', 'null'), +('28390', 'null'), +('28391', 'null'), +('28392', 'null'), +('28393', 'null'), +('28394', 'null'), +('28395', 'null'), +('28396', 'null'), +('28397', 'null'), +('28398', 'null'), +('28399', 'null'), +('28400', 'null'), +('28401', 'Exit'), +('28402', 'null'), +('28403', 'null'), +('28404', 'null'), +('28405', 'null'), +('28406', 'null'), +('28407', 'Door'), +('28408', 'Door'), +('28409', 'Door'), +('28410', 'Door'), +('28411', 'null'), +('28412', 'null'), +('28413', 'null'), +('28414', 'null'), +('28415', 'null'), +('28416', 'null'), +('28417', 'null'), +('28418', 'Monument'), +('28419', 'Statue of Scabaras'), +('28420', 'Statue'), +('28421', 'Crate'), +('28422', 'null'), +('28423', 'null'), +('28424', 'null'), +('28425', 'null'), +('28426', 'null'), +('28427', 'null'), +('28428', 'Stairs'), +('28429', 'null'), +('28430', 'Stairs'), +('28431', 'Stairs'), +('28432', 'null'), +('28433', 'Furnace'), +('28434', 'Furnace'), +('28435', 'Lever'), +('28436', 'Lever'), +('28437', 'Lever'), +('28438', 'Lever'), +('28439', 'Mysterious mechanism'), +('28440', 'null'), +('28441', 'Pipe'), +('28442', 'Pipe'), +('28443', 'Greasy pipe'), +('28444', 'Ladder'), +('28445', 'Greasy pipe'), +('28446', 'null'), +('28447', 'null'), +('28448', 'null'), +('28449', 'null'), +('28450', 'Ancient pillar'), +('28451', 'Broken pillar'), +('28452', 'Incomplete pillar'), +('28453', 'Vandalised pillar'), +('28454', 'Swamp tree'), +('28455', 'Slimy tree'), +('28456', 'null'), +('28457', 'null'), +('28458', 'null'), +('28459', 'null'), +('28460', 'null'), +('28461', 'null'), +('28462', 'null'), +('28463', 'null'), +('28464', 'null'), +('28465', 'null'), +('28466', 'null'), +('28467', 'null'), +('28468', 'null'), +('28469', 'null'), +('28470', 'null'), +('28471', 'null'), +('28472', 'Reeds'), +('28473', 'Reeds'), +('28474', 'Reeds'), +('28475', 'Storage box'), +('28476', 'Storage box'), +('28477', 'Storage box'), +('28478', 'Storage box'), +('28479', 'null'), +('28480', 'Scratchy writing'), +('28481', 'Stairs down'), +('28482', 'null'), +('28483', 'null'), +('28484', 'null'), +('28485', 'null'), +('28486', 'Warm campfire'), +('28487', 'Rock'), +('28488', 'Rope'), +('28489', 'Rock'), +('28490', 'Rope'), +('28491', 'null'), +('28492', 'Ladder'), +('28493', 'null'), +('28494', 'null'), +('28495', 'null'), +('28496', 'Dung'), +('28497', 'Dung'), +('28498', 'Dung'), +('28499', 'Dung'), +('28500', 'null'), +('28501', 'null'), +('28502', 'Chest'), +('28503', 'Chest'), +('28504', 'Chair'), +('28505', 'Broken chair'), +('28506', 'Broken chair'), +('28507', 'Broken chair'), +('28508', 'Table'), +('28509', 'Broken table'), +('28510', 'Broken table'), +('28511', 'Broken table'), +('28512', 'Low wall'), +('28513', 'null'), +('28514', 'Gate'), +('28515', 'Fallen pillar'), +('28516', 'Fallen pillar'), +('28517', 'null'), +('28518', 'Gate'), +('28519', 'Power indicator'), +('28520', 'Power indicator'), +('28521', 'Power indicator'), +('28522', 'Power indicator'), +('28523', 'Power indicator'), +('28524', 'Power indicator'), +('28525', 'Floor'), +('28526', 'Odd markings.'), +('28527', 'Spear trap'), +('28528', 'null'), +('28529', 'null'), +('28530', 'null'), +('28531', 'null'), +('28532', 'Steam'), +('28533', 'Steam'), +('28534', 'null'), +('28535', 'null'), +('28536', 'null'), +('28537', 'null'), +('28538', 'null'), +('28539', 'null'), +('28540', 'null'), +('28541', 'null'), +('28542', 'null'), +('28543', 'null'), +('28544', 'null'), +('28545', 'null'), +('28546', 'null'), +('28547', 'null'), +('28548', 'null'), +('28549', 'null'), +('28550', 'null'), +('28551', 'Evil turnip patch'), +('28552', 'Evil turnip patch'), +('28553', 'Evil turnip patch'), +('28554', 'Evil turnip patch'), +('28555', 'Evil turnip patch'), +('28556', 'Evil turnip patch'), +('28557', 'Shaking box'), +('28558', 'Shaking box'), +('28559', 'Net trap'), +('28560', 'Net trap'), +('28561', 'Net trap'), +('28562', 'Net trap'), +('28563', 'Young tree'), +('28564', 'Young tree'), +('28565', 'Young tree'), +('28566', 'Net trap'), +('28567', 'Shaking box'), +('28568', 'Box trap'), +('28569', 'Box trap'), +('28570', 'Box trap'), +('28571', 'Box trap'), +('28572', 'Ladder'), +('28573', 'null'), +('28574', 'null'), +('28575', 'null'), +('28576', 'null'), +('28577', 'null'), +('28578', 'null'), +('28579', 'null'), +('28580', 'null'), +('28581', 'null'), +('28582', 'null'), +('28583', 'null'), +('28584', 'null'), +('28585', 'null'), +('28586', 'Dead body'), +('28587', 'null'), +('28588', 'Door'), +('28589', 'Door'), +('28590', 'Door'), +('28591', 'null'), +('28592', 'null'), +('28593', 'null'), +('28594', 'null'), +('28595', 'null'), +('28596', 'null'), +('28597', 'null'), +('28598', 'null'), +('28599', 'null'), +('28600', 'null'), +('28601', 'null'), +('28602', 'null'), +('28603', 'null'), +('28604', 'null'), +('28605', 'null'), +('28606', 'null'), +('28607', 'null'), +('28608', 'null'), +('28609', 'null'), +('28610', 'null'), +('28611', 'null'), +('28612', 'null'), +('28613', 'null'), +('28614', 'null'), +('28615', 'null'), +('28616', 'null'), +('28617', 'null'), +('28618', 'null'), +('28619', 'null'), +('28620', 'null'), +('28621', 'Table'), +('28622', 'Sword cabinet'), +('28623', 'Sign'), +('28624', 'Sword case'), +('28625', 'Crate'), +('28626', 'Crate'), +('28627', 'Chair'), +('28628', 'Table'), +('28629', 'Table'), +('28630', 'Stool'), +('28631', 'Stool'), +('28632', 'Drawers'), +('28633', 'Drawers'), +('28634', 'Bed'), +('28635', 'Stone table'), +('28636', 'Bench'), +('28637', 'Bookshelves'), +('28638', 'Bookshelves'), +('28639', 'Stone table'), +('28640', 'Destroyed bed'), +('28641', 'Gnawed drawers'), +('28642', 'Ruined bookshelves'), +('28643', 'Broken stool'), +('28644', 'Book heap'), +('28645', 'Wooden pieces'), +('28646', 'Splinters'), +('28647', 'null'), +('28648', 'null'), +('28649', 'null'), +('28650', 'null'), +('28651', 'Ladder'), +('28652', 'Ladder'), +('28653', 'Ladder'), +('28654', 'Pillar'), +('28655', 'Pillar'), +('28656', 'null'), +('28657', 'null'), +('28658', 'null'), +('28659', 'null'), +('28660', 'Table'), +('28661', 'Stool'), +('28662', 'Fountain'), +('28663', 'null'), +('28664', 'null'), +('28665', 'null'), +('28666', 'null'), +('28667', 'null'), +('28668', 'null'), +('28669', 'null'), +('28670', 'null'), +('28671', 'null'), +('28672', 'null'), +('28673', 'null'), +('28674', 'null'), +('28675', 'Trapdoor'), +('28676', 'Trapdoor'), +('28677', 'null'), +('28678', 'null'), +('28679', 'null'), +('28680', 'null'), +('28681', 'null'), +('28682', 'null'), +('28683', 'null'), +('28684', 'null'), +('28685', 'null'), +('28686', 'null'), +('28687', 'null'), +('28688', 'null'), +('28689', 'null'), +('28690', 'Gate'), +('28691', 'Gate'), +('28692', 'Gate'), +('28693', 'Gate'), +('28694', 'Druid's Circle stone'), +('28695', 'Druid's Circle stone'), +('28696', 'Druid's Circle stone'), +('28697', 'Druid's Circle stone'), +('28698', 'Altar of Guthix'), +('28699', 'Druid's Circle torch'), +('28700', 'null'), +('28701', 'null'), +('28702', 'null'), +('28703', 'null'), +('28704', 'null'), +('28705', 'null'), +('28706', 'null'), +('28707', 'Druid's robes'), +('28708', 'Druid's robes'), +('28709', 'null'), +('28710', 'null'), +('28711', 'null'), +('28712', 'null'), +('28713', 'null'), +('28714', 'Ladder'), +('28715', 'Wishing well'), +('28716', 'Obelisk'), +('28717', 'Inert obelisk'), +('28718', 'Inert obelisk'), +('28719', 'Obelisk'), +('28720', 'Inert obelisk'), +('28721', 'Inert obelisk'), +('28722', 'Obelisk'), +('28723', 'Inert obelisk'), +('28724', 'Inert obelisk'), +('28725', 'Obelisk'), +('28726', 'Inert obelisk'), +('28727', 'Inert obelisk'), +('28728', 'Obelisk'), +('28729', 'Inert obelisk'), +('28730', 'Inert obelisk'), +('28731', 'Obelisk'), +('28732', 'Inert obelisk'), +('28733', 'Inert obelisk'), +('28734', 'Obelisk'), +('28735', 'Inert obelisk'), +('28736', 'Inert obelisk'), +('28737', 'Desert ladder'), +('28738', 'null'), +('28739', 'null'), +('28740', 'Ladder'), +('28741', 'Trapdoor'), +('28742', 'Trapdoor'), +('28743', 'Ladder'), +('28744', 'null'), +('28745', 'null'), +('28746', 'null'), +('28747', 'null'), +('28748', 'null'), +('28749', 'null'), +('28750', 'Net trap'), +('28751', 'Net trap'), +('28752', 'Net trap'), +('28753', 'Net trap'), +('28754', 'Box trap'), +('28755', 'Box trap'), +('28756', 'Box trap'), +('28757', 'Box trap'), +('28758', 'Box trap'), +('28759', 'Box trap'), +('28760', 'Box trap'), +('28761', 'Laundry Basket'), +('28762', 'null'), +('28763', 'null'), +('28764', 'null'), +('28765', 'null'), +('28766', 'null'), +('28767', 'null'), +('28768', 'null'), +('28769', 'null'), +('28770', 'null'), +('28771', 'null'), +('28772', 'null'), +('28773', 'null'), +('28774', 'null'), +('28775', 'null'), +('28776', 'null'), +('28777', 'Box trap'), +('28778', 'null'), +('28779', 'Portal'), +('28780', 'Portal'), +('28781', 'Portal'), +('28782', 'Exit'), +('28783', 'null'), +('28784', 'null'), +('28785', 'null'), +('28786', 'null'), +('28787', 'Stairs'), +('28788', 'null'), +('28789', 'null'), +('28790', 'null'), +('28791', 'null'), +('28792', 'null'), +('28793', 'null'), +('28794', 'null'), +('28795', 'null'), +('28796', 'Skeleton'), +('28797', 'Skeleton'), +('28798', 'Skeleton'), +('28799', 'null'), +('28800', 'null'), +('28801', 'null'), +('28802', 'null'), +('28803', 'null'), +('28804', 'null'), +('28805', 'null'), +('28806', 'null'), +('28807', 'null'), +('28808', 'null'), +('28809', 'null'), +('28810', 'null'), +('28811', 'null'), +('28812', 'null'), +('28813', 'null'), +('28814', 'null'), +('28815', 'null'), +('28816', 'null'), +('28817', 'null'), +('28818', 'null'), +('28819', 'Mushroom'), +('28820', 'Mushroom'), +('28821', 'Mushrooms'), +('28822', 'null'), +('28823', 'Crate'), +('28824', 'Crate'), +('28825', 'Sack pile'), +('28826', 'Barrel'), +('28827', 'null'), +('28828', 'null'), +('28829', 'null'), +('28830', 'null'), +('28831', 'null'), +('28832', 'null'), +('28833', 'null'), +('28834', 'null'), +('28835', 'null'), +('28836', 'null'), +('28837', 'null'), +('28838', 'null'), +('28839', 'null'), +('28840', 'null'), +('28841', 'null'), +('28842', 'null'), +('28843', 'null'), +('28844', 'null'), +('28845', 'null'), +('28846', 'null'), +('28847', 'Beacon'), +('28848', 'Flames'), +('28849', 'Skeleton'), +('28850', 'Skeleton'), +('28851', 'Skeleton'), +('28852', 'null'), +('28853', 'null'), +('28854', 'null'), +('28855', 'null'), +('28856', 'null'), +('28857', 'null'), +('28858', 'null'), +('28859', 'null'), +('28860', 'null'), +('28861', 'null'), +('28862', 'null'), +('28863', 'null'), +('28864', 'null'), +('28865', 'null'), +('28866', 'null'), +('28867', 'null'), +('28868', 'null'), +('28869', 'null'), +('28870', 'null'), +('28871', 'null'), +('28872', 'null'), +('28873', 'null'), +('28874', 'null'), +('28875', 'Plant'), +('28876', 'Plant'), +('28877', 'Plant'), +('28878', 'Plant'), +('28879', 'null'), +('28880', 'null'), +('28881', 'null'), +('28882', 'null'), +('28883', 'null'), +('28884', 'null'), +('28885', 'null'), +('28886', 'null'), +('28887', 'null'), +('28888', 'null'), +('28889', 'null'), +('28890', 'null'), +('28891', 'Rift'), +('28892', 'Rift'), +('28893', 'Rift'), +('28894', 'null'), +('28895', 'null'), +('28896', 'null'), +('28897', 'null'), +('28898', 'null'), +('28899', 'null'), +('28900', 'null'), +('28901', 'Slimy skulls'), +('28902', 'null'), +('28903', 'null'), +('28904', 'null'), +('28905', 'null'), +('28906', 'Shaking box'), +('28907', 'Box trap'), +('28908', 'Box trap'), +('28909', 'Box trap'), +('28910', 'Box trap'), +('28911', 'Box trap'), +('28912', 'Dummy pawya corpse'), +('28913', 'Shaking box'), +('28914', 'Box trap'), +('28915', 'Box trap'), +('28916', 'Box trap'), +('28917', 'Box trap'), +('28918', 'Box trap'), +('28919', 'null'), +('28920', 'Shaking box'), +('28921', 'Shaking box'), +('28922', 'Shaking box'), +('28923', 'Shaking box'), +('28924', 'Shaking box'), +('28925', 'Shaking box'), +('28926', 'Shaking box'), +('28927', 'Shaking box'), +('28928', 'Shaking box'), +('28929', 'Shaking box'), +('28930', 'Bird snare'), +('28931', 'Bird snare'), +('28932', 'Bird snare'), +('28933', 'Bird snare'), +('28934', 'Bird snare'), +('28935', 'Boulder'), +('28936', 'Boulder'), +('28937', 'Deadfall trap'), +('28938', 'Deadfall trap'), +('28939', 'Deadfall trap'), +('28940', 'Deadfall trap'), +('28941', 'Boulder'), +('28942', 'Boulder'), +('28943', 'Boulder'), +('28944', 'Boulder'), +('28945', 'Boulder'), +('28946', 'null'), +('28947', 'null'), +('28948', 'null'), +('28949', 'null'), +('28950', 'null'), +('28951', 'Eucalyptus tree'), +('28952', 'Eucalyptus tree'), +('28953', 'Eucalyptus tree'), +('28954', 'Eucalyptus stump'), +('28955', 'Eucalyptus stump'), +('28956', 'Eucalyptus stump'), +('28957', 'null'), +('28958', 'null'), +('28959', 'null'), +('28960', 'null'), +('28961', 'null'), +('28962', 'null'), +('28963', 'null'), +('28964', 'null'), +('28965', 'null'), +('28966', 'null'), +('28967', 'null'), +('28968', 'null'), +('28969', 'null'), +('28970', 'null'), +('28971', 'null'), +('28972', 'null'), +('28973', 'null'), +('28974', 'null'), +('28975', 'null'), +('28976', 'null'), +('28977', 'null'), +('28978', 'null'), +('28979', 'null'), +('28980', 'null'), +('28981', 'null'), +('28982', 'null'), +('28983', 'null'), +('28984', 'null'), +('28985', 'null'), +('28986', 'null'), +('28987', 'null'), +('28988', 'null'), +('28989', 'null'), +('28990', 'null'), +('28991', 'null'), +('28992', 'null'), +('28993', 'null'), +('28994', 'null'), +('28995', 'null'), +('28996', 'null'), +('28997', 'null'), +('28998', 'null'), +('28999', 'Bugs'), +('29000', 'Bugs'), +('29001', 'Mud bath'), +('29002', 'Mud bath'), +('29003', 'Mud bath'), +('29004', 'Rocks'), +('29005', 'Rocks'), +('29006', 'Mud bath'), +('29007', 'Mud bath'), +('29008', 'Mud bath'), +('29009', 'Mud bath'), +('29010', 'Mud bath'), +('29011', 'Mud bath'), +('29012', 'Mud bath'), +('29013', 'Mud bath'), +('29014', 'Mud bath'), +('29015', 'Sulphur spring'), +('29016', 'Sulphur spring'), +('29017', 'Sulphur spring'), +('29018', 'Rocks'), +('29019', 'Rocks'), +('29020', 'Sulphur spring'), +('29021', 'Sulphur spring'), +('29022', 'Sulphur spring'), +('29023', 'Sulphur spring'), +('29024', 'Sulphur spring'), +('29025', 'Sulphur spring'), +('29026', 'Sulphur spring'), +('29027', 'Sulphur spring'), +('29028', 'Sulphur spring'), +('29029', 'Salt-water spring'), +('29030', 'Salt-water spring'), +('29031', 'Rocks'), +('29032', 'Rocks'), +('29033', 'Salt-water spring'), +('29034', 'Salt-water spring'), +('29035', 'Salt-water spring'), +('29036', 'Salt-water spring'), +('29037', 'Salt-water spring'), +('29038', 'Salt-water spring'), +('29039', 'Salt-water spring'), +('29040', 'Salt-water spring'), +('29041', 'Salt-water spring'), +('29042', 'Thermal bath'), +('29043', 'Thermal bath'), +('29044', 'Rocks'), +('29045', 'Rocks'), +('29046', 'Thermal bath'), +('29047', 'Thermal bath'), +('29048', 'Thermal bath'), +('29049', 'Thermal bath'), +('29050', 'Thermal bath'), +('29051', 'Thermal bath'), +('29052', 'Thermal bath'), +('29053', 'Thermal spring'), +('29054', 'Thermal bath'), +('29055', 'Bandos pool'), +('29056', 'Bandos pool'), +('29057', 'Rocks'), +('29058', 'Rocks'), +('29059', 'Bandos pool'), +('29060', 'Bandos pool'), +('29061', 'Bandos pool'), +('29062', 'Bandos pool'), +('29063', 'Bandos pool'), +('29064', 'Bandos pool'), +('29065', 'Bandos pool'), +('29066', 'Bandos pool'), +('29067', 'Bandos pool'), +('29068', 'null'), +('29069', 'null'), +('29070', 'null'), +('29071', 'null'), +('29072', 'null'), +('29073', 'null'), +('29074', 'null'), +('29075', 'null'), +('29076', 'null'), +('29077', 'null'), +('29078', 'null'), +('29079', 'null'), +('29080', 'null'), +('29081', 'null'), +('29082', 'null'), +('29083', 'null'), +('29084', 'null'), +('29085', 'Bank booth'), +('29086', 'Hotel bed'), +('29087', 'Hotel bed'), +('29088', 'Achey tree'), +('29089', 'Achey tree'), +('29090', 'Achey tree'), +('29091', 'Spear spit'), +('29092', 'Uncooked chompies'), +('29093', 'Slowly roasting chompies'), +('29094', 'Cooking fire'), +('29095', 'Unlit fire'), +('29096', 'Fire pit'), +('29097', 'null'), +('29098', 'null'), +('29099', 'Rock passage'), +('29100', 'null'), +('29101', 'null'), +('29102', 'null'), +('29103', 'Salon customer'), +('29104', 'Hairdryer'), +('29105', 'Sink'), +('29106', 'Grimechin'), +('29107', 'Chair'), +('29108', 'null'), +('29109', 'Glorious mud'), +('29110', 'null'), +('29111', 'null'), +('29112', 'Platypus hole'), +('29113', 'Fever grass'), +('29114', 'Lavender'), +('29115', 'Tansymum'), +('29116', 'Primweed'), +('29117', 'Stinkbloom'), +('29118', 'Crowd of dwarves'), +('29119', 'null'), +('29120', 'null'), +('29121', 'null'), +('29122', 'null'), +('29123', 'null'), +('29124', 'Ogre roof leaves'), +('29125', 'Barrel'), +('29126', 'Crate'), +('29127', 'null'), +('29128', 'null'), +('29129', 'Logs'), +('29130', 'Shelves'), +('29131', 'Table'), +('29132', 'Oil lamp'), +('29133', 'Oil lamp'), +('29134', 'Cooking utensils'), +('29135', 'null'), +('29136', 'null'), +('29137', 'Chair'), +('29138', 'Throne'), +('29139', 'Fire'), +('29140', 'Spikes'), +('29141', 'Post'), +('29142', 'Pennant'), +('29143', 'Pennant'), +('29144', 'Shop counter'), +('29145', 'Shelves'), +('29146', 'Shelves'), +('29147', 'Shelves'), +('29148', 'Large crate'), +('29149', 'Crate'), +('29150', 'Barrels'), +('29151', 'Barrel'), +('29152', 'Fire pit'), +('29153', 'Fire pit'), +('29154', 'Fire pit'), +('29155', 'Fire pit'), +('29156', 'Pile of stones'), +('29157', 'Pile of stones'), +('29158', 'Pile of stones'), +('29159', 'Pile of stones'), +('29160', 'Pile of stones'), +('29161', 'Deadfall'), +('29162', 'Deadfall'), +('29163', 'Boulder'), +('29164', 'Bird snare'), +('29165', 'Bird snare'), +('29166', 'Funeral pyre'), +('29167', 'Funeral pyre'), +('29168', 'Gangplank'), +('29169', 'Gangplank'), +('29170', 'null'), +('29171', 'null'), +('29172', 'null'), +('29173', 'null'), +('29174', 'null'), +('29175', 'null'), +('29176', 'null'), +('29177', 'null'), +('29178', 'null'), +('29179', 'null'), +('29180', 'null'), +('29181', 'Funeral pyre'), +('29182', 'Funeral pyre'), +('29183', 'null'), +('29184', 'null'), +('29185', 'Box trap'), +('29186', 'Box trap'), +('29187', 'Box trap'), +('29188', 'Box trap'), +('29189', 'Box trap'), +('29190', 'Box trap'), +('29191', 'Box trap'), +('29192', 'Box trap'), +('29193', 'null'), +('29194', 'Rocks'), +('29195', 'Rocks'), +('29196', 'Rocks'), +('29197', 'Rocks'), +('29198', 'Rocks'), +('29199', 'Rocks'), +('29200', 'Rocks'), +('29201', 'Rocks'), +('29202', 'Rocks'), +('29203', 'Rocks'), +('29204', 'Rocks'), +('29205', 'Rocks'), +('29206', 'Rocks'), +('29207', 'Rocks'), +('29208', 'Rocks'), +('29209', 'Rocks'), +('29210', 'Rocks'), +('29211', 'Rocks'), +('29212', 'Rocks'), +('29213', 'Rocks'), +('29214', 'Rocks'), +('29215', 'Rocks'), +('29216', 'Rocks'), +('29217', 'Rocks'), +('29218', 'Rocks'), +('29219', 'Rocks'), +('29220', 'Rocks'), +('29221', 'Rocks'), +('29222', 'Rocks'), +('29223', 'Rocks'), +('29224', 'Rocks'), +('29225', 'Rocks'), +('29226', 'Rocks'), +('29227', 'Rocks'), +('29228', 'Rocks'), +('29229', 'Rocks'), +('29230', 'Rocks'), +('29231', 'Rocks'), +('29232', 'Rocks'), +('29233', 'Rocks'), +('29234', 'Rocks'), +('29235', 'Rocks'), +('29236', 'Rocks'), +('29237', 'Rocks'), +('29238', 'Rocks'), +('29239', 'null'), +('29240', 'null'), +('29241', 'null'), +('29242', 'null'), +('29243', 'null'), +('29244', 'null'), +('29245', 'null'), +('29246', 'null'), +('29247', 'null'), +('29248', 'null'), +('29249', 'null'), +('29250', 'null'), +('29251', 'null'), +('29252', 'null'), +('29253', 'null'), +('29254', 'null'), +('29255', 'null'), +('29256', 'null'), +('29257', 'null'), +('29258', 'null'), +('29259', 'null'), +('29260', 'null'), +('29261', 'Metal door'), +('29262', 'Metal door'), +('29263', 'null'), +('29264', 'null'), +('29265', 'null'), +('29266', 'null'), +('29267', 'null'), +('29268', 'null'), +('29269', 'null'), +('29270', 'null'), +('29271', 'null'), +('29272', 'null'), +('29273', 'null'), +('29274', 'null'), +('29275', 'null'), +('29276', 'null'), +('29277', 'null'), +('29278', 'null'), +('29279', 'null'), +('29280', 'null'), +('29281', 'null'), +('29282', 'null'), +('29283', 'null'), +('29284', 'null'), +('29285', 'null'), +('29286', 'null'), +('29287', 'null'), +('29288', 'null'), +('29289', 'null'), +('29290', 'null'), +('29291', 'null'), +('29292', 'null'), +('29293', 'null'), +('29294', 'null'), +('29295', 'null'), +('29296', 'null'), +('29297', 'null'), +('29298', 'Stalagmite'), +('29299', 'null'), +('29300', 'null'), +('29301', 'null'), +('29302', 'null'), +('29303', 'null'), +('29304', 'null'), +('29305', 'null'), +('29306', 'null'), +('29307', 'null'), +('29308', 'null'), +('29309', 'null'), +('29310', 'null'), +('29311', 'null'), +('29312', 'null'), +('29313', 'null'), +('29314', 'Rack'), +('29315', 'Metal door'), +('29316', 'Metal door'), +('29317', 'Metal door'), +('29318', 'Metal door'), +('29319', 'Metal door'), +('29320', 'Metal door'), +('29321', 'Metal door'), +('29322', 'Metal door'), +('29323', 'null'), +('29324', 'null'), +('29325', 'null'), +('29326', 'null'), +('29327', 'null'), +('29328', 'null'), +('29329', 'null'), +('29330', 'null'), +('29331', 'null'), +('29332', 'null'), +('29333', 'Barrel'), +('29334', 'null'), +('29335', 'null'), +('29336', 'null'), +('29337', 'null'), +('29338', 'null'), +('29339', 'null'), +('29340', 'Corpse'), +('29341', 'Corpse'), +('29342', 'Corpse'), +('29343', 'Corpse'), +('29344', 'Animal skull'), +('29345', 'Curved bone'), +('29346', 'Large bone'), +('29347', 'Pile of skulls'), +('29348', 'null'), +('29349', 'null'), +('29350', 'null'), +('29351', 'Crates'), +('29352', 'Crate'), +('29353', 'null'), +('29354', 'Spiderweb'), +('29355', 'Ladder'), +('29356', 'Counter'), +('29357', 'Ladder'), +('29358', 'Ladder'), +('29359', 'Odd-looking wall'), +('29360', 'Odd-looking wall'), +('29361', 'Odd-looking wall'), +('29362', 'Odd-looking wall'), +('29363', 'null'), +('29364', 'null'), +('29365', 'null'), +('29366', 'null'), +('29367', 'null'), +('29368', 'null'), +('29369', 'null'), +('29370', 'Pipe'), +('29371', 'null'), +('29372', 'null'), +('29373', 'Danger sign'), +('29374', 'Monkey bars'), +('29375', 'Monkey bars'), +('29376', 'Monkey bars'), +('29377', 'null'), +('29378', 'null'), +('29379', 'null'), +('29380', 'null'), +('29381', 'null'), +('29382', 'null'), +('29383', 'null'), +('29384', 'null'), +('29385', 'null'), +('29386', 'null'), +('29387', 'null'), +('29388', 'null'), +('29389', 'null'), +('29390', 'null'), +('29391', 'null'), +('29392', 'null'), +('29393', 'null'), +('29394', 'null'), +('29395', 'null'), +('29396', 'null'), +('29397', 'null'), +('29398', 'null'), +('29399', 'Chest'), +('29400', 'Chest'), +('29401', 'null'), +('29402', 'null'), +('29403', 'null'), +('29404', 'null'), +('29405', 'null'), +('29406', 'null'), +('29407', 'null'), +('29408', 'null'), +('29409', 'null'), +('29410', 'null'), +('29411', 'null'), +('29412', 'null'), +('29413', 'null'), +('29414', 'null'), +('29415', 'Obelisk of Earth'), +('29416', 'null'), +('29417', 'null'), +('29418', 'null'), +('29419', 'null'), +('29420', 'null'), +('29421', 'Magical symbol'), +('29422', 'null'), +('29423', 'null'), +('29424', 'null'), +('29425', 'Catapult'), +('29426', 'Catapult'), +('29427', 'Catapult'), +('29428', 'Catapult'), +('29429', 'null'), +('29430', 'null'), +('29431', 'null'), +('29432', 'Target rock'), +('29433', 'Target rock'), +('29434', 'Target rock'), +('29435', 'Boulder'), +('29436', 'Catapult'), +('29437', 'Rotten Catapult'), +('29438', 'Catapult'), +('29439', 'Catapult-winch'), +('29440', 'Catapult-winch'), +('29441', 'Catapult-winch'), +('29442', 'Catapult-lever'), +('29443', 'Catapult-lever'), +('29444', 'Catapult-lever'), +('29445', 'null'), +('29446', 'Dirt'), +('29447', 'null'), +('29448', 'null'), +('29449', 'null'), +('29450', 'null'), +('29451', 'null'), +('29452', 'null'), +('29453', 'null'), +('29454', 'null'), +('29455', 'null'), +('29456', 'Dead plant'), +('29457', 'Flag'), +('29458', 'Dead plant'), +('29459', 'Flag'), +('29460', 'Stile'), +('29461', 'Instruction sign'), +('29462', 'Instruction sign'), +('29463', 'Instruction sign'), +('29464', 'Instruction sign'), +('29465', 'null'), +('29466', 'null'), +('29467', 'Table'), +('29468', 'Table'), +('29469', 'Counter'), +('29470', 'Crate'), +('29471', 'Crates'), +('29472', 'Chair'), +('29473', 'Cabinet'), +('29474', 'Barrel'), +('29475', 'Barrels'), +('29476', 'Hole'), +('29477', 'Hole'), +('29478', 'Hole'), +('29479', 'null'), +('29480', 'null'), +('29481', 'null'), +('29482', 'null'), +('29483', 'null'), +('29484', 'null'), +('29485', 'null'), +('29486', 'null'), +('29487', 'null'), +('29488', 'null'), +('29489', 'null'), +('29490', 'null'), +('29491', 'null'), +('29492', 'null'), +('29493', 'null'), +('29494', 'null'), +('29495', 'null'), +('29496', 'null'), +('29497', 'null'), +('29498', 'null'), +('29499', 'null'), +('29500', 'null'), +('29501', 'null'), +('29502', 'null'), +('29503', 'null'), +('29504', 'null'), +('29505', 'null'), +('29506', 'null'), +('29507', 'null'), +('29508', 'null'), +('29509', 'null'), +('29510', 'null'), +('29511', 'null'), +('29512', 'null'), +('29513', 'null'), +('29514', 'null'), +('29515', 'null'), +('29516', 'null'), +('29517', 'null'), +('29518', 'null'), +('29519', 'null'), +('29520', 'null'), +('29521', 'null'), +('29522', 'null'), +('29523', 'null'), +('29524', 'null'), +('29525', 'null'), +('29526', 'null'), +('29527', 'null'), +('29528', 'null'), +('29529', 'null'), +('29530', 'null'), +('29531', 'null'), +('29532', 'null'), +('29533', 'Hole'), +('29534', 'Portal'), +('29535', 'null'), +('29536', 'null'), +('29537', 'Portal'), +('29538', 'null'), +('29539', 'null'), +('29540', 'Footprints'), +('29541', 'Footprints'), +('29542', 'null'), +('29543', 'null'), +('29544', 'null'), +('29545', 'null'), +('29546', 'Bar shelves'), +('29547', 'Boulder'), +('29548', 'Boulder'), +('29549', 'null'), +('29550', 'Wheelbarrow'), +('29551', 'Wheelbarrow'), +('29552', 'null'), +('29553', 'Mysterious statue'), +('29554', 'Mysterious statue'), +('29555', 'null'), +('29556', 'Statue of Saradomin'), +('29557', 'Statue of Saradomin'), +('29558', 'null'), +('29559', 'Shop counter'), +('29560', 'Shop counter'), +('29561', 'null'), +('29562', 'Shelves'), +('29563', 'Shelves'), +('29564', 'null'), +('29565', 'Barrel'), +('29566', 'Barrel'), +('29567', 'null'), +('29568', 'Old bookshelf'), +('29569', 'Old bookshelf'), +('29570', 'null'), +('29571', 'Bar shelves'), +('29572', 'Bar shelves'), +('29573', 'null'), +('29574', 'null'), +('29575', 'Door'), +('29576', 'null'), +('29577', 'Treasure chest'), +('29578', 'Treasure chest'), +('29579', 'Slimy skulls'), +('29580', 'Slimy skulls'), +('29581', 'Bookcase'), +('29582', 'Bookcase'), +('29583', 'Satchel'), +('29584', 'Coat of arms'), +('29585', 'Poster'), +('29586', 'Poster'), +('29587', 'Desk'), +('29588', 'Big desk'), +('29589', 'Stairs'), +('29590', 'null'), +('29591', 'null'), +('29592', 'Stairs'), +('29593', 'Jail bunk'), +('29594', 'Jail bunk'), +('29595', 'Jail door'), +('29596', 'Jail door'), +('29597', 'Jail door'), +('29598', 'Jail door'), +('29599', 'Jail door'), +('29600', 'Jail door'), +('29601', 'Jail door'), +('29602', 'Jail entrance'), +('29603', 'Jail entrance'), +('29604', 'null'), +('29605', 'null'), +('29606', 'null'), +('29607', 'null'), +('29608', 'Broken plaque'), +('29609', 'null'), +('29610', 'null'), +('29611', 'null'), +('29612', 'null'), +('29613', 'null'), +('29614', 'null'), +('29615', 'null'), +('29616', 'null'), +('29617', 'null'), +('29618', 'null'), +('29619', 'null'), +('29620', 'null'), +('29621', 'null'), +('29622', 'null'), +('29623', 'Tunnel'), +('29624', 'Jail door'), +('29625', 'null'), +('29626', 'null'), +('29627', 'null'), +('29628', 'null'), +('29629', 'null'), +('29630', 'null'), +('29631', 'null'), +('29632', 'null'), +('29633', 'null'), +('29634', 'Rock pile'), +('29635', 'null'), +('29636', 'null'), +('29637', 'null'), +('29638', 'null'), +('29639', 'null'), +('29640', 'null'), +('29641', 'null'), +('29642', 'null'), +('29643', 'null'), +('29644', 'null'), +('29645', 'null'), +('29646', 'null'), +('29647', 'null'), +('29648', 'null'), +('29649', 'null'), +('29650', 'null'), +('29651', 'null'), +('29652', 'null'), +('29653', 'null'), +('29654', 'null'), +('29655', 'Stairs'), +('29656', 'Stairs'), +('29657', 'null'), +('29658', 'null'), +('29659', 'Stairs'), +('29660', 'Stairs'), +('29661', 'null'), +('29662', 'null'), +('29663', 'Stairs'), +('29664', 'Stairs'), +('29665', 'null'), +('29666', 'null'), +('29667', 'Stairs'), +('29668', 'Stairs'), +('29669', 'null'), +('29670', 'null'), +('29671', 'Stairs'), +('29672', 'Stairs'), +('29673', 'null'), +('29674', 'null'), +('29675', 'null'), +('29676', 'null'), +('29677', 'null'), +('29678', 'null'), +('29679', 'null'), +('29680', 'null'), +('29681', 'null'), +('29682', 'null'), +('29683', 'null'), +('29684', 'null'), +('29685', 'null'), +('29686', 'null'), +('29687', 'null'), +('29688', 'null'), +('29689', 'null'), +('29690', 'null'), +('29691', 'null'), +('29692', 'null'), +('29693', 'null'), +('29694', 'null'), +('29695', 'null'), +('29696', 'null'), +('29697', 'null'), +('29698', 'null'), +('29699', 'null'), +('29700', 'null'), +('29701', 'null'), +('29702', 'null'), +('29703', 'null'), +('29704', 'null'), +('29705', 'null'), +('29706', 'null'), +('29707', 'null'), +('29708', 'null'), +('29709', 'null'), +('29710', 'null'), +('29711', 'null'), +('29712', 'null'), +('29713', 'null'), +('29714', 'null'), +('29715', 'null'), +('29716', 'null'), +('29717', 'null'), +('29718', 'null'), +('29719', 'null'), +('29720', 'null'), +('29721', 'null'), +('29722', 'null'), +('29723', 'null'), +('29724', 'null'), +('29725', 'null'), +('29726', 'Rocks'), +('29727', 'Rocks'), +('29728', 'Crevice'), +('29729', 'Rope'), +('29730', 'An old lever'), +('29731', 'An old lever'), +('29732', 'Door'), +('29733', 'null'), +('29734', 'null'), +('29735', 'null'), +('29736', 'null'), +('29737', 'Kennith'), +('29738', 'Ezekial Lovecraft'), +('29739', 'Villagers'), +('29740', 'Minecart'), +('29741', 'Steam vent'), +('29742', 'Steam vent'), +('29743', 'Iron pickaxe'), +('29744', 'Lever'), +('29745', 'Rocks'), +('29746', 'Rubium'), +('29747', 'Wall'), +('29748', 'Wall'), +('29749', 'Wall'), +('29750', 'Wall'), +('29751', 'null'), +('29752', 'null'), +('29753', 'null'), +('29754', 'null'), +('29755', 'null'), +('29756', 'null'), +('29757', 'null'), +('29758', 'null'), +('29759', 'null'), +('29760', 'null'), +('29761', 'null'), +('29762', 'null'), +('29763', 'null'), +('29764', 'null'), +('29765', 'null'), +('29766', 'null'), +('29767', 'null'), +('29768', 'null'), +('29769', 'null'), +('29770', 'null'), +('29771', 'null'), +('29772', 'null'), +('29773', 'null'), +('29774', 'null'), +('29775', 'Door'), +('29776', 'Door'), +('29777', 'Door'), +('29778', 'Door'), +('29779', 'null'), +('29780', 'null'), +('29781', 'null'), +('29782', 'null'), +('29783', 'null'), +('29784', 'null'), +('29785', 'null'), +('29786', 'null'), +('29787', 'null'), +('29788', 'null'), +('29789', 'null'), +('29790', 'null'), +('29791', 'null'), +('29792', 'null'), +('29793', 'null'), +('29794', 'null'), +('29795', 'null'), +('29796', 'null'), +('29797', 'Bed'), +('29798', 'Chair'), +('29799', 'null'), +('29800', 'null'), +('29801', 'null'), +('29802', 'null'), +('29803', 'Barrel'), +('29804', 'Broken lobster trap'), +('29805', 'null'), +('29806', 'null'), +('29807', 'Rocks'), +('29808', 'Toy train'), +('29809', 'Entrance'), +('29810', 'Entrance'), +('29811', 'Bed'), +('29812', 'null'), +('29813', 'null'), +('29814', 'null'), +('29815', 'null'), +('29816', 'null'), +('29817', 'null'), +('29818', 'null'), +('29819', 'null'), +('29820', 'null'), +('29821', 'null'), +('29822', 'null'), +('29823', 'null'), +('29824', 'null'), +('29825', 'Sign'), +('29826', 'Rabbit hole'), +('29827', 'Rabbit hole'), +('29828', 'Rabbit hole'), +('29829', 'Rabbit hole'), +('29830', 'Rabbit hole'), +('29831', 'Rabbit hole'), +('29832', 'Easter banqueting table'), +('29833', 'Easter dining chair'), +('29834', 'null'), +('29835', 'null'), +('29836', 'null'), +('29837', 'Easter flag'), +('29838', 'Easter banner'), +('29839', 'Incubator instructions'), +('29840', 'Chocolate mixer'), +('29841', 'Chocolate mixer'), +('29842', 'null'), +('29843', 'null'), +('29844', 'null'), +('29845', 'null'), +('29846', 'null'), +('29847', 'null'), +('29848', 'null'), +('29849', 'null'), +('29850', 'null'), +('29851', 'null'), +('29852', 'Basket'), +('29853', 'Incubator water tank'), +('29854', 'Incubator water tank'), +('29855', 'Incubator coal scuttle'), +('29856', 'Incubator coal scuttle'), +('29857', 'Incubator'), +('29858', 'Incubator'), +('29859', 'Incubator'), +('29860', 'Incubator'), +('29861', 'Incubator'), +('29862', 'Incubator'), +('29863', 'Incubator'), +('29864', 'Incubator controls'), +('29865', 'Cockatrice eggs'), +('29866', 'Cockatrice eggs'), +('29867', 'Large table'), +('29868', 'Coal'), +('29869', 'Chocolate pool'), +('29870', 'null'), +('29871', 'Water pool'), +('29872', 'null'), +('29873', 'null'), +('29874', 'null'), +('29875', 'null'), +('29876', 'null'), +('29877', 'null'), +('29878', 'null'), +('29879', 'null'), +('29880', 'null'), +('29881', 'null'), +('29882', 'Small obelisk'), +('29883', 'null'), +('29884', 'null'), +('29885', 'null'), +('29886', 'null'), +('29887', 'Shaking box'), +('29888', 'Shaking box'), +('29889', 'Box trap'), +('29890', 'Box trap'), +('29891', 'Box trap'), +('29892', 'Box trap'), +('29893', 'Box trap'), +('29894', 'Box trap'), +('29895', 'Box trap'), +('29896', 'Box trap'), +('29897', 'Shaking box'), +('29898', 'Shaking box'), +('29899', 'Shaking box'), +('29900', 'Shaking box'), +('29901', 'Shaking box'), +('29902', 'Shaking box'), +('29903', 'Shaking box'), +('29904', 'Shaking box'), +('29905', 'Shaking box'), +('29906', 'Box trap'), +('29907', 'Box trap'), +('29908', 'Box trap'), +('29909', 'Box trap'), +('29910', 'Shaking box'), +('29911', 'Shaking box'), +('29912', 'Shaking box'), +('29913', 'Shaking box'), +('29914', 'Box trap'), +('29915', 'Box trap'), +('29916', 'Box trap'), +('29917', 'Box trap'), +('29918', 'Box trap'), +('29919', 'Box trap'), +('29920', 'Box trap'), +('29921', 'Box trap'), +('29922', 'Box trap'), +('29923', 'Box trap'), +('29924', 'Box trap'), +('29925', 'Box trap'), +('29926', 'Box trap'), +('29927', 'Box trap'), +('29928', 'Box trap'), +('29929', 'Box trap'), +('29930', 'Net trap'), +('29931', 'Net trap'), +('29932', 'Net trap'), +('29933', 'Net trap'), +('29934', 'Net trap'), +('29935', 'Net trap'), +('29936', 'Net trap'), +('29937', 'Net trap'), +('29938', 'Small obelisk'), +('29939', 'Small obelisk'), +('29940', 'Small obelisk'), +('29941', 'Small obelisk'), +('29942', 'Small obelisk'), +('29943', 'Small obelisk'), +('29944', 'Small obelisk'), +('29945', 'Small obelisk'), +('29946', 'Small obelisk'), +('29947', 'Small obelisk'), +('29948', 'Small obelisk'), +('29949', 'Small obelisk'), +('29950', 'Small obelisk'), +('29951', 'Small obelisk'), +('29952', 'Small obelisk'), +('29953', 'Small obelisk'), +('29954', 'Small obelisk'), +('29955', 'Small obelisk'), +('29956', 'Small obelisk'), +('29957', 'Small obelisk'), +('29958', 'Small obelisk'), +('29959', 'Small obelisk'), +('29960', 'Box trap'), +('29961', 'Box trap'), +('29962', 'Box trap'), +('29963', 'Box trap'), +('29964', 'Box trap'), +('29965', 'Box trap'), +('29966', 'Box trap'), +('29967', 'Box trap'), +('29968', 'Box trap'), +('29969', 'Box trap'), +('29970', 'Box trap'), +('29971', 'Box trap'), +('29972', 'Box trap'), +('29973', 'Box trap'), +('29974', 'Box trap'), +('29975', 'Box trap'), +('29976', 'Box trap'), +('29977', 'Box trap'), +('29978', 'Box trap'), +('29979', 'Box trap'), +('29980', 'Box trap'), +('29981', 'Box trap'), +('29982', 'Box trap'), +('29983', 'Box trap'), +('29984', 'Box trap'), +('29985', 'Box trap'), +('29986', 'Box trap'), +('29987', 'Box trap'), +('29988', 'Box trap'), +('29989', 'Box trap'), +('29990', 'Box trap'), +('29991', 'Box trap'), +('29992', 'null'), +('29993', 'null'), +('29994', 'null'), +('29995', 'null'), +('29996', 'null'), +('29997', 'null'), +('29998', 'null'), +('29999', 'null'), +('30000', 'null'), +('30001', 'null'), +('30002', 'null'), +('30003', 'null'), +('30004', 'null'), +('30005', 'null'), +('30006', 'null'), +('30007', 'null'), +('30008', 'null'), +('30009', 'null'), +('30010', 'Rubble'), +('30011', 'Trapdoor'), +('30012', 'Broken roof'), +('30013', 'Damaged wall'), +('30014', 'Repaired wall'), +('30015', 'Bank booth'), +('30016', 'Bank booth'), +('30017', 'Fire'), +('30018', 'Broken furnace'), +('30019', 'Repaired furnace'), +('30020', 'Repaired furnace'), +('30021', 'Furnace'), +('30022', 'Shelves'), +('30023', 'null'), +('30024', 'null'), +('30025', 'null'), +('30026', 'null'), +('30027', 'null'), +('30028', 'null'), +('30029', 'null'), +('30030', 'null'), +('30031', 'Ladder'), +('30032', 'Gnomecopter'), +('30033', 'Gnomecopter'), +('30034', 'Gnomecopter'), +('30035', 'Gnome stall'), +('30036', 'Entrance sign'), +('30037', 'Advertisement'), +('30038', 'null'), +('30039', 'Signpost'), +('30040', 'Signpost'), +('30041', 'null'), +('30042', 'null'), +('30043', 'Windsock'), +('30044', 'Deposit box'), +('30045', 'Deposit box'), +('30046', 'null'), +('30047', 'null'), +('30048', 'null'), +('30049', 'null'), +('30050', 'null'), +('30051', 'null'), +('30052', 'null'), +('30053', 'null'), +('30054', 'null'), +('30055', 'null'), +('30056', 'null'), +('30057', 'null'), +('30058', 'null'), +('30059', 'null'), +('30060', 'null'), +('30061', 'null'), +('30062', 'null'), +('30063', 'null'), +('30064', 'null'), +('30065', 'null'), +('30066', 'null'), +('30067', 'null'), +('30068', 'null'), +('30069', 'null'), +('30070', 'Windsock'), +('30071', 'null'), +('30072', 'null'), +('30073', 'null'), +('30074', 'Table'), +('30075', 'Table'), +('30076', 'Table'), +('30077', 'Table'), +('30078', 'Table'), +('30079', 'Table'), +('30080', 'Table'), +('30081', 'Table'), +('30082', 'Pit'), +('30083', 'Spiked pit'), +('30084', 'Collapsed trap'), +('30085', 'Collapsed trap'), +('30086', 'Pit trap'), +('30087', 'Pit trap'), +('30088', 'Pit trap'), +('30089', 'Pit trap'), +('30090', 'Pit trap'), +('30091', 'Pit trap'), +('30092', 'Pit trap'), +('30093', 'Pit trap'), +('30094', 'Hole'), +('30095', 'Tracks'), +('30096', 'Tracks'), +('30097', 'Tracks'), +('30098', 'Snow drift'), +('30099', 'Hollow log'), +('30100', 'Hollow log'), +('30101', 'Hollow log'), +('30102', 'Tunnel'), +('30103', 'Steps'), +('30104', 'Steps'), +('30105', 'Bird snare'), +('30106', 'Bird snare'), +('30107', 'Bird snare'), +('30108', 'Bird snare'), +('30109', 'Bird snare'), +('30110', 'Bird snare'), +('30111', 'Bird snare'), +('30112', 'Bird snare'), +('30113', 'Bird snare'), +('30114', ''), +('30115', 'Staircase'), +('30116', 'Gate'), +('30117', 'Gate'), +('30118', 'Gate'), +('30119', 'Gate'), +('30120', 'Gate'), +('30121', 'Gate'), +('30122', 'Gate'), +('30123', 'Gate'), +('30124', 'Gate'), +('30125', 'Gate'), +('30126', 'Gate'), +('30127', 'Gate'), +('30128', 'Gate'), +('30129', 'Gate'), +('30130', 'Gate'), +('30131', 'Gate'), +('30132', 'Tree'), +('30133', 'Tree'), +('30134', 'null'), +('30135', 'null'), +('30136', 'null'), +('30137', 'null'), +('30138', 'null'), +('30139', 'null'), +('30140', 'null'), +('30141', 'Energy barrier'), +('30142', 'Stone dispenser'), +('30143', 'Stone dispenser'), +('30144', 'Forfeit tunnel'), +('30145', 'Forfeit tunnel'), +('30146', 'Portal'), +('30147', 'null'), +('30148', 'null'), +('30149', 'null'), +('30150', 'null'), +('30151', 'null'), +('30152', 'null'), +('30153', 'null'), +('30154', 'null'), +('30155', 'null'), +('30156', 'null'), +('30157', 'null'), +('30158', 'null'), +('30159', 'null'), +('30160', 'null'), +('30161', 'null'), +('30162', 'null'), +('30163', 'null'), +('30164', 'null'), +('30165', 'null'), +('30166', 'null'), +('30167', 'null'), +('30168', 'null'), +('30169', 'null'), +('30170', 'null'), +('30171', 'null'), +('30172', 'null'), +('30173', 'null'), +('30174', 'null'), +('30175', 'null'), +('30176', 'null'), +('30177', 'null'), +('30178', 'null'), +('30179', 'null'), +('30180', 'null'), +('30181', 'null'), +('30182', 'null'), +('30183', 'null'), +('30184', 'null'), +('30185', 'null'), +('30186', 'null'), +('30187', 'null'), +('30188', 'null'), +('30189', 'null'), +('30190', 'null'), +('30191', 'null'), +('30192', 'null'), +('30193', 'null'), +('30194', 'null'), +('30195', 'null'), +('30196', 'null'), +('30197', 'null'), +('30198', 'null'), +('30199', 'null'), +('30200', 'null'), +('30201', 'null'), +('30202', 'null'), +('30203', 'Stairs'), +('30204', 'Cave entrance'), +('30205', 'Scoreboard'), +('30206', 'Crates'), +('30207', 'Crates'), +('30208', 'Crate'), +('30209', 'Shelf'), +('30210', 'Small shelf'), +('30211', 'Spear barrel'), +('30212', 'Counter'), +('30213', 'Entrance'), +('30214', 'Bench'), +('30215', 'Bench'), +('30216', 'Bench'), +('30217', 'Bench'), +('30218', 'Bench'), +('30219', 'Punchbag'), +('30220', 'Punchbag'), +('30221', 'Suit of armour'), +('30222', 'Table'), +('30223', 'Fountain'), +('30224', 'Passageway'), +('30225', 'null'), +('30226', 'null'), +('30227', 'null'), +('30228', 'null'), +('30229', 'null'), +('30230', 'null'), +('30231', 'null'), +('30232', 'null'), +('30233', 'null'), +('30234', 'null'), +('30235', 'null'), +('30236', 'null'), +('30237', 'null'), +('30238', 'null'), +('30239', 'null'), +('30240', 'null'), +('30241', 'null'), +('30242', 'null'), +('30243', 'null'), +('30244', 'null'), +('30245', 'null'), +('30246', 'null'), +('30247', 'null'), +('30248', 'null'), +('30249', 'null'), +('30250', 'null'), +('30251', 'null'), +('30252', 'null'), +('30253', 'null'), +('30254', 'null'), +('30255', 'null'), +('30256', 'null'), +('30257', 'null'), +('30258', 'null'), +('30259', 'null'), +('30260', 'null'), +('30261', 'Wooden doors'), +('30262', 'Wooden doors'), +('30263', 'Wooden doors'), +('30264', 'Wooden doors'), +('30265', 'Wooden doors'), +('30266', 'Wooden doors'), +('30267', 'null'), +('30268', 'null'), +('30269', 'null'), +('30270', 'null'), +('30271', 'null'), +('30272', 'null'), +('30273', 'null'), +('30274', 'null'), +('30275', 'Ladder'), +('30276', 'null'), +('30277', 'Shelves'), +('30278', 'Corpse'), +('30279', 'Bookshelf'), +('30280', 'Bookshelf'), +('30281', 'Lab table'), +('30282', 'null'), +('30283', 'null'), +('30284', 'null'), +('30285', 'null'), +('30286', 'null'), +('30287', 'null'), +('30288', 'Crate'), +('30289', 'Gnome skeleton'), +('30290', 'null'), +('30291', 'null'), +('30292', 'null'), +('30293', 'null'), +('30294', 'null'), +('30295', 'Column'), +('30296', 'Column'), +('30297', 'Column'), +('30298', 'null'), +('30299', 'null'), +('30300', 'null'), +('30301', 'null'), +('30302', 'null'), +('30303', 'null'), +('30304', 'null'), +('30305', 'null'), +('30306', 'null'), +('30307', 'null'), +('30308', 'null'), +('30309', 'null'), +('30310', 'null'), +('30311', 'null'), +('30312', 'null'), +('30313', 'null'), +('30314', 'null'), +('30315', 'null'), +('30316', 'null'), +('30317', 'null'), +('30318', 'null'), +('30319', 'Broken rusty cage'), +('30320', 'Rusty broken cage'), +('30321', 'Broken rusting cage'), +('30322', 'Caged skeleton'), +('30323', 'Broken range'), +('30324', 'Equipment table'), +('30325', 'Broken equipment table'), +('30326', 'Operating table'), +('30327', 'Restraining table'), +('30328', 'Restraining table'), +('30329', 'Restraining table.'), +('30330', 'Research desk'), +('30331', 'Research desk'), +('30332', 'Research table'), +('30333', 'null'), +('30334', 'null'), +('30335', 'Crate'), +('30336', 'null'), +('30337', 'Large rowboat'), +('30338', 'null'), +('30339', 'null'), +('30340', 'null'), +('30341', 'null'), +('30342', 'null'), +('30343', 'null'), +('30344', 'null'), +('30345', 'null'), +('30346', 'null'), +('30347', 'null'), +('30348', 'null'), +('30349', 'null'), +('30350', 'null'), +('30351', 'null'), +('30352', 'null'), +('30353', 'null'), +('30354', 'null'), +('30355', 'null'), +('30356', 'null'), +('30357', 'null'), +('30358', 'null'), +('30359', 'null'), +('30360', 'null'), +('30361', 'null'), +('30362', 'null'), +('30363', 'null'), +('30364', 'null'), +('30365', 'null'), +('30366', 'null'), +('30367', 'null'), +('30368', 'null'), +('30369', 'null'), +('30370', 'null'), +('30371', 'null'), +('30372', 'null'), +('30373', 'null'), +('30374', 'null'), +('30375', 'null'), +('30376', 'null'), +('30377', 'null'), +('30378', 'null'), +('30379', 'null'), +('30380', 'null'), +('30381', 'null'), +('30382', 'null'), +('30383', 'null'), +('30384', 'null'), +('30385', 'null'), +('30386', 'null'), +('30387', 'null'), +('30388', 'null'), +('30389', 'null'), +('30390', 'null'), +('30391', 'null'), +('30392', 'null'), +('30393', 'null'), +('30394', 'null'), +('30395', 'null'), +('30396', 'null'), +('30397', 'null'), +('30398', 'null'), +('30399', 'null'), +('30400', 'null'), +('30401', 'null'), +('30402', 'null'), +('30403', 'null'), +('30404', 'null'), +('30405', 'null'), +('30406', 'null'), +('30407', 'null'), +('30408', 'null'), +('30409', 'null'), +('30410', 'null'), +('30411', 'null'), +('30412', 'null'), +('30413', 'null'), +('30414', 'null'), +('30415', 'null'), +('30416', 'null'), +('30417', 'null'), +('30418', 'null'), +('30419', 'null'), +('30420', 'null'), +('30421', 'null'), +('30422', 'null'), +('30423', 'null'), +('30424', 'null'), +('30425', 'null'), +('30426', 'null'), +('30427', 'null'), +('30428', 'null'), +('30429', 'null'), +('30430', 'null'), +('30431', 'null'), +('30432', 'null'), +('30433', 'null'), +('30434', 'null'), +('30435', 'null'), +('30436', 'null'), +('30437', 'null'), +('30438', 'null'), +('30439', 'null'), +('30440', 'null'), +('30441', 'null'), +('30442', 'null'), +('30443', 'null'), +('30444', 'null'), +('30445', 'null'), +('30446', 'null'), +('30447', 'null'), +('30448', 'null'), +('30449', 'null'), +('30450', 'null'), +('30451', 'null'), +('30452', 'null'), +('30453', 'null'), +('30454', 'null'), +('30455', 'null'), +('30456', 'null'), +('30457', 'null'), +('30458', 'Wooden beam'), +('30459', 'Wooden beam'), +('30460', 'Safalaan'), +('30461', 'null'), +('30462', 'Andiess Juip'), +('30463', 'Kael Forshaw'), +('30464', 'Safalaan'), +('30465', 'Andiess Juip'), +('30466', 'Kael Forshaw'), +('30467', 'Funeral pyre'), +('30468', 'Funeral pyre'), +('30469', 'Funeral pyre'), +('30470', 'Funeral pyre'), +('30471', 'Funeral pyre'), +('30472', 'Funeral pyre'), +('30473', 'Funeral pyre'), +('30474', 'Funeral pyre'), +('30475', 'Funeral pyre'), +('30476', 'Funeral pyre'), +('30477', 'Funeral pyre'), +('30478', 'Funeral pyre'), +('30479', 'Funeral pyre'), +('30480', 'Funeral pyre'), +('30481', 'Funeral pyre'), +('30482', 'Funeral pyre'), +('30483', 'Funeral pyre'), +('30484', 'Funeral pyre'), +('30485', 'Funeral pyre'), +('30486', 'Funeral pyre'), +('30487', 'Funeral pyre'), +('30488', 'Stone stand'), +('30489', 'Ladder'), +('30490', 'Crude table'), +('30491', 'Bunk bed'), +('30492', 'Bunk bed'), +('30493', 'Wooden post'), +('30494', 'Wooden post'), +('30495', 'Wooden beam'), +('30496', 'Floorboards'), +('30497', 'Floorboards'), +('30498', 'Damaged wall'), +('30499', 'Damaged wall'), +('30500', 'Destroyed wall'), +('30501', 'Floorboards'), +('30502', 'Floorboards'), +('30503', 'Door'), +('30504', 'Mass of debris'), +('30505', 'Mass of debris'), +('30506', 'Mass of debris'), +('30507', 'Mass of debris'), +('30508', 'Empty furnace'), +('30509', 'Coal-filled furnace'), +('30510', 'Furnace'), +('30511', 'Barrel'), +('30512', 'Barrel'), +('30513', 'Shelf'), +('30514', 'Shelf'), +('30515', 'Tool rack'), +('30516', 'Tool rack'), +('30517', 'Crate'), +('30518', 'Banner'), +('30519', 'null'), +('30520', 'Trough'), +('30521', 'Trough'), +('30522', 'Door'), +('30523', 'Door'), +('30524', 'Door'), +('30525', 'Door'), +('30526', 'Door'), +('30527', 'Door'), +('30528', 'Strange stones'), +('30529', 'Strange stones'), +('30530', 'Strange stones'), +('30531', 'Instructions'), +('30532', 'Wall'), +('30533', 'Stairway'), +('30534', 'Stairs'), +('30535', 'Wall storage'), +('30536', 'Wall storage'), +('30537', 'Wooden recess'), +('30538', 'Wooden recess'), +('30539', 'Coal barrel'), +('30540', 'Empty barrel'), +('30541', 'Boxes'), +('30542', 'Crate'), +('30543', 'Coffin'), +('30544', 'Coffin'), +('30545', 'Coffin'), +('30546', 'Coffin'), +('30547', 'Coffin'), +('30548', 'Raised coffin'), +('30549', 'Skull stonepile'), +('30550', 'Stone coffin'), +('30551', 'Stone coffin'), +('30552', 'Skull stonepile'), +('30553', 'Stone coffin'), +('30554', 'Gravestone'), +('30555', 'Jutting wall'), +('30556', 'Jutting wall'), +('30557', 'Jutting wall'), +('30558', 'Speartrap'), +('30559', 'Cave entrance'), +('30560', 'Cave entrance'), +('30561', 'Cave entrance'), +('30562', 'Blackboard'), +('30563', 'Fishing rods'), +('30564', 'Wall chest coffin'), +('30565', 'Wall chest coffin'), +('30566', 'Corpse'), +('30567', 'Lectern'), +('30568', 'null'), +('30569', 'Torch'), +('30570', 'Cell door'), +('30571', 'Trapdoor'), +('30572', 'Ladder'), +('30573', 'Trapdoor'), +('30574', 'Ladder'), +('30575', 'Ladder'), +('30576', 'Column'), +('30577', 'Column'), +('30578', 'Column'), +('30579', 'null'), +('30580', 'null'), +('30581', 'null'), +('30582', 'null'), +('30583', 'null'), +('30584', 'null'), +('30585', 'null'), +('30586', 'null'), +('30587', 'null'), +('30588', 'null'), +('30589', 'null'), +('30590', 'null'), +('30591', 'null'), +('30592', 'null'), +('30593', 'null'), +('30594', 'null'), +('30595', 'null'), +('30596', 'null'), +('30597', 'null'), +('30598', 'null'), +('30599', 'null'), +('30600', 'null'), +('30601', 'null'), +('30602', 'null'), +('30603', 'null'), +('30604', 'null'), +('30605', 'null'), +('30606', 'null'), +('30607', 'null'), +('30608', 'null'), +('30609', 'null'), +('30610', 'null'), +('30611', 'null'), +('30612', 'null'), +('30613', 'null'), +('30614', 'null'), +('30615', 'null'), +('30616', 'null'), +('30617', 'null'), +('30618', 'Statue'), +('30619', 'Statue'), +('30620', 'null'), +('30621', 'null'), +('30622', 'null'), +('30623', 'null'), +('30624', 'Altar'), +('30625', 'Gravestone'), +('30626', 'Shelves'), +('30627', 'null'), +('30628', 'null'), +('30629', 'null'), +('30630', 'null'), +('30631', 'null'), +('30632', 'null'), +('30633', 'null'), +('30634', 'null'), +('30635', 'null'), +('30636', 'null'), +('30637', 'null'), +('30638', 'null'), +('30639', 'null'), +('30640', 'null'), +('30641', 'null'), +('30642', 'null'), +('30643', 'null'), +('30644', 'null'), +('30645', 'null'), +('30646', 'null'), +('30647', 'Shelves'), +('30648', 'Shelves'), +('30649', 'Shelves'), +('30650', 'Shelves'), +('30651', 'Bookcase'), +('30652', 'Crate'), +('30653', 'null'), +('30654', 'null'), +('30655', 'null'), +('30656', 'null'), +('30657', 'null'), +('30658', 'null'), +('30659', 'null'), +('30660', 'null'), +('30661', 'null'), +('30662', 'null'), +('30663', 'null'), +('30664', 'null'), +('30665', 'null'), +('30666', 'null'), +('30667', 'Gravestone'), +('30668', 'Gravestone'), +('30669', 'Gravestone'), +('30670', 'Gravestone'), +('30671', 'Gravestone'), +('30672', 'Gravestone'), +('30673', 'null'), +('30674', 'null'), +('30675', 'null'), +('30676', 'null'), +('30677', 'null'), +('30678', 'null'), +('30679', 'null'), +('30680', 'null'), +('30681', 'null'), +('30682', 'null'), +('30683', 'null'), +('30684', 'null'), +('30685', 'Statue'), +('30686', 'Bust'), +('30687', 'Bust'), +('30688', 'null'), +('30689', 'null'), +('30690', 'null'), +('30691', 'Bench'), +('30692', 'null'), +('30693', 'null'), +('30694', 'null'), +('30695', 'null'), +('30696', 'null'), +('30697', 'null'), +('30698', 'null'), +('30699', 'null'), +('30700', 'null'), +('30701', 'null'), +('30702', 'null'), +('30703', 'null'), +('30704', 'null'), +('30705', 'null'), +('30706', 'null'), +('30707', 'Large door'), +('30708', 'Large door'), +('30709', 'null'), +('30710', 'null'), +('30711', 'null'), +('30712', 'null'), +('30713', 'null'), +('30714', 'null'), +('30715', 'null'), +('30716', 'null'), +('30717', 'null'), +('30718', 'null'), +('30719', 'null'), +('30720', 'null'), +('30721', 'null'), +('30722', 'Staircase'), +('30723', 'Staircase top'), +('30724', 'Staircase'), +('30725', 'Staircase top'), +('30726', 'Altar'), +('30727', 'Candle'), +('30728', 'Morytania coffin'), +('30729', 'Church pew'), +('30730', 'Broken church pew'), +('30731', 'Broken church pew'), +('30732', 'Ladder'), +('30733', 'Ladder'), +('30734', 'Table'), +('30735', 'Lantern'), +('30736', 'Chair'), +('30737', 'Broken Chair'), +('30738', 'Broken Chair'), +('30739', 'Broken Chair'), +('30740', 'Bookcase'), +('30741', 'Bookcase'), +('30742', 'Desk'), +('30743', 'Stand'), +('30744', 'Jail bed'), +('30745', 'null'), +('30746', 'null'), +('30747', 'null'), +('30748', 'null'), +('30749', 'null'), +('30750', 'null'), +('30751', 'Broken Table'), +('30752', 'Candles'), +('30753', 'Candles'), +('30754', 'Church organ'), +('30755', 'null'), +('30756', 'Massive ribs'), +('30757', 'null'), +('30758', 'null'), +('30759', 'null'), +('30760', 'null'), +('30761', 'null'), +('30762', 'null'), +('30763', 'null'), +('30764', 'null'), +('30765', 'null'), +('30766', 'null'), +('30767', 'null'), +('30768', 'null'), +('30769', 'null'), +('30770', 'null'), +('30771', 'null'), +('30772', 'null'), +('30773', 'null'), +('30774', 'null'), +('30775', 'null'), +('30776', 'null'), +('30777', 'null'), +('30778', 'null'), +('30779', 'null'), +('30780', 'null'), +('30781', 'null'), +('30782', 'null'), +('30783', 'null'), +('30784', 'null'), +('30785', 'null'), +('30786', 'null'), +('30787', 'null'), +('30788', 'null'), +('30789', 'null'), +('30790', 'null'), +('30791', 'null'), +('30792', 'null'), +('30793', 'null'), +('30794', 'Torch'), +('30795', 'Tree'), +('30796', 'null'), +('30797', 'null'), +('30798', 'null'), +('30799', 'Snow'), +('30800', 'Snow'), +('30801', 'Snow'), +('30802', 'Snow'), +('30803', 'Snow'), +('30804', 'Dying roses'), +('30805', 'Growing roses'), +('30806', 'Roses'), +('30807', 'Roses'), +('30808', 'Dragon machine'), +('30809', 'Machine'), +('30810', 'Machine'), +('30811', 'Machine'), +('30812', 'Convertor'), +('30813', 'Pickaxe machine'), +('30814', 'null'), +('30815', 'null'), +('30816', 'null'), +('30817', 'Bookcase'), +('30818', 'Bookcase'), +('30819', 'Bench'), +('30820', 'Fountain'), +('30821', 'Font'), +('30822', 'Small table'), +('30823', 'Drawers'), +('30824', 'Drawers'), +('30825', 'Bed'), +('30826', 'Stool'), +('30827', 'Table'), +('30828', 'Table'), +('30829', 'Barrel'), +('30830', 'Table'), +('30831', 'null'), +('30832', 'null'), +('30833', 'null'), +('30834', 'null'), +('30835', 'null'), +('30836', 'null'), +('30837', 'null'), +('30838', 'null'), +('30839', 'null'), +('30840', 'null'), +('30841', 'null'), +('30842', 'null'), +('30843', 'null'), +('30844', 'null'), +('30845', 'null'), +('30846', 'null'), +('30847', 'null'), +('30848', 'null'), +('30849', 'null'), +('30850', 'null'), +('30851', 'null'), +('30852', 'null'), +('30853', 'null'), +('30854', 'null'), +('30855', 'null'), +('30856', 'null'), +('30857', 'null'), +('30858', 'null'), +('30859', 'null'), +('30860', 'null'), +('30861', 'null'), +('30862', 'null'), +('30863', 'Ladder'), +('30864', 'Door'), +('30865', 'Door'), +('30866', 'Workbench'), +('30867', 'null'), +('30868', 'Crevice'), +('30869', 'null'), +('30870', 'null'), +('30871', 'null'), +('30872', 'null'), +('30873', 'null'), +('30874', 'null'), +('30875', 'null'), +('30876', 'Rockslide'), +('30877', 'Rockslide'), +('30878', 'Rockslide'), +('30879', 'null'), +('30880', 'null'), +('30881', 'null'), +('30882', 'null'), +('30883', 'null'), +('30884', 'null'), +('30885', 'null'), +('30886', 'null'), +('30887', 'null'), +('30888', 'null'), +('30889', 'null'), +('30890', 'null'), +('30891', 'null'), +('30892', 'null'), +('30893', 'null'), +('30894', 'null'), +('30895', 'null'), +('30896', 'null'), +('30897', 'null'), +('30898', 'null'), +('30899', 'null'), +('30900', 'null'), +('30901', 'null'), +('30902', 'null'), +('30903', 'null'), +('30904', 'null'), +('30905', 'null'), +('30906', 'null'), +('30907', 'null'), +('30908', 'null'), +('30909', 'null'), +('30910', 'null'), +('30911', 'null'), +('30912', 'null'), +('30913', 'null'), +('30914', 'null'), +('30915', 'null'), +('30916', 'null'), +('30917', 'null'), +('30918', 'null'), +('30919', 'Stalagmite'), +('30920', 'null'), +('30921', 'null'), +('30922', 'null'), +('30923', 'Counter'), +('30924', 'Crates'), +('30925', 'Crate'), +('30926', 'Barrel'), +('30927', 'Chest'), +('30928', 'Chest'), +('30929', 'Stool'), +('30930', 'null'), +('30931', 'null'), +('30932', 'null'), +('30933', 'Torch'), +('30934', 'Flames'), +('30935', 'null'), +('30936', 'null'), +('30937', 'null'), +('30938', 'Sacks'), +('30939', 'Table'), +('30940', 'null'), +('30941', 'Ladder'), +('30942', 'Ladder'), +('30943', 'Stairs'), +('30944', 'Stairs'), +('30945', 'A shabby tent'), +('30946', 'null'), +('30947', 'null'), +('30948', 'null'), +('30949', 'null'), +('30950', 'null'), +('30951', 'null'), +('30952', 'null'), +('30953', 'null'), +('30954', 'null'), +('30955', 'null'), +('30956', 'null'), +('30957', 'null'), +('30958', 'null'), +('30959', 'null'), +('30960', 'null'), +('30961', 'Machine'), +('30962', 'Chest'), +('30963', 'Chest'), +('30964', 'Machine'), +('30965', 'null'), +('30966', 'null'), +('30967', 'null'), +('30968', 'null'), +('30969', 'null'), +('30970', 'null'), +('30971', 'null'), +('30972', 'null'), +('30973', 'null'), +('30974', 'null'), +('30975', 'null'), +('30976', 'null'), +('30977', 'null'), +('30978', 'null'), +('30979', 'null'), +('30980', 'null'), +('30981', 'null'), +('30982', 'null'), +('30983', 'null'), +('30984', 'null'), +('30985', 'null'), +('30986', 'null'), +('30987', 'null'), +('30988', 'null'), +('30989', 'null'), +('30990', 'null'), +('30991', 'null'), +('30992', 'null'), +('30993', 'null'), +('30994', 'null'), +('30995', 'null'), +('30996', 'null'), +('30997', 'Dragon eggs'), +('30998', 'Rocks'), +('30999', 'null'), +('31000', 'Bush'), +('31001', 'Ladder'), +('31002', 'Ladder'), +('31003', 'Ladder'), +('31004', 'null'), +('31005', 'Nesting bird'), +('31006', 'Nesting bird'), +('31007', 'Nesting bird'), +('31008', 'null'), +('31009', 'null'), +('31010', 'Trapdoor'), +('31011', 'Trapdoor'), +('31012', 'null'), +('31013', 'Crate'), +('31014', 'Wrecked tent'), +('31015', 'Remains'), +('31016', 'Tent'), +('31017', 'Tent'), +('31018', 'Bush'), +('31019', 'Bush'), +('31020', 'Bush'), +('31021', 'Bush'), +('31022', 'Bush'), +('31023', 'Bush'), +('31024', 'Bush'), +('31025', 'Bush'), +('31026', 'Cart'), +('31027', 'Rocks'), +('31028', 'null'), +('31029', 'Parachuting gnome'), +('31030', 'Door'), +('31031', 'null'), +('31032', 'null'), +('31033', 'null'), +('31034', 'null'), +('31035', 'null'), +('31036', 'null'), +('31037', 'null'), +('31038', 'null'), +('31039', 'null'), +('31040', 'null'), +('31041', 'null'), +('31042', 'null'), +('31043', 'null'), +('31044', 'null'), +('31045', 'null'), +('31046', 'null'), +('31047', 'null'), +('31048', 'null'), +('31049', 'null'), +('31050', 'null'), +('31051', 'null'), +('31052', 'null'), +('31053', 'null'), +('31054', 'null'), +('31055', 'null'), +('31056', 'null'), +('31057', 'Tree stump'), +('31058', 'null'), +('31059', 'Rocks'), +('31060', 'Rocks'), +('31061', 'Rocks'), +('31062', 'Rocks'), +('31063', 'Rocks'), +('31064', 'Rocks'), +('31065', 'Rocks'), +('31066', 'Rocks'), +('31067', 'Rocks'), +('31068', 'Rocks'), +('31069', 'Rocks'), +('31070', 'Rocks'), +('31071', 'Rocks'), +('31072', 'Rocks'), +('31073', 'Rocks'), +('31074', 'Rocks'), +('31075', 'Rocks'), +('31076', 'Rocks'), +('31077', 'Rocks'), +('31078', 'Rocks'), +('31079', 'Rocks'), +('31080', 'Rocks'), +('31081', 'Rocks'), +('31082', 'Rocks'), +('31083', 'Rocks'), +('31084', 'Rocks'), +('31085', 'Rocks'), +('31086', 'Rocks'), +('31087', 'Rocks'), +('31088', 'Rocks'), +('31089', 'null'), +('31090', 'null'), +('31091', 'null'), +('31092', 'null'), +('31093', 'null'), +('31094', 'Rocks'), +('31095', 'Rocks'), +('31096', 'Rocks'), +('31097', 'Rocks'), +('31098', 'Rocks'), +('31099', 'Rocks'), +('31100', 'Rocks'), +('31101', 'Rocks'), +('31102', 'Rocks'), +('31103', 'Rocks'), +('31104', 'Rocks'), +('31105', 'Rocks'), +('31106', 'Rocks'), +('31107', 'Rocks'), +('31108', 'Rocks'), +('31109', 'Rocks'), +('31110', 'Rocks'), +('31111', 'Rocks'), +('31112', 'Rocks'), +('31113', 'Rocks'), +('31114', 'Rocks'), +('31115', 'Rocks'), +('31116', 'Rocks'), +('31117', 'Rocks'), +('31118', 'Rocks'), +('31119', 'null'), +('31120', 'null'), +('31121', 'null'), +('31122', 'null'), +('31123', 'null'), +('31124', 'null'), +('31125', 'null'), +('31126', 'null'), +('31127', 'null'), +('31128', 'null'), +('31129', 'null'), +('31130', 'null'), +('31131', 'null'), +('31132', 'null'), +('31133', 'null'), +('31134', 'null'), +('31135', 'null'), +('31136', 'Barrel'), +('31137', 'Crate'), +('31138', 'Crates'), +('31139', 'Crates'), +('31140', 'Crate'), +('31141', 'null'), +('31142', 'null'), +('31143', 'null'), +('31144', 'null'), +('31145', 'null'), +('31146', 'null'), +('31147', 'null'), +('31148', 'null'), +('31149', 'Fence'), +('31150', 'null'), +('31151', 'null'), +('31152', 'Large gate'), +('31153', 'null'), +('31154', 'null'), +('31155', 'Doogle bush'), +('31156', 'null'), +('31157', 'null'), +('31158', 'null'), +('31159', 'null'), +('31160', 'null'), +('31161', 'null'), +('31162', 'Some logs'), +('31163', 'null'), +('31164', 'null'), +('31165', 'null'), +('31166', 'null'), +('31167', 'Rocks'), +('31168', 'Rocks'), +('31169', 'Rocks'), +('31170', 'Rocks'), +('31171', 'Rocks'), +('31172', 'Rocks'), +('31173', 'Rocks'), +('31174', 'Rocks'), +('31175', 'Rocks'), +('31176', 'null'), +('31177', 'null'), +('31178', 'null'), +('31179', 'null'), +('31180', 'null'), +('31181', 'null'), +('31182', 'null'), +('31183', 'null'), +('31184', 'null'), +('31185', 'null'), +('31186', 'null'), +('31187', 'null'), +('31188', 'null'), +('31189', 'null'), +('31190', 'null'), +('31191', 'null'), +('31192', 'null'), +('31193', 'null'), +('31194', 'null'), +('31195', 'null'), +('31196', 'null'), +('31197', 'Rocks'), +('31198', 'Rocks'), +('31199', 'Rocks'), +('31200', 'Rocks'), +('31201', 'Rocks'), +('31202', 'Rocks'), +('31203', 'Rocks'), +('31204', 'Rocks'), +('31205', 'Rocks'), +('31206', 'Tunnel'), +('31207', 'Bookcase'), +('31208', 'Tunnel Entrance'), +('31209', 'Tunnel Entrance'), +('31210', 'Tunnel Entrance'), +('31211', 'Tunnel Entrance'), +('31212', 'Tunnel Entrance'), +('31213', 'Tunnel Entrance'), +('31214', 'Stepping stone'), +('31215', 'Stepping stone'), +('31216', 'Stepping stone'), +('31217', 'Stepping stone'), +('31218', 'Stepping stone'), +('31219', 'Stepping stone'), +('31220', 'Stepping stone'), +('31221', 'Tunnel entrance'), +('31222', 'null'), +('31223', 'null'), +('31224', 'null'), +('31225', 'null'), +('31226', 'null'), +('31227', 'null'), +('31228', 'null'), +('31229', 'Obsidian wall'), +('31230', 'Obsidian wall'), +('31231', 'Crack in wall'), +('31232', 'Crack in wall'), +('31233', 'null'), +('31234', 'null'), +('31235', 'null'), +('31236', 'null'), +('31237', 'null'), +('31238', 'Collapsed tunnel'), +('31239', 'Collapsed tunnel'), +('31240', 'Collapsed tunnel'), +('31241', 'Caved-in wall'), +('31242', 'Repaired caved-in wall'), +('31243', 'Caved-in wall'), +('31244', 'Repaired caved in wall'), +('31245', 'Caved-in wall'), +('31246', 'null'), +('31247', 'null'), +('31248', 'Stone pillar'), +('31249', 'Stone pillar'), +('31250', 'Pillar'), +('31251', 'Cave-in'), +('31252', 'Cave-in'), +('31253', 'Cave-in'), +('31254', 'Cave-in'), +('31255', 'Rock'), +('31256', 'Rock'), +('31257', 'Rock'), +('31258', 'Cave entrance'), +('31259', 'Bookcase'), +('31260', 'Bookcase'), +('31261', 'Bookcase'), +('31262', 'Bookcase'), +('31263', 'Bookcase'), +('31264', 'Bookcase'), +('31265', 'null'), +('31266', 'null'), +('31267', 'null'), +('31268', 'null'), +('31269', 'null'), +('31270', 'Bench'), +('31271', 'Bench'), +('31272', 'Rock prop'), +('31273', 'Rock prop'), +('31274', 'Rock prop'), +('31275', 'Rock prop'), +('31276', 'null'), +('31277', 'null'), +('31278', 'null'), +('31279', 'null'), +('31280', 'null'), +('31281', 'null'), +('31282', 'null'), +('31283', 'null'), +('31284', 'Cave entrance'), +('31285', 'null'), +('31286', 'Cave entrance'), +('31287', 'Tunnel'), +('31288', 'Tunnel'), +('31289', 'Tunnel'), +('31290', 'Tunnel'), +('31291', 'Tunnel'), +('31292', 'Cave entrance'), +('31293', 'null'), +('31294', 'Wooden doors'), +('31295', 'Wooden doors'), +('31296', 'Signpost'), +('31297', 'Signpost'), +('31298', 'Signpost'), +('31299', 'Signpost'), +('31300', 'Signpost'), +('31301', 'Signpost'), +('31302', 'Juna'), +('31303', 'Juna'), +('31304', 'null'), +('31305', 'Broken door'), +('31306', 'Sticks'), +('31307', 'Sticks'), +('31308', 'Sticks'), +('31309', 'Sarcophagus'), +('31310', 'Mummy'), +('31311', 'null'), +('31312', 'Skeleton'), +('31313', 'Skeleton'), +('31314', 'Wavering mystic barrier'), +('31315', 'Wavering mystic barrier'), +('31316', 'Bucket rope'), +('31317', 'Flames'), +('31318', 'Ashy Pedestal'), +('31319', 'Exit'), +('31320', 'null'), +('31321', 'null'), +('31322', 'null'), +('31323', 'Tomb'), +('31324', 'Tomb'), +('31325', 'Tomb'), +('31326', 'Tomb'), +('31327', 'null'), +('31328', 'Wall'), +('31329', 'null'), +('31330', 'Solid wall'), +('31331', 'A holey wall'), +('31332', 'A holey wall'), +('31333', 'Broken door'), +('31334', 'Broken door'), +('31335', 'Broken door'), +('31336', 'Broken door'), +('31337', 'Broken door'), +('31338', 'Broken door'), +('31339', 'Broken door'), +('31340', 'Door'), +('31341', 'Door'), +('31342', 'Door'), +('31343', 'Door'), +('31344', 'null'), +('31345', 'null'), +('31346', 'null'), +('31347', 'null'), +('31348', 'Sarcophagus'), +('31349', 'Sarcophagus'), +('31350', 'Floor'), +('31351', 'Odd markings'), +('31352', 'null'), +('31353', 'null'), +('31354', 'null'), +('31355', 'null'), +('31356', 'null'), +('31357', 'Lever'), +('31358', 'Lever'), +('31359', 'Well'), +('31360', 'null'), +('31361', 'Open tome'), +('31362', 'Ashy pedestal'), +('31363', 'Pulsing markings'), +('31364', 'Dull markings'), +('31365', 'null'), +('31366', 'null'), +('31367', 'A dark hole'), +('31368', 'null'), +('31369', 'Mystic barrier'), +('31370', 'Mystic barrier'), +('31371', 'Intact sarcophagus'), +('31372', 'Damaged sarcophagus'), +('31373', 'Empty sarcophagus'), +('31374', 'null'), +('31375', 'null'), +('31376', 'null'), +('31377', 'Pile of skulls'), +('31378', 'null'), +('31379', 'null'), +('31380', 'null'), +('31381', 'null'), +('31382', 'null'), +('31383', 'null'), +('31384', 'null'), +('31385', 'null'), +('31386', 'null'), +('31387', 'null'), +('31388', 'null'), +('31389', 'null'), +('31390', 'Dark stairs'), +('31391', 'null'), +('31392', 'null'), +('31393', 'null'), +('31394', 'null'), +('31395', 'null'), +('31396', 'null'), +('31397', 'null'), +('31398', 'null'), +('31399', 'null'), +('31400', 'null'), +('31401', 'null'), +('31402', 'null'), +('31403', 'null'), +('31404', 'null'), +('31405', 'null'), +('31406', 'null'), +('31407', 'null'), +('31408', 'null'), +('31409', 'null'), +('31410', 'null'), +('31411', 'null'), +('31412', 'Stairs'), +('31413', 'null'), +('31414', 'null'), +('31415', 'null'), +('31416', 'null'), +('31417', 'Stairs'), +('31418', 'null'), +('31419', 'null'), +('31420', 'null'), +('31421', 'Subterranean spring'), +('31422', 'Machinery'), +('31423', 'Machinery'), +('31424', 'Incomprehensible machinery'), +('31425', 'Rock mound'), +('31426', 'Rock mound'), +('31427', 'Spiky pillar'), +('31428', 'Smashed pillar'), +('31429', 'Crystalline structure'), +('31430', 'null'), +('31431', 'null'), +('31432', 'null'), +('31433', 'null'), +('31434', 'null'), +('31435', 'Mystic barrier'), +('31436', 'Mystic barrier'), +('31437', 'Kurask head'), +('31438', 'null'), +('31439', 'null'), +('31440', 'null'), +('31441', 'null'), +('31442', 'null'), +('31443', 'null'), +('31444', 'null'), +('31445', 'null'), +('31446', 'null'), +('31447', 'Flowerbed'), +('31448', 'Soil'), +('31449', 'null'), +('31450', 'null'), +('31451', 'null'), +('31452', 'Bed'), +('31453', 'null'), +('31454', 'Door'), +('31455', 'Door'), +('31456', 'Pipes'), +('31457', 'Pipes'), +('31458', 'Dead guy'), +('31459', 'Customs Sergeant'), +('31460', 'Locker'), +('31461', 'null'), +('31462', 'null'), +('31463', 'null'), +('31464', 'null'), +('31465', 'null'), +('31466', 'null'), +('31467', 'null'), +('31468', 'null'), +('31469', 'null'), +('31470', 'null'), +('31471', 'null'), +('31472', 'null'), +('31473', 'null'), +('31474', 'null'), +('31475', 'null'), +('31476', 'null'), +('31477', 'null'), +('31478', 'null'), +('31479', 'null'), +('31480', 'null'), +('31481', 'null'), +('31482', 'null'), +('31483', 'null'), +('31484', 'null'), +('31485', 'null'), +('31486', 'null'), +('31487', 'null'), +('31488', 'null'), +('31489', 'null'), +('31490', 'null'), +('31491', 'null'), +('31492', 'null'), +('31493', 'null'), +('31494', 'null'), +('31495', 'Barred window'), +('31496', 'Cell door'), +('31497', 'null'), +('31498', 'null'), +('31499', 'null'), +('31500', 'null'), +('31501', 'null'), +('31502', 'null'), +('31503', 'null'), +('31504', 'null'), +('31505', 'null'), +('31506', 'null'), +('31507', 'null'), +('31508', 'null'), +('31509', 'null'), +('31510', 'null'), +('31511', 'null'), +('31512', 'null'), +('31513', 'null'), +('31514', 'null'), +('31515', 'null'), +('31516', 'null'), +('31517', 'null'), +('31518', 'null'), +('31519', 'null'), +('31520', 'null'), +('31521', 'null'), +('31522', 'null'), +('31523', 'null'), +('31524', 'null'), +('31525', 'null'), +('31526', 'null'), +('31527', 'null'), +('31528', 'Desk'), +('31529', 'Stairs'), +('31530', 'Stairs'), +('31531', 'null'), +('31532', 'null'), +('31533', 'Door'), +('31534', 'Door'), +('31535', 'Door'), +('31536', 'Pipes'), +('31537', 'Pipes'), +('31538', 'Pipes'), +('31539', 'Door'), +('31540', 'Door'), +('31541', 'Sharp rock'), +('31542', 'Cabinet'), +('31543', 'Cabinet'), +('31544', 'Rubble'), +('31545', 'Rubble'), +('31546', 'Rubble'), +('31547', 'Rubble'), +('31548', 'Bed'), +('31549', 'null'), +('31550', 'Bed'), +('31551', 'Bed'), +('31552', 'Desk'), +('31553', 'Bookcase'), +('31554', 'Locker'), +('31555', 'null'), +('31556', 'null'), +('31557', 'Perch rock'), +('31558', 'Perch rock'), +('31559', 'Perch rock'), +('31560', 'Perch rock'), +('31561', 'Perch rock'), +('31562', 'Anchor'), +('31563', 'Anchor'), +('31564', 'Anchor'), +('31565', 'null'), +('31566', 'null'), +('31567', 'null'), +('31568', 'null'), +('31569', 'null'), +('31570', 'null'), +('31571', 'null'), +('31572', 'null'), +('31573', 'null'), +('31574', 'null'), +('31575', 'null'), +('31576', 'null'), +('31577', 'null'), +('31578', 'null'), +('31579', 'null'), +('31580', 'null'), +('31581', 'null'), +('31582', 'null'), +('31583', 'null'), +('31584', 'null'), +('31585', 'null'), +('31586', 'null'), +('31587', 'null'), +('31588', 'null'), +('31589', 'null'), +('31590', 'null'), +('31591', 'null'), +('31592', 'Mess'), +('31593', 'Mess'), +('31594', 'Idol'), +('31595', 'Shelf'), +('31596', 'Shelf'), +('31597', 'Shelf'), +('31598', 'null'), +('31599', 'null'), +('31600', 'null'), +('31601', 'null'), +('31602', 'null'), +('31603', 'null'), +('31604', 'null'), +('31605', 'null'), +('31606', 'null'), +('31607', 'null'), +('31608', 'null'), +('31609', 'null'), +('31610', 'null'), +('31611', 'null'), +('31612', 'null'), +('31613', 'null'), +('31614', 'null'), +('31615', 'null'), +('31616', 'null'), +('31617', 'null'), +('31618', 'null'), +('31619', 'null'), +('31620', 'null'), +('31621', 'null'), +('31622', 'null'), +('31623', 'null'), +('31624', 'null'), +('31625', 'null'), +('31626', 'null'), +('31627', 'null'), +('31628', 'null'), +('31629', 'null'), +('31630', 'null'), +('31631', 'null'), +('31632', 'null'), +('31633', 'null'), +('31634', 'null'), +('31635', 'null'), +('31636', 'null'), +('31637', 'null'), +('31638', 'null'), +('31639', 'null'), +('31640', 'null'), +('31641', 'null'), +('31642', 'null'), +('31643', 'null'), +('31644', 'null'), +('31645', 'null'), +('31646', 'null'), +('31647', 'null'), +('31648', 'null'), +('31649', 'Notices'), +('31650', 'null'), +('31651', 'Pier'), +('31652', 'Chain'), +('31653', 'Chest'), +('31654', 'Chest'), +('31655', 'null'), +('31656', 'null'), +('31657', 'null'), +('31658', 'null'), +('31659', 'null'), +('31660', 'null'), +('31661', 'null'), +('31662', 'null'), +('31663', 'null'), +('31664', 'null'), +('31665', 'null'), +('31666', 'null'), +('31667', 'null'), +('31668', 'null'), +('31669', 'null'), +('31670', 'null'), +('31671', 'null'), +('31672', 'null'), +('31673', 'null'), +('31674', 'null'), +('31675', 'null'), +('31676', 'null'), +('31677', 'null'), +('31678', 'null'), +('31679', 'null'), +('31680', 'null'), +('31681', 'Cannon'), +('31682', 'null'), +('31683', 'null'), +('31684', 'null'), +('31685', 'null'), +('31686', 'null'), +('31687', 'null'), +('31688', 'null'), +('31689', 'null'), +('31690', 'null'), +('31691', 'null'), +('31692', 'null'), +('31693', 'null'), +('31694', 'null'), +('31695', 'null'), +('31696', 'null'), +('31697', 'null'), +('31698', 'null'), +('31699', 'null'), +('31700', 'null'), +('31701', 'null'), +('31702', 'null'), +('31703', 'null'), +('31704', 'null'), +('31705', 'null'), +('31706', 'null'), +('31707', 'null'), +('31708', 'null'), +('31709', 'null'), +('31710', 'null'), +('31711', 'null'), +('31712', 'null'), +('31713', 'null'), +('31714', 'null'), +('31715', 'null'), +('31716', 'null'), +('31717', 'null'), +('31718', 'null'), +('31719', 'null'), +('31720', 'null'), +('31721', 'null'), +('31722', 'null'), +('31723', 'null'), +('31724', 'null'), +('31725', 'null'), +('31726', 'null'), +('31727', 'null'), +('31728', 'null'), +('31729', 'null'), +('31730', 'null'), +('31731', 'null'), +('31732', 'null'), +('31733', 'null'), +('31734', 'null'), +('31735', 'null'), +('31736', 'null'), +('31737', 'null'), +('31738', 'null'), +('31739', 'null'), +('31740', 'null'), +('31741', 'null'), +('31742', 'null'), +('31743', 'Posts'), +('31744', 'null'), +('31745', 'Pirate Flag'), +('31746', 'null'), +('31747', 'null'), +('31748', 'null'), +('31749', 'null'), +('31750', 'null'), +('31751', 'null'), +('31752', 'null'), +('31753', 'null'), +('31754', 'null'), +('31755', 'null'), +('31756', 'null'), +('31757', 'null'), +('31758', 'null'), +('31759', 'null'), +('31760', 'null'), +('31761', 'null'), +('31762', 'null'), +('31763', 'null'), +('31764', 'null'), +('31765', 'null'), +('31766', 'null'), +('31767', 'Cooking shelves'), +('31768', 'null'), +('31769', 'null'), +('31770', 'null'), +('31771', 'null'), +('31772', 'null'), +('31773', 'null'), +('31774', 'null'), +('31775', 'null'), +('31776', 'null'), +('31777', 'null'), +('31778', 'null'), +('31779', 'null'), +('31780', 'null'), +('31781', 'null'), +('31782', 'null'), +('31783', 'null'), +('31784', 'null'), +('31785', 'null'), +('31786', 'null'), +('31787', 'null'), +('31788', 'null'), +('31789', 'null'), +('31790', 'null'), +('31791', 'null'), +('31792', 'null'), +('31793', 'null'), +('31794', 'null'), +('31795', 'null'), +('31796', 'null'), +('31797', 'null'), +('31798', 'null'), +('31799', 'null'), +('31800', 'null'), +('31801', 'null'), +('31802', 'null'), +('31803', 'null'), +('31804', 'null'), +('31805', 'null'), +('31806', 'null'), +('31807', 'null'), +('31808', 'Large door'), +('31809', 'Large door'), +('31810', 'null'), +('31811', 'Large door'), +('31812', 'Large door'), +('31813', 'null'), +('31814', 'Large door'), +('31815', 'Large door'), +('31816', 'Large door'), +('31817', 'Large door'), +('31818', 'Large door'), +('31819', 'Large door'), +('31820', 'Large door'), +('31821', 'Large door'), +('31822', 'Large door'), +('31823', 'Large door'), +('31824', 'Door'), +('31825', 'Door'), +('31826', 'Door'), +('31827', 'Door'), +('31828', 'Large door'), +('31829', 'Door'), +('31830', 'Door'), +('31831', 'Door'), +('31832', 'Door'), +('31833', 'Ancient Gate'), +('31834', 'Ancient Gate'), +('31835', 'null'), +('31836', 'null'), +('31837', 'null'), +('31838', 'Door'), +('31839', 'Door'), +('31840', 'null'), +('31841', 'Door'), +('31842', 'Door'), +('31843', 'null'), +('31844', 'Door'), +('31845', 'Door'), +('31846', 'null'), +('31847', 'null'), +('31848', 'null'), +('31849', 'null'), +('31850', 'null'), +('31851', 'null'), +('31852', 'null'), +('31853', 'null'), +('31854', 'null'), +('31855', 'null'), +('31856', 'null'), +('31857', 'null'), +('31858', 'null'), +('31859', 'null'), +('31860', 'null'), +('31861', 'null'), +('31862', 'null'), +('31863', 'null'), +('31864', 'null'), +('31865', 'null'), +('31866', 'null'), +('31867', 'null'), +('31868', 'null'), +('31869', 'null'), +('31870', 'null'), +('31871', 'null'), +('31872', 'null'), +('31873', 'null'), +('31874', 'null'), +('31875', 'null'), +('31876', 'null'), +('31877', 'null'), +('31878', 'null'), +('31879', 'null'), +('31880', 'null'), +('31881', 'null'), +('31882', 'null'), +('31883', 'null'), +('31884', 'null'), +('31885', 'null'), +('31886', 'null'), +('31887', 'null'), +('31888', 'null'), +('31889', 'null'), +('31890', 'null'), +('31891', 'null'), +('31892', 'null'), +('31893', 'null'), +('31894', 'null'), +('31895', 'null'), +('31896', 'null'), +('31897', 'null'), +('31898', 'null'), +('31899', 'null'), +('31900', 'null'), +('31901', 'null'), +('31902', 'null'), +('31903', 'null'), +('31904', 'null'), +('31905', 'null'), +('31906', 'null'), +('31907', 'null'), +('31908', 'null'), +('31909', 'null'), +('31910', 'null'), +('31911', 'null'), +('31912', 'null'), +('31913', 'null'), +('31914', 'null'), +('31915', 'null'), +('31916', 'null'), +('31917', 'null'), +('31918', 'null'), +('31919', 'null'), +('31920', 'null'), +('31921', 'null'), +('31922', 'null'), +('31923', 'null'), +('31924', 'null'), +('31925', 'null'), +('31926', 'null'), +('31927', 'null'), +('31928', 'null'), +('31929', 'null'), +('31930', 'null'), +('31931', 'null'), +('31932', 'null'), +('31933', 'null'), +('31934', 'null'), +('31935', 'null'), +('31936', 'null'), +('31937', 'null'), +('31938', 'null'), +('31939', 'null'), +('31940', 'null'), +('31941', 'null'), +('31942', 'null'), +('31943', 'null'), +('31944', 'null'), +('31945', 'null'), +('31946', 'null'), +('31947', 'null'), +('31948', 'null'), +('31949', 'null'), +('31950', 'null'), +('31951', 'null'), +('31952', 'null'), +('31953', 'null'), +('31954', 'null'), +('31955', 'null'), +('31956', 'null'), +('31957', 'null'), +('31958', 'null'), +('31959', 'null'), +('31960', 'null'), +('31961', 'null'), +('31962', 'null'), +('31963', 'null'), +('31964', 'null'), +('31965', 'null'), +('31966', 'null'), +('31967', 'null'), +('31968', 'null'), +('31969', 'null'), +('31970', 'null'), +('31971', 'null'), +('31972', 'null'), +('31973', 'null'), +('31974', 'null'), +('31975', 'null'), +('31976', 'null'), +('31977', 'null'), +('31978', 'null'), +('31979', 'null'), +('31980', 'null'), +('31981', 'null'), +('31982', 'null'), +('31983', 'null'), +('31984', 'null'), +('31985', 'null'), +('31986', 'null'), +('31987', 'null'), +('31988', 'null'), +('31989', 'null'), +('31990', 'null'), +('31991', 'null'), +('31992', 'null'), +('31993', 'null'), +('31994', 'null'), +('31995', 'null'), +('31996', 'null'), +('31997', 'null'), +('31998', 'null'), +('31999', 'null'), +('32000', 'null'), +('32001', 'null'), +('32002', 'null'), +('32003', 'Pillar'), +('32004', 'null'), +('32005', 'Coal'), +('32006', 'null'), +('32007', 'null'), +('32008', 'Rock'), +('32009', 'Open chest'), +('32010', 'Closed chest'), +('32011', 'null'), +('32012', 'Animal skull'), +('32013', 'Animal skull'), +('32014', 'Animal skull'), +('32015', 'Ladder'), +('32016', 'Ladder'), +('32017', 'null'), +('32018', 'null'), +('32019', 'null'), +('32020', 'null'), +('32021', 'null'), +('32022', 'Standard'), +('32023', 'Well'), +('32024', 'Well'), +('32025', 'null'), +('32026', 'null'), +('32027', 'null'), +('32028', 'Shelf'), +('32029', 'Bed'), +('32030', 'Bed'), +('32031', 'Bed'), +('32032', 'Chair'), +('32033', 'Stool'), +('32034', 'Hanging log'), +('32035', 'null'), +('32036', 'null'), +('32037', 'null'), +('32038', 'null'), +('32039', 'null'), +('32040', 'null'), +('32041', 'null'), +('32042', 'null'), +('32043', 'null'), +('32044', 'null'), +('32045', 'null'), +('32046', 'null'), +('32047', 'null'), +('32048', 'Staircase'), +('32049', 'Sacks'), +('32050', 'Spear wall'), +('32051', 'Spear wall'), +('32052', 'null'), +('32053', 'null'), +('32054', 'null'), +('32055', 'null'), +('32056', 'null'), +('32057', 'null'), +('32058', 'null'), +('32059', 'null'), +('32060', 'null'), +('32061', 'null'), +('32062', 'null'), +('32063', 'Barrel'), +('32064', 'null'), +('32065', 'Fungus'), +('32066', 'Fungus'), +('32067', 'Fungus'), +('32068', 'Tunnel'), +('32069', 'Tunnel'), +('32070', 'Bench'), +('32071', 'Charred bones'), +('32072', 'Corpse'), +('32073', 'Corpse'), +('32074', 'Corpse'), +('32075', 'Corpse'), +('32076', 'Stalagmites'), +('32077', 'Flat rock'), +('32078', 'Odd markings'), +('32079', 'Chaos altar'), +('32080', 'null'), +('32081', 'null'), +('32082', 'null'), +('32083', 'null'), +('32084', 'null'), +('32085', 'null'), +('32086', 'null'), +('32087', 'null'), +('32088', 'null'), +('32089', 'null'), +('32090', 'null'), +('32091', 'null'), +('32092', 'null'), +('32093', 'null'), +('32094', 'null'), +('32095', 'null'), +('32096', 'null'), +('32097', 'null'), +('32098', 'null'), +('32099', 'fire'), +('32100', 'null'), +('32101', 'null'), +('32102', 'null'), +('32103', 'null'), +('32104', 'null'), +('32105', 'a cooking pot'), +('32106', 'Fungus covered Cavern wall'), +('32107', 'Fungus pattern'), +('32108', 'null'), +('32109', 'null'), +('32110', 'null'), +('32111', 'null'), +('32112', 'null'), +('32113', 'null'), +('32114', 'null'), +('32115', 'null'), +('32116', 'null'), +('32117', 'null'), +('32118', 'null'), +('32119', 'null'), +('32120', 'Smashed chair'), +('32121', 'Table'), +('32122', 'null'), +('32123', 'null'), +('32124', 'null'), +('32125', 'null'), +('32126', 'null'), +('32127', 'null'), +('32128', 'null'), +('32129', 'null'), +('32130', 'null'), +('32131', 'Passage'), +('32132', 'null'), +('32133', 'null'), +('32134', 'null'), +('32135', 'null'), +('32136', 'null'), +('32137', 'null'), +('32138', 'null'), +('32139', 'null'), +('32140', 'null'), +('32141', 'null'), +('32142', 'null'), +('32143', 'null'), +('32144', 'null'), +('32145', 'null'), +('32146', 'null'), +('32147', 'null'), +('32148', 'null'), +('32149', 'null'), +('32150', 'null'), +('32151', 'null'), +('32152', 'null'), +('32153', 'null'), +('32154', 'null'), +('32155', 'null'), +('32156', 'null'), +('32157', 'null'), +('32158', 'null'), +('32159', 'null'), +('32160', 'null'), +('32161', 'null'), +('32162', 'null'), +('32163', 'null'), +('32164', 'null'), +('32165', 'null'), +('32166', 'null'), +('32167', 'null'), +('32168', 'null'), +('32169', 'null'), +('32170', 'null'), +('32171', 'null'), +('32172', 'null'), +('32173', 'null'), +('32174', 'null'), +('32175', 'null'), +('32176', 'null'), +('32177', 'null'), +('32178', 'null'), +('32179', 'null'), +('32180', 'null'), +('32181', 'null'), +('32182', 'null'), +('32183', 'null'), +('32184', 'null'), +('32185', 'null'), +('32186', 'null'), +('32187', 'null'), +('32188', 'null'), +('32189', 'null'), +('32190', 'null'), +('32191', 'null'), +('32192', 'null'), +('32193', 'null'), +('32194', 'null'), +('32195', 'null'), +('32196', 'null'), +('32197', 'null'), +('32198', 'null'), +('32199', 'null'), +('32200', 'null'), +('32201', 'null'), +('32202', 'null'), +('32203', 'null'), +('32204', 'null'), +('32205', 'null'), +('32206', 'null'), +('32207', 'null'), +('32208', 'null'), +('32209', 'null'), +('32210', 'null'), +('32211', 'null'), +('32212', 'null'), +('32213', 'null'), +('32214', 'null'), +('32215', 'null'), +('32216', 'null'), +('32217', 'null'), +('32218', 'null'), +('32219', 'null'), +('32220', 'null'), +('32221', 'null'), +('32222', 'null'), +('32223', 'null'), +('32224', 'null'), +('32225', 'null'), +('32226', 'null'), +('32227', 'null'), +('32228', 'null'), +('32229', 'null'), +('32230', 'null'), +('32231', 'null'), +('32232', 'null'), +('32233', 'null'), +('32234', 'null'), +('32235', 'null'), +('32236', 'null'), +('32237', 'null'), +('32238', 'null'), +('32239', 'null'), +('32240', 'null'), +('32241', 'null'), +('32242', 'null'), +('32243', 'null'), +('32244', 'null'), +('32245', 'null'), +('32246', 'null'), +('32247', 'null'), +('32248', 'null'), +('32249', 'null'), +('32250', 'null'), +('32251', 'Bed'), +('32252', 'Tomb'), +('32253', 'pillar'), +('32254', 'null'), +('32255', 'null'), +('32256', 'null'), +('32257', 'null'), +('32258', 'null'), +('32259', 'null'), +('32260', 'null'), +('32261', 'null'), +('32262', 'null'), +('32263', 'null'), +('32264', 'Rock'), +('32265', 'Rock'), +('32266', 'Rock'), +('32267', 'Rock'), +('32268', 'null'), +('32269', 'null'), +('32270', 'Staircase'), +('32271', 'Staircase'), +('32272', 'Large grave'), +('32273', 'Chair'), +('32274', 'Chair'), +('32275', 'Throne'), +('32276', 'Bamboo Ladder'), +('32277', 'Bamboo Ladder'), +('32278', 'Wooden defence'), +('32279', 'Climbing rope'), +('32280', 'null'), +('32281', 'Exit Sign'), +('32282', 'Lever'), +('32283', 'Cooking shelves'), +('32284', 'Shelves'), +('32285', 'Throne'), +('32286', 'Chair'), +('32287', 'Candle'), +('32288', 'Candle'), +('32289', 'Altar slab'), +('32290', 'Coffin'), +('32291', 'Coffin'), +('32292', 'Suit of armour'), +('32293', 'Suit of armour'), +('32294', 'Dead tree'), +('32295', 'Standard'), +('32296', 'Obstacle pipe'), +('32297', 'Obstacle pipe'), +('32298', 'Obstacle pipe'), +('32299', 'Obstacle pipe'), +('32300', 'Obstacle pipe'), +('32301', 'Obstacle pipe'), +('32302', 'Obstacle pipe'), +('32303', 'Obstacle pipe'), +('32304', 'Obstacle pipe'), +('32305', 'Obstacle pipe'), +('32306', 'null'), +('32307', 'Bush'), +('32308', 'Fungus'), +('32309', 'Fungus'), +('32310', 'Fungus'), +('32311', 'Eggs'), +('32312', 'Eggs'), +('32313', 'Big egg'), +('32314', 'null'), +('32315', 'null'), +('32316', 'null'), +('32317', 'null'), +('32318', 'null'), +('32319', 'Root'), +('32320', 'Root'), +('32321', 'null'), +('32322', 'Wallshield'), +('32323', 'Helmet rack'), +('32324', 'Magical symbol'), +('32325', 'Magical symbol'), +('32326', 'Painting'), +('32327', 'null'), +('32328', 'null'), +('32329', 'null'), +('32330', 'null'), +('32331', 'null'), +('32332', 'null'), +('32333', 'null'), +('32334', 'null'), +('32335', 'null'), +('32336', 'null'), +('32337', 'null'), +('32338', 'null'), +('32339', 'null'), +('32340', 'null'), +('32341', 'null'), +('32342', 'null'), +('32343', 'null'), +('32344', 'null'), +('32345', 'null'), +('32346', 'null'), +('32347', 'null'), +('32348', 'null'), +('32349', 'null'), +('32350', 'null'), +('32351', 'null'), +('32352', 'null'), +('32353', 'null'), +('32354', 'null'), +('32355', 'null'), +('32356', 'null'), +('32357', 'null'), +('32358', 'null'), +('32359', 'null'), +('32360', 'null'), +('32361', 'null'), +('32362', 'null'), +('32363', 'null'), +('32364', 'null'), +('32365', 'null'), +('32366', 'null'), +('32367', 'null'), +('32368', 'null'), +('32369', 'null'), +('32370', 'null'), +('32371', 'null'), +('32372', 'null'), +('32373', 'null'), +('32374', 'null'), +('32375', 'null'), +('32376', 'null'), +('32377', 'null'), +('32378', 'null'), +('32379', 'null'), +('32380', 'null'), +('32381', 'null'), +('32382', 'null'), +('32383', 'null'), +('32384', 'null'), +('32385', 'null'), +('32386', 'null'), +('32387', 'null'), +('32388', 'null'), +('32389', 'null'), +('32390', 'null'), +('32391', 'null'), +('32392', 'null'), +('32393', 'null'), +('32394', 'null'), +('32395', 'null'), +('32396', 'null'), +('32397', 'null'), +('32398', 'null'), +('32399', 'null'), +('32400', 'null'), +('32401', 'null'), +('32402', 'null'), +('32403', 'null'), +('32404', 'null'), +('32405', 'null'), +('32406', 'null'), +('32407', 'null'), +('32408', 'null'), +('32409', 'null'), +('32410', 'null'), +('32411', 'null'), +('32412', 'null'), +('32413', 'null'), +('32414', 'null'), +('32415', 'null'), +('32416', 'null'), +('32417', 'null'), +('32418', 'null'), +('32419', 'null'), +('32420', 'null'), +('32421', 'null'), +('32422', 'null'), +('32423', 'null'), +('32424', 'null'), +('32425', 'null'), +('32426', 'Rocks'), +('32427', 'Rocks'), +('32428', 'Rocks'), +('32429', 'Rocks'), +('32430', 'Rocks'), +('32431', 'Rocks'), +('32432', 'Rocks'), +('32433', 'Rocks'), +('32434', 'Rocks'), +('32435', 'Rocks'), +('32436', 'Rocks'), +('32437', 'Rocks'), +('32438', 'Rocks'), +('32439', 'Rocks'), +('32440', 'Rocks'), +('32441', 'Rocks'), +('32442', 'Rocks'), +('32443', 'Rocks'), +('32444', 'Rocks'), +('32445', 'Rocks'), +('32446', 'Rocks'), +('32447', 'Rocks'), +('32448', 'Rocks'), +('32449', 'Rocks'), +('32450', 'Rocks'), +('32451', 'Rocks'), +('32452', 'Rocks'), +('32453', 'null'), +('32454', 'null'), +('32455', 'null'), +('32456', 'null'), +('32457', 'null'), +('32458', 'null'), +('32459', 'null'), +('32460', 'null'), +('32461', 'null'), +('32462', 'null'), +('32463', 'null'), +('32464', 'null'), +('32465', 'null'), +('32466', 'null'), +('32467', 'null'), +('32468', 'null'), +('32469', 'null'), +('32470', 'null'), +('32471', 'null'), +('32472', 'null'), +('32473', 'null'), +('32474', 'null'), +('32475', 'null'), +('32476', 'null'), +('32477', 'null'), +('32478', 'null'), +('32479', 'null'), +('32480', 'null'), +('32481', 'null'), +('32482', 'null'), +('32483', 'null'), +('32484', 'null'), +('32485', 'null'), +('32486', 'null'), +('32487', 'null'), +('32488', 'null'), +('32489', 'null'), +('32490', 'null'), +('32491', 'null'), +('32492', 'null'), +('32493', 'null'), +('32494', 'Cave Exit'), +('32495', 'Cave Exit'), +('32496', 'null'), +('32497', 'null'), +('32498', 'null'), +('32499', 'null'), +('32500', 'null'), +('32501', 'null'), +('32502', 'null'), +('32503', 'null'), +('32504', 'null'), +('32505', 'null'), +('32506', 'null'), +('32507', 'null'), +('32508', 'null'), +('32509', 'null'), +('32510', 'null'), +('32511', 'null'), +('32512', 'null'), +('32513', 'null'), +('32514', 'null'), +('32515', 'null'), +('32516', 'null'), +('32517', 'null'), +('32518', 'null'), +('32519', 'null'), +('32520', 'null'), +('32521', 'null'), +('32522', 'null'), +('32523', 'null'), +('32524', 'null'), +('32525', 'null'), +('32526', 'null'), +('32527', 'null'), +('32528', 'null'), +('32529', 'null'), +('32530', 'null'), +('32531', 'null'), +('32532', 'null'), +('32533', 'null'), +('32534', 'null'), +('32535', 'null'), +('32536', 'null'), +('32537', 'null'), +('32538', 'null'), +('32539', 'null'), +('32540', 'null'), +('32541', 'null'), +('32542', 'null'), +('32543', 'null'), +('32544', 'null'), +('32545', 'null'), +('32546', 'null'), +('32547', 'null'), +('32548', 'null'), +('32549', 'null'), +('32550', 'null'), +('32551', 'null'), +('32552', 'null'), +('32553', 'null'), +('32554', 'null'), +('32555', 'null'), +('32556', 'null'), +('32557', 'null'), +('32558', 'null'), +('32559', 'null'), +('32560', 'null'), +('32561', 'null'), +('32562', 'null'), +('32563', 'null'), +('32564', 'null'), +('32565', 'null'), +('32566', 'null'), +('32567', 'null'), +('32568', 'null'), +('32569', 'null'), +('32570', 'null'), +('32571', 'null'), +('32572', 'null'), +('32573', 'null'), +('32574', 'null'), +('32575', 'null'), +('32576', 'null'), +('32577', 'null'), +('32578', 'null'), +('32579', 'null'), +('32580', 'null'), +('32581', 'null'), +('32582', 'null'), +('32583', 'null'), +('32584', 'null'), +('32585', 'null'), +('32586', 'null'), +('32587', 'null'), +('32588', 'null'), +('32589', 'null'), +('32590', 'null'), +('32591', 'null'), +('32592', 'null'), +('32593', 'null'), +('32594', 'null'), +('32595', 'null'), +('32596', 'null'), +('32597', 'null'), +('32598', 'null'), +('32599', 'null'), +('32600', 'null'), +('32601', 'null'), +('32602', 'null'), +('32603', 'null'), +('32604', 'null'), +('32605', 'null'), +('32606', 'null'), +('32607', 'null'), +('32608', 'null'), +('32609', 'null'), +('32610', 'null'), +('32611', 'null'), +('32612', 'null'), +('32613', 'null'), +('32614', 'null'), +('32615', 'null'), +('32616', 'null'), +('32617', 'null'), +('32618', 'null'), +('32619', 'null'), +('32620', 'null'), +('32621', 'null'), +('32622', 'null'), +('32623', 'null'), +('32624', 'null'), +('32625', 'null'), +('32626', 'null'), +('32627', 'null'), +('32628', 'null'), +('32629', 'null'), +('32630', 'null'), +('32631', 'null'), +('32632', 'null'), +('32633', 'null'), +('32634', 'null'), +('32635', 'null'), +('32636', 'null'), +('32637', 'null'), +('32638', 'null'), +('32639', 'null'), +('32640', 'null'), +('32641', 'null'), +('32642', 'null'), +('32643', 'null'), +('32644', 'null'), +('32645', 'null'), +('32646', 'null'), +('32647', 'null'), +('32648', 'null'), +('32649', 'null'), +('32650', 'null'), +('32651', 'null'), +('32652', 'null'), +('32653', 'null'), +('32654', 'null'), +('32655', 'null'), +('32656', 'null'), +('32657', 'null'), +('32658', 'null'), +('32659', 'null'), +('32660', 'null'), +('32661', 'null'), +('32662', 'null'), +('32663', 'null'), +('32664', 'null'), +('32665', 'null'), +('32666', 'null'), +('32667', 'null'), +('32668', 'null'), +('32669', 'null'), +('32670', 'null'), +('32671', 'null'), +('32672', 'null'), +('32673', 'null'), +('32674', 'null'), +('32675', 'null'), +('32676', 'null'), +('32677', 'null'), +('32678', 'null'), +('32679', 'null'), +('32680', 'null'), +('32681', 'null'), +('32682', 'null'), +('32683', 'null'), +('32684', 'null'), +('32685', 'null'), +('32686', 'null'), +('32687', 'null'), +('32688', 'null'), +('32689', 'null'), +('32690', 'null'), +('32691', 'null'), +('32692', 'null'), +('32693', 'null'), +('32694', 'null'), +('32695', 'null'), +('32696', 'Obstacle pipe'), +('32697', 'Obstacle pipe'), +('32698', 'Obstacle pipe'), +('32699', 'null'), +('32700', 'null'), +('32701', 'null'), +('32702', 'null'), +('32703', 'null'), +('32704', 'null'), +('32705', 'null'), +('32706', 'null'), +('32707', 'null'), +('32708', 'null'), +('32709', 'null'), +('32710', 'null'), +('32711', 'Door'), +('32712', 'null'), +('32713', 'null'), +('32714', 'null'), +('32715', 'null'), +('32716', 'null'), +('32717', 'null'), +('32718', 'null'), +('32719', 'null'), +('32720', 'null'), +('32721', 'null'), +('32722', 'null'), +('32723', 'null'), +('32724', 'null'), +('32725', 'null'), +('32726', 'null'), +('32727', 'null'), +('32728', 'null'), +('32729', 'null'), +('32730', 'null'), +('32731', 'null'), +('32732', 'null'), +('32733', 'null'), +('32734', 'null'), +('32735', 'null'), +('32736', 'null'), +('32737', 'Cave Exit'), +('32738', 'Cave Exit'), +('32739', 'null'), +('32740', 'null'), +('32741', 'null'), +('32742', 'null'), +('32743', 'Cave Exit'), +('32744', 'null'), +('32745', 'null'), +('32746', 'null'), +('32747', 'null'), +('32748', 'null'), +('32749', 'null'), +('32750', 'null'), +('32751', 'null'), +('32752', 'null'), +('32753', 'null'), +('32754', 'null'), +('32755', 'null'), +('32756', 'null'), +('32757', 'null'), +('32758', 'null'), +('32759', 'null'), +('32760', 'null'), +('32761', 'null'), +('32762', 'null'), +('32763', 'null'), +('32764', 'null'), +('32765', 'null'), +('32766', 'Old spike'), +('32767', 'Old spike'), +('32768', 'null'), +('32769', 'null'), +('32770', 'null'), +('32771', 'Rope'), +('32772', 'Rope'), +('32773', 'null'), +('32774', 'null'), +('32775', 'null'), +('32776', 'null'), +('32777', 'null'), +('32778', 'null'), +('32779', 'null'), +('32780', 'null'), +('32781', 'null'), +('32782', 'null'), +('32783', 'null'), +('32784', 'null'), +('32785', 'null'), +('32786', 'null'), +('32787', 'null'), +('32788', 'null'), +('32789', 'null'), +('32790', 'null'), +('32791', 'null'), +('32792', 'null'), +('32793', 'null'), +('32794', 'null'), +('32795', 'null'), +('32796', 'null'), +('32797', 'null'), +('32798', 'null'), +('32799', 'null'), +('32800', 'null'), +('32801', 'null'), +('32802', 'null'), +('32803', 'null'), +('32804', 'null'), +('32805', 'null'), +('32806', 'null'), +('32807', 'null'), +('32808', 'null'), +('32809', 'null'), +('32810', 'null'), +('32811', 'null'), +('32812', 'null'), +('32813', 'null'), +('32814', 'null'), +('32815', 'null'), +('32816', 'null'), +('32817', 'null'), +('32818', 'null'), +('32819', 'null'), +('32820', 'null'), +('32821', 'null'), +('32822', 'null'), +('32823', 'null'), +('32824', 'null'), +('32825', 'null'), +('32826', 'null'), +('32827', 'null'), +('32828', 'null'), +('32829', 'null'), +('32830', 'null'), +('32831', 'null'), +('32832', 'null'), +('32833', 'null'), +('32834', 'null'), +('32835', 'Stairs'), +('32836', 'Stairs'), +('32837', 'null'), +('32838', 'null'), +('32839', 'null'), +('32840', 'null'), +('32841', 'null'), +('32842', 'null'), +('32843', 'null'), +('32844', 'null'), +('32845', 'null'), +('32846', 'null'), +('32847', 'null'), +('32848', 'null'), +('32849', 'null'), +('32850', 'null'), +('32851', 'null'), +('32852', 'null'), +('32853', 'null'), +('32854', 'null'), +('32855', 'null'), +('32856', 'null'), +('32857', 'null'), +('32858', 'null'), +('32859', 'null'), +('32860', 'null'), +('32861', 'null'), +('32862', 'null'), +('32863', 'null'), +('32864', 'null'), +('32865', 'null'), +('32866', 'null'), +('32867', 'null'), +('32868', 'null'), +('32869', 'null'), +('32870', 'null'), +('32871', 'null'), +('32872', 'null'), +('32873', 'null'), +('32874', 'null'), +('32875', 'null'), +('32876', 'null'), +('32877', 'null'), +('32878', 'null'), +('32879', 'null'), +('32880', 'null'), +('32881', 'null'), +('32882', 'null'), +('32883', 'null'), +('32884', 'null'), +('32885', 'null'), +('32886', 'null'), +('32887', 'null'), +('32888', 'null'), +('32889', 'null'), +('32890', 'null'), +('32891', 'Roots'), +('32892', 'null'), +('32893', 'Roots'), +('32894', 'null'), +('32895', 'Roots'), +('32896', 'null'), +('32897', 'Elven lamp'), +('32898', 'null'), +('32899', 'null'), +('32900', 'null'), +('32901', 'null'), +('32902', 'null'), +('32903', 'null'), +('32904', 'null'), +('32905', 'null'), +('32906', 'null'), +('32907', 'null'), +('32908', 'null'), +('32909', 'null'), +('32910', 'null'), +('32911', 'null'), +('32912', 'null'), +('32913', 'null'), +('32914', 'null'), +('32915', 'null'), +('32916', 'null'), +('32917', 'null'), +('32918', 'null'), +('32919', 'null'), +('32920', 'null'), +('32921', 'null'), +('32922', 'null'), +('32923', 'null'), +('32924', 'null'), +('32925', 'null'), +('32926', 'null'), +('32927', 'null'), +('32928', 'null'), +('32929', 'null'), +('32930', 'null'), +('32931', 'null'), +('32932', 'null'), +('32933', 'null'), +('32934', 'null'), +('32935', 'null'), +('32936', 'null'), +('32937', 'null'), +('32938', 'null'), +('32939', 'null'), +('32940', 'null'), +('32941', 'null'), +('32942', 'null'), +('32943', 'null'), +('32944', 'Tunnel'), +('32945', 'null'), +('32946', 'null'), +('32947', 'null'), +('32948', 'null'), +('32949', 'null'), +('32950', 'null'), +('32951', 'null'), +('32952', 'Door'), +('32953', 'Door'), +('32954', 'Door'), +('32955', 'Door'), +('32956', 'null'), +('32957', 'null'), +('32958', 'null'), +('32959', 'null'), +('32960', 'null'), +('32961', 'null'), +('32962', 'null'), +('32963', 'null'), +('32964', 'null'), +('32965', 'null'), +('32966', 'null'), +('32967', 'null'), +('32968', 'Exit door'), +('32969', 'null'), +('32970', 'null'), +('32971', 'null'), +('32972', 'null'), +('32973', 'null'), +('32974', 'null'), +('32975', 'null'), +('32976', 'null'), +('32977', 'null'), +('32978', 'null'), +('32979', 'null'), +('32980', 'null'), +('32981', 'null'), +('32982', 'null'), +('32983', 'null'), +('32984', 'null'), +('32985', 'null'), +('32986', 'null'), +('32987', 'null'), +('32988', 'null'), +('32989', 'null'), +('32990', 'null'), +('32991', 'null'), +('32992', 'null'), +('32993', 'null'), +('32994', 'null'), +('32995', 'null'), +('32996', 'null'), +('32997', 'null'), +('32998', 'null'), +('32999', 'null'), +('33000', 'null'), +('33001', 'null'), +('33002', 'null'), +('33003', 'null'), +('33004', 'null'), +('33005', 'null'), +('33006', 'null'), +('33007', 'null'), +('33008', 'null'), +('33009', 'null'), +('33010', 'null'), +('33011', 'null'), +('33012', 'null'), +('33013', 'null'), +('33014', 'null'), +('33015', 'null'), +('33016', 'null'), +('33017', 'null'), +('33018', 'Entrance'), +('33019', 'null'), +('33020', 'null'), +('33021', 'null'), +('33022', 'null'), +('33023', 'null'), +('33024', 'null'), +('33025', 'null'), +('33026', 'null'), +('33027', 'null'), +('33028', 'null'), +('33029', 'null'), +('33030', 'null'), +('33031', 'null'), +('33032', 'null'), +('33033', 'null'), +('33034', 'null'), +('33035', 'null'), +('33036', 'null'), +('33037', 'null'), +('33038', 'null'), +('33039', 'null'), +('33040', 'null'), +('33041', 'null'), +('33042', 'null'), +('33043', 'null'), +('33044', 'null'), +('33045', 'null'), +('33046', 'Closed chest'), +('33047', 'Open chest'), +('33048', 'Chest'), +('33049', 'null'), +('33050', 'Fire remains'), +('33051', 'Stool'), +('33052', 'Table'), +('33053', 'null'), +('33054', 'Table'), +('33055', 'Bed'), +('33056', 'Bookcase'), +('33057', 'Bookcase'), +('33058', 'Chair'), +('33059', 'null'), +('33060', 'Large door'), +('33061', 'Mirror'), +('33062', 'Cabinet'), +('33063', 'Cabinet'), +('33064', 'Hanging banner'), +('33065', 'Hanging banner'), +('33066', 'Glarial's tomb'), +('33067', 'null'), +('33068', 'null'), +('33069', 'null'), +('33070', 'null'), +('33071', 'null'), +('33072', 'null'), +('33073', 'null'), +('33074', 'null'), +('33075', 'null'), +('33076', 'null'), +('33077', 'null'), +('33078', 'Rocks'), +('33079', 'Rocks'), +('33080', 'Roots'), +('33081', 'Roots'), +('33082', 'Roots'), +('33083', 'null'), +('33084', 'null'), +('33085', 'null'), +('33086', 'null'), +('33087', 'null'), +('33088', 'null'), +('33089', 'null'), +('33090', 'null'), +('33091', 'null'), +('33092', 'null'), +('33093', 'null'), +('33094', 'null'), +('33095', 'null'), +('33096', 'null'), +('33097', 'null'), +('33098', 'null'), +('33099', 'null'), +('33100', 'null'), +('33101', 'null'), +('33102', 'null'), +('33103', 'null'), +('33104', 'null'), +('33105', 'null'), +('33106', 'null'), +('33107', 'null'), +('33108', 'Door'), +('33109', 'Door'), +('33110', 'Door'), +('33111', 'Door'), +('33112', 'null'), +('33113', 'null'), +('33114', 'null'), +('33115', 'null'), +('33116', 'null'), +('33117', 'null'), +('33118', 'null'), +('33119', 'null'), +('33120', 'Barrel'), +('33121', 'Barrel'), +('33122', 'null'), +('33123', 'null'), +('33124', 'Barrel'), +('33125', 'null'), +('33126', 'null'), +('33127', 'null'), +('33128', 'Counter'), +('33129', 'Table'), +('33130', 'null'), +('33131', 'null'), +('33132', 'null'), +('33133', 'null'), +('33134', 'null'), +('33135', 'null'), +('33136', 'null'), +('33137', 'null'), +('33138', 'null'), +('33139', 'null'), +('33140', 'null'), +('33141', 'null'), +('33142', 'null'), +('33143', 'null'), +('33144', 'null'), +('33145', 'null'), +('33146', 'null'), +('33147', 'null'), +('33148', 'null'), +('33149', 'null'), +('33150', 'null'), +('33151', 'null'), +('33152', 'null'), +('33153', 'null'), +('33154', 'null'), +('33155', 'null'), +('33156', 'null'), +('33157', 'null'), +('33158', 'null'), +('33159', 'Table'), +('33160', 'null'), +('33161', 'null'), +('33162', 'null'), +('33163', 'null'), +('33164', 'null'), +('33165', 'null'), +('33166', 'null'), +('33167', 'null'), +('33168', 'null'), +('33169', 'null'), +('33170', 'null'), +('33171', 'null'), +('33172', 'null'), +('33173', 'Cave'), +('33174', 'Icy Cavern'), +('33175', 'null'), +('33176', 'null'), +('33177', 'null'), +('33178', 'null'), +('33179', 'null'), +('33180', 'null'), +('33181', 'null'), +('33182', 'null'), +('33183', 'Ice Light'), +('33184', 'Ladder'), +('33185', 'Crevasse'), +('33186', 'null'), +('33187', 'Suit of armour'), +('33188', 'Wallshield'), +('33189', 'Wallshield'), +('33190', 'Wallshield'), +('33191', 'Wallshield'), +('33192', 'Bow cabinet'), +('33193', 'Chair'), +('33194', 'Chair'), +('33195', 'Chair'), +('33196', 'Chair'), +('33197', 'Bench'), +('33198', 'null'), +('33199', 'null'), +('33200', 'null'), +('33201', 'Table'), +('33202', 'Table'), +('33203', 'null'), +('33204', 'null'), +('33205', 'null'), +('33206', 'null'), +('33207', 'null'), +('33208', 'null'), +('33209', 'null'), +('33210', 'null'), +('33211', 'null'), +('33212', 'null'), +('33213', 'null'), +('33214', 'null'), +('33215', 'null'), +('33216', 'Corpse'), +('33217', 'Corpse'), +('33218', 'Corpse'), +('33219', 'Corpse'), +('33220', 'Rocks'), +('33221', 'Rocks'), +('33222', 'Rocks'), +('33223', 'Rocks'), +('33224', 'Cabinet'), +('33225', 'null'), +('33226', 'null'), +('33227', 'null'), +('33228', 'null'), +('33229', 'null'), +('33230', 'Candles'), +('33231', 'Cabinet'), +('33232', 'Stairs'), +('33233', 'Table'), +('33234', 'null'), +('33235', 'null'), +('33236', 'null'), +('33237', 'Web'), +('33238', 'Slashed web'), +('33239', 'null'), +('33240', 'null'), +('33241', 'null'), +('33242', 'null'), +('33243', 'null'), +('33244', 'Wall opening'), +('33245', 'Wall'), +('33246', 'Exit'), +('33247', 'null'), +('33248', 'null'), +('33249', 'null'), +('33250', 'Lever'), +('33251', 'Lever'), +('33252', 'null'), +('33253', ''), +('33254', 'null'), +('33255', 'null'), +('33256', 'null'), +('33257', 'null'), +('33258', 'null'), +('33259', 'null'), +('33260', 'null'), +('33261', 'Wall'), +('33262', 'null'), +('33263', 'Cart Track'), +('33264', 'null'), +('33265', 'null'), +('33266', 'null'), +('33267', 'null'), +('33268', 'null'), +('33269', 'null'), +('33270', 'null'), +('33271', 'null'), +('33272', 'null'), +('33273', 'null'), +('33274', 'null'), +('33275', 'null'), +('33276', 'null'), +('33277', 'null'), +('33278', 'null'), +('33279', 'null'), +('33280', 'null'), +('33281', 'null'), +('33282', 'null'), +('33283', 'null'), +('33284', 'null'), +('33285', 'null'), +('33286', 'null'), +('33287', 'null'), +('33288', 'null'), +('33289', 'null'), +('33290', 'null'), +('33291', 'null'), +('33292', 'null'), +('33293', 'null'), +('33294', 'null'), +('33295', 'null'), +('33296', 'null'), +('33297', 'null'), +('33298', 'null'), +('33299', 'null'), +('33300', 'null'), +('33301', 'null'), +('33302', 'null'), +('33303', 'null'), +('33304', 'null'), +('33305', 'null'), +('33306', 'null'), +('33307', 'null'), +('33308', 'null'), +('33309', 'null'), +('33310', 'null'), +('33311', 'null'), +('33312', 'null'), +('33313', 'null'), +('33314', 'null'), +('33315', 'null'), +('33316', 'null'), +('33317', 'null'), +('33318', 'null'), +('33319', 'null'), +('33320', 'null'), +('33321', 'null'), +('33322', 'null'), +('33323', 'null'), +('33324', 'null'), +('33325', 'null'), +('33326', 'null'), +('33327', 'null'), +('33328', 'null'), +('33329', 'null'), +('33330', 'null'), +('33331', 'null'), +('33332', 'null'), +('33333', 'null'), +('33334', 'null'), +('33335', 'null'), +('33336', 'null'), +('33337', 'null'), +('33338', 'null'), +('33339', 'null'), +('33340', 'null'), +('33341', 'null'), +('33342', 'null'), +('33343', 'null'), +('33344', 'null'), +('33345', 'null'), +('33346', 'null'), +('33347', 'null'), +('33348', 'null'), +('33349', 'null'), +('33350', 'null'), +('33351', 'null'), +('33352', 'null'), +('33353', 'null'), +('33354', 'null'), +('33355', 'null'), +('33356', 'null'), +('33357', 'null'), +('33358', 'null'), +('33359', 'null'), +('33360', 'null'), +('33361', 'null'), +('33362', 'null'), +('33363', 'null'), +('33364', 'null'), +('33365', 'null'), +('33366', 'null'), +('33367', 'null'), +('33368', 'null'), +('33369', 'null'), +('33370', 'null'), +('33371', 'null'), +('33372', 'null'), +('33373', 'null'), +('33374', 'null'), +('33375', 'null'), +('33376', 'null'), +('33377', 'null'), +('33378', 'null'), +('33379', 'null'), +('33380', 'null'), +('33381', 'null'), +('33382', 'Icicle'), +('33383', 'Icicle'), +('33384', 'Icicle'), +('33385', 'snowrock'), +('33386', 'snowrock'), +('33387', 'snowrock'), +('33388', 'snowrock'), +('33389', 'null'), +('33390', 'null'), +('33391', 'null'), +('33392', 'null'), +('33393', 'null'), +('33394', 'null'), +('33395', 'null'), +('33396', 'null'), +('33397', 'null'), +('33398', 'Pillar'), +('33399', 'Pillar'), +('33400', 'Rocks'), +('33401', 'Rocks'), +('33402', 'Rocks'), +('33403', 'null'), +('33404', 'null'), +('33405', 'null'), +('33406', 'null'), +('33407', 'null'), +('33408', 'null'), +('33409', 'null'), +('33410', 'null'), +('33411', 'null'), +('33412', 'null'), +('33413', 'null'), +('33414', 'null'), +('33415', 'null'), +('33416', 'null'), +('33417', 'null'), +('33418', 'null'), +('33419', 'null'), +('33420', 'null'), +('33421', 'null'), +('33422', 'null'), +('33423', 'null'), +('33424', 'null'), +('33425', 'null'), +('33426', 'null'), +('33427', 'null'), +('33428', 'null'), +('33429', 'null'), +('33430', 'null'), +('33431', 'null'), +('33432', 'null'), +('33433', 'null'), +('33434', 'Window'), +('33435', 'null'), +('33436', 'null'), +('33437', 'null'), +('33438', 'null'), +('33439', 'null'), +('33440', 'null'), +('33441', 'null'), +('33442', 'null'), +('33443', 'null'), +('33444', 'null'), +('33445', 'null'), +('33446', 'null'), +('33447', 'null'), +('33448', 'null'), +('33449', 'null'), +('33450', 'null'), +('33451', 'null'), +('33452', 'null'), +('33453', 'null'), +('33454', 'null'), +('33455', 'null'), +('33456', 'null'), +('33457', 'null'), +('33458', 'Sink'), +('33459', 'null'), +('33460', 'null'), +('33461', 'Drawers'), +('33462', 'Drawers'), +('33463', 'Dresser'), +('33464', 'null'), +('33465', 'null'), +('33466', 'null'), +('33467', 'null'), +('33468', 'null'), +('33469', 'null'), +('33470', 'null'), +('33471', 'null'), +('33472', 'Oil lamp'), +('33473', 'null'), +('33474', 'null'), +('33475', 'null'), +('33476', 'null'), +('33477', 'null'), +('33478', 'null'), +('33479', 'null'), +('33480', 'null'), +('33481', 'null'), +('33482', 'null'), +('33483', 'null'), +('33484', 'null'), +('33485', 'null'), +('33486', 'null'), +('33487', 'null'), +('33488', 'Chest'), +('33489', 'null'), +('33490', 'null'), +('33491', 'null'), +('33492', 'null'), +('33493', 'null'), +('33494', 'null'), +('33495', 'null'), +('33496', 'null'), +('33497', 'null'), +('33498', 'Fireplace'), +('33499', 'Cooking pot'), +('33500', 'Range'), +('33501', 'null'), +('33502', 'Cupboard'), +('33503', 'Cupboard'), +('33504', 'null'), +('33505', 'null'), +('33506', 'null'), +('33507', 'null'), +('33508', 'null'), +('33509', 'null'), +('33510', 'null'), +('33511', 'null'), +('33512', 'null'), +('33513', 'null'), +('33514', 'null'), +('33515', 'null'), +('33516', 'null'), +('33517', 'null'), +('33518', 'null'), +('33519', 'null'), +('33520', 'null'), +('33521', 'null'), +('33522', 'null'), +('33523', 'null'), +('33524', 'null'), +('33525', 'null'), +('33526', 'null'), +('33527', 'null'), +('33528', 'null'), +('33529', 'null'), +('33530', 'null'), +('33531', 'null'), +('33532', 'null'), +('33533', 'null'), +('33534', 'null'), +('33535', 'null'), +('33536', 'null'), +('33537', 'null'), +('33538', 'null'), +('33539', 'null'), +('33540', 'null'), +('33541', 'null'), +('33542', 'null'), +('33543', 'null'), +('33544', 'null'), +('33545', 'null'), +('33546', 'null'), +('33547', 'null'), +('33548', 'null'), +('33549', 'null'), +('33550', 'null'), +('33551', 'null'), +('33552', 'null'), +('33553', 'null'), +('33554', 'null'), +('33555', 'null'), +('33556', 'null'), +('33557', 'null'), +('33558', 'null'), +('33559', 'null'), +('33560', 'null'), +('33561', 'null'), +('33562', 'null'), +('33563', 'null'), +('33564', 'null'), +('33565', 'null'), +('33566', 'null'), +('33567', 'null'), +('33568', 'null'), +('33569', 'null'), +('33570', 'null'), +('33571', 'null'), +('33572', 'null'), +('33573', 'null'), +('33574', 'null'), +('33575', 'null'), +('33576', 'null'), +('33577', 'null'), +('33578', 'null'), +('33579', 'null'), +('33580', 'null'), +('33581', 'null'), +('33582', 'null'), +('33583', 'null'), +('33584', 'null'), +('33585', 'null'), +('33586', 'null'), +('33587', 'null'), +('33588', 'null'), +('33589', 'null'), +('33590', 'null'), +('33591', 'null'), +('33592', 'null'), +('33593', 'null'), +('33594', 'null'), +('33595', 'null'), +('33596', 'null'), +('33597', 'null'), +('33598', 'null'), +('33599', 'null'), +('33600', 'null'), +('33601', 'null'), +('33602', 'null'), +('33603', 'null'), +('33604', 'null'), +('33605', 'null'), +('33606', 'null'), +('33607', 'null'), +('33608', 'null'), +('33609', 'null'), +('33610', 'null'), +('33611', 'null'), +('33612', 'null'), +('33613', 'null'), +('33614', 'null'), +('33615', 'null'), +('33616', 'null'), +('33617', 'null'), +('33618', 'null'), +('33619', 'null'), +('33620', 'null'), +('33621', 'null'), +('33622', 'null'), +('33623', 'null'), +('33624', 'null'), +('33625', 'null'), +('33626', 'null'), +('33627', 'null'), +('33628', 'null'), +('33629', 'null'), +('33630', 'null'), +('33631', 'null'), +('33632', 'null'), +('33633', 'null'), +('33634', 'null'), +('33635', 'null'), +('33636', 'null'), +('33637', 'null'), +('33638', 'null'), +('33639', 'null'), +('33640', 'null'), +('33641', 'null'), +('33642', 'null'), +('33643', 'null'), +('33644', 'null'), +('33645', 'null'), +('33646', 'null'), +('33647', 'null'), +('33648', 'null'), +('33649', 'null'), +('33650', 'null'), +('33651', 'null'), +('33652', 'null'), +('33653', 'null'), +('33654', 'null'), +('33655', 'null'), +('33656', 'null'), +('33657', 'null'), +('33658', 'null'), +('33659', 'null'), +('33660', 'null'), +('33661', 'null'), +('33662', 'null'), +('33663', 'null'), +('33664', 'null'), +('33665', 'null'), +('33666', 'null'), +('33667', 'null'), +('33668', 'null'), +('33669', 'null'), +('33670', 'null'), +('33671', 'null'), +('33672', 'null'), +('33673', 'null'), +('33674', 'null'), +('33675', 'null'), +('33676', 'null'), +('33677', 'null'), +('33678', 'null'), +('33679', 'null'), +('33680', 'null'), +('33681', 'null'), +('33682', 'null'), +('33683', 'null'), +('33684', 'null'), +('33685', 'null'), +('33686', 'null'), +('33687', 'null'), +('33688', 'null'), +('33689', 'null'), +('33690', 'null'), +('33691', 'null'), +('33692', 'null'), +('33693', 'null'), +('33694', 'null'), +('33695', 'null'), +('33696', 'null'), +('33697', 'null'), +('33698', 'null'), +('33699', 'null'), +('33700', 'null'), +('33701', 'null'), +('33702', 'null'), +('33703', 'null'), +('33704', 'null'), +('33705', 'null'), +('33706', 'null'), +('33707', 'null'), +('33708', 'null'), +('33709', 'null'), +('33710', 'null'), +('33711', 'null'), +('33712', 'null'), +('33713', 'null'), +('33714', 'null'), +('33715', 'null'), +('33716', 'null'), +('33717', 'null'), +('33718', 'null'), +('33719', 'null'), +('33720', 'null'), +('33721', 'null'), +('33722', 'null'), +('33723', 'null'), +('33724', 'null'), +('33725', 'null'), +('33726', 'null'), +('33727', 'null'), +('33728', 'null'), +('33729', 'null'), +('33730', 'null'), +('33731', 'null'), +('33732', 'null'), +('33733', 'null'), +('33734', 'null'), +('33735', 'null'), +('33736', 'null'), +('33737', 'null'), +('33738', 'null'), +('33739', 'null'), +('33740', 'null'), +('33741', 'null'), +('33742', 'null'), +('33743', 'null'), +('33744', 'null'), +('33745', 'null'), +('33746', 'null'), +('33747', 'null'), +('33748', 'null'), +('33749', 'null'), +('33750', 'null'), +('33751', 'null'), +('33752', 'null'), +('33753', 'null'), +('33754', 'null'), +('33755', 'Weather vane'), +('33756', 'null'), +('33757', 'null'), +('33758', 'null'), +('33759', 'null'), +('33760', 'null'), +('33761', 'null'), +('33762', 'null'), +('33763', 'null'), +('33764', 'null'), +('33765', 'null'), +('33766', 'null'), +('33767', 'null'), +('33768', 'null'), +('33769', 'null'), +('33770', 'null'), +('33771', 'null'), +('33772', 'null'), +('33773', 'null'), +('33774', 'null'), +('33775', 'null'), +('33776', 'null'), +('33777', 'null'), +('33778', 'null'), +('33779', 'null'), +('33780', 'null'), +('33781', 'null'), +('33782', 'null'), +('33783', 'null'), +('33784', 'null'), +('33785', 'null'), +('33786', 'null'), +('33787', 'null'), +('33788', 'null'), +('33789', 'null'), +('33790', 'null'), +('33791', 'null'), +('33792', 'null'), +('33793', 'Weapon rack'), +('33794', 'Weapon rack'), +('33795', 'null'), +('33796', 'null'), +('33797', 'null'), +('33798', 'null'), +('33799', 'null'), +('33800', 'null'), +('33801', 'null'), +('33802', 'null'), +('33803', 'null'), +('33804', 'null'), +('33805', 'null'), +('33806', 'null'), +('33807', 'null'), +('33808', 'null'), +('33809', 'null'), +('33810', 'null'), +('33811', 'null'), +('33812', 'null'), +('33813', 'null'), +('33814', 'null'), +('33815', 'null'), +('33816', 'null'), +('33817', 'null'), +('33818', 'null'), +('33819', 'null'), +('33820', 'null'), +('33821', 'null'), +('33822', 'null'), +('33823', 'null'), +('33824', 'null'), +('33825', 'null'), +('33826', 'Javelin'), +('33827', 'null'), +('33828', 'null'), +('33829', 'null'), +('33830', 'null'), +('33831', 'null'), +('33832', 'null'), +('33833', 'null'), +('33834', 'Archery Range'), +('33835', 'null'), +('33836', 'null'), +('33837', 'null'), +('33838', 'null'), +('33839', 'null'), +('33840', 'null'), +('33841', 'null'), +('33842', 'Stile'), +('33843', 'null'), +('33844', 'null'), +('33845', 'null'), +('33846', 'null'), +('33847', 'null'), +('33848', 'null'), +('33849', 'null'), +('33850', 'Gate'), +('33851', 'null'), +('33852', 'null'), +('33853', 'null'), +('33854', 'null'), +('33855', 'null'), +('33856', 'null'), +('33857', 'null'), +('33858', 'null'), +('33859', 'null'), +('33860', 'null'), +('33861', 'null'), +('33862', 'null'), +('33863', 'null'), +('33864', 'null'), +('33865', 'null'), +('33866', 'null'), +('33867', 'null'), +('33868', 'null'), +('33869', 'null'), +('33870', 'null'), +('33871', 'null'), +('33872', 'null'), +('33873', 'null'), +('33874', 'null'), +('33875', 'null'), +('33876', 'null'), +('33877', 'null'), +('33878', 'null'), +('33879', 'null'), +('33880', 'null'), +('33881', 'null'), +('33882', 'null'), +('33883', 'null'), +('33884', 'null'), +('33885', 'null'), +('33886', 'null'), +('33887', 'null'), +('33888', 'null'), +('33889', 'null'), +('33890', 'null'), +('33891', 'null'), +('33892', 'null'), +('33893', 'null'), +('33894', 'null'), +('33895', 'null'), +('33896', 'null'), +('33897', 'null'), +('33898', 'null'), +('33899', 'null'), +('33900', 'null'), +('33901', 'null'), +('33902', 'null'), +('33903', 'null'), +('33904', 'null'), +('33905', 'null'), +('33906', 'null'), +('33907', 'null'), +('33908', 'null'), +('33909', 'null'), +('33910', 'null'), +('33911', 'null'), +('33912', 'null'), +('33913', 'null'), +('33914', 'null'), +('33915', 'null'), +('33916', 'null'), +('33917', 'null'), +('33918', 'null'), +('33919', 'null'), +('33920', 'Wall'), +('33921', 'Wall'), +('33922', 'Wall'), +('33923', 'Wall'), +('33924', 'null'), +('33925', 'null'), +('33926', 'null'), +('33927', 'null'), +('33928', 'null'), +('33929', 'null'), +('33930', 'null'), +('33931', 'Drawers'), +('33932', 'Drawers'), +('33933', 'Closed chest'), +('33934', 'Closed chest'), +('33935', 'null'), +('33936', 'null'), +('33937', 'null'), +('33938', 'null'), +('33939', 'null'), +('33940', 'null'), +('33941', 'null'), +('33942', 'null'), +('33943', 'null'), +('33944', 'null'), +('33945', 'null'), +('33946', 'null'), +('33947', 'null'), +('33948', 'null'), +('33949', 'null'), +('33950', 'null'), +('33951', 'null'), +('33952', 'null'), +('33953', 'null'), +('33954', 'null'), +('33955', 'null'), +('33956', 'null'), +('33957', 'null'), +('33958', 'Lander boat'), +('33959', 'Lander hatch'), +('33960', 'Lander hatch'), +('33961', 'null'), +('33962', 'null'), +('33963', 'Wardrobe'), +('33964', 'Bookcase'), +('33965', 'null'), +('33966', 'null'), +('33967', 'null'), +('33968', 'null'), +('33969', 'null'), +('33970', 'null'), +('33971', 'null'), +('33972', 'null'), +('33973', 'null'), +('33974', 'null'), +('33975', 'null'), +('33976', 'null'), +('33977', 'Ladder'), +('33978', 'null'), +('33979', 'null'), +('33980', 'null'), +('33981', 'null'), +('33982', 'null'), +('33983', 'null'), +('33984', 'null'), +('33985', 'null'), +('33986', 'null'), +('33987', 'null'), +('33988', 'null'), +('33989', 'null'), +('33990', 'null'), +('33991', 'null'), +('33992', 'null'), +('33993', 'null'), +('33994', 'null'), +('33995', 'null'), +('33996', 'null'), +('33997', 'null'), +('33998', 'null'), +('33999', 'null'), +('34000', 'Old looking wall'), +('34001', 'null'), +('34002', 'null'), +('34003', 'null'), +('34004', 'null'), +('34005', 'Door'), +('34006', 'null'), +('34007', 'null'), +('34008', 'null'), +('34009', 'null'), +('34010', 'null'), +('34011', 'null'), +('34012', 'Ladder'), +('34013', 'null'), +('34014', 'null'), +('34015', 'null'), +('34016', 'null'), +('34017', 'null'), +('34018', 'null'), +('34019', 'null'), +('34020', 'null'), +('34021', 'null'), +('34022', 'null'), +('34023', 'null'), +('34024', 'null'), +('34025', 'null'), +('34026', 'null'), +('34027', 'null'), +('34028', 'null'), +('34029', 'null'), +('34030', 'null'), +('34031', 'null'), +('34032', 'Open chest'), +('34033', 'null'), +('34034', 'null'), +('34035', 'null'), +('34036', 'null'), +('34037', 'Cabinet'), +('34038', 'Cabinet'), +('34039', 'Cabinet'), +('34040', 'Stairs'), +('34041', 'Stairs'), +('34042', 'Door'), +('34043', 'Door'), +('34044', 'Door'), +('34045', 'Door'), +('34046', 'Door'), +('34047', 'null'), +('34048', 'null'), +('34049', 'null'), +('34050', 'null'), +('34051', 'null'), +('34052', 'null'), +('34053', 'null'), +('34054', 'null'), +('34055', 'null'), +('34056', 'null'), +('34057', 'null'), +('34058', 'null'), +('34059', 'null'), +('34060', 'null'), +('34061', 'null'), +('34062', 'null'), +('34063', 'null'), +('34064', 'null'), +('34065', 'null'), +('34066', 'null'), +('34067', 'null'), +('34068', 'null'), +('34069', 'null'), +('34070', 'null'), +('34071', 'null'), +('34072', 'null'), +('34073', 'null'), +('34074', 'null'), +('34075', 'null'), +('34076', 'Staircase'), +('34077', 'null'), +('34078', 'null'), +('34079', 'null'), +('34080', 'null'), +('34081', 'null'), +('34082', 'Sink'), +('34083', 'null'), +('34084', 'null'), +('34085', 'null'), +('34086', 'null'), +('34087', 'null'), +('34088', 'null'), +('34089', 'null'), +('34090', 'null'), +('34091', 'null'), +('34092', 'null'), +('34093', 'null'), +('34094', 'null'), +('34095', 'null'), +('34096', 'null'), +('34097', 'null'), +('34098', 'null'), +('34099', 'null'), +('34100', 'null'), +('34101', 'null'), +('34102', 'null'), +('34103', 'null'), +('34104', 'null'), +('34105', 'null'), +('34106', 'Shelves'), +('34107', 'Shelves'), +('34108', 'null'), +('34109', 'null'), +('34110', 'null'), +('34111', 'null'), +('34112', 'null'), +('34113', 'null'), +('34114', 'null'), +('34115', 'null'), +('34116', 'null'), +('34117', 'null'), +('34118', 'null'), +('34119', 'null'), +('34120', 'null'), +('34121', 'null'), +('34122', 'null'), +('34123', 'null'), +('34124', 'null'), +('34125', 'null'), +('34126', 'null'), +('34127', 'null'), +('34128', 'null'), +('34129', 'null'), +('34130', 'null'), +('34131', 'null'), +('34132', 'null'), +('34133', 'null'), +('34134', 'null'), +('34135', 'null'), +('34136', 'null'), +('34137', 'Crate'), +('34138', 'Lighting space'), +('34139', 'null'), +('34140', 'null'), +('34141', 'null'), +('34142', 'null'), +('34143', 'null'), +('34144', 'null'), +('34145', 'null'), +('34146', 'null'), +('34147', 'null'), +('34148', 'null'), +('34149', 'null'), +('34150', 'null'), +('34151', 'null'), +('34152', 'null'), +('34153', 'null'), +('34154', 'null'), +('34155', 'null'), +('34156', 'null'), +('34157', 'null'), +('34158', 'null'), +('34159', 'null'), +('34160', 'null'), +('34161', 'null'), +('34162', 'null'), +('34163', 'null'), +('34164', 'null'), +('34165', 'null'), +('34166', 'null'), +('34167', 'null'), +('34168', 'null'), +('34169', 'null'), +('34170', 'null'), +('34171', 'null'), +('34172', 'null'), +('34173', 'null'), +('34174', 'null'), +('34175', 'null'), +('34176', 'null'), +('34177', 'null'), +('34178', 'null'), +('34179', 'null'), +('34180', 'null'), +('34181', 'null'), +('34182', 'null'), +('34183', 'null'), +('34184', 'null'), +('34185', 'null'), +('34186', 'null'), +('34187', 'null'), +('34188', 'null'), +('34189', 'null'), +('34190', 'null'), +('34191', 'null'), +('34192', 'null'), +('34193', 'null'), +('34194', 'null'), +('34195', 'null'), +('34196', 'null'), +('34197', 'null'), +('34198', 'null'), +('34199', 'null'), +('34200', 'null'), +('34201', 'null'), +('34202', 'null'), +('34203', 'Sack'), +('34204', 'Table'), +('34205', 'Bank booth'), +('34206', 'Closed bank booth'), +('34207', 'Closed bank booth'), +('34208', 'null'), +('34209', 'null'), +('34210', 'null'), +('34211', 'null'), +('34212', 'null'), +('34213', 'null'), +('34214', 'null'), +('34215', 'null'), +('34216', 'Bamboo Ladder'), +('34217', 'Bamboo Ladder'), +('34218', 'null'), +('34219', 'null'), +('34220', 'null'), +('34221', 'null'), +('34222', 'Watchtower Legs'), +('34223', 'Teleportation Device'), +('34224', 'Teleportation Device'), +('34225', 'Crate'), +('34226', 'Crates'), +('34227', 'Chair'), +('34228', 'null'), +('34229', 'null'), +('34230', 'null'), +('34231', 'null'), +('34232', 'null'), +('34233', 'null'), +('34234', 'Door'), +('34235', 'null'), +('34236', 'null'), +('34237', 'null'), +('34238', 'null'), +('34239', 'null'), +('34240', 'null'), +('34241', 'null'), +('34242', 'null'), +('34243', 'null'), +('34244', 'null'), +('34245', 'Wardrobe'), +('34246', 'Wardrobe'), +('34247', 'Wardrobe'), +('34248', 'Chest'), +('34249', 'null'), +('34250', 'null'), +('34251', 'null'), +('34252', 'null'), +('34253', 'null'), +('34254', 'null'), +('34255', 'null'), +('34256', 'null'), +('34257', 'null'), +('34258', 'null'), +('34259', 'null'), +('34260', 'null'), +('34261', 'null'), +('34262', 'null'), +('34263', 'null'), +('34264', 'null'), +('34265', 'null'), +('34266', 'null'), +('34267', 'null'), +('34268', 'null'), +('34269', 'null'), +('34270', 'null'), +('34271', 'null'), +('34272', 'Keg'), +('34273', 'Bed'), +('34274', 'null'), +('34275', 'null'), +('34276', 'null'), +('34277', 'null'), +('34278', 'null'), +('34279', 'null'), +('34280', 'null'), +('34281', 'null'), +('34282', 'null'), +('34283', 'null'), +('34284', 'null'), +('34285', 'null'), +('34286', 'Ladder'), +('34287', 'Ladder'), +('34288', 'Door'), +('34289', 'Door'), +('34290', 'Door'), +('34291', 'Door'), +('34292', 'null'), +('34293', 'null'), +('34294', 'null'), +('34295', 'null'), +('34296', 'null'), +('34297', 'null'), +('34298', 'null'), +('34299', 'Tomb'), +('34300', 'null'), +('34301', 'null'), +('34302', 'null'), +('34303', 'null'), +('34304', 'null'), +('34305', 'null'), +('34306', 'null'), +('34307', 'null'), +('34308', 'null'), +('34309', 'null'), +('34310', 'null'), +('34311', 'null'), +('34312', 'Door'), +('34313', 'Door'), +('34314', 'null'), +('34315', 'null'), +('34316', 'null'), +('34317', 'Pillar'), +('34318', 'null'), +('34319', 'null'), +('34320', 'null'), +('34321', 'null'), +('34322', 'null'), +('34323', 'null'), +('34324', 'null'), +('34325', 'null'), +('34326', 'null'), +('34327', 'null'), +('34328', 'null'), +('34329', 'null'), +('34330', 'null'), +('34331', 'null'), +('34332', 'null'), +('34333', 'null'), +('34334', 'null'), +('34335', 'null'), +('34336', 'null'), +('34337', 'null'), +('34338', 'null'), +('34339', 'null'), +('34340', 'null'), +('34341', 'null'), +('34342', 'null'), +('34343', 'null'), +('34344', 'null'), +('34345', 'null'), +('34346', 'null'), +('34347', 'null'), +('34348', 'null'), +('34349', 'null'), +('34350', 'null'), +('34351', 'null'), +('34352', 'null'), +('34353', 'Door'), +('34354', 'Door'), +('34355', 'null'), +('34356', 'null'), +('34357', 'null'), +('34358', 'null'), +('34359', 'null'), +('34360', 'null'), +('34361', 'null'), +('34362', 'null'), +('34363', 'null'), +('34364', 'null'), +('34365', 'null'), +('34366', 'Shelves'), +('34367', 'Shelves'), +('34368', 'Shelves'), +('34369', 'Shelves'), +('34370', 'Shelf'), +('34371', 'null'), +('34372', 'null'), +('34373', 'null'), +('34374', 'null'), +('34375', 'Row boat'), +('34376', 'Cart'), +('34377', 'null'), +('34378', 'null'), +('34379', 'null'), +('34380', 'null'), +('34381', 'Market stall'), +('34382', 'Silver stall'), +('34383', 'Silk stall'), +('34384', 'Baker's stall'), +('34385', 'Gem stall'), +('34386', 'Spice stall'), +('34387', 'Fur stall'), +('34388', 'Staircase'), +('34389', 'Staircase'), +('34390', 'Staircase'), +('34391', 'Staircase'), +('34392', 'Staircase'), +('34393', 'Staircase'), +('34394', 'Ladder'), +('34395', 'Ladder'), +('34396', 'Ladder'), +('34397', 'Staircase'), +('34398', 'Staircase'), +('34399', 'null'), +('34400', 'null'), +('34401', 'Bed'), +('34402', 'Bed'), +('34403', 'Bunk bed'), +('34404', 'Drawers'), +('34405', 'Drawers'), +('34406', 'Wardrobe'), +('34407', 'Dresser'), +('34408', 'null'), +('34409', 'Larder'), +('34410', 'Cooking range'), +('34411', 'Sink'), +('34412', 'Shelves'), +('34413', 'Shelves'), +('34414', 'Shelves'), +('34415', 'Shelves'), +('34416', 'Shelf'), +('34417', 'Shelf'), +('34418', 'null'), +('34419', 'null'), +('34420', 'null'), +('34421', 'null'), +('34422', 'Row boat'), +('34423', 'Cart'), +('34424', 'null'), +('34425', 'null'), +('34426', 'null'), +('34427', 'Broken Door'), +('34428', 'Broken cart wheel'), +('34429', 'Table'), +('34430', 'Smashed chair'), +('34431', 'Table'), +('34432', 'Ladder'), +('34433', 'Broken Chair'), +('34434', 'Broken Chair'), +('34435', 'Broken Chair'), +('34436', 'Cart'), +('34437', 'Broken range'), +('34438', 'Stool'), +('34439', 'Washing Line'), +('34440', 'Washing Line'), +('34441', 'Washing Line'), +('34442', 'null'), +('34443', 'Broken Chair'), +('34444', 'null'), +('34445', 'null'), +('34446', 'null'), +('34447', 'null'), +('34448', 'Tanning line'), +('34449', 'Mangle'), +('34450', 'Mangle'), +('34451', 'null'), +('34452', 'null'), +('34453', 'null'), +('34454', 'null'), +('34455', 'null'), +('34456', 'null'), +('34457', 'null'), +('34458', 'null'), +('34459', 'null'), +('34460', 'null'), +('34461', 'null'), +('34462', 'null'), +('34463', 'null'), +('34464', 'null'), +('34465', 'null'), +('34466', 'null'), +('34467', 'null'), +('34468', 'null'), +('34469', 'Table'), +('34470', 'Table'), +('34471', 'Chart Table'), +('34472', 'Globe Table'), +('34473', 'Table'), +('34474', 'Table'), +('34475', 'Bed'), +('34476', 'Bed'), +('34477', 'Bookcase'), +('34478', 'Bookcase'), +('34479', 'Bookcase'), +('34480', 'Books'), +('34481', 'Books'), +('34482', 'Drawers'), +('34483', 'Drawers'), +('34484', 'Wardrobe'), +('34485', 'Wardrobe'), +('34486', 'Wardrobe'), +('34487', 'Wardrobe'), +('34488', 'Box'), +('34489', 'Box'), +('34490', 'Dresser'), +('34491', 'Telescope'), +('34492', 'null'), +('34493', 'Grandfather clock'), +('34494', 'Larder'), +('34495', 'Range'), +('34496', 'Sink'), +('34497', 'Spinning wheel'), +('34498', 'Staircase'), +('34499', 'Staircase'), +('34500', 'null'), +('34501', 'null'), +('34502', 'null'), +('34503', 'null'), +('34504', 'null'), +('34505', 'null'), +('34506', 'null'), +('34507', 'null'), +('34508', 'null'), +('34509', 'Painting'), +('34510', 'Painting'), +('34511', 'Painting'), +('34512', 'null'), +('34513', 'null'), +('34514', 'null'), +('34515', 'null'), +('34516', 'null'), +('34517', 'null'), +('34518', 'Table'), +('34519', 'Table'), +('34520', 'Table'), +('34521', 'Table'), +('34522', 'null'), +('34523', 'null'), +('34524', 'null'), +('34525', 'Bookcase'), +('34526', 'Bookcase'), +('34527', 'Bookcase'), +('34528', 'Drawers'), +('34529', 'Drawers'), +('34530', 'Drawers'), +('34531', 'Drawers'), +('34532', 'Wardrobe'), +('34533', 'Wardrobe'), +('34534', 'Wardrobe'), +('34535', 'Wardrobe'), +('34536', 'Wardrobe'), +('34537', 'Wardrobe'), +('34538', 'Wardrobe'), +('34539', 'Box'), +('34540', 'Box'), +('34541', 'Box'), +('34542', 'Box'), +('34543', 'Dresser'), +('34544', 'Grandfather clock'), +('34545', 'Grandfather clock'), +('34546', 'Range'), +('34547', 'Sink'), +('34548', 'Staircase'), +('34549', 'Staircase'), +('34550', 'Staircase'), +('34551', 'null'), +('34552', 'null'), +('34553', 'null'), +('34554', 'null'), +('34555', 'null'), +('34556', 'Bed'), +('34557', 'Bed'), +('34558', 'Bunk bed'), +('34559', 'Drawers'), +('34560', 'Drawers'), +('34561', 'Wardrobe'), +('34562', 'Dresser'), +('34563', 'null'), +('34564', 'Larder'), +('34565', 'Cooking range'), +('34566', 'Sink'), +('34567', 'Staircase'), +('34568', 'Staircase'), +('34569', 'null'), +('34570', 'null'), +('34571', 'null'), +('34572', 'Swings'), +('34573', 'null'), +('34574', 'null'), +('34575', 'null'), +('34576', 'Well'), +('34577', 'Waterpump'), +('34578', 'Weather vane'), +('34579', 'Fountain'), +('34580', 'Wheelbarrow'), +('34581', 'Sack'), +('34582', 'Sack'), +('34583', 'Sacks'), +('34584', 'null'), +('34585', 'Crate'), +('34586', 'Crate'), +('34587', 'Storage crate'), +('34588', 'Boxes'), +('34589', 'Barrels'), +('34590', 'Barrel'), +('34591', 'Barrel'), +('34592', 'Barrel'), +('34593', 'Hay bales'), +('34594', 'Hay bales'), +('34595', 'null'), +('34596', 'null'), +('34597', 'null'), +('34598', 'null'), +('34599', 'null'), +('34600', 'null'), +('34601', 'null'), +('34602', 'null'), +('34603', 'null'), +('34604', 'null'), +('34605', 'null'), +('34606', 'null'), +('34607', 'null'), +('34608', 'null'), +('34609', 'null'), +('34610', 'null'), +('34611', 'null'), +('34612', 'null'), +('34613', 'null'), +('34614', 'null'), +('34615', 'Candles'), +('34616', 'Altar'), +('34617', 'Organ'), +('34618', 'null'), +('34619', 'null'), +('34620', 'Gravestone'), +('34621', 'Gravestone'), +('34622', 'Gravestone'), +('34623', 'Gravestone'), +('34624', 'Gravestone'), +('34625', 'Gravestone'), +('34626', 'Gravestone'), +('34627', 'Gravestone'), +('34628', 'Gravestone'), +('34629', 'Gravestone'), +('34630', 'null'), +('34631', 'null'), +('34632', 'null'), +('34633', 'null'), +('34634', 'null'), +('34635', 'null'), +('34636', 'null'), +('34637', 'null'), +('34638', 'null'), +('34639', 'null'), +('34640', 'null'), +('34641', 'null'), +('34642', 'null'), +('34643', 'null'), +('34644', 'null'), +('34645', 'null'), +('34646', 'null'), +('34647', 'null'), +('34648', 'null'), +('34649', 'null'), +('34650', 'null'), +('34651', 'null'), +('34652', 'null'), +('34653', 'null'), +('34654', 'null'), +('34655', 'null'), +('34656', 'null'), +('34657', 'null'), +('34658', 'null'), +('34659', 'null'), +('34660', 'null'), +('34661', 'null'), +('34662', 'null'), +('34663', 'null'), +('34664', 'null'), +('34665', 'null'), +('34666', 'null'), +('34667', 'null'), +('34668', 'null'), +('34669', 'null'), +('34670', 'null'), +('34671', 'null'), +('34672', 'null'), +('34673', 'null'), +('34674', 'null'), +('34675', 'null'), +('34676', 'null'), +('34677', 'null'), +('34678', 'null'), +('34679', 'null'), +('34680', 'null'), +('34681', 'null'), +('34682', 'null'), +('34683', 'null'), +('34684', 'null'), +('34685', 'null'), +('34686', 'null'), +('34687', 'null'), +('34688', 'null'), +('34689', 'null'), +('34690', 'null'), +('34691', 'null'), +('34692', 'null'), +('34693', 'null'), +('34694', 'null'), +('34695', 'null'), +('34696', 'null'), +('34697', 'null'), +('34698', 'null'), +('34699', 'null'), +('34700', 'null'), +('34701', 'null'), +('34702', 'null'), +('34703', 'null'), +('34704', 'null'), +('34705', 'null'), +('34706', 'null'), +('34707', 'null'), +('34708', 'null'), +('34709', 'null'), +('34710', 'null'), +('34711', 'null'), +('34712', 'null'), +('34713', 'null'), +('34714', 'null'), +('34715', 'null'), +('34716', 'null'), +('34717', 'null'), +('34718', 'null'), +('34719', 'null'), +('34720', 'null'), +('34721', 'null'), +('34722', 'null'), +('34723', 'null'), +('34724', 'null'), +('34725', 'null'), +('34726', 'null'), +('34727', 'null'), +('34728', 'null'), +('34729', 'null'), +('34730', 'null'), +('34731', 'null'), +('34732', 'null'), +('34733', 'null'), +('34734', 'null'), +('34735', 'null'), +('34736', 'null'), +('34737', 'null'), +('34738', 'Gate'), +('34739', 'null'), +('34740', 'Bar'), +('34741', 'Bar'), +('34742', 'Bar'), +('34743', 'Bar'), +('34744', 'Bar'), +('34745', 'Bar'), +('34746', 'Bar'), +('34747', 'Bar'), +('34748', 'Bar'), +('34749', 'null'), +('34750', 'Barstool'), +('34751', 'Small table'), +('34752', 'Bank booth'), +('34753', 'null'), +('34754', 'null'), +('34755', 'Bank deposit box'), +('34756', 'Safe'), +('34757', 'null'), +('34758', 'null'), +('34759', 'null'), +('34760', 'null'), +('34761', 'null'), +('34762', 'null'), +('34763', 'null'), +('34764', 'null'), +('34765', 'null'), +('34766', 'null'), +('34767', 'null'), +('34768', 'Stairs'), +('34769', 'Stairs'), +('34770', 'Stairs'), +('34771', 'Stairs'), +('34772', 'null'), +('34773', 'null'), +('34774', 'null'), +('34775', 'null'), +('34776', 'Stile'), +('34777', 'Gate'), +('34778', 'Gate'), +('34779', 'Gate'), +('34780', 'Gate'), +('34781', 'null'), +('34782', 'null'), +('34783', 'null'), +('34784', 'null'), +('34785', 'Ladder'), +('34786', 'Ladder'), +('34787', 'Ladder'), +('34788', 'Ladder'), +('34789', 'Ladder'), +('34790', 'null'), +('34791', 'null'), +('34792', 'null'), +('34793', 'null'), +('34794', 'null'), +('34795', 'null'), +('34796', 'Coal'), +('34797', 'null'), +('34798', 'Sewing machine'), +('34799', 'Table'), +('34800', 'Dairy churn'), +('34801', 'Potter's Wheel'), +('34802', 'Pottery Oven'), +('34803', 'null'), +('34804', 'null'), +('34805', 'Door'), +('34806', 'Door'), +('34807', 'Door'), +('34808', 'Door'), +('34809', 'Door'), +('34810', 'Door'), +('34811', 'Door'), +('34812', 'Door'), +('34813', 'Door'), +('34814', 'null'), +('34815', 'null'), +('34816', 'Door'), +('34817', 'Door'), +('34818', 'Door'), +('34819', 'Door'), +('34820', 'Door'), +('34821', 'null'), +('34822', 'Door'), +('34823', 'Door'), +('34824', 'null'), +('34825', 'Wooden Door'), +('34826', 'Wooden Door'), +('34827', 'Wooden Door'), +('34828', 'Wooden Door'), +('34829', 'Ladder'), +('34830', 'null'), +('34831', 'null'), +('34832', 'null'), +('34833', 'null'), +('34834', 'null'), +('34835', 'null'), +('34836', 'null'), +('34837', 'null'), +('34838', 'null'), +('34839', 'null'), +('34840', 'Rack'), +('34841', 'null'), +('34842', 'null'), +('34843', 'null'), +('34844', 'null'), +('34845', 'null'), +('34846', 'null'), +('34847', 'null'), +('34848', 'null'), +('34849', 'null'), +('34850', 'null'), +('34851', 'null'), +('34852', 'null'), +('34853', 'null'), +('34854', 'null'), +('34855', 'null'), +('34856', 'null'), +('34857', 'null'), +('34858', 'null'), +('34859', 'null'), +('34860', 'null'), +('34861', 'null'), +('34862', 'null'), +('34863', 'null'), +('34864', 'null'), +('34865', 'null'), +('34866', 'null'), +('34867', 'null'), +('34868', 'null'), +('34869', 'null'), +('34870', 'null'), +('34871', 'Staircase'), +('34872', 'Staircase'), +('34873', 'Staircase'), +('34874', 'Staircase'), +('34875', 'Staircase'), +('34876', 'Staircase'), +('34877', 'Ladder'), +('34878', 'Ladder'), +('34879', 'null'), +('34880', 'null'), +('34881', 'null'), +('34882', 'null'), +('34883', 'null'), +('34884', 'null'), +('34885', 'null'), +('34886', 'null'), +('34887', 'Axe cabinet'), +('34888', 'Sword cabinet'), +('34889', 'Wardrobe'), +('34890', 'Wardrobe'), +('34891', 'Throne'), +('34892', 'Dresser'), +('34893', 'null'), +('34894', 'null'), +('34895', 'null'), +('34896', 'null'), +('34897', 'null'), +('34898', 'null'), +('34899', 'Rope'), +('34900', 'null'), +('34901', 'null'), +('34902', 'Statue of Baxtorian'), +('34903', 'Statue of Glarial'), +('34904', 'null'), +('34905', 'Chalice of Eternity'), +('34906', 'null'), +('34907', 'null'), +('34908', 'null'), +('34909', 'null'), +('34910', 'null'), +('34911', 'null'), +('34912', 'null'), +('34913', 'null'), +('34914', 'null'), +('34915', 'Waterfall'), +('34916', 'null'), +('34917', 'Jagged wall'), +('34918', 'null'), +('34919', 'null'), +('34920', 'null'), +('34921', 'null'), +('34922', 'null'), +('34923', 'null'), +('34924', 'null'), +('34925', 'Shelf'), +('34926', 'Shelf'), +('34927', 'Table'), +('34928', 'Wallchart'), +('34929', 'null'), +('34930', 'null'), +('34931', 'null'), +('34932', 'Hammock'), +('34933', 'Sack'), +('34934', 'Barrel'), +('34935', 'null'), +('34936', 'Extra anchor'), +('34937', 'Lantern'), +('34938', 'Lantern'), +('34939', 'null'), +('34940', 'null'), +('34941', 'null'), +('34942', 'null'), +('34943', 'null'), +('34944', 'null'), +('34945', 'null'), +('34946', 'null'), +('34947', 'Solid bronze door'), +('34948', 'null'), +('34949', 'null'), +('34950', 'null'), +('34951', 'null'), +('34952', 'null'), +('34953', 'null'), +('34954', 'null'), +('34955', 'null'), +('34956', 'null'), +('34957', 'null'), +('34958', 'null'), +('34959', 'null'), +('34960', 'null'), +('34961', 'null'), +('34962', 'null'), +('34963', 'Cave exit'), +('34964', 'null'), +('34965', 'null'), +('34966', 'null'), +('34967', 'null'), +('34968', 'Table'), +('34969', 'null'), +('34970', 'null'), +('34971', 'null'), +('34972', 'null'), +('34973', 'null'), +('34974', 'null'), +('34975', 'null'), +('34976', 'Mineral vein'), +('34977', 'Mineral vein'), +('34978', 'Staircase'), +('34979', 'Skeleton'), +('34980', 'null'), +('34981', 'null'), +('34982', 'null'), +('34983', 'null'), +('34984', 'null'), +('34985', 'null'), +('34986', 'null'), +('34987', 'null'), +('34988', 'Crater'), +('34989', 'null'), +('34990', 'null'), +('34991', 'null'), +('34992', 'null'), +('34993', 'null'), +('34994', 'null'), +('34995', 'Ladder'), +('34996', 'null'), +('34997', 'null'), +('34998', 'null'), +('34999', 'null'), +('35000', 'null'), +('35001', 'null'), +('35002', 'Cave Exit'), +('35003', 'null'), +('35004', 'null'), +('35005', 'null'), +('35006', 'null'), +('35007', 'null'), +('35008', 'null'), +('35009', 'null'), +('35010', 'null'), +('35011', 'null'), +('35012', 'null'), +('35013', 'null'), +('35014', 'null'), +('35015', 'crate'), +('35016', 'null'), +('35017', 'barrel'), +('35018', 'null'), +('35019', 'null'), +('35020', 'null'), +('35021', 'null'), +('35022', 'null'), +('35023', 'null'), +('35024', 'null'), +('35025', 'null'), +('35026', 'null'), +('35027', 'null'), +('35028', 'null'), +('35029', 'null'), +('35030', 'null'), +('35031', 'null'), +('35032', 'null'), +('35033', 'null'), +('35034', 'null'), +('35035', 'null'), +('35036', 'null'), +('35037', 'null'), +('35038', 'null'), +('35039', 'null'), +('35040', 'null'), +('35041', 'null'), +('35042', 'null'), +('35043', 'null'), +('35044', 'null'), +('35045', 'null'), +('35046', 'null'), +('35047', 'null'), +('35048', 'null'), +('35049', 'null'), +('35050', 'null'), +('35051', 'null'), +('35052', 'null'), +('35053', 'null'), +('35054', 'null'), +('35055', 'null'), +('35056', 'null'), +('35057', 'null'), +('35058', 'null'), +('35059', 'null'), +('35060', 'null'), +('35061', 'null'), +('35062', 'null'), +('35063', 'null'), +('35064', 'null'), +('35065', 'null'), +('35066', 'null'), +('35067', 'null'), +('35068', 'null'), +('35069', 'null'), +('35070', 'null'), +('35071', 'null'), +('35072', 'null'), +('35073', 'null'), +('35074', 'null'), +('35075', 'null'), +('35076', 'null'), +('35077', 'Tent'), +('35078', 'Ogre Coffin'), +('35079', 'Ogre Coffin'), +('35080', 'Ogre Coffin'), +('35081', 'Ogre Coffin'), +('35082', 'Ogre Coffin'), +('35083', 'Ogre Coffin'), +('35084', 'Ogre Coffin'), +('35085', 'Ogre Coffin'), +('35086', 'Statue'), +('35087', 'Statue'), +('35088', 'null'), +('35089', 'null'), +('35090', 'null'), +('35091', 'null'), +('35092', 'null'), +('35093', 'null'), +('35094', 'null'), +('35095', 'Fremennik boat'), +('35096', 'null'), +('35097', 'null'), +('35098', 'null'), +('35099', 'null'), +('35100', 'null'), +('35101', 'Torch'), +('35102', 'Torch'), +('35103', 'null'), +('35104', 'null'), +('35105', 'null'), +('35106', 'null'), +('35107', 'null'), +('35108', 'null'), +('35109', 'null'), +('35110', 'null'), +('35111', 'null'), +('35112', 'null'), +('35113', 'null'), +('35114', 'null'), +('35115', 'null'), +('35116', 'null'), +('35117', 'null'), +('35118', 'null'), +('35119', 'null'), +('35120', 'null'), +('35121', 'Stairs'), +('35122', 'Closed chest'), +('35123', 'Open chest'), +('35124', 'null'), +('35125', 'Ladder'), +('35126', 'Tunnel'), +('35127', 'Tunnel'), +('35128', 'null'), +('35129', 'null'), +('35130', 'null'), +('35131', 'null'), +('35132', 'null'), +('35133', 'Wardrobe'), +('35134', 'Wardrobe'), +('35135', 'Wardrobe'), +('35136', 'Wardrobe'), +('35137', 'null'), +('35138', 'null'), +('35139', 'null'), +('35140', 'Pillar'), +('35141', 'Pillar'), +('35142', 'null'), +('35143', 'null'), +('35144', 'null'), +('35145', 'Flag'), +('35146', 'Door'), +('35147', 'null'), +('35148', 'Boxes'), +('35149', 'Chair'), +('35150', 'Rat barrel'), +('35151', 'Rat barrel'), +('35152', 'null'), +('35153', 'null'), +('35154', 'null'), +('35155', 'null'), +('35156', 'A bunk bed'), +('35157', 'null'), +('35158', 'Rift'), +('35159', 'Rift'), +('35160', 'null'), +('35161', 'null'), +('35162', 'null'), +('35163', 'null'), +('35164', 'null'), +('35165', 'null'), +('35166', 'null'), +('35167', 'null'), +('35168', 'null'), +('35169', 'null'), +('35170', 'null'), +('35171', 'null'), +('35172', 'null'), +('35173', 'null'), +('35174', 'null'), +('35175', 'null'), +('35176', 'null'), +('35177', 'null'), +('35178', 'null'), +('35179', 'null'), +('35180', 'null'), +('35181', 'null'), +('35182', 'null'), +('35183', 'null'), +('35184', 'null'), +('35185', 'null'), +('35186', 'null'), +('35187', 'null'), +('35188', 'null'), +('35189', 'null'), +('35190', 'null'), +('35191', 'null'), +('35192', 'Boat'), +('35193', 'null'), +('35194', 'null'), +('35195', 'null'), +('35196', 'null'), +('35197', 'null'), +('35198', 'null'), +('35199', 'null'), +('35200', 'null'), +('35201', 'null'), +('35202', 'null'), +('35203', 'null'), +('35204', 'null'), +('35205', 'null'), +('35206', 'null'), +('35207', 'null'), +('35208', 'null'), +('35209', 'null'), +('35210', 'null'), +('35211', 'null'), +('35212', 'null'), +('35213', 'null'), +('35214', 'null'), +('35215', 'null'), +('35216', 'null'), +('35217', 'null'), +('35218', 'null'), +('35219', 'null'), +('35220', 'null'), +('35221', 'Bench'), +('35222', 'Cupboard'), +('35223', 'Cupboard'), +('35224', 'Bookcase'), +('35225', 'Bookcase'), +('35226', 'Bookcase'), +('35227', 'Bookcase'), +('35228', 'null'), +('35229', 'null'), +('35230', 'null'), +('35231', 'null'), +('35232', 'null'), +('35233', 'null'), +('35234', 'null'), +('35235', 'null'), +('35236', 'null'), +('35237', 'null'), +('35238', 'null'), +('35239', 'null'), +('35240', 'null'), +('35241', 'Door'), +('35242', 'Door'), +('35243', 'Door'), +('35244', 'null'), +('35245', 'null'), +('35246', 'null'), +('35247', 'null'), +('35248', 'null'), +('35249', 'null'), +('35250', 'null'), +('35251', 'null'), +('35252', 'null'), +('35253', 'null'), +('35254', 'null'), +('35255', 'null'), +('35256', 'null'), +('35257', 'null'), +('35258', 'null'), +('35259', 'null'), +('35260', 'null'), +('35261', 'null'), +('35262', 'null'), +('35263', 'null'), +('35264', 'null'), +('35265', 'null'), +('35266', 'null'), +('35267', 'null'), +('35268', 'null'), +('35269', 'null'), +('35270', 'null'), +('35271', 'null'), +('35272', 'null'), +('35273', 'null'), +('35274', 'null'), +('35275', 'null'), +('35276', 'null'), +('35277', 'null'), +('35278', 'null'), +('35279', 'null'), +('35280', 'null'), +('35281', 'null'), +('35282', 'null'), +('35283', 'null'), +('35284', 'null'), +('35285', 'null'), +('35286', 'null'), +('35287', 'null'), +('35288', 'null'), +('35289', 'null'), +('35290', 'null'), +('35291', 'null'), +('35292', 'null'), +('35293', 'null'), +('35294', 'null'), +('35295', 'null'), +('35296', 'null'), +('35297', 'null'), +('35298', 'null'), +('35299', 'null'), +('35300', 'null'), +('35301', 'null'), +('35302', 'null'), +('35303', 'null'), +('35304', 'null'), +('35305', 'null'), +('35306', 'null'), +('35307', 'null'), +('35308', 'null'), +('35309', 'null'), +('35310', 'null'), +('35311', 'null'), +('35312', 'null'), +('35313', 'null'), +('35314', 'null'), +('35315', 'null'), +('35316', 'null'), +('35317', 'null'), +('35318', 'null'), +('35319', 'null'), +('35320', 'null'), +('35321', 'null'), +('35322', 'null'), +('35323', 'null'), +('35324', 'null'), +('35325', 'null'), +('35326', 'null'), +('35327', 'null'), +('35328', 'null'), +('35329', 'null'), +('35330', 'null'), +('35331', 'null'), +('35332', 'null'), +('35333', 'null'), +('35334', 'null'), +('35335', 'null'), +('35336', 'null'), +('35337', 'null'), +('35338', 'null'), +('35339', 'null'), +('35340', 'null'), +('35341', 'null'), +('35342', 'null'), +('35343', 'null'), +('35344', 'null'), +('35345', 'null'), +('35346', 'null'), +('35347', 'null'), +('35348', 'null'), +('35349', 'null'), +('35350', 'null'), +('35351', 'null'), +('35352', 'null'), +('35353', 'null'), +('35354', 'null'), +('35355', 'null'), +('35356', 'null'), +('35357', 'null'), +('35358', 'null'), +('35359', 'null'), +('35360', 'null'), +('35361', 'null'), +('35362', 'null'), +('35363', 'null'), +('35364', 'null'), +('35365', 'null'), +('35366', 'null'), +('35367', 'null'), +('35368', 'null'), +('35369', 'null'), +('35370', 'null'), +('35371', 'null'), +('35372', 'null'), +('35373', 'null'), +('35374', 'null'), +('35375', 'null'), +('35376', 'null'), +('35377', 'null'), +('35378', 'null'), +('35379', 'Mushroom'), +('35380', 'Mushrooms'), +('35381', 'null'), +('35382', 'null'), +('35383', 'Bed'), +('35384', 'Bed'), +('35385', 'Painting'), +('35386', 'Dragon's head'), +('35387', 'Clothes equipment'), +('35388', 'Bow cabinet'), +('35389', 'null'), +('35390', 'null'), +('35391', 'null'), +('35392', 'null'), +('35393', 'null'), +('35394', 'null'), +('35395', 'null'), +('35396', 'null'), +('35397', 'null'), +('35398', 'null'), +('35399', 'null'), +('35400', 'Shantay Pass'), +('35401', 'Jail Door'), +('35402', 'null'), +('35403', 'null'), +('35404', 'null'), +('35405', 'null'), +('35406', 'null'), +('35407', 'null'), +('35408', 'null'), +('35409', 'null'), +('35410', 'null'), +('35411', 'null'), +('35412', 'null'), +('35413', 'null'), +('35414', 'null'), +('35415', 'null'), +('35416', 'Cactus'), +('35417', 'Cactus'), +('35418', 'Cactus'), +('35419', 'Cactus'), +('35420', 'Cactus'), +('35421', 'Cactus'), +('35422', 'Cactus'), +('35423', 'Cactus'), +('35424', 'Cactus'), +('35425', 'Cactus'), +('35426', 'Cactus'), +('35427', 'Cactus'), +('35428', 'Cactus'), +('35429', 'Cactus'), +('35430', 'Cactus'), +('35431', 'null'), +('35432', 'Plant'), +('35433', 'null'), +('35434', 'null'), +('35435', 'null'), +('35436', 'null'), +('35437', 'Gem stall'), +('35438', 'Information'), +('35439', 'Gnome glider'), +('35440', 'null'), +('35441', 'null'), +('35442', 'null'), +('35443', 'null'), +('35444', 'null'), +('35445', 'null'), +('35446', 'null'), +('35447', 'null'), +('35448', 'Kebab cooker'), +('35449', 'Fireplace'), +('35450', 'null'), +('35451', 'Chair'), +('35452', 'Throne'), +('35453', 'Palatial table'), +('35454', 'Opulent table'), +('35455', 'Mini-table'), +('35456', 'A display case'), +('35457', 'Large urns'), +('35458', 'Urns'), +('35459', 'null'), +('35460', 'null'), +('35461', 'null'), +('35462', 'null'), +('35463', 'null'), +('35464', 'null'), +('35465', 'null'), +('35466', 'null'), +('35467', 'null'), +('35468', 'null'), +('35469', 'Carved fountain'), +('35470', 'Ornate Chest'), +('35471', 'Ornate chest'), +('35472', 'null'), +('35473', 'null'), +('35474', 'Divan'), +('35475', 'null'), +('35476', 'null'), +('35477', 'null'), +('35478', 'null'), +('35479', 'null'), +('35480', 'null'), +('35481', 'null'), +('35482', 'null'), +('35483', 'null'), +('35484', 'null'), +('35485', 'null'), +('35486', 'null'), +('35487', 'null'), +('35488', 'null'), +('35489', 'null'), +('35490', 'null'), +('35491', 'null'), +('35492', 'null'), +('35493', 'null'), +('35494', 'null'), +('35495', 'null'), +('35496', 'null'), +('35497', 'null'), +('35498', 'null'), +('35499', 'null'), +('35500', 'null'), +('35501', 'null'), +('35502', 'null'), +('35503', 'null'), +('35504', 'null'), +('35505', 'null'), +('35506', 'null'), +('35507', 'null'), +('35508', 'null'), +('35509', 'null'), +('35510', 'null'), +('35511', 'null'), +('35512', 'null'), +('35513', 'null'), +('35514', 'null'), +('35515', 'null'), +('35516', 'Steps'), +('35517', 'Steps'), +('35518', 'Steps'), +('35519', 'null'), +('35520', 'Large door'), +('35521', 'null'), +('35522', 'null'), +('35523', 'null'), +('35524', 'null'), +('35525', 'Werewolf statue'), +('35526', 'Statue'), +('35527', 'null'), +('35528', 'null'), +('35529', 'null'), +('35530', 'null'), +('35531', 'null'), +('35532', 'null'), +('35533', 'Staircase'), +('35534', 'Staircase'), +('35535', 'null'), +('35536', 'null'), +('35537', 'null'), +('35538', 'null'), +('35539', 'null'), +('35540', 'Cell door'), +('35541', 'Cell door'), +('35542', 'Shantay Pass'), +('35543', 'Shantay Pass'), +('35544', 'Shantay Pass'), +('35545', 'Shantay Pass'), +('35546', 'Shantay Pass'), +('35547', 'Shantay Pass'), +('35548', 'Shantay Pass'), +('35549', 'Gate'), +('35550', 'Gate'), +('35551', 'Gate'), +('35552', 'Gate'), +('35553', 'null'), +('35554', 'null'), +('35555', 'Danger sign'), +('35556', 'null'), +('35557', 'null'), +('35558', 'null'), +('35559', 'null'), +('35560', 'null'), +('35561', 'null'), +('35562', 'null'), +('35563', 'null'), +('35564', 'null'), +('35565', 'null'), +('35566', 'null'), +('35567', 'null'), +('35568', 'null'), +('35569', 'null'), +('35570', 'null'), +('35571', 'null'), +('35572', 'null'), +('35573', 'null'), +('35574', 'null'), +('35575', 'null'), +('35576', 'null'), +('35577', 'null'), +('35578', 'null'), +('35579', 'null'), +('35580', 'null'), +('35581', 'null'), +('35582', 'null'), +('35583', 'null'), +('35584', 'null'), +('35585', 'null'), +('35586', 'null'), +('35587', 'null'), +('35588', 'null'), +('35589', 'null'), +('35590', 'null'), +('35591', 'null'), +('35592', 'null'), +('35593', 'null'), +('35594', 'null'), +('35595', 'null'), +('35596', 'null'), +('35597', 'null'), +('35598', 'null'), +('35599', 'null'), +('35600', 'null'), +('35601', 'null'), +('35602', 'null'), +('35603', 'null'), +('35604', 'null'), +('35605', 'null'), +('35606', 'null'), +('35607', 'null'), +('35608', 'null'), +('35609', 'null'), +('35610', 'null'), +('35611', 'null'), +('35612', 'null'), +('35613', 'null'), +('35614', 'null'), +('35615', 'null'), +('35616', 'null'), +('35617', 'null'), +('35618', 'null'), +('35619', 'null'), +('35620', 'null'), +('35621', 'null'), +('35622', 'null'), +('35623', 'null'), +('35624', 'null'), +('35625', 'null'), +('35626', 'null'), +('35627', 'null'), +('35628', 'null'), +('35629', 'null'), +('35630', 'Door'), +('35631', 'Door'), +('35632', 'null'), +('35633', 'null'), +('35634', 'null'), +('35635', 'null'), +('35636', 'null'), +('35637', 'null'), +('35638', 'null'), +('35639', 'Shelf'), +('35640', 'Shelf'), +('35641', 'Shelf'), +('35642', 'Round table'), +('35643', 'null'), +('35644', 'null'), +('35645', 'Stairs'), +('35646', 'Stairs'), +('35647', 'Bank booth'), +('35648', 'Bank booth'), +('35649', 'Sign'), +('35650', 'Cushioned chair'), +('35651', 'Cushioned chair'), +('35652', 'Cushioned chair'), +('35653', 'Cushioned chair'), +('35654', 'Cushioned chair'), +('35655', 'Cushioned chair'), +('35656', 'Cushioned chair'), +('35657', 'Padded chair'), +('35658', 'Padded chair'), +('35659', 'Padded chair'), +('35660', 'Padded chair'), +('35661', 'Padded chair'), +('35662', 'Stone table'), +('35663', 'Vast table'), +('35664', 'Messy table'), +('35665', 'Crescent table'), +('35666', 'null'), +('35667', 'Large bed'), +('35668', 'Small bed'), +('35669', 'Stylish stool'), +('35670', 'Ornate vase'), +('35671', 'Well'), +('35672', 'Ladder'), +('35673', 'Ladder'), +('35674', 'null'), +('35675', 'null'), +('35676', 'null'), +('35677', 'null'), +('35678', 'null'), +('35679', 'null'), +('35680', 'null'), +('35681', 'null'), +('35682', 'null'), +('35683', 'null'), +('35684', 'null'), +('35685', 'null'), +('35686', 'null'), +('35687', 'null'), +('35688', 'null'), +('35689', 'null'), +('35690', 'null'), +('35691', 'null'), +('35692', 'null'), +('35693', 'null'), +('35694', 'null'), +('35695', 'null'), +('35696', 'null'), +('35697', 'null'), +('35698', 'null'), +('35699', 'null'), +('35700', 'null'), +('35701', 'null'), +('35702', 'null'), +('35703', 'null'), +('35704', 'null'), +('35705', 'null'), +('35706', 'null'), +('35707', 'null'), +('35708', 'null'), +('35709', 'null'), +('35710', 'null'), +('35711', 'null'), +('35712', 'null'), +('35713', 'null'), +('35714', 'null'), +('35715', 'null'), +('35716', 'null'), +('35717', 'null'), +('35718', 'null'), +('35719', 'null'), +('35720', 'null'), +('35721', 'null'), +('35722', 'null'), +('35723', 'null'), +('35724', 'null'), +('35725', 'null'), +('35726', 'null'), +('35727', 'null'), +('35728', 'null'), +('35729', 'null'), +('35730', 'null'), +('35731', 'null'), +('35732', 'null'), +('35733', 'null'), +('35734', 'null'), +('35735', 'null'), +('35736', 'null'), +('35737', 'null'), +('35738', 'null'), +('35739', 'null'), +('35740', 'null'), +('35741', 'null'), +('35742', 'null'), +('35743', 'null'), +('35744', 'null'), +('35745', 'null'), +('35746', 'null'), +('35747', 'null'), +('35748', 'null'), +('35749', 'null'), +('35750', 'null'), +('35751', 'Bookcase'), +('35752', 'null'), +('35753', 'Shield'), +('35754', 'Bookcase'), +('35755', 'Bookcase'), +('35756', 'Bookcase'), +('35757', 'Wardrobe'), +('35758', 'Cabinet'), +('35759', 'Cabinet'), +('35760', 'Cabinet'), +('35761', 'Cabinet'), +('35762', 'Sink'), +('35763', 'Bookcase'), +('35764', 'Desk'), +('35765', 'Smashed table'), +('35766', 'Bed'), +('35767', 'Bunk bed'), +('35768', 'null'), +('35769', 'null'), +('35770', 'null'), +('35771', 'null'), +('35772', 'null'), +('35773', 'null'), +('35774', 'null'), +('35775', 'null'), +('35776', 'null'), +('35777', 'null'), +('35778', 'null'), +('35779', 'null'), +('35780', 'null'), +('35781', 'Staircase'), +('35782', 'Staircase'), +('35783', 'Staircase'), +('35784', 'Crates'), +('35785', 'Crates'), +('35786', 'null'), +('35787', 'null'), +('35788', 'null'), +('35789', 'null'), +('35790', 'null'), +('35791', 'null'), +('35792', 'null'), +('35793', 'null'), +('35794', 'null'), +('35795', 'null'), +('35796', 'null'), +('35797', 'null'), +('35798', 'null'), +('35799', 'null'), +('35800', 'null'), +('35801', 'null'), +('35802', 'null'), +('35803', 'null'), +('35804', 'null'), +('35805', 'null'), +('35806', 'null'), +('35807', 'null'), +('35808', 'null'), +('35809', 'null'), +('35810', 'null'), +('35811', 'null'), +('35812', 'null'), +('35813', 'null'), +('35814', 'null'), +('35815', 'null'), +('35816', 'null'), +('35817', 'null'), +('35818', 'null'), +('35819', 'null'), +('35820', 'null'), +('35821', 'null'), +('35822', 'null'), +('35823', 'null'), +('35824', 'null'), +('35825', 'null'), +('35826', 'null'), +('35827', 'null'), +('35828', 'null'), +('35829', 'null'), +('35830', 'null'), +('35831', 'null'), +('35832', 'null'), +('35833', 'null'), +('35834', 'null'), +('35835', 'null'), +('35836', 'null'), +('35837', 'null'), +('35838', 'null'), +('35839', 'null'), +('35840', 'null'), +('35841', 'null'), +('35842', 'null'), +('35843', 'null'), +('35844', 'null'), +('35845', 'null'), +('35846', 'null'), +('35847', 'null'), +('35848', 'null'), +('35849', 'null'), +('35850', 'null'), +('35851', 'null'), +('35852', 'null'), +('35853', 'null'), +('35854', 'null'), +('35855', 'null'), +('35856', 'null'), +('35857', 'null'), +('35858', 'null'), +('35859', 'null'), +('35860', 'null'), +('35861', 'null'), +('35862', 'null'), +('35863', 'null'), +('35864', 'null'), +('35865', 'null'), +('35866', 'null'), +('35867', 'null'), +('35868', 'null'), +('35869', 'null'), +('35870', 'null'), +('35871', 'null'), +('35872', 'null'), +('35873', 'null'), +('35874', 'null'), +('35875', 'null'), +('35876', 'null'), +('35877', 'null'), +('35878', 'null'), +('35879', 'null'), +('35880', 'null'), +('35881', 'null'), +('35882', 'null'), +('35883', 'null'), +('35884', 'null'), +('35885', 'null'), +('35886', 'null'), +('35887', 'null'), +('35888', 'null'), +('35889', 'null'), +('35890', 'null'), +('35891', 'null'), +('35892', 'null'), +('35893', 'null'), +('35894', 'null'), +('35895', 'null'), +('35896', 'null'), +('35897', 'null'), +('35898', 'null'), +('35899', 'null'), +('35900', 'null'), +('35901', 'null'), +('35902', 'null'), +('35903', 'null'), +('35904', 'null'), +('35905', 'null'), +('35906', 'null'), +('35907', 'bannister end'), +('35908', 'null'), +('35909', 'null'), +('35910', 'null'), +('35911', 'null'), +('35912', 'null'), +('35913', 'null'), +('35914', 'null'), +('35915', 'null'), +('35916', 'null'), +('35917', 'null'), +('35918', 'null'), +('35919', 'null'), +('35920', 'null'), +('35921', 'null'), +('35922', 'null'), +('35923', 'null'), +('35924', 'null'), +('35925', 'null'), +('35926', 'null'), +('35927', 'null'), +('35928', 'null'), +('35929', 'null'), +('35930', 'Mithril door'), +('35931', 'Dairy churn'), +('35932', 'null'), +('35933', 'null'), +('35934', 'null'), +('35935', 'null'), +('35936', 'null'), +('35937', 'null'), +('35938', 'null'), +('35939', 'null'), +('35940', 'null'), +('35941', 'null'), +('35942', 'null'), +('35943', 'null'), +('35944', 'null'), +('35945', 'null'), +('35946', 'null'), +('35947', 'null'), +('35948', 'null'), +('35949', 'null'), +('35950', 'null'), +('35951', 'null'), +('35952', 'null'), +('35953', 'null'), +('35954', 'null'), +('35955', 'null'), +('35956', 'null'), +('35957', 'null'), +('35958', 'null'), +('35959', 'null'), +('35960', 'null'), +('35961', 'null'), +('35962', 'null'), +('35963', 'null'), +('35964', 'null'), +('35965', 'null'), +('35966', 'Rope swing'), +('35967', 'Rope swing'), +('35968', 'Rock'), +('35969', 'Balancing ledge'), +('35970', 'Tree branch'), +('35971', 'null'), +('35972', 'null'), +('35973', 'null'), +('35974', 'null'), +('35975', 'null'), +('35976', 'null'), +('35977', 'null'), +('35978', 'null'), +('35979', 'null'), +('35980', 'null'), +('35981', 'null'), +('35982', 'null'), +('35983', 'null'), +('35984', 'null'), +('35985', 'null'), +('35986', 'null'), +('35987', 'null'), +('35988', 'null'), +('35989', 'long walkway'), +('35990', 'null'), +('35991', 'Door'), +('35992', 'Door'), +('35993', 'null'), +('35994', 'null'), +('35995', 'null'), +('35996', 'Stepping stone'), +('35997', 'Log balance'), +('35998', 'Log balance'), +('35999', 'Log balance'), +('36000', 'Cave entrance'), +('36001', 'Hanging log'), +('36002', 'Smokey well'), +('36003', 'Rift'), +('36004', 'null'), +('36005', 'null'), +('36006', 'null'), +('36007', 'null'), +('36008', 'null'), +('36009', 'null'), +('36010', 'null'), +('36011', 'null'), +('36012', 'null'), +('36013', 'null'), +('36014', 'null'), +('36015', 'null'), +('36016', 'null'), +('36017', 'null'), +('36018', 'null'), +('36019', 'null'), +('36020', 'null'), +('36021', 'Door'), +('36022', 'Door'), +('36023', 'null'), +('36024', 'null'), +('36025', 'null'), +('36026', 'null'), +('36027', 'null'), +('36028', 'null'), +('36029', 'null'), +('36030', 'null'), +('36031', 'null'), +('36032', 'null'), +('36033', 'null'), +('36034', 'null'), +('36035', 'null'), +('36036', 'null'), +('36037', 'null'), +('36038', 'null'), +('36039', 'null'), +('36040', 'null'), +('36041', 'null'), +('36042', 'null'), +('36043', 'null'), +('36044', 'null'), +('36045', 'null'), +('36046', 'null'), +('36047', 'null'), +('36048', 'null'), +('36049', 'null'), +('36050', 'null'), +('36051', 'null'), +('36052', 'null'), +('36053', 'null'), +('36054', 'null'), +('36055', 'null'), +('36056', 'null'), +('36057', 'null'), +('36058', 'null'), +('36059', 'null'), +('36060', 'null'), +('36061', 'null'), +('36062', 'null'), +('36063', 'null'), +('36064', 'null'), +('36065', 'null'), +('36066', 'null'), +('36067', 'null'), +('36068', 'null'), +('36069', 'null'), +('36070', 'null'), +('36071', 'null'), +('36072', 'null'), +('36073', 'null'), +('36074', 'null'), +('36075', 'null'), +('36076', 'null'), +('36077', 'null'), +('36078', 'null'), +('36079', 'null'), +('36080', 'null'), +('36081', 'null'), +('36082', 'null'), +('36083', 'null'), +('36084', 'null'), +('36085', 'null'), +('36086', 'null'), +('36087', 'null'), +('36088', 'null'), +('36089', 'null'), +('36090', 'null'), +('36091', 'null'), +('36092', 'null'), +('36093', 'null'), +('36094', 'null'), +('36095', 'null'), +('36096', 'null'), +('36097', 'null'), +('36098', 'null'), +('36099', 'null'), +('36100', 'null'), +('36101', 'null'), +('36102', 'null'), +('36103', 'null'), +('36104', 'null'), +('36105', 'null'), +('36106', 'null'), +('36107', 'null'), +('36108', 'null'), +('36109', 'null'), +('36110', 'null'), +('36111', 'null'), +('36112', 'null'), +('36113', 'null'), +('36114', 'null'), +('36115', 'null'), +('36116', 'null'), +('36117', 'null'), +('36118', 'null'), +('36119', 'null'), +('36120', 'null'), +('36121', 'null'), +('36122', 'null'), +('36123', 'null'), +('36124', 'null'), +('36125', 'null'), +('36126', 'null'), +('36127', 'null'), +('36128', 'null'), +('36129', 'null'), +('36130', 'null'), +('36131', 'null'), +('36132', 'null'), +('36133', 'null'), +('36134', 'null'), +('36135', 'null'), +('36136', 'null'), +('36137', 'null'), +('36138', 'null'), +('36139', 'null'), +('36140', 'null'), +('36141', 'null'), +('36142', 'null'), +('36143', 'null'), +('36144', 'null'), +('36145', 'null'), +('36146', 'null'), +('36147', 'null'), +('36148', 'null'), +('36149', 'null'), +('36150', 'null'), +('36151', 'null'), +('36152', 'null'), +('36153', 'null'), +('36154', 'null'), +('36155', 'null'), +('36156', 'null'), +('36157', 'null'), +('36158', 'null'), +('36159', 'null'), +('36160', 'null'), +('36161', 'null'), +('36162', 'null'), +('36163', 'null'), +('36164', 'null'), +('36165', 'null'), +('36166', 'null'), +('36167', 'null'), +('36168', 'null'), +('36169', 'null'), +('36170', 'null'), +('36171', 'null'), +('36172', 'null'), +('36173', 'null'), +('36174', 'null'), +('36175', 'null'), +('36176', 'null'), +('36177', 'null'), +('36178', 'null'), +('36179', 'null'), +('36180', 'null'), +('36181', 'null'), +('36182', 'null'), +('36183', 'null'), +('36184', 'null'), +('36185', 'null'), +('36186', 'null'), +('36187', 'null'), +('36188', 'null'), +('36189', 'null'), +('36190', 'null'), +('36191', 'null'), +('36192', 'null'), +('36193', 'null'), +('36194', 'null'), +('36195', 'null'), +('36196', 'null'), +('36197', 'null'), +('36198', 'null'), +('36199', 'null'), +('36200', 'null'), +('36201', 'null'), +('36202', 'null'), +('36203', 'null'), +('36204', 'null'), +('36205', 'null'), +('36206', 'null'), +('36207', 'null'), +('36208', 'null'), +('36209', 'null'), +('36210', 'null'), +('36211', 'null'), +('36212', 'null'), +('36213', 'null'), +('36214', 'null'), +('36215', 'null'), +('36216', 'null'), +('36217', 'null'), +('36218', 'null'), +('36219', 'null'), +('36220', 'null'), +('36221', 'null'), +('36222', 'null'), +('36223', 'null'), +('36224', 'null'), +('36225', 'null'), +('36226', 'null'), +('36227', 'null'), +('36228', 'null'), +('36229', 'null'), +('36230', 'Flag Banner'), +('36231', 'Flag Banner'), +('36232', 'Flag Banner'), +('36233', 'Flag Banner'), +('36234', 'Flag Banner'), +('36235', 'Flag Banner'), +('36236', 'Flag Banner'), +('36237', 'Flag Banner'), +('36238', 'Flag Banner'), +('36239', 'Flag Banner'), +('36240', 'null'), +('36241', 'null'), +('36242', 'null'), +('36243', 'null'), +('36244', 'null'), +('36245', 'null'), +('36246', 'null'), +('36247', 'null'), +('36248', 'null'), +('36249', 'null'), +('36250', 'null'), +('36251', 'null'), +('36252', 'null'), +('36253', 'null'), +('36254', 'null'), +('36255', 'Table'), +('36256', 'Bed'), +('36257', 'Bed'), +('36258', 'null'), +('36259', 'null'), +('36260', 'null'), +('36261', 'null'), +('36262', 'Bank booth'), +('36263', 'Gold bars'), +('36264', 'null'), +('36265', 'null'), +('36266', 'null'), +('36267', 'null'), +('36268', 'null'), +('36269', 'null'), +('36270', 'null'), +('36271', 'null'), +('36272', 'null'), +('36273', 'Suit of armour'), +('36274', 'null'), +('36275', 'null'), +('36276', 'null'), +('36277', 'null'), +('36278', 'null'), +('36279', 'null'), +('36280', 'null'), +('36281', 'null'), +('36282', 'null'), +('36283', 'null'), +('36284', 'null'), +('36285', 'null'), +('36286', 'null'), +('36287', 'Suit of armour'), +('36288', 'null'), +('36289', 'null'), +('36290', 'null'), +('36291', 'null'), +('36292', 'null'), +('36293', 'null'), +('36294', 'null'), +('36295', 'null'), +('36296', 'null'), +('36297', 'null'), +('36298', 'null'), +('36299', 'null'), +('36300', 'null'), +('36301', 'null'), +('36302', 'null'), +('36303', 'null'), +('36304', 'null'), +('36305', 'null'), +('36306', 'Ladder'), +('36307', 'Rope Ladder'), +('36308', 'Wall'), +('36309', 'null'), +('36310', 'null'), +('36311', 'null'), +('36312', 'Climbing Rope'), +('36313', 'Battlements'), +('36314', 'Battlements'), +('36315', 'Door'), +('36316', 'Door'), +('36317', 'Door'), +('36318', 'Door'), +('36319', 'Door'), +('36320', 'Door'), +('36321', 'null'), +('36322', 'Boxes'), +('36323', 'Crate'), +('36324', 'Crate'), +('36325', 'Barrel of swords'), +('36326', 'Barrel'), +('36327', 'Barrel'), +('36328', 'null'), +('36329', 'null'), +('36330', 'null'), +('36331', 'null'), +('36332', 'null'), +('36333', 'null'), +('36334', 'null'), +('36335', 'Shelves'), +('36336', 'Shelves'), +('36337', 'Shelves'), +('36338', 'Shelves'), +('36339', 'Door'), +('36340', 'Door'), +('36341', 'Door'), +('36342', 'Door'), +('36343', 'Door'), +('36344', 'Door'), +('36345', 'null'), +('36346', 'null'), +('36347', 'Ladder'), +('36348', 'Ladder'), +('36349', 'Ladder'), +('36350', 'Table'), +('36351', 'Crate'), +('36352', 'Crate'), +('36353', 'Barrel'), +('36354', 'Boxes'), +('36355', 'Door'), +('36356', 'Door'), +('36357', 'Door'), +('36358', 'Door'), +('36359', 'Door'), +('36360', 'Door'), +('36361', 'null'), +('36362', 'null'), +('36363', 'Ladder'), +('36364', 'Ladder'), +('36365', 'Ladder'), +('36366', 'Table'), +('36367', 'Barrel'), +('36368', 'Boxes'), +('36369', 'Crate'), +('36370', 'Crate'), +('36371', 'null'), +('36372', 'null'), +('36373', 'null'), +('36374', 'null'), +('36375', 'null'), +('36376', 'null'), +('36377', 'null'), +('36378', 'null'), +('36379', 'null'), +('36380', 'null'), +('36381', 'null'), +('36382', 'null'), +('36383', 'null'), +('36384', 'null'), +('36385', 'null'), +('36386', 'null'), +('36387', 'null'), +('36388', 'null'), +('36389', 'null'), +('36390', 'null'), +('36391', 'null'), +('36392', 'null'), +('36393', 'null'), +('36394', 'null'), +('36395', 'null'), +('36396', 'null'), +('36397', 'null'), +('36398', 'null'), +('36399', 'null'), +('36400', 'null'), +('36401', 'null'), +('36402', 'null'), +('36403', 'null'), +('36404', 'null'), +('36405', 'null'), +('36406', 'null'), +('36407', 'null'), +('36408', 'null'), +('36409', 'null'), +('36410', 'null'), +('36411', 'null'), +('36412', 'null'), +('36413', 'null'), +('36414', 'null'), +('36415', 'null'), +('36416', 'null'), +('36417', 'null'), +('36418', 'null'), +('36419', 'null'), +('36420', 'null'), +('36421', 'null'), +('36422', 'null'), +('36423', 'null'), +('36424', 'null'), +('36425', 'null'), +('36426', 'null'), +('36427', 'null'), +('36428', 'null'), +('36429', 'null'), +('36430', 'null'), +('36431', 'null'), +('36432', 'null'), +('36433', 'null'), +('36434', 'null'), +('36435', 'null'), +('36436', 'null'), +('36437', 'null'), +('36438', 'null'), +('36439', 'null'), +('36440', 'null'), +('36441', 'Steps'), +('36442', 'null'), +('36443', 'Steps'), +('36444', 'null'), +('36445', 'Steps'), +('36446', 'null'), +('36447', 'null'), +('36448', 'null'), +('36449', 'null'), +('36450', 'null'), +('36451', 'Stairs'), +('36452', 'null'), +('36453', 'null'), +('36454', 'null'), +('36455', 'null'), +('36456', 'null'), +('36457', 'null'), +('36458', 'null'), +('36459', 'null'), +('36460', 'null'), +('36461', 'null'), +('36462', 'null'), +('36463', 'null'), +('36464', 'null'), +('36465', 'null'), +('36466', 'null'), +('36467', 'null'), +('36468', 'Steps'), +('36469', 'Steps'), +('36470', 'null'), +('36471', 'null'), +('36472', 'Steps'), +('36473', 'null'), +('36474', 'Steps'), +('36475', 'Stairs'), +('36476', 'null'), +('36477', 'null'), +('36478', 'Stairs'), +('36479', 'null'), +('36480', 'Steps'), +('36481', 'Steps'), +('36482', 'null'), +('36483', 'null'), +('36484', 'Steps'), +('36485', 'null'), +('36486', 'null'), +('36487', 'null'), +('36488', 'null'), +('36489', 'null'), +('36490', 'null'), +('36491', 'null'), +('36492', 'null'), +('36493', 'null'), +('36494', 'null'), +('36495', 'Steps'), +('36496', 'null'), +('36497', 'null'), +('36498', 'null'), +('36499', 'null'), +('36500', 'null'), +('36501', 'Stairs'), +('36502', 'null'), +('36503', 'null'), +('36504', 'null'), +('36505', 'null'), +('36506', 'null'), +('36507', 'null'), +('36508', 'null'), +('36509', 'null'), +('36510', 'null'), +('36511', 'null'), +('36512', 'null'), +('36513', 'Steps'), +('36514', 'Steps'), +('36515', 'null'), +('36516', 'null'), +('36517', 'Steps'), +('36518', 'null'), +('36519', 'Steps'), +('36520', 'null'), +('36521', 'Steps'), +('36522', 'null'), +('36523', 'Steps'), +('36524', 'null'), +('36525', 'null'), +('36526', 'null'), +('36527', 'null'), +('36528', 'null'), +('36529', 'null'), +('36530', 'null'), +('36531', 'null'), +('36532', 'Steps'), +('36533', 'null'), +('36534', 'null'), +('36535', 'null'), +('36536', 'null'), +('36537', 'null'), +('36538', 'null'), +('36539', 'null'), +('36540', 'Steps'), +('36541', 'null'), +('36542', 'null'), +('36543', 'null'), +('36544', 'null'), +('36545', 'null'), +('36546', 'null'), +('36547', 'null'), +('36548', 'null'), +('36549', 'null'), +('36550', 'null'), +('36551', 'null'), +('36552', 'null'), +('36553', 'null'), +('36554', 'null'), +('36555', 'null'), +('36556', 'null'), +('36557', 'null'), +('36558', 'null'), +('36559', 'null'), +('36560', 'null'), +('36561', 'null'), +('36562', 'null'), +('36563', 'null'), +('36564', 'null'), +('36565', 'null'), +('36566', 'null'), +('36567', 'null'), +('36568', 'null'), +('36569', 'null'), +('36570', 'null'), +('36571', 'null'), +('36572', 'null'), +('36573', 'Table'), +('36574', 'Table'), +('36575', 'Table'), +('36576', 'Table'), +('36577', 'Table'), +('36578', 'Table'), +('36579', 'Table'), +('36580', 'Table'), +('36581', 'Table'), +('36582', 'Table'), +('36583', 'Table'), +('36584', 'Table'), +('36585', 'Table'), +('36586', 'Table'), +('36587', 'null'), +('36588', 'null'), +('36589', 'null'), +('36590', 'null'), +('36591', 'null'), +('36592', 'null'), +('36593', 'null'), +('36594', 'null'), +('36595', 'null'), +('36596', 'null'), +('36597', 'null'), +('36598', 'null'), +('36599', 'null'), +('36600', 'null'), +('36601', 'null'), +('36602', 'null'), +('36603', 'null'), +('36604', 'null'), +('36605', 'null'), +('36606', 'null'), +('36607', 'null'), +('36608', 'null'), +('36609', 'null'), +('36610', 'null'), +('36611', 'null'), +('36612', 'null'), +('36613', 'null'), +('36614', 'null'), +('36615', 'null'), +('36616', 'null'), +('36617', 'null'), +('36618', 'null'), +('36619', 'null'), +('36620', 'null'), +('36621', 'null'), +('36622', 'null'), +('36623', 'null'), +('36624', 'null'), +('36625', 'Trapdoor'), +('36626', 'Rock'), +('36627', 'Rock'), +('36628', 'Rocks'), +('36629', 'null'), +('36630', 'null'), +('36631', 'null'), +('36632', 'null'), +('36633', 'null'), +('36634', 'null'), +('36635', 'null'), +('36636', 'null'), +('36637', 'null'), +('36638', 'null'), +('36639', 'null'), +('36640', 'null'), +('36641', 'null'), +('36642', 'null'), +('36643', 'null'), +('36644', 'Ladder'), +('36645', 'Ladder'), +('36646', 'Ladder'), +('36647', 'null'), +('36648', 'null'), +('36649', 'null'), +('36650', 'null'), +('36651', 'null'), +('36652', 'null'), +('36653', 'null'), +('36654', 'null'), +('36655', 'null'), +('36656', 'null'), +('36657', 'null'), +('36658', 'null'), +('36659', 'null'), +('36660', 'null'), +('36661', 'null'), +('36662', 'null'), +('36663', 'null'), +('36664', 'null'), +('36665', 'null'), +('36666', 'null'), +('36667', 'null'), +('36668', 'null'), +('36669', 'null'), +('36670', 'null'), +('36671', 'null'), +('36672', 'null'), +('36673', 'null'), +('36674', 'null'), +('36675', 'null'), +('36676', 'null'), +('36677', 'null'), +('36678', 'null'), +('36679', 'null'), +('36680', 'null'), +('36681', 'null'), +('36682', 'null'), +('36683', 'null'), +('36684', 'null'), +('36685', 'null'), +('36686', 'null'), +('36687', 'Trapdoor'), +('36688', 'Hollow log'), +('36689', 'Hollow log'), +('36690', 'Hollow log'), +('36691', 'Trapdoor'), +('36692', 'Ladder'), +('36693', 'Ladder'), +('36694', 'Ladder'), +('36695', 'Fountain of Heroes'), +('36696', 'Ruined Pillar'), +('36697', 'Ruined Pillar'), +('36698', 'Pillar'), +('36699', 'Ruined Pillar'), +('36700', 'Ruined Pillar'), +('36701', 'Ruined Pillar'), +('36702', 'Ruined Pillar'), +('36703', 'Ladder'), +('36704', 'null'), +('36705', 'Hedge'), +('36706', 'Hedge'), +('36707', 'Young vine'), +('36708', 'Young vine'), +('36709', 'Growing vine'), +('36710', 'Tall vine'), +('36711', 'Tropical tree'), +('36712', 'Floor spikes'), +('36713', 'Opening'), +('36714', 'Ogre Coffin'), +('36715', 'Ogre Coffin'), +('36716', 'null'), +('36717', 'null'), +('36718', 'null'), +('36719', 'null'), +('36720', 'null'), +('36721', 'null'), +('36722', 'null'), +('36723', 'null'), +('36724', 'null'), +('36725', 'null'), +('36726', 'Chair'), +('36727', 'Table'), +('36728', 'Table'), +('36729', 'Wardrobe'), +('36730', 'Table'), +('36731', 'Table'), +('36732', 'Wooden defence'), +('36733', 'null'), +('36734', 'null'), +('36735', 'null'), +('36736', 'Coffin'), +('36737', 'Coffin'), +('36738', 'Coffin'), +('36739', 'Coffin'), +('36740', 'null'), +('36741', 'null'), +('36742', 'null'), +('36743', 'null'), +('36744', 'Pillar'), +('36745', 'Rope swing'), +('36746', 'Rope swing'), +('36747', 'Cave wall'), +('36748', 'Cart Camel'), +('36749', 'Statue'), +('36750', 'Statue'), +('36751', 'Statue'), +('36752', 'Statue'), +('36753', 'Statue'), +('36754', 'Statue'), +('36755', 'null'), +('36756', 'null'), +('36757', 'null'), +('36758', 'null'), +('36759', 'null'), +('36760', 'null'), +('36761', 'null'), +('36762', 'null'), +('36763', 'null'), +('36764', 'null'), +('36765', 'Swamp Boaty'), +('36766', 'null'), +('36767', 'null'), +('36768', 'Ladder'), +('36769', 'Ladder'), +('36770', 'Ladder'), +('36771', 'Ladder'), +('36772', 'Ladder'), +('36773', 'Staircase'), +('36774', 'Staircase'), +('36775', 'Staircase'), +('36776', 'Staircase'), +('36777', 'Staircase'), +('36778', 'Staircase'), +('36779', 'Suit of armour'), +('36780', 'Cannon'), +('36781', 'Fountain'), +('36782', 'Bush'), +('36783', 'Chair'), +('36784', 'Hanging meat'), +('36785', 'Hanging meat'), +('36786', 'Bank booth'), +('36787', 'Closed Bank booth'), +('36788', 'Bank deposit box'), +('36789', 'Bank table'), +('36790', 'Cannonballs'), +('36791', 'Stairs'), +('36792', 'Stairs'), +('36793', 'Stairs'), +('36794', 'Stairs'), +('36795', 'Ladder'), +('36796', 'Ladder'), +('36797', 'Ladder'), +('36798', 'Barrel'), +('36799', 'Barrel'), +('36800', 'Barrel'), +('36801', 'Barrel of swords'), +('36802', 'Barrel'), +('36803', 'Painting'), +('36804', 'Painting'), +('36805', 'Painting'), +('36806', 'Painting'), +('36807', 'Hanging tapestry'), +('36808', 'Hanging tapestry'), +('36809', 'Hanging tapestry'), +('36810', 'null'), +('36811', 'Painting'), +('36812', 'Painting'), +('36813', 'Painting'), +('36814', 'Painting'), +('36815', 'Fireplace'), +('36816', 'Fireplace'), +('36817', 'Axe cabinet'), +('36818', 'Axe cabinet'), +('36819', 'Small table'), +('36820', 'Table'), +('36821', 'Table'), +('36822', 'Large table'), +('36823', 'Shelves'), +('36824', 'Shelves'), +('36825', 'Shelves'), +('36826', 'Shelves'), +('36827', 'null'), +('36828', 'null'), +('36829', 'Shelves'), +('36830', 'Chair'), +('36831', 'Chair'), +('36832', 'Bookcase'), +('36833', 'Bookcase'), +('36834', 'Bookcase'), +('36835', 'null'), +('36836', 'Workbench'), +('36837', 'Stool'), +('36838', 'null'), +('36839', 'null'), +('36840', 'null'), +('36841', 'Bed'), +('36842', 'null'), +('36843', 'null'), +('36844', 'Door'), +('36845', 'Door'), +('36846', 'Door'), +('36847', 'Door'), +('36848', 'Door'), +('36849', 'null'), +('36850', 'null'), +('36851', 'Door'), +('36852', 'Door'), +('36853', 'Door'), +('36854', 'null'), +('36855', 'null'), +('36856', 'Door'), +('36857', 'Door'), +('36858', 'Door'), +('36859', 'Door'), +('36860', 'null'), +('36861', 'null'), +('36862', 'Door'), +('36863', 'Door'), +('36864', 'Door'), +('36865', 'Door'), +('36866', 'Flag'), +('36867', 'Water wheel'), +('36868', 'Water wheel'), +('36869', 'Water wheel'), +('36870', 'null'), +('36871', 'Water wheel'), +('36872', 'Sails'), +('36873', 'Sails'), +('36874', 'Mill'), +('36875', 'Mill'), +('36876', 'null'), +('36877', 'Mill'), +('36878', 'Flour bin'), +('36879', 'Mill'), +('36880', 'null'), +('36881', 'Hopper'), +('36882', 'Log pile'), +('36883', 'Plough'), +('36884', 'Food trough'), +('36885', 'Trough'), +('36886', 'Trough'), +('36887', 'Trough'), +('36888', 'Scarecrow'), +('36889', 'Cart'), +('36890', 'Wheelbarrow'), +('36891', 'Tree stump'), +('36892', 'Hay bale'), +('36893', 'Hay bale'), +('36894', 'Hay bales'), +('36895', 'Hay bales'), +('36896', 'Hay bales'), +('36897', 'Hay bales'), +('36898', 'Hay bales'), +('36899', 'Hay bales'), +('36900', 'null'), +('36901', 'null'), +('36902', 'null'), +('36903', 'Sack'), +('36904', 'Sack'), +('36905', 'Bench'), +('36906', 'Hat stand'), +('36907', 'Quiver'), +('36908', 'Wardrobe'), +('36909', 'Wardrobe'), +('36910', 'Table'), +('36911', 'Signpost'), +('36912', 'Gate'), +('36913', 'Gate'), +('36914', 'Gate'), +('36915', 'Gate'), +('36916', 'Gate'), +('36917', 'Gate'), +('36918', 'Gate'), +('36919', 'Gate'), +('36920', 'Trapdoor'), +('36921', 'Trapdoor'), +('36922', 'null'), +('36923', 'Hanging tapestry'), +('36924', 'Standard'), +('36925', 'Standard'), +('36926', 'Standard'), +('36927', 'null'), +('36928', 'Wooden defence'), +('36929', 'Sacks'), +('36930', 'Desk'), +('36931', 'A bunk bed'), +('36932', 'null'), +('36933', 'null'), +('36934', 'Cabinet'), +('36935', 'Counter'), +('36936', 'Stepladder'), +('36937', 'Grandfather clock'), +('36938', 'null'), +('36939', 'null'), +('36940', 'null'), +('36941', 'Bed'), +('36942', 'Bed'), +('36943', 'Bed'), +('36944', 'Bed'), +('36945', 'Ladder'), +('36946', 'Ladder'), +('36947', 'Ladder'), +('36948', 'Ladder'), +('36949', 'Wheelbarrow'), +('36950', 'null'), +('36951', 'Coop'), +('36952', 'Coop'), +('36953', 'Coop'), +('36954', 'Water barrel'), +('36955', 'Water barrel'), +('36956', 'Furnace'), +('36957', 'null'), +('36958', 'null'), +('36959', 'Combat dummy'), +('36960', 'Stairs'), +('36961', 'Stairs'), +('36962', 'Stairs'), +('36963', 'Stairs'), +('36964', 'Stairs'), +('36965', 'Stairs'), +('36966', 'Stairs'), +('36967', 'Stairs'), +('36968', 'Stairs'), +('36969', 'Stairs'), +('36970', 'Spinning wheel'), +('36971', 'Sink'), +('36972', 'Altar'), +('36973', 'Range'), +('36974', 'Logs'), +('36975', 'Logs'), +('36976', 'Bell'), +('36977', 'Bell'), +('36978', 'Organ'), +('36979', 'Organ'), +('36980', 'null'), +('36981', 'null'), +('36982', 'Stand'), +('36983', 'Stand'), +('36984', 'Ladder'), +('36985', 'Ladder'), +('36986', 'Ladder'), +('36987', 'Ladder'), +('36988', 'Ladder'), +('36989', 'Ladder'), +('36990', 'Ladder'), +('36991', 'Ladder'), +('36992', 'null'), +('36993', 'Ladder'), +('36994', 'Ladder'), +('36995', 'Ladder'), +('36996', 'Ladder'), +('36997', 'Ladder'), +('36998', 'Ladder'), +('36999', 'Church door'), +('37000', 'Church door'), +('37001', 'null'), +('37002', 'Church door'), +('37003', 'Church door'), +('37004', 'null'), +('37005', 'Gravestone'), +('37006', 'Gravestone'), +('37007', 'Candle'), +('37008', 'Organ'), +('37009', 'Closed chest'), +('37010', 'Open chest'), +('37011', 'Drawers'), +('37012', 'Drawers'), +('37013', 'Drawers'), +('37014', 'Drawers'), +('37015', 'Crate'), +('37016', 'Crate'), +('37017', 'Boxes'), +('37018', 'Doorway'), +('37019', 'null'), +('37020', 'null'), +('37021', 'null'), +('37022', 'null'), +('37023', 'Staircase'), +('37024', 'null'), +('37025', 'Cabinet'), +('37026', 'Cabinet'), +('37027', 'Drawers'), +('37028', 'Drawers'), +('37029', 'Crate'), +('37030', 'Crate'), +('37031', 'Crate'), +('37032', 'sacks'), +('37033', 'null'), +('37034', 'Cupboard'), +('37035', 'Cupboard'), +('37036', 'Open Cupboard'), +('37037', 'Cupboard'), +('37038', 'Open Cupboard'), +('37039', 'Cupboard'), +('37040', 'Closed chest'), +('37041', 'Closed chest'), +('37042', 'Open chest'), +('37043', 'Open chest'), +('37044', 'Open chest'), +('37045', 'Open chest'), +('37046', 'Open chest'), +('37047', 'Bookcase'), +('37048', 'Wardrobe'), +('37049', 'Wardrobe'), +('37050', 'Wardrobe'), +('37051', 'Wardrobe'), +('37052', 'Wardrobe'), +('37053', 'Wardrobe'), +('37054', 'null'), +('37055', 'null'), +('37056', 'null'), +('37057', 'null'), +('37058', 'null'), +('37059', 'null'), +('37060', 'null'), +('37061', 'null'), +('37062', 'Ship's ladder'), +('37063', 'null'), +('37064', 'null'), +('37065', 'null'), +('37066', 'null'), +('37067', 'null'), +('37068', 'Figurehead'), +('37069', 'null'), +('37070', 'null'), +('37071', 'null'), +('37072', 'null'), +('37073', 'Stags'), +('37074', 'Ectoplasm'), +('37075', 'null'), +('37076', 'null'), +('37077', 'null'), +('37078', 'null'), +('37079', 'null'), +('37080', 'null'), +('37081', 'null'), +('37082', 'null'), +('37083', 'null'), +('37084', 'null'), +('37085', 'null'), +('37086', 'null'), +('37087', 'Tiling'), +('37088', 'Trapdoor'), +('37089', 'null'), +('37090', 'null'), +('37091', 'Trapdoor'), +('37092', 'Springboard'), +('37093', 'null'), +('37094', 'null'), +('37095', 'Archery target'), +('37096', 'Archery target'), +('37097', 'null'), +('37098', 'null'), +('37099', 'null'), +('37100', 'null'), +('37101', 'null'), +('37102', 'null'), +('37103', 'null'), +('37104', 'null'), +('37105', 'null'), +('37106', 'null'), +('37107', 'null'), +('37108', 'null'), +('37109', 'null'), +('37110', 'null'), +('37111', 'null'), +('37112', 'null'), +('37113', 'null'), +('37114', 'Barrel'), +('37115', 'null'), +('37116', 'null'), +('37117', 'null'), +('37118', 'Bookcase'), +('37119', 'Bookcase'), +('37120', 'null'), +('37121', 'Mirror'), +('37122', 'Broom'), +('37123', 'Carcass'), +('37124', 'null'), +('37125', 'null'), +('37126', 'null'), +('37127', 'null'), +('37128', 'null'), +('37129', 'null'), +('37130', 'null'), +('37131', 'null'), +('37132', 'null'), +('37133', 'null'), +('37134', 'null'), +('37135', 'null'), +('37136', 'null'), +('37137', 'null'), +('37138', 'null'), +('37139', 'null'), +('37140', 'null'), +('37141', 'null'), +('37142', 'null'), +('37143', 'null'), +('37144', 'null'), +('37145', 'null'), +('37146', 'null'), +('37147', 'null'), +('37148', 'null'), +('37149', 'null'), +('37150', 'Cooking Pots'), +('37151', 'null'), +('37152', 'null'), +('37153', 'Sign'), +('37154', 'Sink'), +('37155', 'Sink'), +('37156', 'Bath'), +('37157', 'Bar pumps'), +('37158', 'Bank table'), +('37159', 'Bank table'), +('37160', 'Table'), +('37161', 'Table'), +('37162', 'Table'), +('37163', 'Table'), +('37164', 'Table'), +('37165', 'Table'), +('37166', 'Table'), +('37167', 'Table'), +('37168', 'Study desk'), +('37169', 'Counter'), +('37170', 'Shelves'), +('37171', 'Shelves'), +('37172', 'Shelves'), +('37173', 'Shelves'), +('37174', 'Shelves'), +('37175', 'Shelves'), +('37176', 'Shelves'), +('37177', 'Shelves'), +('37178', 'Shelves'), +('37179', 'Shelves'), +('37180', 'Shelves'), +('37181', 'Shelf'), +('37182', 'null'), +('37183', 'null'), +('37184', 'null'), +('37185', 'null'), +('37186', 'null'), +('37187', 'null'), +('37188', 'null'), +('37189', 'null'), +('37190', 'null'), +('37191', 'null'), +('37192', 'null'), +('37193', 'Stalactite'), +('37194', 'Crashed glider'), +('37195', 'null'), +('37196', 'Whirpool'), +('37197', 'null'), +('37198', 'null'), +('37199', 'null'), +('37200', 'null'), +('37201', 'null'), +('37202', 'null'), +('37203', 'null'), +('37204', 'null'), +('37205', 'null'), +('37206', 'null'), +('37207', 'null'), +('37208', 'Rocks'), +('37209', 'null'), +('37210', 'Whirpool'), +('37211', 'null'), +('37212', 'null'), +('37213', 'null'), +('37214', 'null'), +('37215', 'null'), +('37216', 'null'), +('37217', 'null'), +('37218', 'null'), +('37219', 'null'), +('37220', 'null'), +('37221', 'null'), +('37222', 'null'), +('37223', 'null'), +('37224', 'null'), +('37225', 'null'), +('37226', 'null'), +('37227', 'null'), +('37228', 'null'), +('37229', 'null'), +('37230', 'null'), +('37231', 'null'), +('37232', 'null'), +('37233', 'null'), +('37234', 'null'), +('37235', 'null'), +('37236', 'null'), +('37237', 'null'), +('37238', 'null'), +('37239', 'null'), +('37240', 'null'), +('37241', 'null'), +('37242', 'null'), +('37243', 'null'), +('37244', 'null'), +('37245', 'Ledge'), +('37246', 'Ledge'), +('37247', 'Ledge'), +('37248', 'null'), +('37249', 'null'), +('37250', 'null'), +('37251', 'null'), +('37252', 'null'), +('37253', 'null'), +('37254', 'null'), +('37255', 'null'), +('37256', 'null'), +('37257', 'null'), +('37258', 'null'), +('37259', 'null'), +('37260', 'null'), +('37261', 'null'), +('37262', 'null'), +('37263', 'null'), +('37264', 'null'), +('37265', 'null'), +('37266', 'null'), +('37267', 'null'), +('37268', 'null'), +('37269', 'null'), +('37270', 'null'), +('37271', 'null'), +('37272', 'null'), +('37273', 'null'), +('37274', 'null'), +('37275', 'null'), +('37276', 'null'), +('37277', 'null'), +('37278', 'null'), +('37279', 'null'), +('37280', 'null'), +('37281', 'null'), +('37282', 'null'), +('37283', 'null'), +('37284', 'null'), +('37285', 'null'), +('37286', 'null'), +('37287', 'null'), +('37288', 'null'), +('37289', 'null'), +('37290', 'null'), +('37291', 'null'), +('37292', 'null'), +('37293', 'null'), +('37294', 'null'), +('37295', 'Bookcase'), +('37296', 'Corpse'), +('37297', 'Smashed chair'), +('37298', 'Bench'), +('37299', 'Shelves'), +('37300', 'Shelves'), +('37301', 'Shelves'), +('37302', 'null'), +('37303', 'null'), +('37304', 'Rocks'), +('37305', 'Rocks'), +('37306', 'Rocks'), +('37307', 'Rocks'), +('37308', 'Rocks'), +('37309', 'Rocks'), +('37310', 'Rocks'), +('37311', 'Rocks'), +('37312', 'Rocks'), +('37313', 'null'), +('37314', 'null'), +('37315', 'Pillar'), +('37316', 'null'), +('37317', 'Pillar'), +('37318', 'Shelves'), +('37319', 'Shelves'), +('37320', 'null'), +('37321', 'Hanging roots'), +('37322', 'Hanging roots'), +('37323', 'null'), +('37324', 'null'), +('37325', 'null'), +('37326', 'null'), +('37327', 'Flower'), +('37328', 'Trollweiss flowers'), +('37329', 'Flowerbed'), +('37330', 'Flowers'), +('37331', 'null'), +('37332', 'null'), +('37333', 'null'), +('37334', 'Dead tree'), +('37335', 'Flag'), +('37336', 'Winch'), +('37337', 'Chair'), +('37338', 'Pillar'), +('37339', 'Pillar'), +('37340', 'Pillar'), +('37341', 'Pillar'), +('37342', 'null'), +('37343', 'Stool'), +('37344', 'null'), +('37345', 'null'), +('37346', 'null'), +('37347', 'null'), +('37348', 'null'), +('37349', 'null'), +('37350', 'Table'), +('37351', 'Gate'), +('37352', 'Gate'), +('37353', 'Gate'), +('37354', 'Gate'), +('37355', 'null'), +('37356', 'null'), +('37357', 'null'), +('37358', 'null'), +('37359', 'null'), +('37360', 'null'), +('37361', 'null'), +('37362', 'null'), +('37363', 'null'), +('37364', 'Stones'), +('37365', 'Stones'), +('37366', 'Stones'), +('37367', 'Stones'), +('37368', 'Tree'), +('37369', 'null'), +('37370', 'null'), +('37371', 'null'), +('37372', 'null'), +('37373', 'Food trough'), +('37374', 'Crate'), +('37375', 'Crate'), +('37376', 'Crate'), +('37377', 'Sack'), +('37378', 'null'), +('37379', 'null'), +('37380', 'null'), +('37381', 'null'), +('37382', 'null'), +('37383', 'null'), +('37384', 'null'), +('37385', 'Shelf'), +('37386', 'null'), +('37387', 'null'), +('37388', 'null'), +('37389', 'null'), +('37390', 'null'), +('37391', 'Foliage'), +('37392', 'Foliage'), +('37393', 'Tropical tree'), +('37394', 'Palm tree'), +('37395', 'null'), +('37396', 'null'), +('37397', 'null'), +('37398', 'null'), +('37399', 'Stone Pile'), +('37400', 'Barrel'), +('37401', 'Barrel'), +('37402', 'Stool'), +('37403', 'Stool'), +('37404', 'Foliage'), +('37405', 'Foliage'), +('37406', 'null'), +('37407', 'null'), +('37408', 'null'), +('37409', 'null'), +('37410', 'null'), +('37411', 'null'), +('37412', 'null'), +('37413', 'null'), +('37414', 'null'), +('37415', 'null'), +('37416', 'null'), +('37417', 'null'), +('37418', 'null'), +('37419', 'Table'), +('37420', 'Wardrobe'), +('37421', 'Bed'), +('37422', 'Ladder'), +('37423', 'Ladder'), +('37424', 'null'), +('37425', 'null'), +('37426', 'Fireplace'), +('37427', 'null'), +('37428', 'null'), +('37429', 'null'), +('37430', 'null'), +('37431', 'null'), +('37432', 'null'), +('37433', 'null'), +('37434', 'null'), +('37435', 'null'), +('37436', 'null'), +('37437', 'null'), +('37438', 'Ancient Door'), +('37439', 'Ancient Door'), +('37440', 'Ancient Door'), +('37441', 'Ancient Door'), +('37442', 'Ancient Door'), +('37443', 'Ancient Door'), +('37444', 'Ancient Door'), +('37445', 'Ancient Door'), +('37446', 'null'), +('37447', 'null'), +('37448', 'null'), +('37449', 'null'), +('37450', 'null'), +('37451', 'Pillar'), +('37452', 'Bridge'), +('37453', 'null'), +('37454', 'Staircase'), \ No newline at end of file diff --git a/server508/lists/other-animation.txt b/server508/lists/other-animation.txt new file mode 100644 index 0000000..7b4007a --- /dev/null +++ b/server508/lists/other-animation.txt @@ -0,0 +1,42 @@ +4177-defender block +390-d long attack +4168-blunt defense block from catapult at warriors guild +4175-hit by something from catapult at warriors guild +4170-slash defense from catapult at warriors guild +4171-magic defense from catapult at warriors guild +8500-infusing pouch (summoning) +8502-renew points(summoning) +828-climb up ladder +7181-female druid attack +7185-druid dead +7187-druid block +7182-male druid attack +2572-pushing door open +4181-standing throw(shotput) +4183-spin and throw(shotput) +4182-step and throw(shotput) +4180-bend over to get barrels on top of head(warrior's guild) +4188-barrel falling of head anim +4652-cyclops attack anim +4651-cyclops block anim +4653-cyclops death anim +169-imp attack anim +168/170-imp block anim +6183-goblin block anim +6182-goblin death anim +6184-goblin attack anim +5850-cow attack anim +5849-cow block anim +5851-cow death anim +5389-chicken death anim +5388-chicken block anim +5387-chicken attack anim +6375-unicorn block anim +6376-unicorn attack anim +6377-unicorn death anim +4925-bear attack anim +4927-bear block anim +4929-bear death anim +4933-rat attack anim +4934-rat block anim +4935-rat death anim \ No newline at end of file diff --git a/server508/lists/player-animation.txt b/server508/lists/player-animation.txt new file mode 100644 index 0000000..ffcf00b --- /dev/null +++ b/server508/lists/player-animation.txt @@ -0,0 +1,593 @@ +6381 - leaning over as if being sad +6382 - jumping in joy of something +6383 - arm's at waist and head looking down +6384 - cross's arm's and look's up +6385 - looking up and scratching head +6386 - arm's at waist and head looking up +6387 - leaning over and opening something +6388 - walking with hand's behind back +6389 - standing with hand's behind back, then write's on something +6390 - standing with hand's behind back, looking to the east +6391 - looking to the east with right hand behind back, and left arm swing's +6392 - looking to the easy with left hand behind back, and right arm swing's +6393 - standing with hand's at waist, and looking forward +6394 - breathing hard, then put's one hand in air? +6395 - new walking emote +6397 - are's at side hopping up and down? +6398 - get's down on knee's and bring's hand in the air +6399 - get's down on knee's and bring's one hand and one leg in the air, then change's +6401 - get's on ground and slither's like a snake? +6402 - get's down on knee's and wave's hand's up and down +6403 - get's down on knee's and move's rear end in the air +6404 - try's to flap arm's but does something like a headbang insted? +6405 - get's down on gound and move's upper half of body like a snake? +6406 - same as 6405 +6752 - mining with Rune Pickaxe +6753 - mining with Bronze Pickaxe +6754 - mining with Iron Pickaxe +6755 - mining with Steel Pickaxe +6756 - mining with Adamant Pickaxe +6757 - mining with Mithril Pickaxe +6758 - mining emote without a Pickaxe +7198 - flexing arm's? +7199 - standing with arm's to side +7200 - new walking emote? +7201 - same as 7200 +7202 - strife to the left? +7203 - strife to the right? +7204 - OMG head just disapear's, IT'S MAGICAL! +7206 - running? +7211 - fletching magic log? +7227 - digging something with a tool? +7228 - digging something with a diffrent tool +7230 - hugging himself? +7232 - walking up to something slowly, then hitting it? +7253 - bend's backwards +7261 - fishing emote with a fishing rod +7264 - slap's something? +7265 - standing still, doby slightly turn's +7266 - in the gound, agility maybe? +7267 - in the gound moving, agility maybe? +7268 - jump's in air, agility maybe? +7269 - jump's in air, and fall's into the gound, agility maybe? +7270 - lean's over to pick something up +7271 - lean's over to pick something up, then jump's back +7272 - dodgeing something, agility maybe? +7273 - walking up from gound, as if was walking up some stair's, agility maybe? +7274 - climb something, then fall's +7275 - walk's over something +7276 - leaning over to grab something? +7277 - stick's chest outward's, then put's hand's by face +7299 - get's hit by something? +7301 - move's backward's and put's hand's in air and make them touch, like saying time-out +7302 - returning normal standing animation from 7301 +7303 - disapear, then reapear with hand's by head +7305 - holding something in hand, look's like he drinks it, then put's hand's by head and disapear's +7307 - stick's hand's out and move's them in a circle +7321 - pushing something heavy? +7363 - leaning over as if he has tummy pain's +7364 - look's like he's reading a book +7365 - pretending to have a sword in his tummy? pritty funny though +7366 - acting suspisous... +7368 - writing something, then thinking +7369 - sword through neck? +7376 - walks forward, then fade's away, look's cool +7377 - fade's in and walk's forward from the back +7385 - tossing something far away +7391 - lean's down and fade's away +7392 - fade's in leaning down +8943 - sitting in a chair +8944 - basicly the same as 8943 +8955 - holding something as if was moving at a high rate of speed +8956 - same as 8955 but this time he float's upwards +8957 - same as 8956 but this time he float's downwards +8959 - holding something then return's to normal stance +8961 - floating +8962 - floating with shield coving chest +8963 - same as 8961 but he float's a little lower +8964 - same as 8964 but he float's a little lower +8980 - standing up right, but slightly move's +8981 - holding right arm outwards +8982 - another walking emote +8983 - strife to the left +8984 - strife to the right +8985 - walking forward and looking to the left +8986 - another running emote +8987 - slightly move's leg's in a odd way, and wave's weapon +8988 - put's shield/hands up to head for cover +8989 - pounch emote? +8990 - FLYING KITE EMOTE! +8991 - kick's something on ground +8996 - flexing his arm(s) +8997 - walking while slouched over +8998 - standing while sloucher over +8999 - wave's both arm/hand's to the right? +9000 - act's like a monkey? +9001 - walk's like a monkey? +9002 - strife to the left like a monkey? +9003 - strife to the right like a monkey? +9004 - running while holding something +9012 - tosses something on ground the fades away +9013 - fades in +9016 - act's like a monkey, then fade's away +9018 - fade's in acting like a monkey +9021 - bring's hands in air, one hand has a sickle in it +9022 - bring's hands in air, one hand has a staff in it +9023 - walking while in the middle of two walls? +9024 - does something on the ground +9025 - bowing down to someone/something? +9031 - sawing something WITH the saw in his right hand +9032 - kicking something down with his foot? saw is in right hand aswell +9039 - walking while looking sad? +9040 - sleeping while standing? +9044 - doing something with his hand's (Not quite sure what it is though) +9045 - similar to 9044 +9047 - waving a staff around in his right hand? +9048 - holding staff with snake on the end +9049 - standing still? +9050 - another running emote +9051 - another walking emote +9052 - walking while looking to the left +9053 - stright to the left +9054 - stright to the right +9055 - DEATH EMOTE +9057 - getting a running start to just over something +9058 - put's hand's to side and nod's head up and down, then stand's still for a lil +9059 - pointing at people, then move's hand's as if he's done with them +9060 - trying to peek around a wall? +9061 - peeking around a wall +9062 - stop's peeking around wall and return's to normal stance +9063 - look's to the left, then the right +9064 - setting a trap? +9065 - finish's setting up a trap? +9068 - lean's over to set a trap? (no idea what his hand's are doing) +9069 - leaning to the left? +9070 - another walking emote +9071 - sneez? +9072 - getting ready to sneez? +9073 - put's right hand behind head a little +9074 - takes right hand from behind head and return's to normal stance +9086 - digging something up with his hands? +9087 - same as 9086 +9091 - walk's around something to his right? +9092 - walk's around something to his left? +9095 - get's a running start, then jump's over something +9096 - shake's hand's in air with a staff that has a snake on the top of it +9097 - bring's staff up from ground into air, staff has a snake on the top of it +9098 - raise's staff into air, staff has snake on the top of it +9099 - leaning down as if was bowing to someone/something +9100 - bow's down again? +9104 - holding hand's in air, right hand has a sickle in it +9105 - knocking on a door? +9109 - standing around, then put's finger to chin and think's about something +9110 - same as 9109 but insted of putting a finger to his chin, he nod's his head +9111 - same as 9110 - but insted of noding his head, he clap's his hand's + +STOPPING HERE TO TAKE A BREATH +0866 - Dance +0865 - Clap +0864 - Beckon +0863 - Wave +0862 - Cheer +0861 - Laugh +0860 - Cry +0859 - Angry +0858 - Bow +0857 - Thinking +0856 - No +0855 - Yes +0899 - Smelting (furnace) +0898 - Smithing (anvil) +0897 - Cooking (fire) +0894 - Spinning wheel +0885 - Cutting gems +0884 - Blowing Glass +0883 - Cooking (range) +0881 - Pickpocket emote +0625 - Mining emote +0875 - Woodcutting emote +0827 - Burying Bones emote +0791 - Runecrafting emote +0733 - Lighting Logs Emote +0622 - Fishing Rod fishing +0619 - Lobster pot fishing +0618 - Harpoon fishing (slight paus) +0645 - Praying at Alter emote +0831 - Digging emote +0828 - LADDER EMOTE +0827 - Burying Bones emote +0794 - Balloon Stomp + +******************** +0829 - EATING EMOTE!! +******************** + +MAGIC + +0811 - GOD SPELL emote +0713 - High Alch +0712 - Low Alch +0714 - Teleport emote +0722 - Bones to Bananas +0708 - IBAN STAFF ATTACK EMOTE +0724 - Crumble Undead +0725 - Superheat +0716 - Curse, Weaken, or Confuse +0729 - Curse, Weaken, or Confuse + +RANGE + +0427 - Range (Cross-Bow) +0426 - Range (Bow) + +MELEE + +0423 - KICK +0422 - PUNCH +0424 - Fore-arm block +0412 - Stab +0451 - Slash attack style (longsword, shortsword, ect.) +0440 - Halberd "Slash" attack style +0410 - Defensive block when 2h weapon equiped +0408 - Scythe 'REAP' attack style +0407 - 2h slash style emote +0406 - 2h crush style emote +0405 - Dragon spear special +0404 - Block no shield defensive emote +0403 - Block with shield defensive emote +0402 - Dragon Dagger stab emote + +FUNNY ONES + +0439 - lol SPIN ATTACK!>! + +744 - fast monkey bar cross emote +745 - part of the monkey bar crossing emote (right arm back) +746 - Pipe climb starting emote +747 - entrance part of pipe emote, (non-animated) +748 - Pipe climb exiting emote +749 - full pipe climb emote, only in one sq though +770 - Falling emote, as if off of a rope or log (agility) +839 - Climb over something +844 - Crawling +1110 - MATRIX +1114 - hit by darts +1115 - jumping over spikes or rocks +1117 - part of hand holds +1118 - " " +1119 - falling from hand holds +1120 - hand holds +1125 - hit by rocks + stumbles back +2239 - BOOM!!! shoots in the air - rogues den +2240 - going through bent bars - rogues den +2241 - poison gas - rogues den +2242 - launch in air, hit floor - rogues den +2243 - disable wall trap - rogues den +2244 - disable floor trap - rogues den +2245 - side wall trap? - rogues den +2246 - picking lock - roges den +2247 - listening to lock - rogues den +2750 - jump over fence emote +2753 - huge jump to side +2761 - jumping jacks - Drill seargent random +2756 - Push-Ups - Drill seargent random +2763 - sit-ups - Drill seargent random +2764 - jog in place - Drill seargent random +3063 - climb up a wall, then climb down +3067 - jumping over something, landing nicely +3068 - jumping over something, not landing very nicely... +3094 - looses balance falls forward + + + +402 - Dragon Dagger stab emote +403 - Block with shield defensive emote +404 - Block no shield defensive emote +405 - Dragon spear special +406 - 2h crush style emote +407 - 2h slash style emote +408 - Scythe 'REAP' attack style +410 - Defensive block when 2h weapon equiped +412 - Stab +422 - PUNCH +423 - KICK +424 - Fore-arm block +440 - Halberd "Slash" attack style +451 - Slash attack style (longsword, shortsword, ect.) +1060 - drag mace spec +1658 - Whip attack +1659 - Whip block +1660 - Whip walk +1661 - Whip run +1662 - Granite Maul stand +1663 - Granite Maul walk +1664 - Granite Maul run +1665 - Granite maul attack +1666 - Granite Maul block +1667 - Granite Maul special +1833 - drag baxe attack +2316 - standing holding toad shooter (fixed defice) +2318 - walking holding toad shooter +2323 - kick attack while wielding fixed device +2876 - DRAG AXE SPEC!! +2890 - DARKLIGHT SPEC! +2910 - spinning something and then throwing it +2927 - twirling weapon then hitting something +3157 - Dragon 2h special + + + +2060 - veracs walk +2061 - veracs standing +2062 - veracs attack!! +2063 - veracs block +2064 - dharoks walk +2065 - dharoks standing +2066 - dharoks crush +2067 - dharoks slash +2068 - torags attack +2074 - karils holding bow +2075 - karils shooting +2076 - karils walking +2077 - karils running +2078 - ahrims attack non-magic +2079 - ahrims block +2080 - guthans 'poke'? +2081 - guthans slash +2082 - guthans crush + + + +708 - IBAN STAFF ATTACK EMOTE +712 - Low Alch +713 - High Alch +714 - Teleport emote +716 - Curse, Weaken, or Confuse +722 - Superheat +724 - Crumble Undead +729 - Curse, Weaken, or Confuse +811 - CHARGE +1816 - teleother - person being teled +1818 - teleother - cast on player +1819 - teleblock - cast +1820 - teleblock - cast + + + +0426 - Range (Bow) +0427 - Range (Cross-Bow) + + + +1457 - yo-yo +1458 - spin - yo-yo +1459 - walk yo-yo emote +1460 - crazy yo-yo +1835 - chicken dance +1836 - SKIPPING!!! +2836 - SCARED EMOTE! +2840 - ALAS emote +2844 - SHOW HEAD EMOTE 'Muahahahah' +3003 - marionette jump +3004 - marionette walk +3005 - marionette bow +3006 - mationette dance +3007 - shaking the imps emote + + + +855 - Yes +856 - No +857 - Thinking +858 - Bow +859 - Angry +860 - Cry +861 - Laugh +862 - Cheer +863 - Wave +864 - Beckon +865 - Clap +866 - Dance +2105 - panic emote +2106 - slow jig emote +2107 - spin emote +2108 - headbang emote +2109 - joy jump emote +2110 - rasp' berry emote +2111 - yawn emote +2112 - salute emote +2113 - shrug emote +1128 - GLASS WALL - MIME +1129 - LEAN - MIME +1130 - CLIMB ROPE - MIME +1131 - GLASS BOX - MIME + + + +439 - lol SPIN ATTACK +505 - Arms dislocate and revolve around you... well would ya look at that... +528 - WHIRLPOOL!!! *cough* *choke* *gurggle* +725 - Looks like you're holding onto something that's floating over top of you, you grab it, and then let it go and stumble forward +734 - Wall Monster attack without spiney helmet on +750 - Looks like you're pushed by someone, 2 squares backward, and you stumble +755 - Skate boarding rofl, facing right +760 - Turn Right and face plant rofl +812 - CHARGE (as a ghost?) +837 - ROFL Drop dead +841 - Walking invisible +1375 - blinking +1500 - FLoats up +1501 - 'God' - continuation of 1500 +1654 - dies in chair +1655 - motionless, dies in chair +1656 - leans back in chair +1739 - walking like holding somethign on back +1745 - walking stomp +1765-1769 - Straight up funny +1770 - HILARIOUS ( makes it look like you have a big **** ) +1746 - crazy lol, funny! +1811 - twitch - push stand +1851 - super man +1861 - glare to right +1914 - uurghh... raawr!!!! +1938 - head throbbing +1950 - falling in pyramid - Desert treasure +1972 - evil laugh emote +2256 - arms crossed +2261 - FLYING CARPET +2262 - flying carpet - take off +2264 - flying carpet - landing +2339 - sitting moving arms +2340 - falls backwards while sitting down +2383 - twitching +2390 - backstepping, something in face? +2555 - fairy kick +2588 - jumping in the air +2592 - stand sideways and knod head +2769 - walking drunk +2770 - drunk +2780 - throws item in hand in the air +2720 - scrapes the air with a weapon? +2797 - holds sword weird and angry emote.. +2820 - dying emote + fades away.. +2895 - flying away +2939 - sitting, as if on a throne +2968 - something +2995 - face plant +3001 - boot to the nuts +3040 - standing drunk +3039 - walking drunk + + + +618 - Harpoon fishing (slight paus) +619 - Lobster pot fishing +622 - Fishing Rod fishing +625 - Mining emote (one of them) +645 - Praying at Alter emote +733 - Lighting Logs Emote +776 - Pull rope emote from waterfall +791 - Runecrafting emote +794 - Balloon Stomp +804 - Disapearing when jumping into puddle at mage arena +827 - Burying Bones emote +828 - LADDER EMOTE +831 - Digging emote +875 - Woodcutting emote +881 - Pickpocket emote +883 - Cooking (range) +884 - Blowing Glass +885 - Cutting gems +894 - Spinning wheel +897 - Cooking (fire) +898 - Smithing (anvil) +899 - Smelting (furnace) +921 - toy horsey emote +1327 - drinking beer! +1329 - KEG! +1330 - " " +1331 - Kneeling +1332 - Kneeling +1333 - STROKE PET ROCK +1350 - reading +1351 - sitting looking down +1352 - sitting using think emote +1353 - sitting and smoking +1461 - bending down 1 +1462-1470 - bending down cape waving +1502 - swim? +1540 - punch in the air, floating +1542 - "" +1648 - cranking wheel ectophuntus +1649 - putting bones into machine +1651 - ectophuntus pray emote +1652 - "" +1670 - prayer book preach +1810 - wall monster caught by head +1877 - snake charmer +1895 - sneaks a peek at something +1902 - Spinning plate +1906 - dropping +1911 - turning head to the right +1913 - breathing hard +1914 - breaking out of something +1991-1997 - some weird ones +2046-2048 - in the air doing somethin2g +2273 - raking - farming +2304 - dead emote +2306 - jumping on something alot then jjumping off +2338 - on knees looking foward +2389 - ti bwoi wanna or we.. thing +2400 - rants then takes a knee +2412 - dr jekkel emote! +3129 - holding on to something like you're flying +3141 - turning pages in a book +3103 - sits up brushes self off +3114 - rises from the grave! +3170 - ELECTRICUTED! + + + +1978 - Blitz +1979 - Barrage + +2269 = greendhide crafting + +2271 = endless seed planting ( put a resetanim ) +2272 = seed planting +2273 = raking +2274 = harvest ( or prod ) +2281 = harvest for sure. +2282 = harvest +2283 = compost +2284 = some weird pot ( nothing to do with farming in my opinion ) +2285 = cure diseases +2286 = pick herbs +2287 = put tree sapling into patch? +2288 = cure diseases bit different then 2285 +2289 = drink from weird pot , links with 2284 +2290 = scrape something out of weird pot links with 2289 and 2284 +2291 = plant seeds +2292 = harvest again. +2293 = Watering!! finally got it. +2295 = stroke plant wtf? \ No newline at end of file diff --git a/server508/lists/shop-packets.txt b/server508/lists/shop-packets.txt new file mode 100644 index 0000000..0296493 --- /dev/null +++ b/server508/lists/shop-packets.txt @@ -0,0 +1,107 @@ +p.frames.showInterface(p,620); //Shop + p.frames.setTab(p,80,621);//Inv + Object[] setshopparams = new Object[]{Integer.parseInt(cmd[1]),93}; + int shi = 621 << 16; + int ship = (620 << 16) + 24; + Object[] invparams = new Object[]{"","","","","Sell 50","Sell 10","Sell 5","Sell 1","Value",-1,0,7,4,93,shi}; + Object[] shopparams = new Object[]{"","","","Peter Owns","Buy 50","Buy 10","Buy 5","Buy 1","Value",-1,0,4,10,31,ship}; + p.frames.runScript(p,25,setshopparams,"vg");//Loads main stock items + p.frames.runScript(p,150,invparams,"IviiiIsssssssss"); + p.frames.runScript(p,150,shopparams,"IviiiIsssssssss"); + p.frames.setAccessMask(p,1278,0,621,0,28); + if (p.mainstock){ + p.frames.setInterfaceConfig(p,620,23,false); + p.frames.setInterfaceConfig(p,620,24,true); + p.frames.setInterfaceConfig(p,620,29,false); + p.frames.setInterfaceConfig(p,620,25,true); + p.frames.setInterfaceConfig(p,620,27,true); + p.frames.setInterfaceConfig(p,620,26,false); + p.frames.setAccessMask(p,1278,23,620,0,40); + }else + { + p.frames.setInterfaceConfig(p,620,23, true); + p.frames.setInterfaceConfig(p,620,24, false); + p.frames.setInterfaceConfig(p,620,29, true); + p.frames.setInterfaceConfig(p,620,25, false); + p.frames.setInterfaceConfig(p,620,27, false); + p.frames.setInterfaceConfig(p,620,26, true); + p.frames.setAccessMask(p,1278,24,620,0,40); + + } + p.frames.setItems(p,-1,64209,93,new int[]{99***,new int[]{999});//Shop Inventory + p.frames.setItems(p,-1,64271,31,new int[]{99***,new int[]{998});//Main Stock + p.frames.sendMessage(p,"Shop test "+cmd[1]); + + /** + * Sets item options allowed + * @param p The Player which the frame should be created for. + * @param set The access mask + * @param window The window or child interface id + * @param inter The main interface id + * @param off The item offset to start with + * @param len The item count to set + */ + public void setAccessMask(Player p, int set,int window,int inter,int off,int len) { + if (p == null || p.stream == null || p.disconnected[0]) { + return; + } + p.stream.createFrame(223); + p.stream.writeWord(len); + p.stream.writeWordBigEndianA(off); + p.stream.writeWordBigEndian(window); + p.stream.writeWordBigEndian(inter); + p.stream.writeWordBigEndian(set); + p.stream.writeWordBigEndian(0); + } + + /** + * Runs an ClientScript2 script + * @param p The Player which the frame should be created for. + * @param id The script id + * @param o The script arguments + * @param valstring The argument types + */ + public void runScript(Player p,int id,Object[] o,String valstring) + { + if (valstring.length() != o.length) + throw new IllegalArgumentException("Argument array size mismatch"); + p.stream.createFrameVarSizeWord(152); + p.stream.writeString(valstring); + int j = 0; + for (int i = (valstring.length() - 1);i >= 0;i--) + { + if (valstring.charAt(i) == 115) + p.stream.writeString((String) o[j]); + else + p.stream.writeDWord((Integer) o[j]); + j++; + } + p.stream.writeDWord(id); + p.stream.endFrameVarSize(); + } + +case 620: + if (buttonId == 25) + { + p.frames.setInterfaceConfig(p,620,23,false); + p.frames.setInterfaceConfig(p,620,24,true); + p.frames.setInterfaceConfig(p,620,29,false); + p.frames.setInterfaceConfig(p,620,25,true); + p.frames.setInterfaceConfig(p,620,27,true); + p.frames.setInterfaceConfig(p,620,26,false); + p.frames.setAccessMask(p,1278,23,620,0,40); + p.mainstock = true; + } + if (buttonId == 26) + { + p.frames.setInterfaceConfig(p,620,23, true); + p.frames.setInterfaceConfig(p,620,24, false); + p.frames.setInterfaceConfig(p,620,29, true); + p.frames.setInterfaceConfig(p,620,25, false); + p.frames.setInterfaceConfig(p,620,27, false); + p.frames.setInterfaceConfig(p,620,26, true); + p.frames.setAccessMask(p,1278,24,620,0,40); + p.mainstock = false; + } + break; + diff --git a/server508/src/com/rs2hd/Configuration.java b/server508/src/com/rs2hd/Configuration.java new file mode 100644 index 0000000..502bf78 --- /dev/null +++ b/server508/src/com/rs2hd/Configuration.java @@ -0,0 +1,16 @@ +package com.rs2hd; + +/** + * Handles server configuration. + * @author Graham + * + */ +public class Configuration { + + private String name; + + public String getName() { + return name; + } + +} diff --git a/server508/src/com/rs2hd/Constants.java b/server508/src/com/rs2hd/Constants.java new file mode 100644 index 0000000..3187c3d --- /dev/null +++ b/server508/src/com/rs2hd/Constants.java @@ -0,0 +1,135 @@ +package com.rs2hd; + +/** + * Holds global server constants. + * @author Graham + * + */ +public class Constants { + + /** + * Prevent an instance being created. + */ + private Constants() {} + + /** + * Initial idle time - before the protocol version exchange/login/update has done. + */ + public static final int SESSION_INITIAL_IDLE_TIME = 1; + + /** + * Standard session idle time, in seconds. + * + * We make this slightly longer to allow for in-game lag. + */ + public static final int SESSION_IDLE_TIME = 90; + + /** + * Connection throttle interval, in seconds. + * + * This needs to be kept relatively low as an update request then a login request will come soon after each other. + */ + public static final long THROTTLE_FILTER_INTERVAL = 1; + + /** + * RS2 incoming packet lengths. + */ + public static final int[] PACKET_LENGTHS = new int[] { + // 0 1 2 3 4 5 6 7 8 9 + -3, -3, 8, 8, -3, -3, -3, 2, -3, -3, // 0 + -3, -3, -3, 10, -3, -3, -3, -3, -3, -3, // 1 + -3, 6, 4, -3, -3, -3, -3, -3, -3, -3, // 2 + 8, -3, -3, -3, -3, -3, -3, 2, 2, -3, // 3 + 16, -3, -3, -3, -3, -3, -3, 0, -3, -1, // 4 + -3, -3, 2, -3, -3, -3, -3, -3, -3, 6, // 5 + 0, 8, -3, 6, -3, -3, -3, -3, -3, -3, // 6 + -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, // 7 + -3, -3, -3, -3, 2, -3, -3, -3, 2, -3, // 8 + 6, -3, -3, -3, -3, -3, -3, -3, -3, 4, // 9 + -3, -3, -3, -3, -3, -3, -3, -1, 0, -3, // 10 + -3, -3, -3, 4, -3, 0, -3, -1, -3, -1, // 11 + -3, -3, -3, 2, -3, -3, -3, -3, -3, 6, // 12 + -3, 10, 8, 6, -3, -3, -3, -3, -1, -3, // 13 + -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, // 14 + -3, -3, -3, -3, -3, -3, -3, -3, 6, -3, // 15 + 2, -3, -3, -3, -3, 4, -3, 9, -3, 6, // 16 + -3, -3, -3, 6, -3, -3, -3, -3, -1, 12, // 17 + -3, -3, -3, -3, -3, -3, 8, -3, -3, -3, // 18 + -3, -3, -3, -3, -3, -3, -3, -3, -3, 2, // 19 + -3, 6, -3, 8, -3, -3, -3, -3, -3, -3, // 20 + -3, 8, -3, -3, 6, -3, -3, -3, -3, -3, // 21 + 8, -3, -1, -3, 14, -3, -3, 2, 6, -3, // 22 + -3, -3, 6, 6, -3, -3, -3, -3, -3, -3, // 23 + -3, -3, -3, -3, -3, -3, -3, 4, 1, -3, // 24 + 4, -3, -3, -3, -3, // 25 + }; + + /** + * 508 cache 'update keys'. + */ + public static final int[] UPDATE_KEYS = { + 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0xd8, + 0x84, 0xa1, 0xa1, 0x2b, 0x00, 0x00, 0x00, 0xba, + 0x58, 0x64, 0xe8, 0x14, 0x00, 0x00, 0x00, 0x7b, + 0xcc, 0xa0, 0x7e, 0x23, 0x00, 0x00, 0x00, 0x48, + 0x20, 0x0e, 0xe3, 0x6e, 0x00, 0x00, 0x01, 0x88, + 0xec, 0x0d, 0x58, 0xed, 0x00, 0x00, 0x00, 0x71, + 0xb9, 0x4c, 0xc0, 0x50, 0x00, 0x00, 0x01, 0x8b, + 0x5b, 0x61, 0x79, 0x20, 0x00, 0x00, 0x00, 0x0c, + 0x0c, 0x69, 0xb1, 0xc8, 0x00, 0x00, 0x02, 0x31, + 0xc8, 0x56, 0x67, 0x52, 0x00, 0x00, 0x00, 0x69, + 0x78, 0x17, 0x7b, 0xe2, 0x00, 0x00, 0x00, 0xc3, + 0x29, 0x76, 0x27, 0x6a, 0x00, 0x00, 0x00, 0x05, + 0x44, 0xe7, 0x75, 0xcb, 0x00, 0x00, 0x00, 0x08, + 0x7d, 0x21, 0x80, 0xd5, 0x00, 0x00, 0x01, 0x58, + 0xeb, 0x7d, 0x49, 0x8e, 0x00, 0x00, 0x00, 0x0c, + 0xf4, 0xdf, 0xd6, 0x4d, 0x00, 0x00, 0x00, 0x18, + 0xec, 0x33, 0x31, 0x7e, 0x00, 0x00, 0x00, 0x01, + 0xf7, 0x7a, 0x09, 0xe3, 0x00, 0x00, 0x00, 0xd7, + 0xe6, 0xa7, 0xa5, 0x18, 0x00, 0x00, 0x00, 0x45, + 0xb5, 0x0a, 0xe0, 0x64, 0x00, 0x00, 0x00, 0x75, + 0xba, 0xf2, 0xa2, 0xb9, 0x00, 0x00, 0x00, 0x5f, + 0x31, 0xff, 0xfd, 0x16, 0x00, 0x00, 0x01, 0x48, + 0x03, 0xf5, 0x55, 0xab, 0x00, 0x00, 0x00, 0x1e, + 0x85, 0x03, 0x5e, 0xa7, 0x00, 0x00, 0x00, 0x23, + 0x4e, 0x81, 0xae, 0x7d, 0x00, 0x00, 0x00, 0x18, + 0x67, 0x07, 0x33, 0xe3, 0x00, 0x00, 0x00, 0x14, + 0xab, 0x81, 0x05, 0xac, 0x00, 0x00, 0x00, 0x03, + 0x24, 0x75, 0x85, 0x14, 0x00, 0x00, 0x00, 0x36 + }; + + /** + * Player cap. + */ + public static final int PLAYER_CAP = 2000; + + /** + * NPC cap. + */ + public static final int NPC_CAP = 4000; + + /** + * Server->client direction translation. + */ + public static final byte[] XLATE_DIRECTION_TO_CLIENT = new byte[] { 1, 2, 4, 7, 6, 5, 3, 0 }; + + /** + * Max number of connections per ip. + */ + public static final int MAX_PER_IP = 3; + + /** + * Return codes. + * @author Graham + * + */ + public static final class ReturnCodes { + public static final int LOGIN_OK = 2; + public static final int INVALID_PASSWORD = 3; + public static final int BANNED = 4; + public static final int ALREADY_ONLINE = 5; + public static final int WORLD_FULL = 7; + public static final int TRY_AGAIN = 11; + } + +} diff --git a/server508/src/com/rs2hd/GameEngine.java b/server508/src/com/rs2hd/GameEngine.java new file mode 100644 index 0000000..cec8d6a --- /dev/null +++ b/server508/src/com/rs2hd/GameEngine.java @@ -0,0 +1,161 @@ +package com.rs2hd; + +import java.io.File; +import java.util.HashMap; +import java.util.Map; + +import com.rs2hd.io.MapDataLoader; +import com.rs2hd.io.MapDataPacker; +import com.rs2hd.io.XStreamPlayerLoader; +import com.rs2hd.model.ItemDefinition; +import com.rs2hd.model.NPCDefinition; +import com.rs2hd.model.World; +import com.rs2hd.packethandler.PacketHandlers; +import com.rs2hd.util.Scripts; +import com.rs2hd.util.log.Logger; + +/** + * A varek has called it before, the 'central motor' of the game. + * + * That means it handles periodic updating and packet handling/creation. + * + * @author Graham + * + */ +public class GameEngine { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * Running flag. + */ + private boolean isRunning; + + /** + * This makes you wish that Java supported typedefs. + */ + private Map mapData; + + /** + * Our worker thread. + */ + private WorkerThread workerThread; + + /** + * Thread group. + */ + private ThreadGroup threads = new ThreadGroup("RuneShard"); + + /** + * Creates other things vital to the game logic, like the world class. + * @throws Exception + */ + public GameEngine() throws Exception { + /* + * We are running. + */ + isRunning = true; + /* + * Check if mapdata packed file exists, if not, then we pack it. + */ + File packedFile = new File(com.rs2hd.Main.workingDir+"data/mapdata/packed.dat"); + if(!packedFile.exists()) { + MapDataPacker.pack(com.rs2hd.Main.workingDir+"data/mapdata/unpacked/", com.rs2hd.Main.workingDir+"data/mapdata/packed.dat"); + } + /* + * Actually load the mapdata. + */ + mapData = new HashMap(); + MapDataLoader.load(mapData); + /* + * Load handlers. + */ + PacketHandlers.loadHandlers(); + /* + * Load item definitions. + */ + logger.info("Loading item definitions..."); + ItemDefinition.load(); + logger.info("Loading npc definitions..."); + NPCDefinition.load(); + /* + * Set up the world. + */ + logger.info("Setting up world..."); + World.getInstance().setEngine(this); + /* + * Start the worker thread. + */ + logger.info("Launching worker thread..."); + workerThread = new WorkerThread(new XStreamPlayerLoader()); + newThread("WorkerThread", workerThread); + /* + * Run scripts. + */ + Scripts.init(); + } + + public void newThread(String name, Runnable r) { + new Thread(threads, r, name).start(); + } + + /** + * Handle a major update. + */ + public void majorUpdate() { + World.getInstance().majorUpdate(); + } + + /** + * Handle a minor update. + */ + public void minorUpdate() { + World.getInstance().minorUpdate(); + } + + /** + * Called every tick. + */ + public void tick() { + World.getInstance().tick(); + } + + /** + * Gets the is running flag. + * @return + */ + public boolean isRunning() { + return isRunning; + } + + /** + * Sets the is running flag. + * @param isRunning + */ + public void setIsRunning(boolean isRunning) { + this.isRunning = isRunning; + } + + /** + * Gets the worker thread. + * @return + */ + public WorkerThread getWorkerThread() { + return workerThread; + } + + /** + * Stops threads, saves games, etc. + */ + public void cleanup() { + threads.interrupt(); + } + + public int[] getMapData(int region) { + return mapData.get(region); + } + +} diff --git a/server508/src/com/rs2hd/Main.java b/server508/src/com/rs2hd/Main.java new file mode 100644 index 0000000..41a5a29 --- /dev/null +++ b/server508/src/com/rs2hd/Main.java @@ -0,0 +1,50 @@ +package com.rs2hd; + +import com.rs2hd.util.log.Logger; + +/** + * Generic main class which starts the server. + * @author Graham + * + */ +public class Main { + + /** + * Logger instance. + */ + private static Logger logger = Logger.getInstance(); + + public static String workingDir = null; + + /** + * Entry point of the program. + * + * Sets everything rolling. + * @param args + */ + public static void main(String[] args) { + if(args.length < 1){ + System.err.println("To run server508 you must at least set a working directory with the command line."); + return; + } + workingDir = args[0]; + + new Thread(new Runnable() { + @Override + public void run() { + Server s = null; + try { + s = new Server(); + } catch (Exception e) { + logger.error(e.toString()); + logger.stackTrace(e); + return; + } + s.go(); + + } + }, "GameEngine").start(); + + } + +} diff --git a/server508/src/com/rs2hd/Server.java b/server508/src/com/rs2hd/Server.java new file mode 100644 index 0000000..dfa6ee0 --- /dev/null +++ b/server508/src/com/rs2hd/Server.java @@ -0,0 +1,203 @@ +package com.rs2hd; + +import java.io.IOException; +import java.net.InetSocketAddress; + +import org.apache.mina.common.IoAcceptor; +import org.apache.mina.transport.socket.nio.SocketAcceptor; +import org.apache.mina.transport.socket.nio.SocketAcceptorConfig; + +import com.rs2hd.net.ConnectionHandler; +import com.rs2hd.net.ConnectionThrottleFilter; +import com.rs2hd.script.ScriptManager; +import com.rs2hd.util.log.Logger; + +/** + * The central class of the server. + * @author Graham + * + */ +public class Server { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * The game engine: where all the game logic processing takes place. + */ + private GameEngine engine; + + /** + * The port to listen on. + */ + private static final int PORT = 43594; + + /** + * We do a major update every 500ms. + */ + private static final long MAJOR_UPDATE_TIME = 500; + + /** + * We do a minor update every 100ms. + */ + private static final long MINOR_UPDATE_TIME = 100; + + /** + * We do a gc update every second. + */ + private static final long GC_UPDATE_TIME = 1000; + + /** + * Acceptor. + */ + private IoAcceptor acceptor; + + /** + * Connection handler. + */ + private ConnectionHandler connectionHandler; + + /** + * Connection throttle filter. + */ + private ConnectionThrottleFilter throttleFilter; + + /** + * Create this server. + * @throws Exception + */ + public Server() throws Exception { + /* + * Start everything rolling. + */ + logger.info("rs2hd framework"); + engine = new GameEngine(); + acceptor = new SocketAcceptor(); + connectionHandler = new ConnectionHandler(engine); + listen(PORT); + } + + /** + * Start listening on the specified port. + * @param port + * @throws IOException + */ + public void listen(int port) throws IOException { + SocketAcceptorConfig sac = new SocketAcceptorConfig(); + sac.getSessionConfig().setTcpNoDelay(false); + sac.setReuseAddress(true); + sac.setBacklog(100); + + throttleFilter = new ConnectionThrottleFilter(Constants.THROTTLE_FILTER_INTERVAL*1000); + sac.getFilterChain().addFirst("throttleFilter", throttleFilter); + acceptor.bind(new InetSocketAddress(port), connectionHandler, sac); + + logger.info("Listening on port " + port + "."); + + } + + /** + * The main loop of the server. + * + * Processors major and minor update events, calls the game engine, handles IO etc. + * + * Waits 30 ms per tick. + */ + public void go() { + /* + * Run startup script. + */ + try { + ScriptManager.getInstance().call("startup", this); + } catch (Exception e) { + logger.error("Script failed:"); + logger.stackTrace(e); + } + /* + * While we are running. + */ + while(engine.isRunning()) { + processEvents(); + try { + Thread.sleep(10); + } catch (InterruptedException e) { + break; + } + } + /* + * Run shutdown script. + */ + try { + ScriptManager.getInstance().call("shutdown", this); + } catch (Exception e) { + logger.error("Script failed:"); + logger.stackTrace(e); + } + /* + * Shut down! + */ + logger.info("Unbinding all ports..."); + acceptor.unbindAll(); + /* + * Cleanup. + */ + logger.info("Interrupting all threads..."); + engine.cleanup(); + } + + /** + * When the last major update was. + * + * These updates are done every 500 ms. + * + * They include sending the player update packet, handling walking, handling npcs, etc. + */ + private long lastMajorUpdate = System.currentTimeMillis(); + + /** + * When the last minor update was. + * + * These updates are done every 200 ms. + */ + private long lastMinorUpdate = System.currentTimeMillis(); + + /** + * When the last gc update was. + * + * These updates are done every minute. + */ + private long lastGcUpdate = System.currentTimeMillis(); + + /** + * We check for major and minor updates here. + * + * We also poll the IO every iteration. + */ + public void processEvents() { + if(lastMajorUpdate + MAJOR_UPDATE_TIME < System.currentTimeMillis()) { + lastMajorUpdate = System.currentTimeMillis(); + engine.majorUpdate(); + } + if(lastMinorUpdate + MINOR_UPDATE_TIME < System.currentTimeMillis()) { + lastMinorUpdate = System.currentTimeMillis(); + engine.minorUpdate(); + } + if(lastGcUpdate + GC_UPDATE_TIME < System.currentTimeMillis()) { + lastGcUpdate = System.currentTimeMillis(); + System.gc(); + System.runFinalization(); + } + engine.tick(); + } + + /** + * Get the game engine. + * @return + */ + public GameEngine getEngine() { + return this.engine; + } + +} diff --git a/server508/src/com/rs2hd/WorkerThread.java b/server508/src/com/rs2hd/WorkerThread.java new file mode 100644 index 0000000..101561c --- /dev/null +++ b/server508/src/com/rs2hd/WorkerThread.java @@ -0,0 +1,152 @@ +package com.rs2hd; + +import java.util.LinkedList; +import java.util.Queue; + +import org.apache.mina.common.IoFuture; +import org.apache.mina.common.IoFutureListener; +import org.apache.mina.common.WriteFuture; + +import com.rs2hd.io.PlayerLoadResult; +import com.rs2hd.io.PlayerLoader; +import com.rs2hd.model.Player; +import com.rs2hd.model.PlayerDetails; +import com.rs2hd.model.World; +import com.rs2hd.packetbuilder.StaticPacketBuilder; +import com.rs2hd.util.log.Logger; + +/** + * Does blocking 'work'. + * @author Graham + * + */ +public class WorkerThread implements Runnable { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * Constructor. + */ + public WorkerThread(PlayerLoader loader) { + this.loader = loader; + this.playersToLoad = new LinkedList(); + this.playersToSave = new LinkedList(); + } + + /** + * Players to load. + */ + private Queue playersToLoad; + + /** + * Players to save. + */ + private Queue playersToSave; + + /** + * The player loader. + */ + private PlayerLoader loader; + + @Override + public void run() { + while(true) { + try { + Thread.sleep(30); + } catch (InterruptedException e) { + cleanup(); + break; + } + synchronized(playersToLoad) { + if(!playersToLoad.isEmpty()) { + PlayerDetails d = null; + while((d = playersToLoad.poll()) != null) { + PlayerLoadResult r = loader.load(d); + StaticPacketBuilder spb = new StaticPacketBuilder().setBare(true); + int slot = -1; + if(r.returnCode == 2) { + slot = World.getInstance().register(r.player); + if(slot == -1) { + r.returnCode = Constants.ReturnCodes.WORLD_FULL; + } + } + spb.addByte((byte) r.returnCode); + if(r.returnCode == 2) { + spb.addByte((byte) r.player.getRights()); + spb.addByte((byte) 0); + spb.addByte((byte) 0); + spb.addByte((byte) 0); + spb.addByte((byte) 1); + spb.addShort(slot); + spb.addByte((byte) 0); + d.getSession().setAttachment(r.player); + } + WriteFuture f = d.getSession().write(spb.toPacket()); + if(r.returnCode != 2) { + f.addListener(new IoFutureListener() { + @Override + public void operationComplete(IoFuture arg0) { + arg0.getSession().close(); + } + }); + } else { + r.player.getActionSender().sendLogin(); + } + logger.debug("Loaded " + d.getDisplayName() + "'s game: returncode=" + r.returnCode + "."); + } + playersToLoad.clear(); + } + } + synchronized(playersToSave) { + if(!playersToSave.isEmpty()) { + Player p = null; + while((p = playersToSave.poll()) != null) { + if(loader.save(p)) { + logger.debug("Saved " + p.getPlayerDetails().getDisplayName() + "'s game."); + } else { + logger.warning("Could not save " + p.getPlayerDetails().getDisplayName() + "'s game."); + } + } + playersToSave.clear(); + } + } + } + } + + private void cleanup() { + // save ALL games + logger.info("Saving all games..."); + int saved = 0; + int total = 0; + for(Player p : World.getInstance().getPlayerList()) { + total++; + if(loader.save(p)) { + logger.debug("Saved " + p.getPlayerDetails().getDisplayName() + "'s game."); + saved++; + } else { + logger.warning("Could not save " + p.getPlayerDetails().getDisplayName() + "'s game."); + } + } + if(total == 0) { + logger.info("No games to save."); + } else { + logger.info("Saved " + (saved/total*100) + "% of games ("+saved+"/"+total+")."); + } + } + + public void loadPlayer(PlayerDetails d) { + synchronized(playersToLoad) { + playersToLoad.add(d); + } + } + + public void savePlayer(Player p) { + synchronized(playersToSave) { + playersToSave.add(p); + } + } + +} diff --git a/server508/src/com/rs2hd/content/Combat.java b/server508/src/com/rs2hd/content/Combat.java new file mode 100644 index 0000000..af1ba0e --- /dev/null +++ b/server508/src/com/rs2hd/content/Combat.java @@ -0,0 +1,188 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Entity; +import com.rs2hd.model.Item; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class Combat { + + public static enum CombatType { + MELEE, + MAGE, + RANGE, + } + + public static void attack(Entity source, Entity victim) { + if(!canAttack(source, victim)) { + return; + } + if(source instanceof Player) { + Player p = (Player) source; + if(p.isBusy()) { + return; + } + } + source.setAttacking(true); + source.setInteractingWith(victim); + source.turnTo(victim); + source.setAggressor(true); + if(source.getCombatType().equals(CombatType.RANGE)) { + // discard next walk queue here or something + if(source instanceof Player) { + Player p = (Player) source; + p.getWalkingQueue().reset(); + } + } + if(!victim.isAttacking() && victim.isAutoRetaliating()) { + // incur a slight delay on the attack back + victim.resetCombatTurns(); + victim.setCombatTurns(victim.getAttackSpeed()/2); + victim.setAttacking(true); + victim.setInteractingWith(source); + victim.turnTo(source); + victim.setAggressor(false); + } + } + + private static boolean canAttack(Entity source, Entity victim) { + if((source instanceof Player) && (victim instanceof Player)) { + Player pSource = (Player) source; + Player pVictim = (Player) victim; + int sWildy = Location.wildernessLevel(pSource.getLocation()); + int vWildy = Location.wildernessLevel(pVictim.getLocation()); + int diff = Math.abs(sWildy-vWildy); + if(diff >= sWildy && diff >= vWildy) { + pSource.getActionSender().sendMessage("You need to move deeper into the wilderness to attack this player."); + return false; + } else if(pSource.isAggressor()) { + if(victim.getInteractingWith() != source) { + pSource.getHeadIcons().setSkulled(true); + pSource.getUpdateFlags().setAppearanceUpdateRequired(true); + } + } + } + return true; + } + + public static void handleCombat(final Entity entity) { + entity.incrementCombatTurns(); + if(!entity.isAttacking()) { + return; + } + final Entity victim = entity.getInteractingWith(); + if(entity instanceof Player && victim instanceof Player) { + Player p = (Player) entity; + if(p.getHeadIcons().isSkulled() && victim.getInteractingWith() != entity) { + p.getHeadIcons().renewSkull(); + } + } + if(!canAttack(entity, victim)) { + entity.setAttacking(false); + return; + } + if(entity.isDead() || victim == null || victim.isDestroyed() || victim.isDead()) { + entity.setAttacking(false); + return; + } + int amt = 3; + if(entity.getCombatType().equals(CombatType.RANGE)) { + amt = 8; + } + if(!entity.getLocation().withinDistance(victim.getLocation(), amt)) { + entity.setAttacking(false); + //if(victim.getInteractingWith() == entity) { + // victim.setAttacking(false); + //} + return; + } + int hitDelay = 0; + if(entity.getCombatType().equals(CombatType.RANGE)) { + int dist = (int) (Math.round(entity.getLocation().getDistance(victim.getLocation()))); + if(dist == 0) { + } else if(dist == 1) { + hitDelay = 2; + } else if(dist == 2 || dist == 3) { + hitDelay = 3; + } else { + hitDelay = 4; + } + //hitDelay *= 500; + hitDelay = hitDelay * 250 + 750; + if(!entity.hasAmmo()) { + if(entity instanceof Player) { + Player p = (Player) entity; + p.getActionSender().sendMessage("You've ran out of ammo!"); + } + entity.setAttacking(false); + return; + } + } + Item ammoDrop = null; + if(entity.getCombatTurns() >= entity.getAttackSpeed()) { + entity.resetCombatTurns(); + entity.turnTo(victim); + boolean skip = false; + if(entity instanceof Player) { + Player p = (Player) entity; + if(p.getSpecials().isActive() && p.getSpecials().canPerform(victim)) { + p.getSpecials().perform(victim); + skip = true; + } + if(!skip) { + if(entity.getCombatType().equals(CombatType.RANGE)) { + ammoDrop = p.getEquipment().removeAmmo(); + } + } + } + boolean victimAnim = false; + if(!skip) { + if(!entity.isAnimating() || entity.getCombatType().equals(CombatType.RANGE)) { + entity.animate(entity.getAttackAnimation()); + victimAnim = true; + if(entity.getCombatType().equals(CombatType.RANGE)) { + entity.graphics(entity.getDrawBackGraphics(), (100 << 16)); + World.getInstance().getProjectileManager().fire(entity.getLocation(), victim.getLocation(), entity.getProjectileId(), 50, 43, 31, 70, victim); + } + } + if(hitDelay == 0) { + if(victimAnim) { + if(!victim.isAnimating()) { + victim.animate(victim.getDefenceAnimation()); + } + } + int hit = (int) (Math.ceil((double) Math.random() * (double) entity.getMaxHit())); + victim.hit(hit); + victim.addKillerHit(entity, hit); + if(ammoDrop != null) { + World.getInstance().getItemManager().createGroundItem(victim.getLocation(), ammoDrop); + } + } else { + final boolean fVictimAnim = victimAnim; + final Item fAmmoDrop = ammoDrop; + final int hit = (int) (Math.ceil((double) Math.random() * (double) entity.getMaxHit())); + World.getInstance().registerEvent(new Event(hitDelay) { + public void execute() { + if(fVictimAnim) { + if(!victim.isAnimating()) { + victim.animate(victim.getDefenceAnimation()); + } + } + victim.hit(hit); + victim.addKillerHit(entity, hit); + if(fAmmoDrop != null && entity instanceof Player) { + World.getInstance().getItemManager().createDropGroundItem((Player) entity, victim.getLocation(), fAmmoDrop); + } else { + World.getInstance().getItemManager().createGroundItem(victim.getLocation(), fAmmoDrop); + } + this.stop(); + } + }); + } + } + } + } + +} diff --git a/server508/src/com/rs2hd/content/DeathEvent.java b/server508/src/com/rs2hd/content/DeathEvent.java new file mode 100644 index 0000000..be62a1b --- /dev/null +++ b/server508/src/com/rs2hd/content/DeathEvent.java @@ -0,0 +1,58 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Entity; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class DeathEvent extends Event { + + private Entity entity; + private boolean firstNpcStage = false; + + public DeathEvent(Entity entity) { + super(3500); + this.entity = entity; + this.entity.resetTurnTo(); + this.entity.animate(entity.getDeathAnimation()); + } + + @Override + public void execute() { + if(entity instanceof NPC) { + if(!firstNpcStage) { + entity.setHidden(true); + entity.dropLoot(); + entity.clearKillersHits(); + NPC n = (NPC) entity; + n.teleport(n.getLocation()); + this.setTick(n.getDefinition().getRespawn()*500); + this.firstNpcStage = true; + } else { + entity.setHp(entity.getMaxHp()); + entity.setDead(false); + entity.setHidden(false); + this.stop(); + } + } else if(entity instanceof Player) { + entity.setHp(entity.getMaxHp()); + entity.setDead(false); + entity.teleport(Entity.DEFAULT_LOCATION); + entity.dropLoot(); + entity.clearKillersHits(); + World.getInstance().registerEvent(new Event(500) { + @Override + public void execute() { + Player p = (Player) entity; + if(!p.getSettings().isHidingDeathInterface()) { + p.getActionSender().sendInterface(153); + } + this.stop(); + } + }); + this.stop(); + } + } + +} diff --git a/server508/src/com/rs2hd/content/Emotes.java b/server508/src/com/rs2hd/content/Emotes.java new file mode 100644 index 0000000..9f3caee --- /dev/null +++ b/server508/src/com/rs2hd/content/Emotes.java @@ -0,0 +1,114 @@ +package com.rs2hd.content; + +import com.rs2hd.model.Player; + +/** + * Emotes helper class. + * @author Graham + * + */ +public class Emotes { + + /** + * Handles a player emote: does the appropriate animation. + * @param player + * @param buttonId + * @return + */ + public static boolean emote(Player player, int buttonId) { + if (buttonId == 2) { + player.animate(855, 0); + } else if (buttonId == 3) { + player.animate(856, 0); + } else if (buttonId == 4) { + player.animate(858, 0); + } else if (buttonId == 5) { + player.animate(859, 0); + } else if (buttonId == 6) { + player.animate(857, 0); + } else if (buttonId == 7) { + player.animate(863, 0); + } else if (buttonId == 8) { + player.animate(2113, 0); + } else if (buttonId == 9) { + player.animate(862, 0); + } else if (buttonId == 10) { + player.animate(864, 0); + } else if (buttonId == 11) { + player.animate(861, 0); + } else if (buttonId == 12) { + player.animate(2109, 0); + } else if (buttonId == 13) { + player.animate(2111, 0); + } else if (buttonId == 14) { + player.animate(866, 0); + } else if (buttonId == 15) { + player.animate(2106, 0); + } else if (buttonId == 16) { + player.animate(2107, 0); + } else if (buttonId == 17) { + player.animate(2108, 0); + } else if (buttonId == 18) { + player.animate(860, 0); + } else if (buttonId == 19) { + player.animate(0x558, 0); + player.graphics(574, 0); + } else if (buttonId == 20) { + player.animate(2105, 0); + } else if (buttonId == 21) { + player.animate(2110, 0); + } else if (buttonId == 22) { + player.animate(865, 0); + } else if (buttonId == 23) { + player.animate(2112, 0); + } else if (buttonId == 24) { + player.animate(0x84F, 0); + } else if (buttonId == 25) { + player.animate(0x850, 0); + } else if (buttonId == 26) { + player.animate(1131, 0); + } else if (buttonId == 27) { + player.animate(1130, 0); + } else if (buttonId == 28) { + player.animate(1129, 0); + } else if (buttonId == 29) { + player.animate(1128, 0); + } else if (buttonId == 30) { + player.animate(4275, 0); + } else if (buttonId == 31) { + player.animate(1745, 0); + } else if (buttonId == 32) { + player.animate(4280, 0); + } else if (buttonId == 33) { + player.animate(4276, 0); + } else if (buttonId == 34) { + player.animate(3544, 0); + } else if (buttonId == 35) { + player.animate(3543, 0); + } else if (buttonId == 36) { + player.animate(7272, 0); + player.graphics(1244, 0); + } else if (buttonId == 37) { + player.animate(2836, 0); + } else if (buttonId == 38) { + player.animate(6111, 0); + } else if (buttonId == 39) { + Skillcape.emote(player); + } else if (buttonId == 40) { + player.animate(7531, 0); + } else if (buttonId == 41) { + player.animate(2414, 0); + player.graphics(1537, 0); + } else if (buttonId == 42) { + player.animate(8770, 0); + player.graphics(1553, 0); + } else if (buttonId == 43) { + player.animate(9990, 0); + player.graphics(1734, 0); + } else { + return false; + } + return true; + } + +} diff --git a/server508/src/com/rs2hd/content/HealEvent.java b/server508/src/com/rs2hd/content/HealEvent.java new file mode 100644 index 0000000..bfc870a --- /dev/null +++ b/server508/src/com/rs2hd/content/HealEvent.java @@ -0,0 +1,29 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +/** + * Handles player+NPC healing. + * @author Graham + * + */ +public class HealEvent extends Event { + + public HealEvent() { + super(60000); + } + + @Override + public void execute() { + for(Player p : World.getInstance().getPlayerList()) { + p.heal(1); + } + for(NPC n : World.getInstance().getNpcList()) { + n.heal(1); + } + } + +} diff --git a/server508/src/com/rs2hd/content/LevelUp.java b/server508/src/com/rs2hd/content/LevelUp.java new file mode 100644 index 0000000..525f29f --- /dev/null +++ b/server508/src/com/rs2hd/content/LevelUp.java @@ -0,0 +1,36 @@ +package com.rs2hd.content; + +import com.rs2hd.model.Player; +import com.rs2hd.model.Skills; + +/** + * Level up class. + * @author Graham + * + */ +public class LevelUp { + + public static final int[] SKILL_ICON = { + 100000000, 400000000, 200000000, 450000000, 250000000, 500000000, + 300000000, 1100000000, 1250000000, 1300000000, 1050000000, 1200000000, + 800000000, 1000000000, 900000000, 650000000, 600000000, 700000000, + 1400000000, 1450000000, 850000000, 1500000000, 1600000000, 1650000000, 0, + }; + + public static final int[] SKILL_FLASH = { + 1, 4, 2, 64, 8, 16, 32, 32768, 131072, 2048, 16384, 65536, 1024, 8192, 4096, 256, 128, + 512, 524288, 1048576, 262144, 2097152, 4194304, 8388608, 0, + }; + + public static void levelUp(Player player, int skill) { + player.setTemporaryAttribute("leveledUp", skill); + player.setTemporaryAttribute("leveledUp["+skill+"]", Boolean.TRUE); + player.graphics(199, 100); + player.getActionSender().sendMessage("You've just advanced a " + Skills.SKILL_NAME[skill] + " level! You have reached level " + player.getSkills().getLevelForXp(skill) + "."); + player.getActionSender().sendString("Congratulations, you have just advanced a " + Skills.SKILL_NAME[skill] + " level!", 740, 0); + player.getActionSender().sendString("You have now reached level " + player.getSkills().getLevelForXp(skill) + ".", 740, 1); + player.getActionSender().sendConfig(1179, SKILL_ICON[skill]); + player.getActionSender().sendChatboxInterface(740); + } + +} diff --git a/server508/src/com/rs2hd/content/RunEnergyEvent.java b/server508/src/com/rs2hd/content/RunEnergyEvent.java new file mode 100644 index 0000000..64d2959 --- /dev/null +++ b/server508/src/com/rs2hd/content/RunEnergyEvent.java @@ -0,0 +1,31 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +/** + * Handles the regaining of player energy. + * @author Graham + * + */ +public class RunEnergyEvent extends Event { + + public RunEnergyEvent() { + super(2000); + } + + @Override + public void execute() { + for(Player p : World.getInstance().getPlayerList()) { + if((p.getWalkingQueue().isRunToggled() || p.getWalkingQueue().isRunning()) && p.getSprites().getSecondarySprite() != -1) { + continue; + } else { + if(p.getRunEnergy() < 100) { + p.setRunEnergy(p.getRunEnergy()+1); + } + } + } + } + +} diff --git a/server508/src/com/rs2hd/content/Skillcape.java b/server508/src/com/rs2hd/content/Skillcape.java new file mode 100644 index 0000000..77f6d47 --- /dev/null +++ b/server508/src/com/rs2hd/content/Skillcape.java @@ -0,0 +1,263 @@ +package com.rs2hd.content; + +import com.rs2hd.model.Equipment; +import com.rs2hd.model.Item; +import com.rs2hd.model.Player; +import com.rs2hd.model.Skills; + +/** + * Handles skill cape emotes. + * @author Graham + * + */ +public class Skillcape { + + /** + * Handles a skill cape emote: checks appropriate levels, + * finds the correct animation + graphic, etc. + * @param player + */ + public static void emote(Player player) { + int skill = -1, skillcapeAnimation = -1, skillcapeGraphic = -1; + Item cape = player.getEquipment().get(Equipment.SLOT_CAPE); + if(cape != null) { + switch(cape.getId()) { + /* + * Attack cape. + */ + case 9747: + case 9748: + skill = 0; + skillcapeAnimation = 4959; + skillcapeGraphic = 823; + break; + /* + * Defense cape. + */ + case 9753: + case 9754: + skill = 1; + skillcapeAnimation = 4961; + skillcapeGraphic = 824; + break; + /* + * Strength cape. + */ + case 9750: + case 9751: + skill = 2; + skillcapeAnimation = 4981; + skillcapeGraphic = 828; + break; + /* + * Hitpoints cape. + */ + case 9768: + case 9769: + skill = 3; + skillcapeAnimation = 4971; + skillcapeGraphic = 833; + break; + /* + * Ranging cape. + */ + case 9756: + case 9757: + skill = 4; + skillcapeAnimation = 4973; + skillcapeGraphic = 832; + break; + /* + * Prayer cape. + */ + case 9759: + case 9760: + skill = 5; + skillcapeAnimation = 4979; + skillcapeGraphic = 829; + break; + /* + * Magic cape. + */ + case 9762: + case 9763: + skill = 6; + skillcapeAnimation = 4939; + skillcapeGraphic = 813; + break; + /* + * Cooking cape. + */ + case 9801: + case 9802: + skill = 7; + skillcapeAnimation = 4955; + skillcapeGraphic = 821; + break; + /* + * Woodcutting cape. + */ + case 9807: + case 9808: + skill = 8; + skillcapeAnimation = 4957; + skillcapeGraphic = 822; + break; + /* + * Fletching cape. + */ + case 9783: + case 9784: + skill = 9; + skillcapeAnimation = 4937; + skillcapeGraphic = 812; + break; + /* + * Fishing cape. + */ + case 9798: + case 9799: + skill = 10; + skillcapeAnimation = 4951; + skillcapeGraphic = 819; + break; + /* + * Firemaking cape. + */ + case 9804: + case 9805: + skill = 11; + skillcapeAnimation = 4975; + skillcapeGraphic = 831; + break; + /* + * Crafting cape. + */ + case 9780: + case 9781: + skill = 12; + skillcapeAnimation = 4949; + skillcapeGraphic = 818; + break; + /* + * Smithing cape. + */ + case 9795: + case 9796: + skill = 13; + skillcapeAnimation = 4943; + skillcapeGraphic = 815; + break; + /* + * Mining cape. + */ + case 9792: + case 9793: + skill = 14; + skillcapeAnimation = 4941; + skillcapeGraphic = 814; + break; + /* + * Herblore cape. + */ + case 9774: + case 9775: + skill = 15; + skillcapeAnimation = 4969; + skillcapeGraphic = 835; + break; + /* + * Agility cape. + */ + case 9771: + case 9772: + skill = 16; + skillcapeAnimation = 4977; + skillcapeGraphic = 830; + break; + /* + * Thieving cape. + */ + case 9777: + case 9778: + skill = 17; + skillcapeAnimation = 4965; + skillcapeGraphic = 826; + break; + /* + * Slayer cape. + */ + case 9786: + case 9787: + skill = 18; + skillcapeAnimation = 4937;//need animation + skillcapeGraphic = 812;//need graphic + break; + /* + * Farming cape. + */ + case 9810: + case 9811: + skill = 19; + skillcapeAnimation = 4963; + skillcapeGraphic = 825; + break; + /* + * Runecraft cape. + */ + case 9765: + case 9766: + skill = 20; + skillcapeAnimation = 4947; + skillcapeGraphic = 817; + break; + /* + * Hunter's cape + */ + case 9948: + case 9949: + skill = 21; + skillcapeAnimation = 5158; + skillcapeGraphic = 907; + break; + /* + * Construct. cape. + */ + case 9789: + case 9790: + skill = 22; + skillcapeAnimation = 4953; + skillcapeGraphic = 820; + break; + /* + * Summoning cape. + */ + case 12169: + case 12170: + skill = 23; + skillcapeAnimation = 8525; + skillcapeGraphic = 1515; + break; + /* + * Quest cape. + */ + case 9813: + skillcapeAnimation = 4945; + skillcapeGraphic = 816; + break; + default: + player.getActionSender().sendMessage("You need to be wearing a skillcape to do the skillcape emote."); + break; + } + if(skill == -1 || player.getSkills().getLevelForXp(skill) == 99) { + player.animate(skillcapeAnimation); + player.graphics(skillcapeGraphic); + } else { + player.getActionSender().sendMessage("You need to be level 99 " + Skills.SKILL_NAME[skill] + " to do the " + cape.getDefinition().getName() + " emote."); + } + } else { + player.getActionSender().sendMessage("You need to be wearing a skillcape to do the skillcape emote."); + } + } + +} diff --git a/server508/src/com/rs2hd/content/SkullUpdateEvent.java b/server508/src/com/rs2hd/content/SkullUpdateEvent.java new file mode 100644 index 0000000..265da44 --- /dev/null +++ b/server508/src/com/rs2hd/content/SkullUpdateEvent.java @@ -0,0 +1,25 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class SkullUpdateEvent extends Event { + + public static final int TIME = 5000; + + public SkullUpdateEvent() { + super(TIME); + } + + @Override + public void execute() { + for(Player p : World.getInstance().getPlayerList()) { + p.getHeadIcons().decCycle(); + if(p.getHeadIcons().removeSkulls()) { + p.getUpdateFlags().setAppearanceUpdateRequired(true); + } + } + } + +} diff --git a/server508/src/com/rs2hd/content/SpecialUpdateEvent.java b/server508/src/com/rs2hd/content/SpecialUpdateEvent.java new file mode 100644 index 0000000..8d17add --- /dev/null +++ b/server508/src/com/rs2hd/content/SpecialUpdateEvent.java @@ -0,0 +1,20 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class SpecialUpdateEvent extends Event { + + public SpecialUpdateEvent() { + super(10000); + } + + @Override + public void execute() { + for(Player p : World.getInstance().getPlayerList()) { + p.getSpecials().tick(); + } + } + +} diff --git a/server508/src/com/rs2hd/content/Wilderness.java b/server508/src/com/rs2hd/content/Wilderness.java new file mode 100644 index 0000000..64522ce --- /dev/null +++ b/server508/src/com/rs2hd/content/Wilderness.java @@ -0,0 +1,64 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class Wilderness { + + public static void showWarning(Player player) { + if(Location.wildernessLevel(player.getLocation()) > 0) { + handleJump(player); + } else { + if(player.getTemporaryAttribute("wildernessWarned") == Boolean.TRUE) { + handleJump(player); + } else { + player.getActionSender().sendInterface(382); + } + } + } + + public static void handleJump(final Player player) { + final int baseY = Location.location(0, 3521, 0).getLocalY(); + player.getActionSender().sendCloseInterface(); + player.setTemporaryAttribute("wildernessWarned", Boolean.TRUE); + int delay = 0; + if(Location.wildernessLevel(player.getLocation()) > 0) { + // leaving wildy + player.getWalkingQueue().reset(); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+2); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+1); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+0); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY-1); + } else { + // entering wildy + player.getWalkingQueue().reset(); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+1); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+2); + player.getWalkingQueue().addStepToWalkingQueue(player.getLocation().getLocalX(), baseY+3); + delay = 500; + } + final boolean isRunning = player.getWalkingQueue().isRunToggled(); + player.getWalkingQueue().setIsRunning(false); + player.getWalkingQueue().setRunToggled(false); + World.getInstance().registerEvent(new Event(delay) { + @Override + public void execute() { + player.getEquipment().setTempWalkAnim(2750); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + this.stop(); + } + }); + World.getInstance().registerEvent(new Event(2500+delay) { + @Override + public void execute() { + player.getEquipment().setNoTempWalkAnim(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + player.getWalkingQueue().setRunToggled(isRunning); + this.stop(); + } + }); + } + +} diff --git a/server508/src/com/rs2hd/content/WildernessUpdateEvent.java b/server508/src/com/rs2hd/content/WildernessUpdateEvent.java new file mode 100644 index 0000000..a3e167b --- /dev/null +++ b/server508/src/com/rs2hd/content/WildernessUpdateEvent.java @@ -0,0 +1,20 @@ +package com.rs2hd.content; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class WildernessUpdateEvent extends Event { + + public WildernessUpdateEvent() { + super(500); + } + + @Override + public void execute() { + for(Player p : World.getInstance().getPlayerList()) { + p.updateWildernessState(); + } + } + +} diff --git a/server508/src/com/rs2hd/event/CoordinateEvent.java b/server508/src/com/rs2hd/event/CoordinateEvent.java new file mode 100644 index 0000000..9a8b6e1 --- /dev/null +++ b/server508/src/com/rs2hd/event/CoordinateEvent.java @@ -0,0 +1,67 @@ +package com.rs2hd.event; + +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; + +public abstract class CoordinateEvent { + + private Player player; + private Location location; + private Location oldLocation; + private int failedAttempts = 0, distance = 0; + private boolean reached = false; + + public CoordinateEvent(Player player, Location location) { + this.player = player; + this.location = location; + } + + public CoordinateEvent(Player player, Location location, int distance) { + this.player = player; + this.location = location; + this.distance = distance; + } + + public void setLocation(Location location) { + this.location = location; + } + + public int getDistance() { + return distance; + } + + public boolean hasReached() { + return reached; + } + + public void setReached(boolean reached) { + this.reached = reached; + } + + public Player getPlayer() { + return player; + } + + public int getFailedAttempts() { + return failedAttempts; + } + + public void incrementFailedAttempts() { + failedAttempts++; + } + + public void setOldLocation(Location location) { + this.oldLocation = location; + } + + public Location getOldLocation() { + return this.oldLocation; + } + + public Location getTargetLocation() { + return this.location; + } + + public abstract void run(); + +} diff --git a/server508/src/com/rs2hd/event/Event.java b/server508/src/com/rs2hd/event/Event.java new file mode 100644 index 0000000..15ad113 --- /dev/null +++ b/server508/src/com/rs2hd/event/Event.java @@ -0,0 +1,89 @@ +package com.rs2hd.event; + +/** + * Abstract event class. + * @author Graham + * + */ +public abstract class Event { + + /** + * How many ms the event should wait between each cycle. + */ + private int tick; + + /** + * How long it was since the event was last run. + */ + private long lastRun; + + /** + * If the event has been stopped. + */ + private boolean isStopped; + + /** + * Create an event with the specified tick time. + * @param tick + */ + public Event(int tick) { + this.tick = tick; + this.lastRun = System.currentTimeMillis(); + } + + /** + * Gets the current tick. + * @return + */ + public int getTick() { + return tick; + } + + /** + * Sets the event tick. + * @param tick + */ + public void setTick(int tick) { + this.tick = tick; + } + + /** + * Checks if the event is ready to execute. + * @return + */ + public boolean isReady() { + if(isStopped) { + return false; + } + return (System.currentTimeMillis()-lastRun) > tick; + } + + /** + * Checks if the event has been stopped. + * @return + */ + public boolean isStopped() { + return isStopped; + } + + /** + * Stops the current event. + */ + public void stop() { + isStopped = true; + } + + /** + * Runs the event. + */ + public void run() { + this.lastRun = System.currentTimeMillis(); + execute(); + } + + /** + * Subclasses of the event class can put their own code here. + */ + public abstract void execute(); + +} diff --git a/server508/src/com/rs2hd/io/MapDataLoader.java b/server508/src/com/rs2hd/io/MapDataLoader.java new file mode 100644 index 0000000..75b3218 --- /dev/null +++ b/server508/src/com/rs2hd/io/MapDataLoader.java @@ -0,0 +1,52 @@ +package com.rs2hd.io; +import java.io.DataInputStream; +import java.io.FileInputStream; +import java.io.IOException; +import java.util.Map; + +import com.rs2hd.util.log.Logger; + +/** + * Loads mapdata from a binary file + * @author Graham + * + */ +public class MapDataLoader { + + /** + * Logger instance. + */ + private static Logger logger = Logger.getInstance(); + + /** + * Prevent an instance being created. + */ + private MapDataLoader() {} + + /** + * Loads mapdata into the specified map. + * + * The map should have a key of Integer and value of int[]. + * @param mapData The map. + * @throws IOException + */ + public static void load(Map mapData) throws IOException { + // a much simpler way than TeleNubby's + logger.info("Reading mapdata..."); + DataInputStream in = new DataInputStream(new FileInputStream(com.rs2hd.Main.workingDir+"data/mapdata/packed.dat")); + int useableMapdata = 0; + while(in.available() >= 20) { + int area = in.readInt(); + int[] parts = new int[4]; + for(int j = 0; j < 4; j++) { + parts[j] = in.readInt(); + } + if(parts[0] != 0 && parts[1] != 0 && parts[2] != 0 && parts[3] != 0) { + useableMapdata++; + } + mapData.put(area, parts); + } + logger.info("Loaded mapdata."); + } + +} diff --git a/server508/src/com/rs2hd/io/MapDataPacker.java b/server508/src/com/rs2hd/io/MapDataPacker.java new file mode 100644 index 0000000..2a0d9b4 --- /dev/null +++ b/server508/src/com/rs2hd/io/MapDataPacker.java @@ -0,0 +1,57 @@ +package com.rs2hd.io; +import java.io.BufferedReader; +import java.io.DataOutputStream; +import java.io.File; +import java.io.FileOutputStream; +import java.io.FileReader; + +import com.rs2hd.util.log.Logger; + +/** + * Packs map data + * + * @author TeleNubby + * @author Graham + * + */ +public class MapDataPacker { + + /** + * Logger instance. + */ + private static Logger logger = Logger.getInstance(); + + /** + * Prevent an instance being made. + */ + private MapDataPacker() { + } + + /** + * We actually pack the mapdata here. + */ + public static void pack(String from, String to) { + logger.info("Packing mapdata..."); + try { + DataOutputStream out = new DataOutputStream(new FileOutputStream(to)); + int i2 = 0; + for (int i = 0; i < 16384; i++) { + if (new File(from + i + ".txt").exists()) { + BufferedReader in = new BufferedReader(new FileReader(from + i + ".txt")); + out.writeInt(i); + for (int j = 0; j < 4; j++) { + out.writeInt(Integer.parseInt(in.readLine())); + } + in.close(); + i2++; + } + } + out.flush(); + out.close(); + logger.info("Complete."); + } catch (Exception e) { + e.printStackTrace(); + } + } + +} diff --git a/server508/src/com/rs2hd/io/PlayerLoadResult.java b/server508/src/com/rs2hd/io/PlayerLoadResult.java new file mode 100644 index 0000000..3fa7757 --- /dev/null +++ b/server508/src/com/rs2hd/io/PlayerLoadResult.java @@ -0,0 +1,16 @@ +package com.rs2hd.io; + +import com.rs2hd.Constants; +import com.rs2hd.model.Player; + +/** + * Player load result. + * @author Graham + * + */ +public class PlayerLoadResult { + + public int returnCode = Constants.ReturnCodes.LOGIN_OK; + public Player player = null; + +} diff --git a/server508/src/com/rs2hd/io/PlayerLoader.java b/server508/src/com/rs2hd/io/PlayerLoader.java new file mode 100644 index 0000000..1c8dd91 --- /dev/null +++ b/server508/src/com/rs2hd/io/PlayerLoader.java @@ -0,0 +1,16 @@ +package com.rs2hd.io; + +import com.rs2hd.model.Player; +import com.rs2hd.model.PlayerDetails; + +/** + * Player load/save interface. + * @author Graham + * + */ +public interface PlayerLoader { + + public PlayerLoadResult load(PlayerDetails p); + public boolean save(Player p); + +} diff --git a/server508/src/com/rs2hd/io/TestPlayerLoader.java b/server508/src/com/rs2hd/io/TestPlayerLoader.java new file mode 100644 index 0000000..17730ca --- /dev/null +++ b/server508/src/com/rs2hd/io/TestPlayerLoader.java @@ -0,0 +1,25 @@ +package com.rs2hd.io; + +import com.rs2hd.Constants; +import com.rs2hd.model.Player; +import com.rs2hd.model.PlayerDetails; + +/** + * Test player loader/saver. + * @author Graham + * + */ +public class TestPlayerLoader implements PlayerLoader { + + public PlayerLoadResult load(PlayerDetails p) { + PlayerLoadResult result = new PlayerLoadResult(); + result.returnCode = Constants.ReturnCodes.LOGIN_OK; + result.player = (Player) new Player(p).readResolve(); + return result; + } + + public boolean save(Player p) { + return true; + } + +} diff --git a/server508/src/com/rs2hd/io/XStreamPlayerLoader.java b/server508/src/com/rs2hd/io/XStreamPlayerLoader.java new file mode 100644 index 0000000..2632c10 --- /dev/null +++ b/server508/src/com/rs2hd/io/XStreamPlayerLoader.java @@ -0,0 +1,65 @@ +package com.rs2hd.io; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; + +import com.rs2hd.Constants; +import com.rs2hd.model.Player; +import com.rs2hd.model.PlayerDetails; +import com.rs2hd.model.World; +import com.rs2hd.util.XStreamUtil; +import com.thoughtworks.xstream.XStream; + +/** + * XML player loader/saver. + * @author Graham + * + */ +public class XStreamPlayerLoader implements PlayerLoader { + + @Override + public PlayerLoadResult load(PlayerDetails p) { + XStream xstream = XStreamUtil.getXStream(); + PlayerLoadResult result = new PlayerLoadResult(); + // by default wrong login + result.returnCode = Constants.ReturnCodes.INVALID_PASSWORD; + try { + Player player = (Player) xstream.fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/savedgames/"+p.getUsername()+".xml")); + // set the session + player.getPlayerDetails().setSession(p.getSession()); + if(!player.getPlayerDetails().getPassword().equals(p.getPassword())) { + // wrong password + result.returnCode = Constants.ReturnCodes.INVALID_PASSWORD; + } else { + // check if online + if(World.getInstance().isOnline(p.getUsername())) { + result.returnCode = Constants.ReturnCodes.ALREADY_ONLINE; + } else { + // login ok + result.player = player; + result.returnCode = Constants.ReturnCodes.LOGIN_OK; + } + } + } catch (FileNotFoundException e) { + // no user with that name + result.returnCode = Constants.ReturnCodes.LOGIN_OK; + result.player = new Player(p); + result.player = (Player) result.player.readResolve(); + } + return result; + } + + @Override + public boolean save(Player p) { + boolean flag = true; + try { + XStream xstream = XStreamUtil.getXStream(); + xstream.toXML(p, new FileOutputStream(com.rs2hd.Main.workingDir+"data/savedgames/"+p.getPlayerDetails().getUsername()+".xml")); + } catch(Exception e) { + flag = false; + } + return flag; + } + +} diff --git a/server508/src/com/rs2hd/model/Animation.java b/server508/src/com/rs2hd/model/Animation.java new file mode 100644 index 0000000..68f6092 --- /dev/null +++ b/server508/src/com/rs2hd/model/Animation.java @@ -0,0 +1,25 @@ +package com.rs2hd.model; + +/** + * Holds data for a single animation request. + * @author Graham + * + */ +public class Animation { + + private int id, delay; + + public Animation(int id, int delay) { + this.id = id; + this.delay = delay; + } + + public int getId() { + return id; + } + + public int getDelay() { + return delay; + } + +} diff --git a/server508/src/com/rs2hd/model/Appearance.java b/server508/src/com/rs2hd/model/Appearance.java new file mode 100644 index 0000000..0544bdc --- /dev/null +++ b/server508/src/com/rs2hd/model/Appearance.java @@ -0,0 +1,61 @@ +package com.rs2hd.model; + +/** + * Appearance class + * @author Graham + * + */ +public class Appearance { + + private boolean asNpc = false; + private int npcId = -1; + private int gender = 0; + private int[] look = new int[7]; + private int[] colour = new int[5]; + + public Appearance() { + look[1] = 10; + look[2] = 18; + look[3] = 26; + look[4] = 33; + look[5] = 36; + look[6] = 42; + for(int i = 0; i < 5; i++) { + colour[i] = i*3+2; + } + } + + public boolean isNpc() { + return asNpc; + } + + public int getNpcId() { + return npcId; + } + + public int getGender() { + return gender; + } + + public int getLook(int id) { + return look[id]; + } + + public int getColour(int id) { + return colour[id]; + } + + public int[] getColours() { + return colour.clone(); + } + + public void transformToPlayer() { + asNpc = false; + } + + public void transformToNpc(int i) { + asNpc = true; + npcId = i; + } + +} diff --git a/server508/src/com/rs2hd/model/Bank.java b/server508/src/com/rs2hd/model/Bank.java new file mode 100644 index 0000000..2b1b2dc --- /dev/null +++ b/server508/src/com/rs2hd/model/Bank.java @@ -0,0 +1,106 @@ +package com.rs2hd.model; + +/** + * Manages the player bank. + * @author Graham + * + */ +public class Bank { + + public static final int SIZE = 800; + + private Container bank = new Container(SIZE, false); + + private transient Player player; + + public void setPlayer(Player player) { + this.player = player; + } + + public void openBank() { + player.getActionSender().sendConfig2(563, 4194304); + player.getActionSender().sendConfig2(1248, -2013265920); + player.getActionSender().sendBankOptions(); + refresh(); + player.getActionSender().sendInterface(762); + player.getActionSender().sendInventoryInterface(763); + } + + public void refresh() { + player.getActionSender().sendItems(-1, 64207, 95, bank); + player.getActionSender().sendItems(-1, 64209, 93, player.getInventory().getContainer()); + player.getActionSender().sendItems(149, 0, 93, player.getInventory().getContainer()); + } + + public Container getContainer() { + return bank; + } + + public int getFreeSlots() { + return bank.getFreeSlots(); + } + + public void bankItem(int slot, int amount) { + if(slot < 0 || slot > Inventory.SIZE || amount <= 0) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null) { + return; + } + if(amount > player.getInventory().getContainer().getNumberOf(item)) { + item = new Item(item.getId(), item.getAmount()); + } else { + item = new Item(item.getId(), amount); + } + if(player.getInventory().getContainer().contains(item)) { + if(bank.containsOne(item)) { + for(int i = 0; i < SIZE; i++) { + Item bankItem = bank.get(i); + if(bankItem == null) { + continue; + } + if(bankItem.getId() == item.getId()) { + bank.set(i, new Item(item.getId(), bankItem.getAmount() + item.getAmount())); + player.getInventory().getContainer().remove(item); + break; + } + } + } else { + if(getFreeSlots() <= 0) { + player.getActionSender().sendMessage("Not enough space in your bank."); + } else { + bank.add(item); + player.getInventory().getContainer().remove(item); + } + } + } + refresh(); + } + + public void withdrawItem(int slot, int amount) { + if(slot < 0 || slot > Bank.SIZE || amount <= 0) { + return; + } + Item item = bank.get(slot); + if(item == null) { + return; + } + if(amount > item.getAmount()) { + item = new Item(item.getId(), item.getAmount()); + } else { + item = new Item(item.getId(), amount); + } + if(bank.contains(item)) { + if(player.getInventory().getFreeSlots() <= 0) { + player.getActionSender().sendMessage("Not enough space in your inventory."); + } else { + player.getInventory().getContainer().add(item); + bank.remove(item); + bank.shift(); + } + } + refresh(); + } + +} diff --git a/server508/src/com/rs2hd/model/Bonuses.java b/server508/src/com/rs2hd/model/Bonuses.java new file mode 100644 index 0000000..d14576a --- /dev/null +++ b/server508/src/com/rs2hd/model/Bonuses.java @@ -0,0 +1,41 @@ +package com.rs2hd.model; + +public class Bonuses { + + public static final String[] BONUS_NAMES = new String[] { + "Stab", "Slash", "Crush", "Magic", "Range", "Stab", "Slash", "Crush", "Magic", "Range", "Strength", "Prayer", "Summoning" + }; + + public static final int SIZE = 13; + + private Player player; + private int[] bonuses = new int[SIZE]; + + public Bonuses(Player player) { + this.player = player; + } + + public void refresh() { + for(int i = 0; i < SIZE; i++) { + bonuses[i] = 0; + } + for(int i = 0; i < Equipment.SIZE; i++) { + Item item = player.getEquipment().getContainer().get(i); + if(item != null) { + for(int j = 0; j < SIZE; j++) { + bonuses[j] += item.getDefinition().getBonus(j); + } + } + } + player.getActionSender().sendBonus(bonuses); + } + + public int[] getBonuses() { + return bonuses; + } + + public int getBonus(int i) { + return bonuses[i]; + } + +} diff --git a/server508/src/com/rs2hd/model/Bounds.java b/server508/src/com/rs2hd/model/Bounds.java new file mode 100644 index 0000000..4f10de7 --- /dev/null +++ b/server508/src/com/rs2hd/model/Bounds.java @@ -0,0 +1,21 @@ +package com.rs2hd.model; + +public class Bounds { + + private Location topLeft; + private Location bottomRight; + + public Bounds(Location tl, Location br) { + this.topLeft = tl; + this.bottomRight = br; + } + + public Location getTopLeft() { + return topLeft; + } + + public Location getBottomRight() { + return bottomRight; + } + +} diff --git a/server508/src/com/rs2hd/model/ChatMessage.java b/server508/src/com/rs2hd/model/ChatMessage.java new file mode 100644 index 0000000..1e99674 --- /dev/null +++ b/server508/src/com/rs2hd/model/ChatMessage.java @@ -0,0 +1,27 @@ +package com.rs2hd.model; + +public class ChatMessage { + + private int effects; + private int numChars; + private String chatText; + + public ChatMessage(int effects, int numChars, String chatText) { + this.effects = effects; + this.numChars = numChars; + this.chatText = chatText; + } + + public int getEffects() { + return effects; + } + + public int getNumChars() { + return numChars; + } + + public String getChatText() { + return chatText; + } + +} diff --git a/server508/src/com/rs2hd/model/Container.java b/server508/src/com/rs2hd/model/Container.java new file mode 100644 index 0000000..2ee82a9 --- /dev/null +++ b/server508/src/com/rs2hd/model/Container.java @@ -0,0 +1,237 @@ +package com.rs2hd.model; + +/** + * Container class. + * @author Graham + * + * @param + */ +public class Container { + + private Item[] data; + private boolean alwaysStackable = false; + + public Container(int size, boolean alwaysStackable) { + data = new Item[size]; + this.alwaysStackable = alwaysStackable; + } + + public void shift() { + Item[] oldData = data; + data = new Item[oldData.length]; + int ptr = 0; + for(int i = 0; i < data.length; i++) { + if(oldData[i] != null) { + data[ptr++] = oldData[i]; + } + } + } + + @SuppressWarnings("unchecked") + public T get(int slot) { + if(slot < 0 || slot >= data.length) { + return null; + } + return (T) data[slot]; + } + + public void set(int slot, T item) { + if(slot < 0 || slot >= data.length) { + return; + } + data[slot] = item; + } + + public boolean forceAdd(T item) { + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + data[i] = item; + return true; + } + } + return false; + } + + public boolean add(T item) { + if(alwaysStackable || item.getDefinition().isStackable() || item.getDefinition().isNoted()) { + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + data[i] = new Item(data[i].getDefinition().getId(), data[i].getAmount() + item.getAmount()); + return true; + } + } + } + } else { + if(item.getAmount() > 1) { + if(freeSlots() >= item.getAmount()) { + for(int i = 0; i < item.getAmount(); i++) { + int index = freeSlot(); + data[index] = new Item(item.getId(), 1); + } + return true; + } else { + return false; + } + } + } + int index = freeSlot(); + if(index == -1) { + return false; + } + data[index] = item; + return true; + } + + public int freeSlots() { + int j = 0; + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + j++; + } + } + return j; + } + + public void remove(T item) { + int removed = 0, toRemove = item.getAmount(); + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + int amt = data[i].getAmount(); + if(amt > toRemove) { + removed += toRemove; + amt -= toRemove; + toRemove = 0; + data[i] = new Item(data[i].getDefinition().getId(), amt); + return; + } else { + removed += amt; + toRemove -= amt; + data[i] = null; + } + } + } + } + } + + public void removeAll(T item) { + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + data[i] = null; + } + } + } + } + + public boolean containsOne(T item) { + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + return true; + } + } + } + return false; + } + + public boolean contains(T item) { + int amtOf = 0; + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + amtOf += data[i].getAmount(); + } + } + } + return amtOf >= item.getAmount(); + } + + public int freeSlot() { + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + return i; + } + } + return -1; + } + + public void clear() { + for(int i = 0; i < data.length; i++) { + data[i] = null; + } + } + + public int getSize() { + return data.length; + } + + public int getFreeSlots() { + int s = 0; + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + s++; + } + } + return s; + } + + public int getNumberOf(Item item) { + int count = 0; + for(int i = 0; i < data.length; i++) { + if(data[i] != null) { + if(data[i].getId() == item.getId()) { + count += data[i].getAmount(); + } + } + } + return count; + } + + public Item[] getItems() { + return data; + } + + public Container asItemContainer() { + Container c = new Container(data.length, this.alwaysStackable); + for(int i = 0; i < data.length; i++) { + c.data[i] = data[i]; + } + return c; + } + + public int getFreeSlot() { + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + return i; + } + } + return 0; + } + + public Item lookup(int id) { + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + continue; + } + if(data[i].getId() == id) { + return data[i]; + } + } + return null; + } + + public int lookupSlot(int id) { + for(int i = 0; i < data.length; i++) { + if(data[i] == null) { + continue; + } + if(data[i].getId() == id) { + return i; + } + } + return -1; + } + +} diff --git a/server508/src/com/rs2hd/model/Entity.java b/server508/src/com/rs2hd/model/Entity.java new file mode 100644 index 0000000..5523ba0 --- /dev/null +++ b/server508/src/com/rs2hd/model/Entity.java @@ -0,0 +1,276 @@ +package com.rs2hd.model; + +import java.util.HashMap; +import java.util.Map; + +import com.rs2hd.content.Combat.CombatType; + +/** + * An 'entity' in the game world. + * @author Graham + * + */ +public abstract class Entity { + + public static final Location DEFAULT_LOCATION = Location.location(3200, 3200, 0); + private Location location; + private transient int index; + private transient Location teleportTo; + private transient Hits hits; + private transient Animation lastAnimation; + private transient Graphics lastGraphics; + private transient Entity interactingWith; + private transient boolean attacking; + private transient int combatTurns; + private transient boolean dead; + private transient boolean hidden; + private transient Map killers; + private transient boolean isAggressor; + private transient int attackStyle; + + public abstract boolean isAutoRetaliating(); + + public void addKillerHit(Entity killer, int hit) { + if(!killers.containsKey(killer)) { + killers.put(killer, hit); + } else { + killers.put(killer, killers.get(killer)+hit); + } + if(killer instanceof Player) { + Player p = (Player) killer; + CombatType type = p.getCombatType(); + int fightType = p.getAttackStyle(); + if(type == CombatType.MELEE) { + if(fightType != 3) { + int skill = 0; + if(fightType == 1) { + skill = 0; + } else if(fightType == 4) { + skill = 1; + } else if(fightType == 2) { + skill = 2; + } else { + return; // should not happen + } + double exp = (double) (0.8 * hit), hpExp = (double) (0.25 * hit); + p.getSkills().addXp(skill, exp); + p.getSkills().addXp(Skills.HITPOINTS, hpExp); + } else { + double exp = (double) (0.4 * hit), hpExp = (double) (0.25 * hit); + p.getSkills().addXp(Skills.ATTACK, exp); + p.getSkills().addXp(Skills.DEFENCE, exp); + p.getSkills().addXp(Skills.STRENGTH, exp); + p.getSkills().addXp(Skills.HITPOINTS, hpExp); + } + } else { + if(fightType == 1 || fightType == 2) { + p.getSkills().addXp(Skills.RANGE, (10D * (double) hit)); + } else if(fightType == 3) { + p.getSkills().addXp(Skills.RANGE, (10D * (double) hit)/2D); + p.getSkills().addXp(Skills.DEFENCE, (10D * (double) hit)/2D); + } + p.getSkills().addXp(Skills.HITPOINTS, (10D * (double) hit)/3D); + } + } + } + + public void clearKillersHits() { + killers.clear(); + } + + public Entity getKiller() { + Entity highestHitter = null; + int highestHit = -1; + for(Map.Entry entry : killers.entrySet()) { + if(entry.getValue() == highestHit) { + if(entry.getKey() == this.getInteractingWith()) { + highestHitter = this.getInteractingWith(); + } + } else if(entry.getValue() > highestHit) { + highestHitter = entry.getKey(); + } + } + return highestHitter; + } + + public Entity() { + this.location = DEFAULT_LOCATION; + } + + public Object readResolve() { + hits = new Hits(); + lastAnimation = null; + lastGraphics = null; + teleportTo = null; + interactingWith = null; + attacking = false; + combatTurns = 0; + dead = false; + hidden = false; + killers = new HashMap(); + isAggressor = false; + attackStyle = 1; + return this; + } + + public boolean isAggressor() { + return isAggressor; + } + + public void setAggressor(boolean b) { + isAggressor = b; + } + + public Hits getHits() { + return hits; + } + + public void teleport(Location location) { + this.teleportTo = location; + } + + public void resetTeleportTo() { + this.teleportTo = null; + } + + public Location getTeleportTo() { + return this.teleportTo; + } + + public void setLocation(Location location) { + this.location = location; + } + + public Location getLocation() { + return this.location; + } + + public void setIndex(int index) { + this.index = index; + } + + public int getIndex() { + return this.index; + } + + public int getClientIndex() { + if(this instanceof Player) { + return this.index + 32768; + } else { + return this.index; + } + } + + public abstract void heal(int amount); + public abstract void hit(int damage); + public abstract void hit(int damage, Hits.HitType type); + public abstract void turnTo(Entity entity); + public abstract void turnTemporarilyTo(Entity entity); + public abstract void resetTurnTo(); + public abstract void graphics(int id); + public abstract void graphics(int id, int delay); + public abstract void animate(int id); + public abstract void animate(int id, int delay); + + public Animation getLastAnimation() { + return lastAnimation; + } + + public void setLastAnimation(Animation lastAnimation) { + this.lastAnimation = lastAnimation; + } + + public Graphics getLastGraphics() { + return lastGraphics; + } + + public void setLastGraphics(Graphics lastGraphics) { + this.lastGraphics = lastGraphics; + } + + public Entity getInteractingWith() { + return interactingWith; + } + + public boolean isInteracting() { + return interactingWith != null; + } + + public void setInteractingWith(Entity entity) { + this.interactingWith = entity; + } + + public boolean isAttacking() { + return this.attacking; + } + + public void setAttacking(boolean b) { + if(!b) { + interactingWith = null; + this.resetTurnTo(); + this.setAggressor(false); + } + this.attacking = b; + } + + public int getCombatTurns() { + return combatTurns; + } + + public void resetCombatTurns() { + combatTurns = 0; + } + + public void incrementCombatTurns() { + combatTurns++; + } + + public abstract int getAttackAnimation(); + public abstract int getAttackSpeed(); + public abstract int getMaxHit(); + public abstract int getDefenceAnimation(); + public abstract boolean isAnimating(); + public abstract int getDeathAnimation(); + + public abstract boolean isDestroyed(); + + public void setCombatTurns(int i) { + combatTurns = i; + } + + public void setDead(boolean b) { + dead = b; + } + + public boolean isDead() { + return dead; + } + + public void setHidden(boolean b) { + hidden = b; + } + + public boolean isHidden() { + return hidden; + } + + public abstract int getMaxHp(); + public abstract int getHp(); + public abstract void setHp(int val); + + public abstract void dropLoot(); + + public void setAttackStyle(int i) { + this.attackStyle = i; + } + + public int getAttackStyle() { + return attackStyle; + } + + public abstract CombatType getCombatType(); + public abstract int getDrawBackGraphics(); + public abstract int getProjectileId(); + public abstract boolean hasAmmo(); + +} diff --git a/server508/src/com/rs2hd/model/Equipment.java b/server508/src/com/rs2hd/model/Equipment.java new file mode 100644 index 0000000..548c45f --- /dev/null +++ b/server508/src/com/rs2hd/model/Equipment.java @@ -0,0 +1,703 @@ +package com.rs2hd.model; + +/** + * Manages equipment. + * @author Graham + * + */ +public class Equipment { + + public static final int SLOT_HAT = 0, SLOT_CAPE = 1, SLOT_AMULET = 2, SLOT_WEAPON = 3, SLOT_CHEST = 4, SLOT_SHIELD = 5, SLOT_LEGS = 7, SLOT_HANDS = 9, SLOT_FEET = 10, SLOT_RING = 12, SLOT_ARROWS = 13; + public static final String[] BONUSES = { "Stab", "Slash", "Crush", "Magic", "Range", "Stab", "Slash", "Crush", "Magic", "Range", "Strength", "Prayer" }; + + private Container equipment = new Container(SIZE, false); + private transient boolean specialWeapon = false; + + public boolean isSpecialWeapon() { + return specialWeapon; + } + + public Equipment() { + } + + private transient int tempWalkAnim; + + public void setTempWalkAnim(int i) { + this.tempWalkAnim = i; + } + public void setNoTempWalkAnim() { + this.tempWalkAnim = -1; + } + + public Item get(int slot) { + return equipment.get(slot); + } + + public void set(int slot, Item item) { + if(slot == 3) { + player.setAttackStyle(1); + player.getActionSender().sendConfig(43, 0); + } + equipment.set(slot, item); + refresh(); + } + + public void clear() { + equipment.clear(); + refresh(); + } + + public void setWeapon() { + if(player.getEquipment().get(3) == null) { + player.getActionSender().sendTab(73, 92); + player.getActionSender().sendString("Unarmed", 92, 0); + specialWeapon = false; + return; + } + String weapon = player.getEquipment().get(3).getDefinition().getName(); + if(weapon.equals("Abyssal whip")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 93); + player.getActionSender().sendString(weapon, 93, 0); + } else if(weapon.equals("Granite maul") || weapon.equals("Tzhaar-ket-om") || weapon.equals("Torags hammers")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 76); + player.getActionSender().sendString(weapon, 76, 0); + } else if(weapon.equals("Veracs flail") || weapon.endsWith("mace")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 88); + player.getActionSender().sendString(weapon, 88, 0); + } else if(weapon.endsWith("crossbow") || weapon.endsWith(" c'bow")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 79); + player.getActionSender().sendString(weapon, 79, 0); + } else if(weapon.endsWith("bow") || weapon.endsWith("bow full") || weapon.equals("Seercull")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 77); + player.getActionSender().sendString(weapon, 77, 0); + } else if(weapon.startsWith("Staff") || weapon.endsWith("staff") || weapon.equals("Toktz-mej-tal")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 90); + player.getActionSender().sendString(weapon, 90, 0); + } else if(weapon.endsWith("dart") || weapon.endsWith("knife") || weapon.endsWith("javelin") || weapon.endsWith("thrownaxe") || weapon.equals("Toktz-xil-ul")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 91); + player.getActionSender().sendString(weapon, 91, 0); + } else if(weapon.endsWith("dagger") || weapon.endsWith("dagger(s)") || weapon.endsWith("dagger(+)") || weapon.endsWith("dagger(p)")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 89); + player.getActionSender().sendString(weapon, 89, 0); + } else if(weapon.endsWith("pickaxe")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 83); + player.getActionSender().sendString(weapon, 83, 0); + } else if(weapon.endsWith("axe") || weapon.endsWith("battleaxe")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 75); + player.getActionSender().sendString(weapon, 75, 0); + } else if(weapon.endsWith("halberd")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 84); + player.getActionSender().sendString(weapon, 84, 0); + } else if(weapon.endsWith("spear") || weapon.equals("Guthans warspear")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 85); + player.getActionSender().sendString(weapon, 85, 0); + } else if(weapon.endsWith("claws")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 78); + player.getActionSender().sendString(weapon, 78, 0); + } else if(weapon.endsWith("2h sword") || weapon.endsWith("godsword") || weapon.equals("Saradomin sword")) { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 81); + player.getActionSender().sendString(weapon, 81, 0); + } else { + player.getActionSender().sendTab(player.isHd() ? 87 : 73, 82); + player.getActionSender().sendString(weapon, 82, 0); + } + setSpecials(); + } + + private void setSpecials() { + int weaponId = get(3).getId(); + specialWeapon = false; + if (weaponId == 4151) { + player.getActionSender().sendInterfaceConfig(93, 10, false); + specialWeapon = true; + } else if (weaponId == 1215 || weaponId == 1231 || weaponId == 5680 + || weaponId == 5698 || weaponId == 8872 || weaponId == 8874 + || weaponId == 8876 || weaponId == 8878) { + player.getActionSender().sendInterfaceConfig(89, 12, false); + specialWeapon = true; + } else if (weaponId == 35 || weaponId == 1305 || weaponId == 4587 + || weaponId == 6746 || weaponId == 11037) { + player.getActionSender().sendInterfaceConfig(82, 12, false); + specialWeapon = true; + } else if (weaponId == 7158 || weaponId == 11694 || weaponId == 11696 + || weaponId == 11698 || weaponId == 11700 || weaponId == 11730) { + player.getActionSender().sendInterfaceConfig(81, 12, false); + specialWeapon = true; + } else if (weaponId == 859 || weaponId == 861 || weaponId == 6724 + || weaponId == 10284 || weaponId == 859 || weaponId == 11235) { + player.getActionSender().sendInterfaceConfig(77, 13, false); + specialWeapon = true; + } else if (weaponId == 8880) { + player.getActionSender().sendInterfaceConfig(79, 10, false); + specialWeapon = true; + } else if (weaponId == 3101) { + player.getActionSender().sendInterfaceConfig(78, 12, false); + specialWeapon = true; + } else if (weaponId == 1434 || weaponId == 11061 || weaponId == 10887) { + player.getActionSender().sendInterfaceConfig(88, 12, false); + specialWeapon = true; + } else if (weaponId == 1377 || weaponId == 6739) { + player.getActionSender().sendInterfaceConfig(75, 12, false); + specialWeapon = true; + } else if (weaponId == 4153) { + player.getActionSender().sendInterfaceConfig(76, 10, false); + specialWeapon = true; + } else if (weaponId == 3204) { + player.getActionSender().sendInterfaceConfig(84, 10, false); + specialWeapon = true; + } + } + public int getStandAnim() { + if(get(3) == null) { + return 0x328; + } + Item item = get(3); + String weapon = item.getDefinition().getName(); + int id = item.getDefinition().getId(); + if (id == 4718) { + return 2065; + } else if (id == 4755) { + return 2061; + } else if (id == 4734) { + return 2074; + } else if (id == 6528 || id == 1319) { + return 0x811; + } else if (weapon.equals("Saradomin staff") || weapon.equals("Guthix staff") || weapon.equals("Zamorak staff")) { + return 0x328; + } else if (id == 4726 || weapon.endsWith("spear") || weapon.endsWith("halberd") || weapon.contains("Staff") || weapon.contains("staff") || id == 1305) { + return 809; + } else if (weapon.endsWith("2h sword") || weapon.endsWith("godsword") || weapon.equals("Saradomin sword")) { + return 7047; + } else if (weapon.equals("Abyssal whip")) { + return 1832; + } else if (id == 4153) { + return 1662; + } + return 0x328; + } + + public int getWalkAnim() { + if(this.tempWalkAnim != -1) { + return this.tempWalkAnim; + } + if(get(3) == null) { + return 0x333; + } + Item item = get(3); + String weapon = item.getDefinition().getName(); + int id = item.getDefinition().getId(); + if(weapon.equals("Saradomin staff") || weapon.equals("Guthix staff") || weapon.equals("Zamorak staff")) { + return 0x333; + } else if (id == 4755) { + return 2060; + } else if (id == 4734) { + return 2076; + } else if (id == 4153) { + return 1663; + } else if (weapon.equals("Abyssal whip")) { + return 1660; + } else if (id == 4718 || weapon.endsWith("2h sword") || id == 6528 || weapon.endsWith("godsword") || weapon.equals("Saradomin sword")) { + return 7046; + } else if (id == 4726 || weapon.contains("spear") || weapon.endsWith("halberd") || weapon.contains("Staff") || weapon.contains("staff")) { + return 1146; + } + return 0x333; + } + + public int getRunAnim() { + if(this.tempWalkAnim != -1) { + return this.tempWalkAnim; + } + if(get(3) == null) { + return 0x338; + } + Item item = get(3); + String weapon = item.getDefinition().getName(); + int id = item.getDefinition().getId(); + if (id == 4718 || weapon.endsWith("2h sword") || id == 6528 || weapon.endsWith("godsword") || weapon.equals("Saradomin sword")) { + return 7039; + } else if (weapon.equals("Saradomin staff") || weapon.equals("Guthix staff") || weapon.equals("Zamorak staff")) { + return 0x338; + } else if (id == 4755) { + return 1831; + } else if (id == 4734) { + return 2077; + } else if (id == 4726 || weapon.contains("Spear") || weapon.endsWith("halberd") || weapon.contains("Staff") || weapon.contains("staff")) { + return 1210; + } else if (weapon.equals("Abyssal whip")) { + return 1661; + } else if (id == 4153) { + return 1664; + } + return 0x338; + } + + public static boolean isTwoHanded(ItemDefinition def) { + String wepEquiped = def.getName(); + int itemId = def.getId(); + if (itemId == 4212) + return true; + else if (itemId == 4214) + return true; + else if (wepEquiped.endsWith("2h sword")) + return true; + else if (wepEquiped.endsWith("longbow")) + return true; + else if (wepEquiped.equals("Seercull")) + return true; + else if (wepEquiped.endsWith("shortbow")) + return true; + else if (wepEquiped.endsWith("Longbow")) + return true; + else if (wepEquiped.endsWith("Shortbow")) + return true; + else if (wepEquiped.endsWith("bow full")) + return true; + else if (wepEquiped.endsWith("halberd")) + return true; + else if (wepEquiped.equals("Granite maul")) + return true; + else if (wepEquiped.equals("Karils crossbow")) + return true; + else if (wepEquiped.equals("Torags hammers")) + return true; + else if (wepEquiped.equals("Veracs flail")) + return true; + else if (wepEquiped.equals("Dharoks greataxe")) + return true; + else if (wepEquiped.equals("Guthans warspear")) + return true; + else if (wepEquiped.equals("Tzhaar-ket-om")) + return true; + else if (wepEquiped.endsWith("godsword")) + return true; + else if (wepEquiped.equals("Saradomin sword")) + return true; + else + return false; + } + + public static boolean isFullBody(ItemDefinition def) { + String weapon = def.getName(); + for (int i = 0; i < FULL_BODY.length; i++) { + if (weapon.contains(FULL_BODY[i])) { + return true; + } + } + return false; + } + + + public static boolean isFullHat(ItemDefinition def) { + String weapon = def.getName(); + for (int i = 0; i < FULL_HAT.length; i++) { + if (weapon.endsWith(FULL_HAT[i])) { + return true; + } + } + return false; + } + + public static boolean isFullMask(ItemDefinition def) { + String weapon = def.getName(); + for (int i = 0; i < FULL_MASK.length; i++) { + if (weapon.endsWith(FULL_MASK[i])) { + return true; + } + } + return false; + } + + private static final String[] CAPES = {"cape","Cape"}; + private static final String[] HATS = {"helm","hood","coif","Coif","hat","partyhat","Hat","full helm (t)","full helm (g)","hat (t)","hat (g)","cav","boater","helmet","mask","Helm of neitiznot"}; + private static final String[] BOOTS = {"boots","Boots"}; + private static final String[] GLOVES = {"gloves","gauntlets","Gloves","vambraces","vamb","bracers"}; + private static final String[] SHIELDS = {"kiteshield","sq shield","Toktz-ket","books","book","kiteshield (t)","kiteshield (g)","kiteshield(h)","defender","shield"}; + private static final String[] AMULETS = {"amulet","necklace","Amulet of"}; + private static final String[] ARROWS = {"arrow","arrows","arrow(p)","arrow(+)","arrow(s)","bolt","Bolt rack","Opal bolts","Dragon bolts"}; + private static final String[] RINGS = {"ring"}; + private static final String[] BODY = {"platebody","chainbody","robetop","leathertop","platemail","top","brassard","Robe top","body","platebody (t)","platebody (g)","body(g)","body_(g)","chestplate","torso","shirt"}; + private static final String[] LEGS = {"platelegs","plateskirt","skirt","bottoms","chaps","platelegs (t)","platelegs (g)","bottom","skirt","skirt (g)","skirt (t)","chaps (g)","chaps (t)","tassets","legs"}; + private static final String[] WEAPONS = {"scimitar","longsword","sword","longbow","shortbow","dagger","mace","halberd","spear", + "Abyssal whip","axe","flail","crossbow","Torags hammers","dagger(p)","dagger(+)","dagger(s)","spear(p)","spear(+)", + "spear(s)","spear(kp)","maul","dart","dart(p)","javelin","javelin(p)","knife","knife(p)","Longbow","Shortbow", + "Crossbow","Toktz-xil","Toktz-mej","Tzhaar-ket","staff","Staff","godsword","c'bow","Crystal bow","Dark bow"}; + /* Fullbody is an item that covers your arms. */ + private static final String[] FULL_BODY = {"top","shirt","platebody","Ahrims robetop","Karils leathertop","brassard","Robe top","robetop","platebody (t)","platebody (g)","chestplate","torso"}; + /* Fullhat covers your head but not your beard. */ + private static final String[] FULL_HAT = {"med helm","coif","Dharoks helm","hood","Initiate helm","Coif","Helm of neitiznot"}; + /* Fullmask covers your entire head. */ + private static final String[] FULL_MASK = {"full helm","mask","Veracs helm","Guthans helm","Torags helm","Karils coif","full helm (t)","full helm (g)","mask"}; + public static final int SIZE = 14; + + public static int getItemType(int wearId) { + String weapon = ItemDefinition.forId(wearId).getName(); + for(int i = 0; i < CAPES.length; i++) { + if(weapon.contains(CAPES[i])) + return 1; + } + for(int i = 0; i < HATS.length; i++) { + if(weapon.contains(HATS[i])) + return 0; + } + for(int i = 0; i < BOOTS.length; i++) { + if(weapon.endsWith(BOOTS[i]) || weapon.startsWith(BOOTS[i])) + return 10; + } + for(int i = 0; i < GLOVES.length; i++) { + if(weapon.endsWith(GLOVES[i]) || weapon.startsWith(GLOVES[i])) + return 9; + } + for(int i = 0; i < SHIELDS.length; i++) { + if(weapon.contains(SHIELDS[i])) + return 5; + } + for(int i = 0; i < AMULETS.length; i++) { + if(weapon.endsWith(AMULETS[i]) || weapon.startsWith(AMULETS[i])) + return 2; + } + for(int i = 0; i < ARROWS.length; i++) { + if(weapon.endsWith(ARROWS[i]) || weapon.startsWith(ARROWS[i])) + return 13; + } + for(int i = 0; i < RINGS.length; i++) { + if(weapon.endsWith(RINGS[i]) || weapon.startsWith(RINGS[i])) + return 12; + } + for(int i = 0; i < BODY.length; i++) { + if(weapon.contains(BODY[i])) + return 4; + } + for(int i = 0; i < LEGS.length; i++) { + if(weapon.contains(LEGS[i])) + return 7; + } + for(int i = 0; i < WEAPONS.length; i++) { + if(weapon.endsWith(WEAPONS[i]) || weapon.startsWith(WEAPONS[i])) + return 3; + } + return -1; + } + + private transient Player player; + + public void setPlayer(Player player) { + this.player = player; + this.tempWalkAnim = -1; + this.specialWeapon = false; + } + + public void refresh() { + setWeapon(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + player.getActionSender().sendItems(387, 28, 94, equipment); + player.getBonuses().refresh(); + } + + public Container getContainer() { + return equipment; + } + + public int getAttackAnimation() { + int weapon = this.get(Equipment.SLOT_WEAPON) != null ? this.get(Equipment.SLOT_WEAPON).getId() : -1; + int fightStyle = this.player.getAttackStyle(); + switch(weapon) { + case 4718: + if(fightStyle != 2) { + return 2067; + } else { + return 2066; + } + case 11696: + case 11694: + case 11698: + case 11700: + case 1307: + case 1309: + case 1311: + case 1313: + case 1315: + case 1317: + case 1319: + return 7041; + case 9174: + case 9175: + case 9176: + case 9177: + case 9178: + case 9179: + case 9180: + case 9181: + case 9182: + case 9183: + case 9184: + case 9185: + case 9186: + return 4230; + case 1265: + case 1266: + case 1267: + case 1268: + case 1269: + case 1270: + case 1271: + case 1272: + case 1273: + case 1274: + case 1275: + case 1276: + return 401; + case 4755: + return 2062; + case 10887: + return 5865; + case 4151: + return 1658; + case 5698: + return 402; + case 4214: + case 6724: + case 861: + case 4212: + case 839: + case 841: + case 843: + case 845: + case 847: + case 849: + case 851: + case 853: + case 855: + case 857: + case 4827: + return 426; // bows + default: + if(fightStyle != 2) { + return 422; + } else { + return 423; + } + } + } + + public int getAttackSpeed() { + int weapon = this.get(Equipment.SLOT_WEAPON) != null ? this.get(Equipment.SLOT_WEAPON).getId() : -1; + switch(weapon) { + case 5698: + return 6; + case 4151: + return 5; + case 4718: + case 4755: + return 9; + case 1321: + case 1322: + case 1323: + case 1324: + case 1325: + case 1326: + case 1327: + case 1328: + case 1329: + case 1330: + case 1331: + case 1332: + case 1333: + case 1334: + case 4587: + return 4; + case 11696: + case 11694: + case 11698: + case 11700: + case 1307: + case 1309: + case 1311: + case 1313: + case 1315: + case 1317: + case 1319: + return 8; + default: + return 7; + } + } + + public int getDefenceAnimation() { + int weapon = this.get(Equipment.SLOT_WEAPON) != null ? this.get(Equipment.SLOT_WEAPON).getId() : -1; + int shield = this.get(Equipment.SLOT_SHIELD) != null ? this.get(Equipment.SLOT_SHIELD).getId() : -1; + if(weapon == -1 && shield == -1) { + return 404; + } + return 404; + } + + public boolean isWieldindBow() { + int weapon = this.get(Equipment.SLOT_WEAPON) != null ? this.get(Equipment.SLOT_WEAPON).getId() : -1; + if(weapon == -1) { + return false; + } + for(int bow : BOWS) { + if(weapon == bow) { + return true; + } + } + return false; + } + + private static final int[] BOWS = new int[] { 4212, 4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222, 4223, 837, + 767, 4734, 839, 841, 843, 845, 847, 849, 851, 853, 855, 857, 859, 861, + 2883, 4827, 6724, 11235, 9705 ,767, 837, 4734, 10156, 11165, 13081, 9174, 9176, 9177, 9179, 9181, 9183, 9185, 8880 }; + + public int getDrawBackGraphics() { + int id = this.get(Equipment.SLOT_ARROWS) != null ? this.get(Equipment.SLOT_ARROWS).getId() : -1; + if(id == 882) { + return 19; + } else if(id == 877 || id == 878 || id == 879 || id == 880 || id == 881 || id == 4740 || id == 6061 || id == 6062 || id == 8882 || id == 9139 || id == 9140 || id == 9141 || id == 9142 || id == 9143 || id == 9144 || id == 9145 || id == 9236 || id == 9237 || id == 9238 || id == 9239 || id == 9240 || id == 9241 || id == 9242 || id == 9243 || id == 9244 || id == 9245 || id == 9286 || id == 9287 || id == 9288 || id == 9289 || id == 9290 || id == 9291 || id == 9292 || id == 9293 || id == 9294 || id == 9295 || id == 9296 || id == 9297 || id == 9298 || id == 9299 || id == 9300 || id == 9301 || id == 9302 || id == 9303 || id == 9304 || id == 9305 || id == 9306 || id == 9335 || id == 9335 || id == 9336 || id == 9337 || id == 9338 || id == 9339 || id == 9340 || id == 9341 || id == 9342 || id == 10158 || id == 10159 || id == 13083 || id == 13084 || id == 13085 || id == 13086 || id == 13280) { + return 28; + } else if(id == 884) { + return 18; + } else if(id == 886) { + return 20; + } else if(id == 9706) { + return 25; + } else if(id == 888) { + return 21; + } else if(id == 890) { + return 22; + } else if(id == 892) { + return 24; + } else if(id == 2532 || id == 2534 || id == 2536 || id == 2538 || id == 2540 || id == 598) { + return 1120; + } else if(id == 11212) { + return 1116; + } else if(id == 863) { + return 213; + } else if(id == 864) { + return 212; + } else if(id == 865) { + return 214; + } else if(id == 866) { + return 216; + } else if(id == 867) { + return 217; + } else if(id == 868) { + return 218; + } else if(id == 869) { + return 215; + } else if(id == 806) { + return 226; + } else if(id == 807) { + return 227; + } else if(id == 808) { + return 228; + } else if(id == 809) { + return 229; + } else if(id == 810) { + return 230; + } else if(id == 811) { + return 231; + } else if(id == 3093) { + return 229; + } else { + return 19; + } + } + + public int getProjectileId() { + int id = this.get(Equipment.SLOT_ARROWS) != null ? this.get(Equipment.SLOT_ARROWS).getId() : -1; + if(id == 882) { + return 10; + } else if(id == 877 || id == 878 || id == 879 || id == 880 || id == 881 || id == 4740 || id == 6061 || id == 6062 || id == 8882 || id == 9139 || id == 9140 || id == 9141 || id == 9142 || id == 9143 || id == 9144 || id == 9145 || id == 9236 || id == 9237 || id == 9238 || id == 9239 || id == 9240 || id == 9241 || id == 9242 || id == 9243 || id == 9244 || id == 9245 || id == 9286 || id == 9287 || id == 9288 || id == 9289 || id == 9290 || id == 9291 || id == 9292 || id == 9293 || id == 9294 || id == 9295 || id == 9296 || id == 9297 || id == 9298 || id == 9299 || id == 9300 || id == 9301 || id == 9302 || id == 9303 || id == 9304 || id == 9305 || id == 9306 || id == 9335 || id == 9335 || id == 9336 || id == 9337 || id == 9338 || id == 9339 || id == 9340 || id == 9341 || id == 9342 || id == 10158 || id == 10159 || id == 13083 || id == 13084 || id == 13085 || id == 13086 || id == 13280) { + return 28; + } else if(id == 9706) { + return 25; + } else if(id == 884) { + return 11; + } else if(id == 886) { + return 12; + } else if(id == 888) { + return 13; + } else if(id == 890) { + return 14; + } else if(id == 892) { + return 15; + } else if(id == 2532 || id == 2534 || id == 2536 || id == 2538 || id == 2540 || id == 598) { + return 1120; + } else if(id == 11212) { + return 1099; + } else if(this.isWieldingKnives()) { + return 249; + } else { + return 10; + } + } + + private static final int[] KNIVES = new int[] { 863, 864, 865, 866, 867, 868, 869, + 870, 871, 872, 873, 874, 875, 876 }; + + public boolean isWieldingKnives() { + int id = this.get(Equipment.SLOT_ARROWS) != null ? this.get(Equipment.SLOT_ARROWS).getId() : -1; + if(id == -1) { + return false; + } + for(int knife : KNIVES) { + if(knife == id) { + return true; + } + } + return false; + } + + public boolean hasAmmo() { + int id = this.get(Equipment.SLOT_ARROWS) != null ? this.get(Equipment.SLOT_ARROWS).getId() : -1; + if(id == -1) { + return false; + } + if(this.get(Equipment.SLOT_ARROWS).getAmount() <= 0) { + return false; + } + if(id == 882) { + return true; + } else if(id == 877 || id == 878 || id == 879 || id == 880 || id == 881 || id == 4740 || id == 6061 || id == 6062 || id == 8882 || id == 9139 || id == 9140 || id == 9141 || id == 9142 || id == 9143 || id == 9144 || id == 9145 || id == 9236 || id == 9237 || id == 9238 || id == 9239 || id == 9240 || id == 9241 || id == 9242 || id == 9243 || id == 9244 || id == 9245 || id == 9286 || id == 9287 || id == 9288 || id == 9289 || id == 9290 || id == 9291 || id == 9292 || id == 9293 || id == 9294 || id == 9295 || id == 9296 || id == 9297 || id == 9298 || id == 9299 || id == 9300 || id == 9301 || id == 9302 || id == 9303 || id == 9304 || id == 9305 || id == 9306 || id == 9335 || id == 9335 || id == 9336 || id == 9337 || id == 9338 || id == 9339 || id == 9340 || id == 9341 || id == 9342 || id == 10158 || id == 10159 || id == 13083 || id == 13084 || id == 13085 || id == 13086 || id == 13280) { + return true; + } else if(id == 9706) { + return true; + } else if(id == 884) { + return true; + } else if(id == 886) { + return true; + } else if(id == 888) { + return true; + } else if(id == 890) { + return true; + } else if(id == 892) { + return true; + } else if(id == 2532 || id == 2534 || id == 2536 || id == 2538 || id == 2540 || id == 598) { + return true; + } else if(id == 11212) { + return true; + } else if(this.isWieldingKnives()) { + return true; + } else { + return false; + } + } + + public Item removeAmmo() { + Item i = this.get(Equipment.SLOT_ARROWS); + if(i != null) { + int amt = i.getAmount() - 1; + if(amt <= 0) { + this.set(Equipment.SLOT_ARROWS, null); + } else { + this.set(Equipment.SLOT_ARROWS, new Item(i.getId(), amt)); + } + refresh(); + return new Item(i.getId()); + } else { + return null; + } + } + +} diff --git a/server508/src/com/rs2hd/model/FloorItem.java b/server508/src/com/rs2hd/model/FloorItem.java new file mode 100644 index 0000000..f9f2a7d --- /dev/null +++ b/server508/src/com/rs2hd/model/FloorItem.java @@ -0,0 +1,88 @@ +package com.rs2hd.model; + +/** + * Represents an item on the floor. + * @author Graham + * + */ +public class FloorItem extends Item { + + private Location location; + private Player player; + private long droppedAt; + private boolean destroyed = false; + private boolean spawn = false; + + private FloorItem(Player player, Location location, int id, int amount) { + super(id, amount); + this.player = player; + this.location = location; + this.droppedAt = System.currentTimeMillis(); + } + + public FloorItem(Spawn s) { + super(s.getItem().getId(), s.getItem().getAmount()); + this.location = s.getLocation(); + this.spawn = true; + this.player = null; + } + + public FloorItem(Location location, int id, int amount) { + super(id, amount); + this.location = location; + this.player = null; + } + + public boolean isSpawn() { + return spawn; + } + + public long getDroppedAt() { + return droppedAt; + } + + public Player getPlayer() { + return player; + } + + public Location getLocation() { + return location; + } + + public static FloorItem createPlayerDroppedItem(Player player, Item item) { + return new FloorItem(player, player.getLocation(), item.getId(), item.getAmount()); + } + + public void setPlayer(Player player) { + this.player = player; + } + + public void setDestroyed(boolean b) { + this.destroyed = b; + } + + public boolean isDestroyed() { + return this.destroyed; + } + + public static FloorItem createSpawnItem(Spawn s) { + return new FloorItem(s); + } + + public static FloorItem createGlobalDroppedItem(Location location, Item item) { + return new FloorItem(location, item.getId(), item.getAmount()); + } + + public static FloorItem createPlayerDroppedItemAt(Player player, Location location, Item item) { + return new FloorItem(player, location, item.getId(), item.getAmount()); + } + + public void incrementAmount(int amount) { + this.setAmount(this.getAmount()+amount); + } + + public void resetDroppedAt() { + this.droppedAt = System.currentTimeMillis(); + } + +} diff --git a/server508/src/com/rs2hd/model/Friends.java b/server508/src/com/rs2hd/model/Friends.java new file mode 100644 index 0000000..145ad69 --- /dev/null +++ b/server508/src/com/rs2hd/model/Friends.java @@ -0,0 +1,144 @@ +package com.rs2hd.model; + +import java.util.ArrayList; +import java.util.List; + +import com.rs2hd.util.Misc; + +/** + * Manages friends and ignores. + * @author Graham + * + */ +public class Friends { + + private transient Player player; + + private List friends; + private List ignores; + + private transient int messageCounter; + + public Friends() { + friends = new ArrayList(200); + ignores = new ArrayList(100); + } + + public int getNextUniqueId() { + if(messageCounter >= 16000000) { + messageCounter = 0; + } + return messageCounter++; + } + + public void setPlayer(Player player) { + this.player = player; + this.messageCounter = 1; + } + + public void refresh() { + player.getActionSender().sendFriendsStatus(2); + for(Long friend : friends) { + player.getActionSender().sendFriend(friend, getWorld(friend)); + } + long[] array = new long[ignores.size()]; + int i = 0; + for(Long ignore : ignores) { + if(ignore != null) { + array[i++] = ignore; + } + } + player.getActionSender().sendIgnores(array); + } + + private int getWorld(Long friend) { + for(Player p : World.getInstance().getPlayerList()) { + if(p != null) { + if(p.getPlayerDetails().getUsernameAsLong() == friend) { + return p.getWorld(); + } + } + } + return 0; + } + + public void addFriend(long name) { + if(friends.size() >= 200) { + player.getActionSender().sendMessage("Your friends list is full."); + return; + } + if(friends.contains((Long) name)) { + player.getActionSender().sendMessage(Misc.formatPlayerNameForDisplay(Misc.longToPlayerName(name)) + " is already on your friends list."); + + return; + } + friends.add((Long) name); + player.getActionSender().sendFriend(name, getWorld(name)); + + } + + public void addIgnore(long name) { + if(ignores.size() >= 100) { + player.getActionSender().sendMessage("Your ignore list is full."); + return; + } + if(ignores.contains((Long) name)) { + player.getActionSender().sendMessage(Misc.formatPlayerNameForDisplay(Misc.longToPlayerName(name)) + " is already on your ignore list."); + return; + } + ignores.add((Long) name); + + } + + public void removeFriend(long name) { + friends.remove((Long) name); + } + + public void removeIgnore(long name) { + ignores.remove((Long) name); + } + + public void registered() { + for(Player p : World.getInstance().getPlayerList()) { + if(p != null) { + p.getFriends().registered(player); + } + } + } + + private void registered(Player p) { + long n = p.getPlayerDetails().getUsernameAsLong(); + if(friends.contains(n)) { + player.getActionSender().sendFriend(n, getWorld(n)); + } + } + + public void unregistered() { + for(Player p : World.getInstance().getPlayerList()) { + if(p != null) { + p.getFriends().unregistered(player); + } + } + } + + private void unregistered(Player p) { + long n = p.getPlayerDetails().getUsernameAsLong(); + if(friends.contains(n)) { + player.getActionSender().sendFriend(n, 0); + } + } + + public void sendMessage(long name, String text) { + for(Player p : World.getInstance().getPlayerList()) { + if(p != null) { + if(p.getPlayerDetails().getUsernameAsLong() == name) { + p.getActionSender().sendReceivedPrivateMessage(player.getPlayerDetails().getUsernameAsLong(), player.getRights(), text); + player.getActionSender().sendSentPrivateMessage(name, text); + return; + } + } + } + player.getActionSender().sendMessage(Misc.formatPlayerNameForDisplay(Misc.longToPlayerName(name)) + " is currently unavailable."); + } + +} diff --git a/server508/src/com/rs2hd/model/Graphics.java b/server508/src/com/rs2hd/model/Graphics.java new file mode 100644 index 0000000..af7120a --- /dev/null +++ b/server508/src/com/rs2hd/model/Graphics.java @@ -0,0 +1,25 @@ +package com.rs2hd.model; + +/** + * Represents 'still graphics'. + * @author Graham + * + */ +public class Graphics { + + private int id, delay; + + public Graphics(int id, int delay) { + this.id = id; + this.delay = delay; + } + + public int getId() { + return id; + } + + public int getDelay() { + return delay; + } + +} diff --git a/server508/src/com/rs2hd/model/HeadIcons.java b/server508/src/com/rs2hd/model/HeadIcons.java new file mode 100644 index 0000000..c09920b --- /dev/null +++ b/server508/src/com/rs2hd/model/HeadIcons.java @@ -0,0 +1,56 @@ +package com.rs2hd.model; + +import com.rs2hd.content.SkullUpdateEvent; + +/** + * Manages head icons. + * @author Graham + * + */ +// TODO needs recoding +// TODO !!IMPORTANT!! SAVE THIS SOMEHOW! (e.g. skullTimeRemaining???) +// TODO prayer icon support +public class HeadIcons { + + private boolean isSkulled = false; + private int skullCyclesRemaining = 0; + + public int getPkIcon() { + return isSkulled? 0 : -1; + } + + public int getPrayerIcon() { + return -1; + } + + public boolean isSkulled() { + return isSkulled; + } + + public void setSkulled(boolean b) { + isSkulled = b; + if(isSkulled == false) { + skullCyclesRemaining = 0; + } else { + skullCyclesRemaining = 900000 / SkullUpdateEvent.TIME;; + } + } + + public void renewSkull() { + skullCyclesRemaining = 900000 / SkullUpdateEvent.TIME; + } + + public void decCycle() { + skullCyclesRemaining--; + } + + public boolean removeSkulls() { + if(skullCyclesRemaining <= 0) { + isSkulled = false; + skullCyclesRemaining = 0; + return true; + } + return false; + } + +} diff --git a/server508/src/com/rs2hd/model/Hits.java b/server508/src/com/rs2hd/model/Hits.java new file mode 100644 index 0000000..241ac34 --- /dev/null +++ b/server508/src/com/rs2hd/model/Hits.java @@ -0,0 +1,95 @@ +package com.rs2hd.model; + +/** + * Handles player hits. + * @author Graham + * + */ +public class Hits { + + public static enum HitType { + NO_DAMAGE (0), // blue + NORMAL_DAMAGE (1), // red + POISON_DAMAGE (2), // green + DISEASE_DAMAGE (3); // orange + + private final int type; + + private HitType(int type) { + this.type = type; + } + + public int getType() { + return this.type; + } + } + + public static class Hit { + + private HitType type; + private int damage; + + public Hit(int damage, HitType type) { + this.type = type; + this.damage = damage; + } + + public HitType getType() { + return type; + } + + public int getDamage() { + return damage; + } + } + + public Hits() { + hit1 = null; + hit2 = null; + } + + private Hit hit1; + private Hit hit2; + + public void setHit1(Hit hit) { + this.hit1 = hit; + } + + public void setHit2(Hit hit) { + this.hit2 = hit; + } + + public int getHitDamage1() { + if(hit1 == null) { + return 0; + } + return hit1.damage; + } + + public int getHitDamage2() { + if(hit2 == null) { + return 0; + } + return hit2.damage; + } + + public int getHitType1() { + if(hit1 == null) { + return HitType.NO_DAMAGE.getType(); + } + return hit1.type.getType(); + } + + public int getHitType2() { + if(hit2 == null) { + return HitType.NO_DAMAGE.getType(); + } + return hit2.type.getType(); + } + + public void clear() { + hit1 = null; + hit2 = null; + } + +} diff --git a/server508/src/com/rs2hd/model/Inventory.java b/server508/src/com/rs2hd/model/Inventory.java new file mode 100644 index 0000000..4d8c9f9 --- /dev/null +++ b/server508/src/com/rs2hd/model/Inventory.java @@ -0,0 +1,83 @@ +package com.rs2hd.model; + +/** + * Manages the player inventory. + * @author Graham + * + */ +public class Inventory { + + public static final int SIZE = 28; + + private Container inventory = new Container(SIZE, false); + + private transient Player player; + + public void setPlayer(Player player) { + this.player = player; + } + + public boolean addItem(int item, int amount) { + if(item < 0 || item >= 13404) { + return false; + } + boolean b = inventory.add(new Item(item, amount)); + if(!b) { + player.getActionSender().sendMessage("Not enough space in your inventory."); + return false; + } + refresh(); + return true; + } + + public boolean contains(int item, int amount) { + return inventory.contains(new Item(item, amount)); + } + + public boolean contains(int item) { + return inventory.containsOne(new Item(item)); + } + + public void deleteItem(int item, int amount) { + inventory.remove(new Item(item, amount)); + refresh(); + } + + public void deleteAll(int item) { + inventory.removeAll(new Item(item)); + refresh(); + } + + public void refresh() { + player.getActionSender().sendItems(149, 0, 93, inventory); + } + + public Container getContainer() { + return inventory; + } + + public int getFreeSlots() { + return inventory.getFreeSlots(); + } + + public boolean hasRoomFor(int id, int itemAmount) { + if(ItemDefinition.forId(id).isStackable()) { + return getFreeSlots() >= 1 || contains(id); + } else { + return getFreeSlots() >= itemAmount; + } + } + + public int numberOf(int id) { + return inventory.getNumberOf(new Item(id, 1)); + } + + public Item lookup(int id) { + return inventory.lookup(id); + } + + public int lookupSlot(int id) { + return inventory.lookupSlot(id); + } + +} diff --git a/server508/src/com/rs2hd/model/Item.java b/server508/src/com/rs2hd/model/Item.java new file mode 100644 index 0000000..f4c7e0b --- /dev/null +++ b/server508/src/com/rs2hd/model/Item.java @@ -0,0 +1,60 @@ +package com.rs2hd.model; + +/** + * Represents a single item. + * + * Immutable. + * @author Graham + * + */ +public class Item { + + private int id; + private transient ItemDefinition itemDefinition; + private int amount; + + public int getId() { + return id; + } + + public Item clone() { + return new Item(id, amount); + } + + public Item(int id) { + this.id = id; + this.itemDefinition = ItemDefinition.forId(id); + this.amount = 1; + } + + public Item(int id, int amount) { + this.id = id; + this.itemDefinition = ItemDefinition.forId(id); + this.amount = amount; + if(this.amount <= 0) { + this.amount = 1; + } + } + + public ItemDefinition getDefinition() { + return itemDefinition; + } + + public int getAmount() { + return amount; + } + + public Object readResolve() { + this.itemDefinition = ItemDefinition.forId(id); + return this; + } + + /** + * ONLY CALL THIS FROM THE SHOPITEM CLASS. + * @param amount + */ + protected void setAmount(int amount) { + this.amount = amount; + } + +} diff --git a/server508/src/com/rs2hd/model/ItemDefinition.java b/server508/src/com/rs2hd/model/ItemDefinition.java new file mode 100644 index 0000000..1198828 --- /dev/null +++ b/server508/src/com/rs2hd/model/ItemDefinition.java @@ -0,0 +1,141 @@ +package com.rs2hd.model; + +import java.io.IOException; +import java.io.RandomAccessFile; +import java.util.HashMap; +import java.util.Map; + +import com.rs2hd.util.log.Logger; + +/** + * Item Definition class + * @author Graham + * + */ +public class ItemDefinition { + + private static Map definitions = null; + public static void load() throws IOException { + RandomAccessFile raf = new RandomAccessFile(com.rs2hd.Main.workingDir+"data/itemDefinitions.dat", "r"); + int amt = raf.readInt(); + definitions = new HashMap(); + for(int i = 0; i < amt; i++) { + ItemDefinition def = new ItemDefinition(); + def.id = raf.readShort(); + def.equipId = raf.readShort(); + def.noted = raf.readBoolean(); + def.stackable = raf.readBoolean(); + def.price = new ItemPrice(); + def.price.normPrice = raf.readInt(); + def.price.minPrice = raf.readInt(); + def.price.maxPrice = raf.readInt(); + def.bonus = new int[13]; + for(int j = 0; j < 13; j++) { + def.bonus[j] = raf.readByte(); + } + StringBuilder s = new StringBuilder(); + byte b = 0; + while((b = raf.readByte()) != 0) { + s.append((char) b); + } + def.name = s.toString(); + s = new StringBuilder(); + while((b = raf.readByte()) != 0) { + s.append((char) b); + } + def.examine = s.toString(); + definitions.put(def.getId(), def); + } + Logger.getInstance().info("Loaded " + definitions.size() + " item definitions."); + } + public static ItemDefinition forId(int id) { + ItemDefinition i = definitions.get(id); + if(i == null) { + i = produceDefinition(id); + } + return i; + } + + private static ItemDefinition produceDefinition(int id) { + ItemDefinition def = new ItemDefinition(); + def.price = new ItemPrice(); + def.price.minPrice = 0; + def.price.maxPrice = 0; + def.price.normPrice = 0; + def.bonus = new int[13]; + for(int i = 0; i < 13; i++) { + def.bonus[i] = 0; + } + def.id = id; + def.stackable = false; + def.noted = false; + def.name = "#"+id; + def.examine = "It's an item!"; + def.equipId = -1; + definitions.put(id, def); + return def; + } + + public static class ItemPrice { + private int minPrice; + private int maxPrice; + private int normPrice; + + public int getMinimumPrice() { + return minPrice; + } + + public int getMaximumPrice() { + return maxPrice; + } + + public int getNormalPrice() { + return normPrice; + } + } + + private ItemPrice price; + private int[] bonus; + private String examine; + private int id; + private boolean stackable; + private String name; + private boolean noted; + private int equipId; + + public ItemPrice getPrice() { + return price; + } + + public int getEquipId() { + return equipId; + } + + public int[] getBonuses() { + return bonus; + } + + public int getBonus(int id) { + return bonus[id]; + } + + public String getExamine() { + return examine; + } + public int getId() { + return id; + } + + public String getName() { + return name; + } + + public boolean isNoted() { + return noted; + } + + public boolean isStackable() { + return stackable; + } + +} diff --git a/server508/src/com/rs2hd/model/LocalEntityList.java b/server508/src/com/rs2hd/model/LocalEntityList.java new file mode 100644 index 0000000..f6f27c0 --- /dev/null +++ b/server508/src/com/rs2hd/model/LocalEntityList.java @@ -0,0 +1,34 @@ +package com.rs2hd.model; + +import com.rs2hd.Constants; + +/** + * Handles local entities. + * @author Graham + * + */ +public class LocalEntityList { + + protected int playerListSize; + protected Player[] playerList; + protected byte[] playersInList; + + protected int npcListSize; + protected NPC[] npcList; + protected byte[] npcsInList; + + protected boolean rebuildNpcList; + + public LocalEntityList() { + playerList = new Player[Constants.PLAYER_CAP+1]; + playersInList = new byte[Constants.PLAYER_CAP+1]; + playerListSize = 0; + + npcList = new NPC[Constants.NPC_CAP+1]; + npcsInList = new byte[Constants.NPC_CAP+1]; + npcListSize = 0; + + rebuildNpcList = false; + } + +} diff --git a/server508/src/com/rs2hd/model/Location.java b/server508/src/com/rs2hd/model/Location.java new file mode 100644 index 0000000..02ad531 --- /dev/null +++ b/server508/src/com/rs2hd/model/Location.java @@ -0,0 +1,113 @@ +package com.rs2hd.model; + +/** + * Represents a location in the world. + * + * Immutable. + * @author Graham + * + */ +public class Location implements Cloneable { + + private int x, y, z; + + private Location(int x, int y, int z) { + this.x = x; + this.y = y; + this.z = z; + } + + public int getX() { + return x; + } + + public int getY() { + return y; + } + + public int getZ() { + return z; + } + + public int getLocalX() { + return x - 8 * (getRegionX() - 6); + } + + public int getLocalY() { + return y - 8 * (getRegionY() - 6); + } + + public int getLocalX(Location loc) { + return x - 8 * (loc.getRegionX() - 6); + } + + public int getLocalY(Location loc) { + return y - 8 * (loc.getRegionY() - 6); + } + + public int getRegionX() { + return (x >> 3); + } + + public int getRegionY() { + return (y >> 3); + } + + public static Location location(int x, int y, int z) { + return new Location(x, y, z); + } + + @Override + public int hashCode() { + return z << 30 | x << 15 | y; + } + + @Override + public boolean equals(Object other) { + if(!(other instanceof Location)) { + return false; + } + Location loc = (Location) other; + return loc.x == x && loc.y == y && loc.z == z; + } + + @Override + public String toString() { + return "["+x+","+y+","+z+"]"; + } + + public boolean withinDistance(Location other, int dist) { + if(other.z != z) { + return false; + } + int deltaX = other.x - x, deltaY = other.y - y; + return (deltaX <= (dist) && deltaX >= (0-dist-1) && deltaY <= (dist) && deltaY >= (0-dist-1)); + } + + public boolean withinDistance(Location other) { + if(other.z != z) { + return false; + } + int deltaX = other.x - x, deltaY = other.y - y; + return deltaX <= 14 && deltaX >= -15 && deltaY <= 14 && deltaY >= -15; + } + + public boolean withinInteractionDistance(Location l) { + return withinDistance(l, 3); + } + + public static int wildernessLevel(Location l) { + int y = l.getY(); + if(y > 3520 && y < 4000) { + return (((int)(Math.ceil((double)(y)-3520D)/8D)+1)); + } + return 0; + } + + public double getDistance(Location other) { + int xdiff = this.getX() - other.getX(); + int ydiff = this.getY() - other.getY(); + return Math.sqrt(xdiff*xdiff + ydiff*ydiff); + } + +} diff --git a/server508/src/com/rs2hd/model/NPC.java b/server508/src/com/rs2hd/model/NPC.java new file mode 100644 index 0000000..cffe21f --- /dev/null +++ b/server508/src/com/rs2hd/model/NPC.java @@ -0,0 +1,322 @@ +package com.rs2hd.model; + +import java.util.LinkedList; +import java.util.Queue; + +import com.rs2hd.content.DeathEvent; +import com.rs2hd.content.Combat.CombatType; +import com.rs2hd.model.Hits.Hit; +import com.rs2hd.model.NPCDrop.Drop; +import com.rs2hd.util.Misc; + +/** + * Represents a 'non-player' character in the game. + * @author Graham + * + */ +public class NPC extends Entity { + + public static enum WalkType { + STATIC, + RANGE, + } + + private int id; + private transient NPCDefinition definition; + private transient NPCUpdateFlags updateFlags; + private transient int sprite; + private transient int hp; + private transient Queue queuedHits; + private WalkType walkType; + private transient Location originalLocation; + private Location minimumCoords = Location.location(0, 0, 0); + private Location maximumCoords = Location.location(0, 0, 0); + + public NPC(int id) { + this.id = id; + this.definition = NPCDefinition.forId(id); + this.setWalkType(WalkType.STATIC); + } + + public void tick() { + sprite = -1; + if(!this.isAttacking() && Math.random() > 0.8 && walkType == WalkType.RANGE) { + int moveX = (int) (Math.floor((Math.random() * 3)) - 1); + int moveY = (int) (Math.floor((Math.random() * 3)) - 1); + int tgtX = this.getLocation().getX() + moveX; + int tgtY = this.getLocation().getY() + moveY; + sprite = Misc.direction(this.getLocation().getX(), this.getLocation().getY(), tgtX, tgtY); + if(tgtX > this.maximumCoords.getX() || tgtX < this.minimumCoords.getX() || tgtY > this.maximumCoords.getY() || tgtY < this.minimumCoords.getY()) { + sprite = -1; + } + if(sprite != -1) { + sprite >>= 1; + this.setLocation(Location.location(tgtX, tgtY, this.getLocation().getZ())); + } + } + } + + public int getId() { + return id; + } + + public int getSprite() { + return sprite; + } + + public NPCDefinition getDefinition() { + return definition; + } + + public Object readResolve() { + super.readResolve(); + definition = NPCDefinition.forId(id); + updateFlags = new NPCUpdateFlags(); + sprite = -1; + hp = definition.getHitpoints(); + this.queuedHits = new LinkedList(); + this.originalLocation = this.getLocation(); + return this; + } + + public void processQueuedHits() { + if(!updateFlags.isHit1UpdateRequired()) { + if(queuedHits.size() > 0) { + Hit h = queuedHits.poll(); + hit(h.getDamage(), h.getType()); + } + } + if(!updateFlags.isHit2UpdateRequired()) { + if(queuedHits.size() > 0) { + Hit h = queuedHits.poll(); + hit(h.getDamage(), h.getType()); + } + } + } + + public NPCUpdateFlags getUpdateFlags() { + return updateFlags; + } + + /** + * @param minimumCoords the minimumCoords to set + */ + public void setMinimumCoords(Location minimumCoords) { + this.minimumCoords = minimumCoords; + } + + /** + * @return the minimumCoords + */ + public Location getMinimumCoords() { + return minimumCoords; + } + + /** + * @param walkType the walkType to set + */ + public void setWalkType(WalkType walkType) { + this.walkType = walkType; + } + + /** + * @return the walkType + */ + public WalkType getWalkType() { + return walkType; + } + + /** + * @param maximumCoords the maximumCoords to set + */ + public void setMaximumCoords(Location maximumCoords) { + this.maximumCoords = maximumCoords; + } + + /** + * @return the maximumCoords + */ + public Location getMaximumCoords() { + return maximumCoords; + } + + public void heal(int amount) { + this.hp += amount; + if(hp >= this.getDefinition().getHitpoints()) { + hp = this.getDefinition().getHitpoints(); + } + } + + public void hit(int damage) { + if(damage == 0) { + hit(damage, Hits.HitType.NO_DAMAGE); + } else { + hit(damage, Hits.HitType.NORMAL_DAMAGE); + } + } + + public void hit(int damage, Hits.HitType type) { + if(damage > hp) { + damage = hp; + } + if(!updateFlags.isHit1UpdateRequired()) { + getHits().setHit1(new Hit(damage, type)); + updateFlags.setHit1UpdateRequired(true); + } else { + if(!updateFlags.isHit2UpdateRequired()) { + getHits().setHit2(new Hit(damage, type)); + updateFlags.setHit2UpdateRequired(true); + } else { + queuedHits.add(new Hit(damage, type)); + } + } + hp -= damage; + if(hp <= 0) { + hp = 0; + if(!this.isDead()) { + World.getInstance().registerEvent(new DeathEvent(this)); + } + this.setDead(true); + } + } + + @Override + public void turnTo(Entity entity) { + this.getUpdateFlags().setFaceToUpdateRequired(true, entity.getClientIndex()); + } + + @Override + public void turnTemporarilyTo(Entity entity) { + this.getUpdateFlags().setFaceToUpdateRequired(true, entity.getClientIndex()); + this.getUpdateFlags().setClearFaceTo(true); + } + + @Override + public void resetTurnTo() { + this.getUpdateFlags().setFaceToUpdateRequired(true, 0); + } + + public void graphics(int id) { + graphics(id, 0); + } + + public void graphics(int id, int delay) { + this.setLastGraphics(new Graphics(id, delay)); + updateFlags.setGraphicsUpdateRequired(true); + } + + public void animate(int id) { + animate(id, 0); + } + + public void animate(int id, int delay) { + this.setLastAnimation(new Animation(id, delay)); + updateFlags.setAnimationUpdateRequired(true); + } + + public int getHitpoints() { + return hp; + } + + @Override + public int getAttackAnimation() { + return this.getDefinition().getAttackAnimation(); + } + + @Override + public int getAttackSpeed() { + return this.getDefinition().getAttackSpeed(); + } + + @Override + public int getMaxHit() { + return this.getDefinition().getMaxHit(); + } + + @Override + public int getDefenceAnimation() { + return this.getDefinition().getDefenceAnimation(); + } + + @Override + public boolean isAnimating() { + return this.getUpdateFlags().isAnimationUpdateRequired(); + } + + @Override + public boolean isDestroyed() { + return !World.getInstance().getNpcList().contains(this); + } + + @Override + public int getDeathAnimation() { + return this.getDefinition().getDeathAnimation(); + } + + public Location getOriginalLocation() { + return this.originalLocation; + } + + @Override + public int getHp() { + return hp; + } + + @Override + public int getMaxHp() { + return this.definition.getHitpoints(); + } + + @Override + public void setHp(int val) { + hp = val; + } + + @Override + public void dropLoot() { + Entity killer = this.getKiller(); + Player p = killer instanceof Player ? (Player) killer : null; + NPCDrop drop = NPCDrop.forId(definition.getId()); + if(drop == null) { + return; + } + for(Drop d : drop.getDrops()) { + int random = (int) Math.ceil(Math.random() * 100D); + if(d.getChance() >= random) { + for(Item i : d.getItems()) { + if(p == null) { + World.getInstance().getItemManager().createGroundItem(this.getLocation(), (Item) i.clone()); + } else { + World.getInstance().getItemManager().createDropGroundItem(p, this.getLocation(), (Item) i.clone()); + } + } + } + } + } + + @Override + public boolean isAutoRetaliating() { + return this.definition.getHitpoints() > 0; + } + + @Override + public CombatType getCombatType() { + return CombatType.MELEE; + } + + @Override + public int getDrawBackGraphics() { + return 18; // TODO atm bronze arrow + } + + @Override + public int getProjectileId() { + return 10; // TODO atm bronze(?) arrow + } + + @Override + public boolean hasAmmo() { + return true; + } + +} \ No newline at end of file diff --git a/server508/src/com/rs2hd/model/NPCDefinition.java b/server508/src/com/rs2hd/model/NPCDefinition.java new file mode 100644 index 0000000..38c1663 --- /dev/null +++ b/server508/src/com/rs2hd/model/NPCDefinition.java @@ -0,0 +1,102 @@ +package com.rs2hd.model; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import com.rs2hd.util.XStreamUtil; +import com.rs2hd.util.log.Logger; + +/** + * Represents a type of NPC. + * @author Graham + * + */ +public class NPCDefinition { + + private static Logger logger = Logger.getInstance(); + + private static Map definitions; + + @SuppressWarnings("unchecked") + public static void load() throws FileNotFoundException { + List defs = (List) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/npcDefinitions.xml")); + definitions = new HashMap(); + for(NPCDefinition def : defs) { + definitions.put(def.getId(), def); + } + logger.info("Loaded " + definitions.size() + " npc definitions."); + NPCDrop.load(); + } + + public static NPCDefinition forId(int id) { + NPCDefinition d = definitions.get(id); + if(d == null) { + d = produceDefinition(id); + } + return d; + } + + private int id; + private String name, examine; + private int respawn = 0, combat = 0, hitpoints = 1, maxHit = 0, size = 1, attackSpeed = 8, attackAnim = 422, defenceAnim = 404, deathAnim = 7197; + + public int getId() { + return id; + } + + public String getName() { + return name; + } + + public String getExamine() { + return examine; + } + + public int getRespawn() { + return respawn; + } + + public int getCombat() { + return combat; + } + + public int getHitpoints() { + return hitpoints; + } + + public int getMaxHit() { + return maxHit; + } + + public int getSize() { + return size; + } + + public static NPCDefinition produceDefinition(int id) { + NPCDefinition def = new NPCDefinition(); + def.id = id; + def.name = "NPC #" + def.id; + def.examine = "It's an NPC."; + return def; + } + + public int getAttackSpeed() { + return attackSpeed; + } + + public int getAttackAnimation() { + return attackAnim; + } + + public int getDefenceAnimation() { + return defenceAnim; + } + + public int getDeathAnimation() { + return deathAnim; + } + +} diff --git a/server508/src/com/rs2hd/model/NPCDrop.java b/server508/src/com/rs2hd/model/NPCDrop.java new file mode 100644 index 0000000..08b6e85 --- /dev/null +++ b/server508/src/com/rs2hd/model/NPCDrop.java @@ -0,0 +1,52 @@ +package com.rs2hd.model; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import com.rs2hd.util.XStreamUtil; +import com.rs2hd.util.log.Logger; + +public class NPCDrop { + + public static Map npcDrops = new HashMap(); + @SuppressWarnings("unchecked") + public static void load() throws FileNotFoundException { + List list = (List) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/npcDrops.xml")); + for(NPCDrop drop : list) { + npcDrops.put(drop.getNpc(), drop); + } + Logger.getInstance().info("Loaded " + npcDrops.size() + " npc drops."); + } + + public static NPCDrop forId(int id) { + return npcDrops.get(id); + } + + public class Drop { + private int chance; + private Item[] items; + + public int getChance() { + return chance; + } + + public Item[] getItems() { + return items; + } + } + + private int npc; + private Drop[] drops; + + public int getNpc() { + return npc; + } + + public Drop[] getDrops() { + return drops; + } + +} diff --git a/server508/src/com/rs2hd/model/NPCUpdateFlags.java b/server508/src/com/rs2hd/model/NPCUpdateFlags.java new file mode 100644 index 0000000..26c3594 --- /dev/null +++ b/server508/src/com/rs2hd/model/NPCUpdateFlags.java @@ -0,0 +1,85 @@ +package com.rs2hd.model; + +/** + * NPC update flags. + * @author Graham + * + */ +public class NPCUpdateFlags { + + private boolean graphicsUpdateRequired = false, animationUpdateRequired = false, hit1UpdateRequired = false, hit2UpdateRequired = false, faceToUpdateRequired = false; + private boolean clearFaceTo = false; + + public boolean isClearFaceTo() { + return clearFaceTo; + } + + public void setClearFaceTo(boolean b) { + this.clearFaceTo = b; + } + + private int faceTo = -1; + + public boolean isUpdateRequired() { + return animationUpdateRequired || hit1UpdateRequired || hit2UpdateRequired || faceToUpdateRequired || graphicsUpdateRequired; + } + + public void setAnimationUpdateRequired(boolean b) { + this.animationUpdateRequired = b; + } + + public boolean isAnimationUpdateRequired() { + return animationUpdateRequired; + } + + public void setHit1UpdateRequired(boolean b) { + this.hit1UpdateRequired = b; + } + + public boolean isHit1UpdateRequired() { + return hit1UpdateRequired; + } + + public void setHit2UpdateRequired(boolean b) { + this.hit1UpdateRequired = b; + } + + public boolean isHit2UpdateRequired() { + return hit2UpdateRequired; + } + + public boolean isFaceToUpdateRequired() { + return faceToUpdateRequired; + } + + public void setFaceToUpdateRequired(boolean b) { + this.faceToUpdateRequired = b; + } + + public void setFaceToUpdateRequired(boolean b, int i) { + this.faceToUpdateRequired = b; + this.faceTo = i; + } + + public int getFaceTo() { + return faceTo; + } + + public void clear() { + animationUpdateRequired = false; + faceTo = -1; + faceToUpdateRequired = false; + hit1UpdateRequired = false; + hit2UpdateRequired = false; + graphicsUpdateRequired = false; + } + + public void setGraphicsUpdateRequired(boolean b) { + graphicsUpdateRequired = b; + } + + public boolean isGraphicsUpdateRequired() { + return graphicsUpdateRequired; + } + +} diff --git a/server508/src/com/rs2hd/model/Player.java b/server508/src/com/rs2hd/model/Player.java new file mode 100644 index 0000000..530e6a5 --- /dev/null +++ b/server508/src/com/rs2hd/model/Player.java @@ -0,0 +1,540 @@ +package com.rs2hd.model; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.Queue; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.content.DeathEvent; +import com.rs2hd.content.Combat.CombatType; +import com.rs2hd.model.Hits.Hit; +import com.rs2hd.net.ActionSender; +import com.rs2hd.net.Packet; +import com.rs2hd.packethandler.PacketHandlers; + +/** + * Represents a connected player. + * @author Graham + * + */ +public class Player extends Entity { + + private PlayerDetails details; + private transient ActionSender actionSender; + private transient Queue queuedPackets; + private transient PlayerUpdateFlags updateFlags; + private transient Sprite sprite; + private transient WalkingQueue walkingQueue; + private transient LocalEntityList localEntities; + private transient ChatMessage lastChatMessage; + private transient int world; + private transient Map temporaryAttributes; + private transient Queue queuedHits; + private transient Bonuses bonuses; + private transient boolean hd; + private transient ShopConfiguration shopConfiguration; + private transient int lastKnownWildernessLevel; + private transient boolean busy; + private Bank bank; + private Settings settings; + private Appearance appearance; + private HeadIcons headIcons; + private Equipment equipment; + private Skills skills; + private Inventory inventory; + private Friends friends; + private Specials specials; + private int rights = 0; + private int runEnergy = 100; + + public Player(PlayerDetails details) { + this.details = details; + this.appearance = new Appearance(); + this.headIcons = new HeadIcons(); + this.equipment = new Equipment(); + this.skills = new Skills(); + this.inventory = new Inventory(); + this.friends = new Friends(); + this.settings = new Settings(); + this.bank = new Bank(); + this.settings.setDefaultSettings(); + this.specials = new Specials(); + } + + /** + * Called when XStream loads us. + * + * NOTE: other loaders should call this also. + */ + public Object readResolve() { + super.readResolve(); + actionSender = new ActionSender(this); + queuedPackets = new LinkedList(); + updateFlags = new PlayerUpdateFlags(); + sprite = new Sprite(); + walkingQueue = new WalkingQueue(this); + skills.setPlayer(this); + inventory.setPlayer(this); + bank.setPlayer(this); + equipment.setPlayer(this); + friends.setPlayer(this); + localEntities = new LocalEntityList(); + settings.setPlayer(this); + specials.setPlayer(this); + temporaryAttributes = new HashMap(); + lastChatMessage = null; + world = 66; + details.refreshLongName(); + queuedHits = new LinkedList(); + bonuses = new Bonuses(this); + hd = false; + shopConfiguration = new ShopConfiguration(); + lastKnownWildernessLevel = -1; + busy = false; + return this; + } + + public boolean isBusy() { + return busy; + } + + public void setBusy(boolean b) { + this.busy = b; + if(busy) { + this.setAttacking(false); + } + } + + /** + * Called roughly every 500ms. + */ + public void tick() { + + } + + public void setTemporaryAttribute(String attribute, Object value) { + temporaryAttributes.put(attribute, value); + } + + public Object getTemporaryAttribute(String attribute) { + return temporaryAttributes.get(attribute); + } + + public void removeTemporaryAttribute(String attribute) { + temporaryAttributes.remove(attribute); + } + + public Settings getSettings() { + return this.settings; + } + + public PlayerDetails getPlayerDetails() { + return this.details; + } + + public ActionSender getActionSender() { + return this.actionSender; + } + + public IoSession getSession() { + return this.details.getSession(); + } + + public String getUsername() { + return this.details.getUsername(); + } + + public int getRights() { + return this.rights; + } + + public void processQueuedPackets() { + synchronized(queuedPackets) { + Packet p = null; + while((p = queuedPackets.poll()) != null) { + PacketHandlers.handlePacket(getSession(), p); + } + } + } + + public void addPacketToQueue(Packet p) { + synchronized(queuedPackets) { + queuedPackets.add(p); + } + } + + public PlayerUpdateFlags getUpdateFlags() { + return updateFlags; + } + + public Sprite getSprites() { + return sprite; + } + + public Appearance getAppearance() { + return appearance; + } + + public HeadIcons getHeadIcons() { + return headIcons; + } + + public Equipment getEquipment() { + return equipment; + } + + public WalkingQueue getWalkingQueue() { + return walkingQueue; + } + + public Skills getSkills() { + return skills; + } + + public boolean isDisconnected() { + return !getSession().isConnected(); + } + + public void setPlayerListSize(int playerListSize) { + localEntities.playerListSize = playerListSize; + } + + public int getPlayerListSize() { + return localEntities.playerListSize; + } + + public void setPlayerList(Player[] playerList) { + localEntities.playerList = playerList; + } + + public Player[] getPlayerList() { + return localEntities.playerList; + } + + public void setPlayersInList(byte[] playersInList) { + localEntities.playersInList = playersInList; + } + + public byte[] getPlayersInList() { + return localEntities.playersInList; + } + + + + public void setNpcListSize(int npcListSize) { + localEntities.npcListSize = npcListSize; + } + + public int getNpcListSize() { + return localEntities.npcListSize; + } + + public void setNpcList(NPC[] npcList) { + localEntities.npcList = npcList; + } + + public NPC[] getNpcList() { + return localEntities.npcList; + } + + public void setNpcsInList(byte[]npcsInList) { + localEntities.npcsInList = npcsInList; + } + + public byte[] getNpcsInList() { + return localEntities.npcsInList; + } + + public Inventory getInventory() { + return inventory; + } + + public ChatMessage getLastChatMessage() { + return lastChatMessage; + } + + public void setLastChatMessage(ChatMessage msg) { + lastChatMessage = msg; + } + + public int getWorld() { + return world; + } + + public Friends getFriends() { + return friends; + } + + public boolean isRebuildNpcList() { + return localEntities.rebuildNpcList; + } + + public void graphics(int id) { + graphics(id, 0); + } + + public void graphics(int id, int delay) { + this.setLastGraphics(new Graphics(id, delay)); + updateFlags.setGraphicsUpdateRequired(true); + } + + public void animate(int id) { + animate(id, 0); + } + + public void animate(int id, int delay) { + this.setLastAnimation(new Animation(id, delay)); + updateFlags.setAnimationUpdateRequired(true); + } + + public void setRebuildNpcList(boolean b) { + this.localEntities.rebuildNpcList = true; + } + + public void processQueuedHits() { + if(!updateFlags.isHitUpdateRequired()) { + if(queuedHits.size() > 0) { + Hit h = queuedHits.poll(); + hit(h.getDamage(), h.getType()); + } + } + if(!updateFlags.isHit2UpdateRequired()) { + if(queuedHits.size() > 0) { + Hit h = queuedHits.poll(); + hit(h.getDamage(), h.getType()); + } + } + } + + public void heal(int amount) { + skills.heal(amount); + } + + public void hit(int damage) { + if(damage == 0) { + hit(damage, Hits.HitType.NO_DAMAGE); + } else { + hit(damage, Hits.HitType.NORMAL_DAMAGE); + } + } + + public void hit(int damage, Hits.HitType type) { + int hp = this.getSkills().getLevelForXp(Skills.HITPOINTS); + if(damage > hp) { + damage = hp; + } + if(!updateFlags.isHitUpdateRequired()) { + getHits().setHit1(new Hit(damage, type)); + updateFlags.setHitUpdateRequired(true); + } else { + if(!updateFlags.isHit2UpdateRequired()) { + getHits().setHit2(new Hit(damage, type)); + updateFlags.setHit2UpdateRequired(true); + } else { + queuedHits.add(new Hit(damage, type)); + } + } + skills.hit(damage); + if(skills.getLevel(Skills.HITPOINTS) <= 0) { + if(!this.isDead()) { + World.getInstance().registerEvent(new DeathEvent(this)); + } + this.setDead(true); + } + } + + public Bank getBank() { + return bank; + } + + public void setRunEnergy(int runEnergy) { + this.runEnergy = runEnergy; + actionSender.sendEnergy(); + } + + public int getRunEnergy() { + return this.runEnergy; + } + + public Bonuses getBonuses() { + return this.bonuses; + } + + public void setHd(boolean b) { + this.hd = b; + if(b) { + this.getActionSender().sendHdLogin(); + } + } + + public boolean isHd() { + return hd; + } + + public void turnTo(Entity entity) { + this.getUpdateFlags().setFaceToUpdateRequired(true, entity.getClientIndex()); + } + + public void turnTemporarilyTo(Entity entity) { + this.getUpdateFlags().setFaceToUpdateRequired(true, entity.getClientIndex()); + this.getUpdateFlags().setClearFaceTo(true); + } + + public ShopConfiguration getShopConfiguration() { + return shopConfiguration; + } + + @Override + public void resetTurnTo() { + this.getUpdateFlags().setFaceToUpdateRequired(true, 0); + } + + @Override + public int getAttackAnimation() { + return !this.appearance.isNpc() ? equipment.getAttackAnimation() : NPCDefinition.forId(this.appearance.getNpcId()).getAttackAnimation(); + } + + @Override + public int getAttackSpeed() { + return equipment.getAttackSpeed(); + } + + @Override + public int getMaxHit() { + double maxHit = 0; + if(this.getCombatType().equals(CombatType.MELEE)) { + int strBonus = bonuses.getBonus(10); + int strength = skills.getLevel(Skills.STRENGTH); + int fightType = this.getAttackStyle(); + if(fightType == 1 || fightType == 4) { + maxHit += (double) (1.05 + (double) ((double) (strBonus * strength) * 0.00175)); + } else if(fightType == 2) { + maxHit += (double) (1.35 + (double) ((double) (strBonus) * 0.00525)); + } else if(fightType == 3){ + maxHit += (double) (1.15 + (double) ((double) (strBonus) * 0.00175)); + } + maxHit += (double)(strength * 0.1); + } else if(this.getCombatType().equals(CombatType.RANGE)) { + int range = skills.getLevel(Skills.RANGE); + int rangeBonus = bonuses.getBonus(4); + double d = ((double) (rangeBonus * 0.00175D) + 0.1D); + maxHit += d * (double) range + 2.05D; + } else { + // todo mage + } + return ((int) (Math.ceil(maxHit)) + 1); + } + + @Override + public int getDefenceAnimation() { + return !this.appearance.isNpc() ? equipment.getDefenceAnimation() : NPCDefinition.forId(this.appearance.getNpcId()).getDefenceAnimation(); + } + + @Override + public boolean isAnimating() { + return this.getUpdateFlags().isAnimationUpdateRequired(); + } + + @Override + public boolean isDestroyed() { + return !World.getInstance().getPlayerList().contains(this); + } + + @Override + public int getDeathAnimation() { + return !this.appearance.isNpc() ? 7197 : NPCDefinition.forId(this.appearance.getNpcId()).getDeathAnimation(); + } + + public void updateWildernessState() { + boolean update = false; + if(lastKnownWildernessLevel == -1) { + update = true; + } + int currentLevel = Location.wildernessLevel(this.getLocation()); + if(currentLevel != lastKnownWildernessLevel) { + update = true; + } + if(update) { + lastKnownWildernessLevel = currentLevel; + if(currentLevel == 0) { + actionSender.sendPlayerOption("null", 1, false); + actionSender.sendRemoveOverlay(); + } else { + actionSender.sendPlayerOption("Attack", 1, false); + actionSender.sendOverlay(381); + } + } + } + + @Override + public int getHp() { + return this.getSkills().getLevel(Skills.HITPOINTS); + } + + @Override + public int getMaxHp() { + return this.getSkills().getLevelForXp(Skills.HITPOINTS); + } + + @Override + public void setHp(int val) { + this.getSkills().set(Skills.HITPOINTS, val); + } + + @Override + public void dropLoot() { + List itemsInHand = new ArrayList(); + for(int i = 0; i < Inventory.SIZE; i++) { + Item item = this.getInventory().getContainer().get(i); + if(item != null) { + itemsInHand.add(item); + } + } + for(int i = 0; i < Equipment.SIZE; i++) { + Item item = this.getEquipment().getContainer().get(i); + if(item != null) { + itemsInHand.add(item); + } + } + if(this.getHeadIcons().isSkulled()) { + + } + } + + public Specials getSpecials() { + return specials; + } + + @Override + public boolean isAutoRetaliating() { + return settings.isAutoRetaliate(); + } + + @Override + public CombatType getCombatType() { + if(equipment.isWieldindBow() || equipment.isWieldingKnives()) { + return CombatType.RANGE; + } + return CombatType.MELEE; + } + + @Override + public int getDrawBackGraphics() { + return equipment.getDrawBackGraphics(); + } + + @Override + public int getProjectileId() { + return equipment.getProjectileId(); + } + + @Override + public boolean hasAmmo() { + return equipment.hasAmmo(); + } + +} diff --git a/server508/src/com/rs2hd/model/PlayerDetails.java b/server508/src/com/rs2hd/model/PlayerDetails.java new file mode 100644 index 0000000..6aa033f --- /dev/null +++ b/server508/src/com/rs2hd/model/PlayerDetails.java @@ -0,0 +1,65 @@ +package com.rs2hd.model; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.util.Misc; + +/** + * Contains a player's name and password. + * @author Graham + * + */ +public class PlayerDetails { + + private String username; + private transient String displayName = null; + private String password; + private transient IoSession session; + private transient boolean hd; + private transient long longName; + + public PlayerDetails(String username, String password, IoSession session, boolean hd) { + this.username = Misc.formatPlayerNameForProtocol(username); + this.displayName = Misc.formatPlayerNameForDisplay(username); + this.password = password; + this.session = session; + this.longName = Misc.playerNameToLong(username); + this.hd = hd; + } + + public boolean isHd() { + return hd; + } + + public void refreshLongName() { + this.longName = Misc.playerNameToLong(username); + } + + public long getUsernameAsLong() { + return longName; + } + + public String getUsername() { + return username; + } + + public String getDisplayName() { + if(displayName == null) { + displayName = Misc.formatPlayerNameForDisplay(username); + } + return displayName; + } + + public String getPassword() { + return password; + } + + public IoSession getSession() { + return session; + } + + public void setSession(IoSession session) { + this.session = session; + } + +} diff --git a/server508/src/com/rs2hd/model/PlayerUpdateFlags.java b/server508/src/com/rs2hd/model/PlayerUpdateFlags.java new file mode 100644 index 0000000..1c2f5fa --- /dev/null +++ b/server508/src/com/rs2hd/model/PlayerUpdateFlags.java @@ -0,0 +1,131 @@ +package com.rs2hd.model; + +/** + * Manages update flags. + * @author Graham + * + */ +public class PlayerUpdateFlags { + + private Location lastRegion; + private boolean faceToUpdateRequired = false, appearanceUpdateRequired = true, chatTextUpdateRequired = false, animationUpdateRequired = false, graphicsUpdateRequired = false, hitUpdateRequired = false, hit2UpdateRequired = false; + private boolean didTeleport = true, didMapRegionChange = false; + private boolean clearFaceTo = false; + + private int faceTo = -1; + + public boolean isClearFaceTo() { + return clearFaceTo; + } + + public Location getLastRegion() { + return lastRegion; + } + + public void setLastRegion(Location lastRegion) { + this.lastRegion = lastRegion; + } + + public boolean isUpdateRequired() { + return faceToUpdateRequired || appearanceUpdateRequired || chatTextUpdateRequired || animationUpdateRequired || graphicsUpdateRequired || hitUpdateRequired || hit2UpdateRequired; + } + + public void setFaceToUpdateRequired(boolean b) { + faceToUpdateRequired = b; + } + + public void setFaceToUpdateRequired(boolean b, int i) { + faceToUpdateRequired = b; + faceTo = i; + } + + public boolean isFaceToUpdateRequired() { + return faceToUpdateRequired; + } + + public int getFaceTo() { + return faceTo; + } + + public void clear() { + faceTo = -1; + faceToUpdateRequired = false; + appearanceUpdateRequired = false; + didTeleport = false; + didMapRegionChange = false; + chatTextUpdateRequired = false; + animationUpdateRequired = false; + graphicsUpdateRequired = false; + hitUpdateRequired = false; + hit2UpdateRequired = false; + } + + public boolean isAppearanceUpdateRequired() { + return appearanceUpdateRequired; + } + + public boolean isGraphicsUpdateRequired() { + return graphicsUpdateRequired; + } + + public void setGraphicsUpdateRequired(boolean b) { + this.graphicsUpdateRequired = b; + } + + public boolean didTeleport() { + return didTeleport; + } + + public boolean didMapRegionChange() { + return didMapRegionChange; + } + + public void setDidMapRegionChange(boolean didMapRegionChange) { + this.didMapRegionChange = didMapRegionChange; + } + + public void setDidTeleport(boolean didTeleport) { + this.didTeleport = didTeleport; + } + + public void setAppearanceUpdateRequired(boolean b) { + appearanceUpdateRequired = b; + } + + public void setChatTextUpdateRequired(boolean b) { + chatTextUpdateRequired = b; + } + + public boolean isChatTextUpdateRequired() { + return chatTextUpdateRequired; + } + + public void setAnimationUpdateRequired(boolean b) { + this.animationUpdateRequired = b; + } + + public boolean isAnimationUpdateRequired() { + return this.animationUpdateRequired; + } + + public void setHitUpdateRequired(boolean b) { + this.hitUpdateRequired = b; + } + + public boolean isHitUpdateRequired() { + return this.hitUpdateRequired; + } + + public void setHit2UpdateRequired(boolean b) { + this.hit2UpdateRequired = b; + } + + public boolean isHit2UpdateRequired() { + return this.hit2UpdateRequired; + } + + public void setClearFaceTo(boolean b) { + this.clearFaceTo = b; + } + +} diff --git a/server508/src/com/rs2hd/model/Settings.java b/server508/src/com/rs2hd/model/Settings.java new file mode 100644 index 0000000..afecf34 --- /dev/null +++ b/server508/src/com/rs2hd/model/Settings.java @@ -0,0 +1,81 @@ +package com.rs2hd.model; + +/** + * Settings. + * @author Graham + * + */ +public class Settings { + + private boolean chat = true, split = false, mouse = true, aid = false; + private boolean hideDeathInterface = false, autoRetaliate = true; + private transient Player player; + + public void setDefaultSettings() { + chat = true; + split = false; + mouse = true; + aid = false; + } + + public void setPlayer(Player player) { + this.player = player; + } + + public void refresh() { + player.getActionSender().sendConfig(171, !chat ? 1 : 0); + player.getActionSender().sendConfig(287, split? 1 : 0); + player.getActionSender().sendConfig(170, !mouse ? 1 : 0); + player.getActionSender().sendConfig(427, aid ? 1 : 0); + player.getActionSender().sendConfig(172, !autoRetaliate ? 1 : 0); + } + + public boolean isHidingDeathInterface() { + return hideDeathInterface; + } + + public void setHideDeathInterface(boolean b) { + this.hideDeathInterface = b; + } + + public boolean isMouseTwoButtons() { + return mouse; + } + + public boolean isChatEffectsEnabled() { + return chat; + } + + public boolean isPrivateChatSplit() { + return split; + } + + public boolean isAcceptAidEnabled() { + return aid; + } + + public void setMouseTwoButtons(boolean mouse) { + this.mouse = mouse; + } + + public void setChatEffectsEnabled(boolean chat) { + this.chat = chat; + } + + public void setPrivateChatSplit(boolean split) { + this.split = split; + } + + public void setAcceptAidEnabled(boolean aid) { + this.aid = aid; + } + + public boolean isAutoRetaliate() { + return this.autoRetaliate; + } + + public void setAutoRetaliate(boolean retaliate) { + this.autoRetaliate = retaliate; + } + +} diff --git a/server508/src/com/rs2hd/model/Shop.java b/server508/src/com/rs2hd/model/Shop.java new file mode 100644 index 0000000..b5e07bb --- /dev/null +++ b/server508/src/com/rs2hd/model/Shop.java @@ -0,0 +1,74 @@ +package com.rs2hd.model; + +/** + * Represents a shop. + * @author Graham + * + */ +public class Shop { + + public static final int SIZE = 500; + private String name; + private boolean isGeneralStore; + private Container stock = new Container(SIZE, false); + private transient Container mainStock; + private transient Container playerStock; + private transient boolean isUpdateRequired; + + public Shop() { + } + + public void refresh(Player player) { + player.getActionSender().sendItems(-1, 64209, 93, player.getInventory().getContainer()); + if(player.getShopConfiguration().isInMainStock()) { + player.getActionSender().sendItems(-1, 64285, 17, mainStock.asItemContainer()); + } else { + player.getActionSender().sendItems(-1, 64285, 17, playerStock.asItemContainer()); + } + } + + public Object readResolve() { + isUpdateRequired = false; + mainStock = new Container(SIZE, false); + playerStock = new Container(SIZE, true); + int idx = 0; + for(Item i : stock.getItems()) { + mainStock.set(idx++, new ShopItem(i.getId(), 1)); + } + if(!isGeneralStore) { + for(Item i : stock.getItems()) { + playerStock.set(idx++, new ShopItem(i.getId(), 0)); + } + } + return this; + } + + public void updateAmounts() { + + } + + public boolean isUpdateRequired() { + return this.isUpdateRequired; + } + + public void setUpdateRequired(boolean b) { + this.isUpdateRequired = b; + } + + public String getName() { + return name; + } + + public boolean isGeneralStore() { + return isGeneralStore; + } + + public Container getMainStock() { + return mainStock; + } + + public Container getPlayerStock() { + return playerStock; + } + +} diff --git a/server508/src/com/rs2hd/model/ShopConfiguration.java b/server508/src/com/rs2hd/model/ShopConfiguration.java new file mode 100644 index 0000000..4e36c0b --- /dev/null +++ b/server508/src/com/rs2hd/model/ShopConfiguration.java @@ -0,0 +1,32 @@ +package com.rs2hd.model; + +public class ShopConfiguration { + + private Shop currentShop = null; + private boolean isInMainStock = true; + + public Shop getCurrentShop() { + return currentShop; + } + + public boolean isShopping() { + return currentShop != null; + } + + public void setCurrentShop(Shop shop) { + currentShop = shop; + } + + public void resetCurrentShop() { + currentShop = null; + } + + public boolean isInMainStock() { + return isInMainStock; + } + + public void setIsInMainStock(boolean b) { + isInMainStock = b; + } + +} diff --git a/server508/src/com/rs2hd/model/ShopItem.java b/server508/src/com/rs2hd/model/ShopItem.java new file mode 100644 index 0000000..955317f --- /dev/null +++ b/server508/src/com/rs2hd/model/ShopItem.java @@ -0,0 +1,32 @@ +package com.rs2hd.model; + +/** + * A shop item. + * @author Graham + * + */ +public class ShopItem extends Item { + + private int standardAmount = 0; + + public ShopItem(int id, int amount) { + super(id, amount); + this.standardAmount = amount; + } + + public int getStandardAmount() { + return standardAmount; + } + + public boolean updateAmount() { + if(getAmount() > standardAmount) { + setAmount(getAmount()-1); + return true; + } else if(getAmount() < standardAmount) { + setAmount(getAmount()+1); + return true; + } + return false; + } + +} diff --git a/server508/src/com/rs2hd/model/Skills.java b/server508/src/com/rs2hd/model/Skills.java new file mode 100644 index 0000000..9084552 --- /dev/null +++ b/server508/src/com/rs2hd/model/Skills.java @@ -0,0 +1,154 @@ +package com.rs2hd.model; + +import com.rs2hd.content.LevelUp; + +/** + * Manages the player's skills. + * @author Graham + * + */ +public class Skills { + + public static final int SKILL_COUNT = 24; + + private transient Player player; + + public static final double MAXIMUM_EXP = 200000000; + + private int level[] = new int[SKILL_COUNT]; + private double xp[] = new double[SKILL_COUNT]; + + public static final String[] SKILL_NAME = { + "Attack", "Defence", "Strength", "Hitpoints", "Range", "Prayer", + "Magic", "Cooking", "Woodcutting", "Fletching", "Fishing", "Firemaking", + "Crafting", "Smithing", "Mining", "Herblore", "Agility", "Thieving", "Slayer", + "Farming", "Runecrafting", "Construction", "Hunter", "Summoning", + }; + + public static final int ATTACK = 0, DEFENCE = 1, STRENGTH = 2, HITPOINTS = 3, RANGE = 4, PRAYER = 5, + MAGIC = 6, COOKING = 7, WOODCUTTING = 8, FLETCHING = 9, FISHING = 10, FIREMAKING = 11, + CRAFTING = 12, SMITHING = 13, MINING = 14, HERBLORE = 15, AGILITY = 16, THIEVING = 17, SLAYER = 18, + FARMING = 19, RUNECRAFTING = 20, CONSTRUCTION = 21, HUNTER = 22, SUMMONING = 23; + + public Skills() { + for(int i = 0; i < SKILL_COUNT; i++) { + level[i] = 1; + xp[i] = 0; + } + level[3] = 10; + xp[3] = 1184; + } + + public void hit(int hitDiff) { + level[3] -= hitDiff; + if(level[3] < 0) { + level[3] = 0; + } + player.getActionSender().sendSkillLevels(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + + public void heal(int hitDiff) { + level[3] += hitDiff; + int max = getLevelForXp(3); + if(level[3] > max) { + level[3] = max; + } + player.getActionSender().sendSkillLevels(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + + public void reset() { + for(int i = 0; i < SKILL_COUNT; i++) { + level[i] = 1; + xp[i] = 0; + } + level[3] = 10; + xp[3] = 1184; + player.getActionSender().sendSkillLevels(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + + public void forceReset() { + for(int i = 0; i < SKILL_COUNT; i++) { + level[i] = 1; + xp[i] = 0; + } + player.getActionSender().sendSkillLevels(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + + public int getCombatLevel() { + int attack = getLevelForXp(0); + int defence = getLevelForXp(1); + int strength = getLevelForXp(2); + int hp = getLevelForXp(3); + int prayer = getLevelForXp(5); + int ranged = getLevelForXp(4); + int magic = getLevelForXp(6); + int combatLevel = 3; + combatLevel = (int) ((defence + hp + Math.floor(prayer / 2)) * 0.25) + 1; + double melee = (attack + strength) * 0.325; + double ranger = Math.floor(ranged * 1.5) * 0.325; + double mage = Math.floor(magic * 1.5) * 0.325; + if (melee >= ranger && melee >= mage) { + combatLevel += melee; + } else if (ranger >= melee && ranger >= mage) { + combatLevel += ranger; + } else if (mage >= melee && mage >= ranger) { + combatLevel += mage; + } + int summoning = getLevelForXp(Skills.SUMMONING); + summoning /= 8; + return combatLevel + summoning; + } + + public void setPlayer(Player player) { + this.player = player; + } + + public int getLevel(int skill) { + return level[skill]; + } + + public double getXp(int skill) { + return xp[skill]; + } + + public int getLevelForXp(int skill) { + double exp = xp[skill]; + int points = 0; + int output = 0; + for(int lvl = 1; lvl < 100; lvl++) { + points += Math.floor((double)lvl + 300.0 * Math.pow(2.0, (double)lvl / 7.0)); + output = (int) Math.floor(points / 4); + if((output - 1) >= exp) { + return lvl; + } + } + return 99; + } + + public void addXp(int skill, double exp) { + int oldLevel = getLevelForXp(skill); + xp[skill] += exp; + if(xp[skill] > MAXIMUM_EXP) { + xp[skill] = MAXIMUM_EXP; + } + int newLevel = getLevelForXp(skill); + int levelDiff = newLevel - oldLevel; + if(newLevel > oldLevel) { + level[skill] += levelDiff; + LevelUp.levelUp(player, skill); + } + player.getActionSender().sendSkillLevel(skill); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + + public void set(int skill, int val) { + level[skill] = val; + player.getActionSender().sendSkillLevel(skill); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } + +} diff --git a/server508/src/com/rs2hd/model/Spawn.java b/server508/src/com/rs2hd/model/Spawn.java new file mode 100644 index 0000000..28270de --- /dev/null +++ b/server508/src/com/rs2hd/model/Spawn.java @@ -0,0 +1,16 @@ +package com.rs2hd.model; + +public class Spawn { + + private Location location; + private Item item; + + public Location getLocation() { + return location; + } + + public Item getItem() { + return item; + } + +} diff --git a/server508/src/com/rs2hd/model/Specials.java b/server508/src/com/rs2hd/model/Specials.java new file mode 100644 index 0000000..dcb863e --- /dev/null +++ b/server508/src/com/rs2hd/model/Specials.java @@ -0,0 +1,180 @@ +package com.rs2hd.model; + +public class Specials { + + private transient Player player; + private transient boolean active = false; + private int amount = 1000; + + public void setPlayer(Player player) { + this.player = player; + this.active = false; + } + + public void tick() { + boolean update = false; + if(amount < 1000) { + amount += 100; + update = true; + } + if(amount > 1000) { + amount = 1000; + update = true; + } + if(update) { + refresh(); + } + } + + public void refresh() { + player.getActionSender().sendConfig(300, amount); + if(active) { + player.getActionSender().sendConfig(301, 1); + } else { + player.getActionSender().sendConfig(301, 0); + } + } + + public boolean isActive() { + return active; + } + + public void setActive(boolean b) { + active = b; + refresh(); + } + + public boolean canPerform(Entity victim) { + return player.getEquipment().get(3) != null && player.getEquipment().isSpecialWeapon(); + } + + public void perform(Entity victim) { + if(!(player.getEquipment().get(3) != null && player.getEquipment().isSpecialWeapon())) { + return; + } + int id = player.getEquipment().get(3).getId(); + int req = getRequiredLevel(id); + if(amount >= req) { + amount -= req; + } else { + return; + } + active = false; + refresh(); + double factor = 1; + int customHit = -1; + boolean dmg2 = false; + switch(id) { + case 11694: + factor = 1.25; + player.graphics(1222); + player.animate(7074); + break; + case 11696: + factor = 1.1; + player.graphics(1223); + player.animate(7073); + break; + case 11698: + factor = 1.1; + player.graphics(1220); + player.animate(7071); + break; + case 10887: + player.graphics(1027); + player.animate(5870); + break; + case 11700: + factor = 1.1; + player.graphics(1221); + player.animate(7070); + break; + case 11730: + customHit = (int) (Math.ceil(Math.random() * 20D)); + player.graphics(1207); + player.animate(7072); + break; + case 4151: + factor = 0.9; + player.animate(1658); + victim.graphics(341, (100 << 16)); + break; + case 1305: + factor = 1; + //player.animate(1058); + player.graphics(248, (100 << 16)); + player.animate(1658); + break; + case 4587: + factor = 1; + player.animate(2081); + player.graphics(347, (100 << 16)); + break; + case 1434: + factor = 1.1; + player.animate(1060); + player.graphics(251, (100 << 16)); + break; + case 3204: + factor = 1.1; + player.animate(1665); + player.graphics(282, (100 << 16)); + dmg2 = true; + break; + case 5698: + customHit = (int) (Math.ceil(Math.random() * 42D)); + player.animate(1062); + player.animate(252, (100 << 16)); + break; + } + int hit = 0; + if(customHit != -1) { + hit = customHit; + } else { + hit = (int) (Math.ceil((double) Math.random() * ((double) player.getMaxHit() * factor))); + } + victim.hit(hit); + victim.addKillerHit(player, hit); + if(dmg2) { + if(customHit != -1) { + hit = customHit; + } else { + hit = (int) (Math.ceil((double) Math.random() * ((double) player.getMaxHit() * factor))); + } + victim.hit(hit); + victim.addKillerHit(player, hit); + } + } + + private int getRequiredLevel(int id) { + switch(id) { + case 11694: + return 500; + case 11696: + return 1000; + case 11698: + return 750; + case 10887: + return 500; + case 11700: + return 550; + case 11730: + return 100; + case 4151: + return 500; + case 1305: + return 250; + case 4587: + return 700; + case 1434: + return 400; + case 3204: + return 1000; + case 5698: + return 250; + default: + return 1000; + } + } + +} diff --git a/server508/src/com/rs2hd/model/Sprite.java b/server508/src/com/rs2hd/model/Sprite.java new file mode 100644 index 0000000..817bcf7 --- /dev/null +++ b/server508/src/com/rs2hd/model/Sprite.java @@ -0,0 +1,25 @@ +package com.rs2hd.model; + +/** + * Handles the client sprites. + * @author Graham + * + */ +public class Sprite { + + private int dir1 = -1, dir2 = -1; + + public int getPrimarySprite() { + return dir1; + } + + public int getSecondarySprite() { + return dir2; + } + + public void setSprites(int dir1, int dir2) { + this.dir1 = dir1; + this.dir2 = dir2; + } + +} diff --git a/server508/src/com/rs2hd/model/WalkingQueue.java b/server508/src/com/rs2hd/model/WalkingQueue.java new file mode 100644 index 0000000..127ea7f --- /dev/null +++ b/server508/src/com/rs2hd/model/WalkingQueue.java @@ -0,0 +1,169 @@ +package com.rs2hd.model; + +import com.rs2hd.util.Misc; + +/** + * Handles walking. + * @author Graham + * + */ +public class WalkingQueue { + + private class Point { + private int x; + private int y; + private int dir; + } + + private static final int SIZE = 50; + + public int wQueueReadPtr = 0; + public int wQueueWritePtr = 0; + public Point[] walkingQueue = new Point[SIZE]; + + private Player entity; + + private boolean isRunning = false, isRunToggled = false; + + public boolean isRunToggled() { + return isRunToggled; + } + + public void setRunToggled(boolean isRunToggled) { + this.isRunToggled = isRunToggled; + } + + public WalkingQueue(Player entity) { + this.entity = entity; + for(int i = 0; i < SIZE; i++) { + walkingQueue[i] = new Point(); + walkingQueue[i].x = 0; + walkingQueue[i].y = 0; + walkingQueue[i].dir = -1; + } + reset(); + } + + public void setIsRunning(boolean isRunning) { + this.isRunning = isRunning; + } + + public void reset() { + walkingQueue[0].x = entity.getLocation().getLocalX(); + walkingQueue[0].y = entity.getLocation().getLocalY(); + walkingQueue[0].dir = -1; + wQueueReadPtr = wQueueWritePtr = 1; + } + + public void addToWalkingQueue(int x, int y) { + int diffX = x - walkingQueue[wQueueWritePtr - 1].x, diffY = y - walkingQueue[wQueueWritePtr - 1].y; + int max = Math.max(Math.abs(diffX), Math.abs(diffY)); + for (int i = 0; i < max; i++) { + if (diffX < 0) + diffX++; + else if (diffX > 0) + diffX--; + if (diffY < 0) + diffY++; + else if (diffY > 0) + diffY--; + addStepToWalkingQueue(x - diffX, y - diffY); + } + } + + public void addStepToWalkingQueue(int x, int y) { + int diffX = x - walkingQueue[wQueueWritePtr - 1].x, diffY = y - walkingQueue[wQueueWritePtr - 1].y; + int dir = Misc.direction(diffX, diffY); + if (wQueueWritePtr >= SIZE) { + return; + } + if (dir != -1) { + walkingQueue[wQueueWritePtr].x = x; + walkingQueue[wQueueWritePtr].y = y; + walkingQueue[wQueueWritePtr++].dir = dir; + } + } + + public void getNextPlayerMovement() { + entity.getSprites().setSprites(-1, -1); + if(entity.getTeleportTo() != null) { + reset(); + Location lastRegion = entity.getLocation(); + int rx = lastRegion.getRegionX(); + int ry = lastRegion.getRegionY(); + entity.setLocation(entity.getTeleportTo()); + entity.resetTeleportTo(); + entity.getUpdateFlags().setDidTeleport(true); + if((rx-entity.getLocation().getRegionX()) >= 4 || (rx-entity.getLocation().getRegionX()) <= -4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } + if((ry-entity.getLocation().getRegionY()) >= 4 || (ry-entity.getLocation().getRegionY()) <= -4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } + } else { + Location oldLocation = entity.getLocation(); + int walkDir = getNextWalkingDirection(); + int runDir = -1; + if(isRunning || isRunToggled) { + if(entity.getRunEnergy() > 0) { + runDir = getNextWalkingDirection(); + if(runDir != -1) { + entity.setRunEnergy(entity.getRunEnergy()-1); + } + } else { + if(isRunToggled) { + entity.getActionSender().sendConfig(173, 0); + isRunning = false; + } + isRunning = false; + } + } + Location lastRegion = entity.getUpdateFlags().getLastRegion(); + if(lastRegion != null) { + int rx = lastRegion.getRegionX(); + int ry = lastRegion.getRegionY(); + if((rx-entity.getLocation().getRegionX()) >= 4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } else if((rx-entity.getLocation().getRegionX()) <= -4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } + if((ry-entity.getLocation().getRegionY()) >= 4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } else if((ry-entity.getLocation().getRegionY()) <= -4) { + entity.getUpdateFlags().setDidMapRegionChange(true); + } + } else { + entity.getUpdateFlags().setDidMapRegionChange(true); + } + if(entity.getUpdateFlags().didMapRegionChange()) { + if(walkDir != -1) { + wQueueReadPtr--; + } + if(runDir != -1) { + wQueueReadPtr--; + } + walkDir = -1; + runDir = -1; + entity.setLocation(oldLocation); + } + entity.getSprites().setSprites(walkDir, runDir); + } + } + + private int getNextWalkingDirection() { + if (wQueueReadPtr == wQueueWritePtr) { + return -1; + } + int dir = walkingQueue[wQueueReadPtr++].dir; + int xdiff = Misc.DIRECTION_DELTA_X[dir]; + int ydiff = Misc.DIRECTION_DELTA_Y[dir]; + Location newLocation = Location.location(entity.getLocation().getX()+xdiff, entity.getLocation().getY()+ydiff, entity.getLocation().getZ()); + entity.setLocation(newLocation); + return dir; + } + + public boolean isRunning() { + return isRunning; + } + +} diff --git a/server508/src/com/rs2hd/model/World.java b/server508/src/com/rs2hd/model/World.java new file mode 100644 index 0000000..c8c5f07 --- /dev/null +++ b/server508/src/com/rs2hd/model/World.java @@ -0,0 +1,384 @@ +package com.rs2hd.model; + +import java.io.FileInputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import com.rs2hd.Configuration; +import com.rs2hd.Constants; +import com.rs2hd.GameEngine; +import com.rs2hd.content.Combat; +import com.rs2hd.content.HealEvent; +import com.rs2hd.content.RunEnergyEvent; +import com.rs2hd.content.SkullUpdateEvent; +import com.rs2hd.content.SpecialUpdateEvent; +import com.rs2hd.content.WildernessUpdateEvent; +import com.rs2hd.event.CoordinateEvent; +import com.rs2hd.event.Event; +import com.rs2hd.packetbuilder.NPCUpdate; +import com.rs2hd.packetbuilder.PlayerUpdate; +import com.rs2hd.script.ScriptManager; +import com.rs2hd.util.EntityList; +import com.rs2hd.util.ItemManager; +import com.rs2hd.util.ProjectileManager; +import com.rs2hd.util.ShopManager; +import com.rs2hd.util.XStreamUtil; +import com.rs2hd.util.log.Logger; + +/** + * Represents the 'game world'. + * @author Graham + * + */ +public class World { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * The world instance. + */ + private static World instance = null; + + /** + * A list of connected players. + */ + private EntityList players; + + /** + * A list of npcs. + */ + private EntityList npcs; + + /** + * A list of pending events. + */ + private List events; + private List eventsToAdd; + private List eventsToRemove; + + /** + * The game engine. + */ + private GameEngine engine; + + /** + * The item manager. + */ + private ItemManager itemManager; + + /** + * The shop manager. + */ + private ShopManager shopManager; + + /** + * The projectile manager. + */ + private ProjectileManager projectileManager; + + /** + * The configuration. + */ + private Configuration configuration; + + /** + * We create the world here. + */ + private World() { + players = new EntityList(Constants.PLAYER_CAP); + npcs = new EntityList(Constants.NPC_CAP); + events = new ArrayList(); + eventsToAdd = new ArrayList(); + eventsToRemove = new ArrayList(); + itemManager = new ItemManager(); + projectileManager = new ProjectileManager(); + registerGlobalEvents(); + } + + /** + * Gets the game engine. + * @return + */ + public GameEngine engine() { + return engine; + } + + /** + * Gets the configuration. + * @return + */ + public Configuration configuration() { + return configuration; + } + + /** + * Register our global events. + */ + public void registerGlobalEvents() { + registerEvent(new RunEnergyEvent()); + registerEvent(new HealEvent()); + registerEvent(new WildernessUpdateEvent()); + registerEvent(new SkullUpdateEvent()); + registerEvent(new SpecialUpdateEvent()); + } + + /** + * Registers an event. + * @param event + */ + public void registerEvent(Event event) { + eventsToAdd.add(event); + } + + /** + * Registers a 'coordiante' event. + * @param event + */ + public void registerCoordinateEvent(final CoordinateEvent event) { + registerEvent(new Event(0) { + @Override + public void execute() { + boolean isAtTarget = event.getPlayer().getLocation().withinDistance(event.getTargetLocation(), event.getDistance()); + if(event.getPlayer().getUpdateFlags().didTeleport()) { + this.stop(); + } + if((isAtTarget && event.getPlayer().getLocation().equals(event.getOldLocation())) || event.getFailedAttempts() >= 2) { + if(this.getTick() == 0) { + event.run(); + this.stop(); + } else { + if(!event.hasReached()) { + event.setReached(true); + } else { + event.run(); + this.stop(); + } + } + } else { + if(!event.getPlayer().getLocation().equals(event.getOldLocation())) { + event.setOldLocation(event.getPlayer().getLocation()); + } else { + event.incrementFailedAttempts(); + } + } + this.setTick(500); + } + }); + } + + /** + * Processes any pending events. + */ + public void processEvents() { + for(Event e : eventsToAdd) { + events.add(e); + } + eventsToAdd.clear(); + for(Event e : events) { + if(e.isStopped()) { + eventsToRemove.add(e); + } else if(e.isReady()) { + e.run(); + } + } + for(Event e : eventsToRemove) { + events.remove(e); + } + eventsToRemove.clear(); + } + + /** + * Get the world instance. + * @return + */ + public static World getInstance() { + if(instance == null) { + instance = new World(); + } + return instance; + } + + /** + * Called whenever there is a major update. + */ + public void majorUpdate() { + for(Player p : players) { + p.tick(); + p.processQueuedHits(); + p.getWalkingQueue().getNextPlayerMovement(); + Combat.handleCombat(p); + } + for(NPC n : npcs) { + n.processQueuedHits(); + n.tick(); + Combat.handleCombat(n); + } + for(Player p : players) { + // sometimes players aren't removed always: do that here + if(!p.getPlayerDetails().getSession().isConnected()) { + unregister(p); + } else { + PlayerUpdate.update(p); + NPCUpdate.update(p); + } + } + for(Player p : players) { + p.getUpdateFlags().clear(); + p.getHits().clear(); + p.setRebuildNpcList(false); + if(p.getUpdateFlags().isClearFaceTo()) { + p.getUpdateFlags().setFaceToUpdateRequired(true, 0); + p.getUpdateFlags().setClearFaceTo(false); + } + shopManager.tick(p); + } + for(NPC n : npcs) { + n.getUpdateFlags().clear(); + n.getHits().clear(); + if(n.getUpdateFlags().isClearFaceTo()) { + n.getUpdateFlags().setFaceToUpdateRequired(true, 0); + n.getUpdateFlags().setClearFaceTo(false); + } + } + } + + /** + * Called whenever there is a minor update. + */ + public void minorUpdate() { + + } + + /** + * Called every tick. + */ + public void tick() { + for(Player p : players) { + p.processQueuedPackets(); + } + processEvents(); + } + + /** + * Gets the players list. + * @return + */ + public EntityList getPlayerList() { + return players; + } + + /** + * Gets the npcs list. + * @return + */ + public EntityList getNpcList() { + return npcs; + } + + /** + * Register a player. + * @param p + * @return the player slot + */ + public int register(Player p) { + int slot = -1; + // TODO make it so this works better + players.add(p); + slot = p.getIndex(); + if(slot != -1) { + logger.info("Registered " + p.getPlayerDetails().getDisplayName() + " [idx="+slot+",online="+players.size()+"]"); + p.getFriends().registered(); + } else { + logger.info("Could not register " + p.getPlayerDetails().getDisplayName() + " - too many online [online="+players.size()+"]"); + } + return slot; + } + + /** + * Unregister a player. + * @param p + */ + public void unregister(Player p) { + players.remove(p); + engine.getWorkerThread().savePlayer(p); + logger.info("Unregistered " + p.getPlayerDetails().getDisplayName() + " [online="+players.size()+"]"); + p.getFriends().unregistered(); + ScriptManager.getInstance().call("logout", p); + } + + /** + * Sets the game engine. + * @param gameEngine + * @throws IOException + */ + @SuppressWarnings("unchecked") + public void setEngine(GameEngine gameEngine) throws IOException { + this.engine = gameEngine; + logger.debug("Loading npcs spawns..."); + List spawns = (List) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/npcs.xml")); + for(NPC n : spawns) { + npcs.add(n); + } + logger.debug("Loaded " + spawns.size() + " npc spawns."); + logger.debug("Loading item spawns..."); + List items = (List) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/spawns.xml")); + for(Spawn s : items) { + itemManager.createSpawn(s); + } + logger.debug("Loaded " + items.size() + " item spawns."); + shopManager = new ShopManager(); + ScriptManager.getInstance().reload(); + configuration = (Configuration) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/config.xml")); + logger.debug("Loaded configuration [" + configuration.getName() + "]."); + } + + /** + * Gets mapdata for a region. + * @param region + * @return + */ + public int[] getMapData(int region) { + return engine.getMapData(region); + } + + /** + * Checks if a player is online. + * @param name + * @return + */ + public boolean isOnline(String name) { + for(Player p : players) { + if(p != null) { + if(p.getPlayerDetails().getUsername().equalsIgnoreCase(name)) { + return true; + } + } + } + return false; + } + + /** + * Gets the item manager. + * @return + */ + public ItemManager getItemManager() { + return itemManager; + } + + /** + * Gets the shop manager. + * @return + */ + public ShopManager getShopManager() { + return shopManager; + } + + public ProjectileManager getProjectileManager() { + return projectileManager; + } + +} diff --git a/server508/src/com/rs2hd/net/ActionSender.java b/server508/src/com/rs2hd/net/ActionSender.java new file mode 100644 index 0000000..f57beb9 --- /dev/null +++ b/server508/src/com/rs2hd/net/ActionSender.java @@ -0,0 +1,651 @@ +package com.rs2hd.net; + +import org.apache.mina.common.IoFuture; +import org.apache.mina.common.IoFutureListener; + +import com.rs2hd.model.Bonuses; +import com.rs2hd.model.Container; +import com.rs2hd.model.Entity; +import com.rs2hd.model.FloorItem; +import com.rs2hd.model.Item; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.Skills; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet.Size; +import com.rs2hd.packetbuilder.StaticPacketBuilder; +import com.rs2hd.script.ScriptManager; +import com.rs2hd.util.Misc; + +/** + * Outgoing packets that we send so the end user does not have to mess with the builders. + * @author Graham + * + */ +public class ActionSender { + + private Player player; + + public ActionSender(Player player) { + this.player = player; + } + + public void sendCreateObject(int objectId, int height, int objectX, int objectY, int face, int type) { + // credits to lewii + sendCoords(Location.location(objectX, objectY, player.getLocation().getZ())); + int ot = ((type << 2) + (face & 3)); + player.getSession().write(new StaticPacketBuilder().setId(30) + .addLEShort(objectId) + .addByteA(0) + .addByteC(ot).toPacket()); + } + + public void sendPlayerOption(String option, int slot, boolean top) { + player.getSession().write(new StaticPacketBuilder().setId(252).setSize(Packet.Size.VariableByte) + .addByteC(top ? 1 : 0) + .addString(option) + .addByteC(slot).toPacket()); + } + + public void sendQuestInterface(String title, String[] lines) { + sendInterface(275); + sendString(title, 275, 2); + for(int i = 0; i < 300; i++) { + sendString("", 275, (i+11)); + } + for(int i = 0; i < lines.length; i++) { + sendString(lines[i], 275, (i+11)); + } + } + + public void sendSound(int sound, int volume, int delay) { + player.getSession().write(new StaticPacketBuilder().setId(119).addShort(sound).addByte((byte) volume).addShort(delay).toPacket()); + } + + public void sendCloseInterface(int windowId, int position) { + player.getSession().write(new StaticPacketBuilder().setId(246).addInt(windowId << 16 | position).toPacket()); + } + + public void sendInterfaceConfig(int interfaceId, int childId, boolean set) { + player.getSession().write(new StaticPacketBuilder().setId(59).addByteC(set ? 1 : 0).addShort(childId).addShort(interfaceId).toPacket()); + } + + public void sendCloseInterface() { + if(player.isHd()) { + sendCloseInterface(746, 3); + sendCloseInterface(746, 8); + } + sendCloseInterface(548, 8); + } + + public void sendInterface(int id) { + sendCloseInterface(); + if(player.isHd()) { + sendInterface(0, 746, 3, id); + sendInterface(0, 746, 8, id); + } + sendInterface(0, 548, 8, id); + } + + public void sendSkillLevels() { + for(int i = 0; i < Skills.SKILL_COUNT; i++) { + sendSkillLevel(i); + } + } + + public void sendSkillLevel(int skill) { + player.getSession().write(new StaticPacketBuilder().setId(217) + .addByteC(player.getSkills().getLevel(skill)) + .addInt2((int) player.getSkills().getXp(skill)) + .addByteC(skill) + .toPacket()); + } + + public void sendLogout() { + player.getSession().write(new StaticPacketBuilder().setId(104).toPacket()).addListener(new IoFutureListener() { + @Override + public void operationComplete(IoFuture arg0) { + arg0.getSession().close(); + } + }); + } + + public void sendLogin() { + sendMapRegion(); + sendWelcomeScreen(); + sendTab(6, 745); + sendTab(11, 751); // Chat options + sendTab(68, 752); // Chatbox + sendTab(64, 748); // HP bar + sendTab(65, 749); // Prayer bar + sendTab(66, 750); // Energy bar + sendTab(67, 747); + sendConfig(1160, -1); + sendTab(8, 137); // Playername on chat + sendTab(73, 92); // Attack tab + sendTab(74, 320); // Skill tab + sendTab(75, 274); // Quest tab + sendTab(76, 149); // Inventory tab + sendTab(77, 387); // Equipment tab + sendTab(78, 271); // Prayer tab + sendTab(79, 192); // Magic tab + sendTab(81, 550); // Friend tab + sendTab(82, 551); // Ignore tab + sendTab(83, 589); // Clan tab + sendTab(84, 261); // Setting tab + sendTab(85, 464); // Emote tab + sendTab(86, 187); // Music tab + sendTab(87, 182); // Logout tab + sendSkillLevels(); + sendEnergy(); + player.getFriends().refresh(); + player.getInventory().refresh(); + player.getEquipment().refresh(); + player.getSettings().refresh(); + player.getSpecials().refresh(); + player.updateWildernessState(); + sendPlayerOption("Trade with", 2, false); + sendPlayerOption("Follow", 3, false); + //sendMessage("Welcome to RuneScape."); + ScriptManager.getInstance().call("login", player); + } + + private void sendWelcomeScreen() { + sendWindowPane(549); + sendInterface(1, 549, 2, 378); + sendInterface(1, 549, 3, 15); + sendString("Welcome to "+World.getInstance().configuration().getName()+".", 378, 115); + // TODO last connection + sendString("You are connected from: " + player.getSession().getRemoteAddress(), 378, 116); + sendString("0", 378, 39); + sendString("0", 378, 96); + sendString("0 unread messages", 378, 37); + sendString(World.getInstance().configuration().getName()+" staff will NEVER email you. We use the Message Centre on the website instead.", 378, 38); + sendString("0 days of member credit", 378, 94); + sendString("You have 0 days of member credit remaining. Please click here to extend your credit.", 378, 93); + sendString("You do not have a bank pin. Please visit a bank if you would like one.", 378, 62); + sendString("You have not yet set any recovery questions.", 378, 56); + sendString("Message of the Week", 15, 0); + sendString("Remember to keep your account secure: set a bank PIN, set recover questions and NEVER give away your password.", 15, 4); + } + + public void sendHdLogin() { + sendInterface(1, 549, 0, 746); + sendInterface(1, 746, 13, 748); //energy orb + sendInterface(1, 746, 14, 749); //energy orb + sendInterface(1, 746, 15, 750); //energy orb + //sendInterface(1, 746, 16, 747); //summing orb + sendInterface(1, 746, 18, 751); //things below chatbox + sendInterface(1, 752, 8, 137); //chatbox + sendInterface(1, 746, 65, 752); //chatbox 752 + sendInterface(1, 549, 0, 746); // Main interface + sendInterface(1, 746, 87, 92); // Attack tab + sendInterface(1, 746, 88, 320); // Skill tab + sendInterface(1, 746, 89, 274); // Quest tab + sendInterface(1, 746, 90, 149); // Inventory tab + sendInterface(1, 746, 91, 387); // Equipment tab + sendInterface(1, 746, 92, 271); // Prayer tab + sendInterface(1, 746, 93, 193); // Magic tab + //sendInterface(1, 746, 94, 662); // Summoning tab + sendInterface(1, 746, 95, 550); // Friend tab + sendInterface(1, 746, 96, 551); // Ignore tab + sendInterface(1, 746, 97, 589); // Clan tab + sendInterface(1, 746, 98, 261); // Setting tab + sendInterface(1, 746, 99, 464); // Emote tab + sendInterface(1, 746, 100, 187); // Music tab + sendInterface(1, 746, 101, 182); // Logout tab + sendInterface(1, 752, 8, 137); // Chatbox + sendInterface(1, 746, 65, 752); // Chatbox 752 + sendInterface(1, 746, 18, 751); // Settings below chatbox + sendInterface(1, 746, 13, 748); // HP orb + sendInterface(1, 746, 14, 749); // Prayer orb + sendInterface(1, 746, 15, 750); // Energy orb + //sendInterface(1, 746, 12, 747); // Summoning orb + player.getEquipment().refresh(); + } + + public void sendFriendsStatus(int i) { + player.getSession().write(new StaticPacketBuilder().setId(115).addByte((byte) i).toPacket()); + } + + public void sendSentPrivateMessage(long name, String message) { + byte[] bytes = new byte[message.length()]; + Misc.encryptPlayerChat(bytes, 0, 0, message.length(), message.getBytes()); + player.getSession().write(new StaticPacketBuilder().setId(89).setSize(Size.VariableByte) + .addLong(name) + .addByte((byte) message.length()) + .addBytes(bytes) + .toPacket()); + } + + public void sendReceivedPrivateMessage(long name, int rights, String message) { + int messageCounter = player.getFriends().getNextUniqueId(); + byte[] bytes = new byte[message.length()+1]; + bytes[0] = (byte) message.length(); + Misc.encryptPlayerChat(bytes, 0, 1, message.length(), message.getBytes()); + player.getSession().write(new StaticPacketBuilder().setId(178).setSize(Size.VariableByte) + .addLong(name) + .addShort(1) + .addBytes(new byte[] { (byte) ((messageCounter << 16) & 0xFF), (byte) ((messageCounter << 8) & 0xFF), (byte) (messageCounter & 0xFF)} ) + .addByte((byte) rights) + .addBytes(bytes).toPacket()); + } + + public void sendFriend(long name, int world) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(154).setSize(Size.VariableByte) + .addLong(name) + .addShort(world) + .addByte((byte) 1); + if(world != 0) { + if(world == player.getWorld()) { + spb.addString("Online"); + } else { + spb.addString("RuneScape " + world); + } + } + player.getSession().write(spb.toPacket()); + } + + public void sendIgnores(long[] names) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(240).setSize(Size.VariableShort); + for(long name : names) { + spb.addLong(name); + } + player.getSession().write(spb.toPacket()); + } + + /*public void sendMapRegion2() { + if(!validateMapRegion()) { + player.getActionSender().sendMessage("This area of the world is unavailable, teleporting to spawn point..."); + player.setLocation(Entity.DEFAULT_LOCATION); + sendMapRegion(); + return; + } + StaticPacketBuilder spb = new StaticPacketBuilder().setId(173).setSize(Packet.Size.VariableShort); + spb.addByteA(player.getLocation().getZ()); + spb.addShort(player.getLocation().getRegionY()); + spb.addShortA(player.getLocation().getLocalX()); + spb.initBitAccess(); + for(int height = 0; height < 4; height++) { + for(int xCalc = (player.getLocation().getRegionX() - 6); xCalc <= (player.getLocation().getRegionX() + 6); xCalc++) { + for(int yCalc = (player.getLocation().getRegionY() - 6); yCalc <= (player.getLocation().getRegionY() + 6); yCalc++) { + if(height == player.getLocation().getZ()) { + spb.addBits(1, 1); + spb.addBits(26, (xCalc << 14) | (yCalc << 3)); + } else { + spb.addBits(1, 0); + } + } + } + } + spb.finishBitAccess(); + for(int xCalc = (player.getLocation().getRegionX() - 6) / 8; xCalc <= ((player.getLocation().getRegionX() + 6) / 8); xCalc++) { + for(int yCalc = (player.getLocation().getRegionY() - 6) / 8; yCalc <= ((player.getLocation().getRegionY() + 6) / 8); yCalc++) { + int region = yCalc + (xCalc << 8); + int[] mapData = World.getInstance().getMapData(region); + if(mapData == null) { + mapData = new int[4]; + for(int i = 0; i < 4; i++) { + mapData[i] = 0; + } + } + spb.addInt(mapData[0]); + spb.addInt(mapData[1]); + spb.addInt(mapData[2]); + spb.addInt(mapData[3]); + } + } + spb.addShortA(player.getLocation().getLocalY()); + spb.addShortA(player.getLocation().getRegionX()); + player.getSession().write(spb.toPacket()); + player.getUpdateFlags().setLastRegion(player.getLocation()); + World.getInstance().getItemManager().refresh(player); + }*/ + + public void sendMapRegion() { + if(!validateMapRegion()) { + player.getActionSender().sendMessage("This area of the world is unavailable, teleporting to spawn point..."); + player.setLocation(Entity.DEFAULT_LOCATION); + } + StaticPacketBuilder spb = new StaticPacketBuilder().setId(142).setSize(Packet.Size.VariableShort); + boolean forceSend = true; + if((((player.getLocation().getRegionX() / 8) == 48) || ((player.getLocation().getRegionX() / 8) == 49)) && ((player.getLocation().getRegionY() / 8) == 48)) { + forceSend = false; + } + if(((player.getLocation().getRegionX() / 8) == 48) && ((player.getLocation().getRegionY() / 8) == 148)) { + forceSend = false; + } + spb.addShortA(player.getLocation().getRegionX()); + spb.addLEShortA(player.getLocation().getLocalY()); + spb.addShortA(player.getLocation().getLocalX()); + for(int xCalc = (player.getLocation().getRegionX() - 6) / 8; xCalc <= ((player.getLocation().getRegionX() + 6) / 8); xCalc++) { + for(int yCalc = (player.getLocation().getRegionY() - 6) / 8; yCalc <= ((player.getLocation().getRegionY() + 6) / 8); yCalc++) { + int region = yCalc + (xCalc << 8); // 1786653352 + if(forceSend || ((yCalc != 49) && (yCalc != 149) && (yCalc != 147) && (xCalc != 50) && ((xCalc != 49) || (yCalc != 47)))) { + int[] mapData = World.getInstance().getMapData(region); + if(mapData == null) { + mapData = new int[4]; + for(int i = 0; i < 4; i++) { + mapData[i] = 0; + } + } + spb.addInt(mapData[0]); + spb.addInt(mapData[1]); + spb.addInt(mapData[2]); + spb.addInt(mapData[3]); + } + } + } + spb.addByteC(player.getLocation().getZ()); + spb.addShort(player.getLocation().getRegionY()); + player.getSession().write(spb.toPacket()); + player.getUpdateFlags().setLastRegion(player.getLocation()); + World.getInstance().getItemManager().refresh(player); + } + + private boolean validateMapRegion() { + boolean hasMapData = true; + boolean forceSend = true; + if((((player.getLocation().getRegionX() / 8) == 48) || ((player.getLocation().getRegionX() / 8) == 49)) && ((player.getLocation().getRegionY() / 8) == 48)) { + forceSend = false; + } + if(((player.getLocation().getRegionX() / 8) == 48) && ((player.getLocation().getRegionY() / 8) == 148)) { + forceSend = false; + } + for(int xCalc = (player.getLocation().getRegionX() - 6) / 8; xCalc <= ((player.getLocation().getRegionX() + 6) / 8); xCalc++) { + for(int yCalc = (player.getLocation().getRegionY() - 6) / 8; yCalc <= ((player.getLocation().getRegionY() + 6) / 8); yCalc++) { + int region = yCalc + (xCalc << 8); // 1786653352 + if(forceSend || ((yCalc != 49) && (yCalc != 149) && (yCalc != 147) && (xCalc != 50) && ((xCalc != 49) || (yCalc != 47)))) { + int[] mapData = World.getInstance().getMapData(region); + if(mapData == null) { + hasMapData = false; + } + } + } + } + return hasMapData; + } + + public void sendWindowPane(int pane) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(239).addShort(pane).addByteA(0); + player.getSession().write(spb.toPacket()); + } + + public void sendTab(int tabId, int childId) { + sendInterface(1, childId == 137 ? 752 : 548, tabId, childId); + if(player.isHd()) { + sendInterface(1, childId == 137 ? 752 : 746, tabId, childId); + } + } + + public void sendInterface(int showId, int windowId, int interfaceId, int childId) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(93).addShort(childId).addByteA(showId).addShort(windowId).addShort(interfaceId); + player.getSession().write(spb.toPacket()); + } + + public void sendConfig(int id, int value) { + if(value < 128) { + sendConfig1(id, value); + } else { + sendConfig2(id, value); + } + } + + public void sendConfig1(int id, int value) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(100).addShortA(id).addByteA(value); + player.getSession().write(spb.toPacket()); + } + + public void sendConfig2(int id, int value) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(161).addShort(id).addInt1(value); + player.getSession().write(spb.toPacket()); + } + + public void sendMessage(String message) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(218).setSize(Size.VariableByte).addString(message); + player.getSession().write(spb.toPacket()); + } + + public void sendItems(int interfaceId, int childId, int type, Container inventory) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(255).setSize(Size.VariableShort); + spb.addShort(interfaceId).addShort(childId).addShort(type).addShort(inventory.getSize()); + for(int i = 0; i < inventory.getSize(); i++) { + Item item = inventory.get(i); + int id, amt; + if(item == null) { + id = -1; + amt = 0; + } else { + id = item.getDefinition().getId(); + amt = item.getAmount(); + } + if(amt > 254) { + spb.addByteS(255); + spb.addInt2(amt); + } else { + spb.addByteS(amt); + } + spb.addLEShort(id+1); + } + player.getSession().write(spb.toPacket()); + } + + public void sendString(String string, int interfaceId, int childId) { + int sSize = string.length() + 5; + StaticPacketBuilder spb = new StaticPacketBuilder().setId(179) + .addByte((byte) (sSize / 256)) + .addByte((byte) (sSize % 256)) + .addString(string) + .addShort(childId) + .addShort(interfaceId); + player.getSession().write(spb.toPacket()); + } + + public void sendChatboxInterface(int childId) { + sendInterface(1, 752, 8, childId); + } + + public void sendCloseChatboxInterface() { + sendInterface(1, 752, 8, 137); + } + + public void sendInventoryInterface(int childId) { + if(player.isHd()) { + sendInterface(0, 746, 71, childId); + } + sendInterface(0, 548, 71, childId); + } + + public void sendBankOptions() { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(223) + .addShort(496) + .addLEShortA(0) + .addLEShort(73) + .addLEShort(762) + .addLEShort(1278) + .addLEShort(20); + player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setId(223) + .addShort(27) + .addLEShortA(0) + .addLEShort(0) + .addLEShort(763) + .addLEShort(1150) + .addLEShort(18); + player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setSize(Packet.Size.VariableShort).setId(152) + .addString("") + .addInt(1451); + player.getSession().write(spb.toPacket()); + } + + public void sendShopTab(boolean isMainStock, boolean isGeneralStore) { + // player.getActionSender().sendInterfaceConfig(620, 24, true); - main inv screen + if(isMainStock) { + player.getActionSender().sendInterfaceConfig(620, 23, false); + player.getActionSender().sendInterfaceConfig(620, 29, false); + player.getActionSender().sendInterfaceConfig(620, 25, true); + player.getActionSender().sendInterfaceConfig(620, 27, true); + player.getActionSender().sendInterfaceConfig(620, 26, false); + } else { + player.getActionSender().sendInterfaceConfig(620, 23, true); + player.getActionSender().sendInterfaceConfig(620, 29, true); + player.getActionSender().sendInterfaceConfig(620, 25, false); + player.getActionSender().sendInterfaceConfig(620, 27, false); + player.getActionSender().sendInterfaceConfig(620, 26, true); + } + if(isGeneralStore) { + player.getActionSender().sendInterfaceConfig(620, 34, false); + } else { + player.getActionSender().sendInterfaceConfig(620, 34, true); + } + } + + public void sendShopOptions() { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(223) + .addShort(10) + .addLEShortA(0) + .addLEShort(23) + .addLEShort(620) + .addLEShort(126) + .addLEShort(0); + //player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setId(152).setSize(Size.VariableShort) + .addString("IviiiIsssssssss") + .addString("null") + .addString("null") + .addString("null") + .addString("Examine") + .addString("Sell 50") + .addString("Sell 10") + .addString("Sell 5") + .addString("Sell 1") + .addString("Value") + .addInt(-1) + .addInt(0) + .addInt(7) + .addInt(4) + .addInt(93) + .addInt(40697856) + .addInt(150); + player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setId(223) + .addShort(27) + .addLEShortA(0) + .addLEShort(0) + .addLEShort(621) + .addLEShort(126) + .addLEShort(0); + player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setId(152).setSize(Size.VariableShort) + .addString("IviiiIsssssssss") + .addString("null") + .addString("null") + .addString("null") + .addString("null") + .addString("Buy 50") + .addString("Buy 10") + .addString("Buy 5") + .addString("Buy 1") + .addString("Value") + .addInt(-1) + .addInt(0) + .addInt(4) + .addInt(10) + .addInt(17) + .addInt(40632344) + .addInt(150); + player.getSession().write(spb.toPacket()); + spb = new StaticPacketBuilder().setId(223) + .addShort(39) + .addLEShortA(0) + .addLEShort(24) + .addLEShort(620) + .addLEShort(1086) + .addLEShort(0); + player.getSession().write(spb.toPacket()); + } + + public void sendEnergy() { + player.getSession().write(new StaticPacketBuilder().setId(99).addByte((byte) player.getRunEnergy()).toPacket()); + } + + public void sendCoords(Location location) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(177); + int regionX = player.getUpdateFlags().getLastRegion().getRegionX(), regionY = player.getUpdateFlags().getLastRegion().getRegionY(); + spb.addByte((byte) (location.getY()-((regionY-6)*8))); + spb.addByteS((byte) (location.getX()-((regionX-6)*8))); + player.getSession().write(spb.toPacket()); + } + + public void sendCoords(Location location, int xoff, int yoff) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(177); + int regionX = player.getUpdateFlags().getLastRegion().getRegionX(), regionY = player.getUpdateFlags().getLastRegion().getRegionY(); + spb.addByte((byte) ((location.getY()-((regionY-6)*8))+yoff)); + spb.addByteS((byte) ((location.getX()-((regionX-6)*8))+xoff)); + player.getSession().write(spb.toPacket()); + } + + public void sendDestroyGroundItem(FloorItem item) { + sendCoords(item.getLocation()); + StaticPacketBuilder spb = new StaticPacketBuilder().setId(201); + spb.addByte((byte) 0); + spb.addShort(item.getId()); + player.getSession().write(spb.toPacket()); + } + + public void sendCreateGroundItem(FloorItem item) { + sendCoords(item.getLocation()); + StaticPacketBuilder spb = new StaticPacketBuilder().setId(25); + spb.addLEShortA(item.getAmount()); + spb.addByte((byte) 0); + spb.addLEShortA(item.getId()); + player.getSession().write(spb.toPacket()); + } + + public void sendBonus(int[] bonuses) { + int id = 35; + for(int i = 0; i < (bonuses.length-1); i++) { + sendString((Bonuses.BONUS_NAMES[i] + ": " + (bonuses[i] > 0 ? "+" : "") + bonuses[i]), 667, id++); + if(id == 45) { + sendString((Bonuses.BONUS_NAMES[12] + ": " + (bonuses[12] > 0 ? "+" : "") + bonuses[12]), 667, id++); + id = 47; + } + } + } + + public void sendShopLoadMainStock(int shopId) { + StaticPacketBuilder spb = new StaticPacketBuilder().setId(152).setSize(Size.VariableShort) + .addString("vg") + .addInt(shopId) + .addInt(93) + .addInt(25); + player.getSession().write(spb.toPacket()); + } + + public void sendOverlay(int i) { + sendInterface(1, 548, 5, i); + } + + public void sendRemoveOverlay() { + sendCloseInterface(548, 5); + } + + public void sendProjectile(Location source, Location dest, int offsetX, int offsetY, int gfx, int angle, int startHeight, int endHeight, int speed, Entity lockon) { + sendCoords(source, -3, -2); + StaticPacketBuilder spb = new StaticPacketBuilder().setId(112) + .addByte((byte) angle) + .addByte((byte) offsetX) + .addByte((byte) offsetY) + .addLEShort(lockon == null ? -1 : lockon.getClientIndex()) + .addShort(gfx) + .addByte((byte) startHeight) + .addByte((byte) endHeight) + .addShort(51) + .addShort(speed) + .addByte((byte) 16) + .addByte((byte) 64); + player.getSession().write(spb.toPacket()); + } + +} diff --git a/server508/src/com/rs2hd/net/ConnectionHandler.java b/server508/src/com/rs2hd/net/ConnectionHandler.java new file mode 100644 index 0000000..98d8779 --- /dev/null +++ b/server508/src/com/rs2hd/net/ConnectionHandler.java @@ -0,0 +1,118 @@ +package com.rs2hd.net; + +import java.net.InetSocketAddress; +import java.util.HashMap; +import java.util.Map; + +import org.apache.mina.common.IdleStatus; +import org.apache.mina.common.IoHandler; +import org.apache.mina.common.IoSession; +import org.apache.mina.filter.codec.ProtocolCodecFilter; + +import com.rs2hd.Constants; +import com.rs2hd.GameEngine; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.codec.CodecFactory; +import com.rs2hd.util.log.Logger; + +/** + * Handles incoming events from MINA. + * @author Graham + * + */ +public class ConnectionHandler implements IoHandler { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * The game engine. + */ + private GameEngine engine; + + /** + * Keeps track of connection counts. + */ + private Map connections = new HashMap(); + + /** + * Creates the connection handler. + * @param engine + */ + public ConnectionHandler(GameEngine engine) { + this.engine = engine; + } + + @Override + public void exceptionCaught(IoSession session, Throwable throwable) throws Exception { + //logger.error("Exception caught: " + session + ": " + throwable.getMessage() + "."); + //logger.stackTrace(throwable); + } + + @Override + public void messageReceived(IoSession session, Object data) throws Exception { + Packet packet = (Packet) data; + Player player = (Player) session.getAttachment(); + player.addPacketToQueue(packet); + } + + @Override + public void messageSent(IoSession session, Object data) throws Exception { + } + + @Override + public void sessionClosed(IoSession session) throws Exception { + if(session.getAttachment() != null) { + World.getInstance().unregister((Player) session.getAttachment()); + } + logger.debug("Session has been closed: " + session.getRemoteAddress().toString()); + synchronized(connections) { + InetSocketAddress addr = (InetSocketAddress) session.getRemoteAddress(); + if(connections.containsKey(addr.getAddress().getHostAddress())) { + int num = connections.get(addr.getAddress().getHostAddress()); + num--; + if(num <= 0) { + connections.remove(addr.getAddress().getHostAddress()); + } else { + connections.put(addr.getAddress().getHostAddress(), num); + } + } + } + } + + @Override + public void sessionCreated(IoSession session) throws Exception { + } + + @Override + public void sessionIdle(IoSession session, IdleStatus status) throws Exception { + logger.debug("Session is now idle: " + session.getRemoteAddress().toString()); + session.close(); + } + + @Override + public void sessionOpened(IoSession session) throws Exception { + logger.debug("New session from: " + session.getRemoteAddress().toString()); + synchronized(connections) { + InetSocketAddress addr = (InetSocketAddress) session.getRemoteAddress(); + if(connections.containsKey(addr.getAddress().getHostAddress())) { + int num = connections.get(addr.getAddress().getHostAddress()); + if(num >= Constants.MAX_PER_IP) { + session.close(); + return; + } else { + num++; + connections.put(addr.getAddress().getHostAddress(), num); + } + } else { + connections.put(addr.getAddress().getHostAddress(), 1); + } + } + session.setIdleTime(IdleStatus.BOTH_IDLE, Constants.SESSION_INITIAL_IDLE_TIME); + session.getFilterChain().addLast("protocolFilter", new ProtocolCodecFilter(new CodecFactory(engine.getWorkerThread()))); + } + +} diff --git a/server508/src/com/rs2hd/net/ConnectionThrottleFilter.java b/server508/src/com/rs2hd/net/ConnectionThrottleFilter.java new file mode 100644 index 0000000..b7ae83d --- /dev/null +++ b/server508/src/com/rs2hd/net/ConnectionThrottleFilter.java @@ -0,0 +1,127 @@ +package com.rs2hd.net; + +import java.net.InetAddress; +import java.net.InetSocketAddress; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; +import org.apache.mina.common.IoFilterAdapter; +import org.apache.mina.common.IoSession; + +/** +* A {@link IoFilter} which blocks connections from connecting +* at a rate faster than the specified interval. +* +* @author The Apache MINA Project (dev@mina.apache.org) +* @version $Rev$, $Date$ +*/ +public class ConnectionThrottleFilter extends IoFilterAdapter { + private long allowedInterval; + private Map clients; + private Map counts; + private Set connectedAddresses; + + /** + * Constructor that takes in a specified wait time. + * + * @param allowedInterval + * The number of milliseconds a client is allowed to wait + * before making another successful connection + * + */ + public ConnectionThrottleFilter(long allowedInterval) { + this.allowedInterval = allowedInterval; + clients = Collections.synchronizedMap(new HashMap()); + counts = Collections.synchronizedMap(new HashMap()); + connectedAddresses = new HashSet(); + } + + /** + * Sets the interval between connections from a client. + * This value is measured in milliseconds. + * + * @param allowedInterval + * The number of milliseconds a client is allowed to wait + * before making another successful connection + */ + public void setAllowedInterval(long allowedInterval) { + this.allowedInterval = allowedInterval; + } + + public void delayClient(IoSession session, int delay) { + long d = System.currentTimeMillis() - delay; + clients.put(getAddress(session), d); + } + + private InetAddress getAddress(IoSession io) { + return ((InetSocketAddress)io.getRemoteAddress()).getAddress(); + } + + /** + * Method responsible for deciding if a connection is OK + * to continue + * + * @param session + * The new session that will be verified + * @return + * True if the session meets the criteria, otherwise false + */ + public boolean isConnectionOk(IoSession session) { + InetAddress addr = getAddress(session); + long now = System.currentTimeMillis(); + if (clients.containsKey(addr)) { + long lastConnTime = clients.get(addr); + + if (now - lastConnTime < allowedInterval) { + int c = 0; + if(!counts.containsKey(addr)) + counts.put(addr, 0); + else c = counts.get(addr) + 1; + if(c >= 350) { + + c = 0; + } + counts.put(addr, c); + //Logger.err("["+host+"] Session dropped (delay="+(now-lastConnTime)+"ms)"); + return false; + } else { + clients.put(addr, now); + return true; + } + } else { + clients.put(addr, now); + return true; + } + } + + public void closedSession(IoSession io) { + connectedAddresses.remove(getAddress(io)); + } + + public void acceptedLogin(IoSession io) { + connectedAddresses.add(getAddress(io)); + } + + public boolean isConnected(IoSession io) { + return connectedAddresses.contains(getAddress(io)); + } + + public int[] getSizes() { + return new int[] { clients.size(), counts.size(), connectedAddresses.size() }; + } + + public void connectionOk(IoSession io) { + counts.remove(getAddress(io)); + } + + @Override + public void sessionCreated(NextFilter nextFilter, IoSession session) throws Exception { + if (!isConnectionOk(session)) { + session.close(); + return; + } + nextFilter.sessionCreated(session); + } +} \ No newline at end of file diff --git a/server508/src/com/rs2hd/net/Packet.java b/server508/src/com/rs2hd/net/Packet.java new file mode 100644 index 0000000..d118c24 --- /dev/null +++ b/server508/src/com/rs2hd/net/Packet.java @@ -0,0 +1,296 @@ +package com.rs2hd.net; + +import org.apache.mina.common.IoSession; + +/** + * Immutable packet object. + * @author Graham + * + */ +public final class Packet { + + public static enum Size { Fixed, VariableByte, VariableShort }; + + /** + * The associated IO session + */ + private IoSession session; + /** + * The ID of the packet + */ + private int pID; + /** + * The length of the payload + */ + private int pLength; + /** + * The payload + */ + private byte[] pData; + /** + * The current index into the payload buffer for reading + */ + private int caret = 0; + /** + * Whether this packet is without the standard packet header + */ + private boolean bare; + private Size size = Size.Fixed; + + public Packet(IoSession session, int pID, byte[] pData, boolean bare, Size s) { + this.session = session; + this.pID = pID; + this.pData = pData; + this.pLength = pData.length; + this.bare = bare; + this.size = s; + } + + /** + * Creates a new packet with the specified parameters. + * + * @param session The session to associate with the packet + * @param pID The ID of the packet + * @param pData The payload of the packet + * @param bare Whether this packet is bare, which means that it does + * not include the standard packet header + */ + public Packet(IoSession session, int pID, byte[] pData, boolean bare) { + this(session, pID, pData, bare, Size.Fixed); + } + + /** + * Creates a new packet with the specified parameters. The packet + * is considered not to be a bare packet. + * + * @param session The session to associate with the packet + * @param pID The ID of the packet + * @param pData The payload the packet + */ + public Packet(IoSession session, int pID, byte[] pData) { + this(session, pID, pData, false); + } + + /** + * Returns the IO session associated with the packet, if any. + * + * @return The IoSession object, or null + * if none. + */ + public IoSession getSession() { + return session; + } + + /** + * Checks if this packet is considered to be a bare packet, which + * means that it does not include the standard packet header (ID + * and length values). + * + * @return Whether this packet is a bare packet + */ + public boolean isBare() { + return bare; + } + + public Size getSize() { + return size; + } + + /** + * Returns the packet ID. + * + * @return The packet ID + */ + public int getId() { + return pID; + } + + /** + * Returns the length of the payload of this packet. + * + * @return The length of the packet's payload + */ + public int getLength() { + return pLength; + } + + /** + * Returns the entire payload data of this packet. + * + * @return The payload byte array + */ + public byte[] getData() { + return pData; + } + + /** + * Returns the remaining payload data of this packet. + * + * @return The payload byte array + */ + public byte[] getRemainingData() { + byte[] data = new byte[pLength - caret]; + for(int i = 0;i < data.length;i++) { + data[i] = pData[i + caret]; + } + caret += data.length; + return data; + + } + + /** + * Reads the next byte from the payload. + * + * @return A byte + */ + public byte readByte() { + return pData[caret++]; + } + + /** + * Reads the next short from the payload. + * + * @return A short + */ + public short readShort() { + return (short) ((short) ((pData[caret++] & 0xff) << 8) | (short) (pData[caret++] & 0xff)); + } + + public int readLEShortA() { + int i = ((pData[caret++] - 128 & 0xff)) + ((pData[caret++] & 0xff) << 8); + if(i > 32767) + i -= 0x10000; + return i; + } + + public int readLEShort() { + int i = ((pData[caret++] & 0xff)) + ((pData[caret++] & 0xff) << 8); + if(i > 32767) + i -= 0x10000; + return i; + } + + /** + * Reads the next int from the payload. + * + * @return An int + */ + public int readInt() { + return ((pData[caret++] & 0xff) << 24) + | ((pData[caret++] & 0xff) << 16) + | ((pData[caret++] & 0xff) << 8) + | (pData[caret++] & 0xff); + } + + public int readLEInt() { + return (pData[caret++] & 0xff) + | ((pData[caret++] & 0xff) << 8) + | ((pData[caret++] & 0xff) << 16) + | ((pData[caret++] & 0xff) << 24); + } + + /** + * Reads the next long from the payload. + * + * @return A long + */ + public long readLong() { + return ((long) (pData[caret++] & 0xff) << 56) + | ((long) (pData[caret++] & 0xff) << 48) + | ((long) (pData[caret++] & 0xff) << 40) + | ((long) (pData[caret++] & 0xff) << 32) + | ((long) (pData[caret++] & 0xff) << 24) + | ((long) (pData[caret++] & 0xff) << 16) + | ((long) (pData[caret++] & 0xff) << 8) + | ((pData[caret++] & 0xff)); + } + + /** + * Reads the string which is formed by the unread portion + * of the payload. + * + * @return A String + */ + public String readString() { + return readString(pLength - caret); + } + + public String readRS2String() { + int start = caret; + while(pData[caret++] != 0) ; + return new String(pData, start, caret - start - 1); + } + + public void readBytes(byte[] buf, int off, int len) { + for(int i=0; iString + */ + public String readString(int length) { + String rv = new String(pData, caret, length); + caret += length; + return rv; + } + + /** + * Skips the specified number of bytes in the payload. + * + * @param x The number of bytes to be skipped + */ + public void skip(int x) { + caret += x; + } + + + public int remaining() { + return pData.length - caret; + } + + /** + * Returns this packet in string form. + * + * @return A String representing this packet + */ + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("[id=" + pID + ",len=" + pLength + ",data=0x"); + for(int x = 0;x < pLength;x++) { + sb.append(byteToHex(pData[x], true)); + } + sb.append("]"); + return sb.toString(); + } + + private static String byteToHex(byte b, boolean forceLeadingZero) { + StringBuilder out = new StringBuilder(); + int ub = b & 0xff; + if(ub / 16 > 0 || forceLeadingZero) + out.append(hex[ub / 16]); + out.append(hex[ub % 16]); + return out.toString(); + } + + private static final char[] hex = "0123456789ABCDEF".toCharArray(); + + public int readShortA() { + caret += 2; + return ((pData[caret-2]&0xFF)<<8)+(pData[caret-1]-128&0xFF); + } + + public byte readByteC() { + return (byte) -readByte(); + } + + public byte readByteS() { + return (byte) (128 - readByte()); + } + +} diff --git a/server508/src/com/rs2hd/net/codec/CodecFactory.java b/server508/src/com/rs2hd/net/codec/CodecFactory.java new file mode 100644 index 0000000..eb0fdd9 --- /dev/null +++ b/server508/src/com/rs2hd/net/codec/CodecFactory.java @@ -0,0 +1,50 @@ +package com.rs2hd.net.codec; + +import org.apache.mina.filter.codec.ProtocolCodecFactory; +import org.apache.mina.filter.codec.ProtocolDecoder; +import org.apache.mina.filter.codec.ProtocolEncoder; + +import com.rs2hd.WorkerThread; + +/** + * Provides access to the encoders and decoders for the 508 protocol. + * @author Graham + * + */ +public class CodecFactory implements ProtocolCodecFactory { + + public CodecFactory(WorkerThread workerThread) { + this.decoder = new RS2LoginProtocolDecoder(workerThread); + } + + public CodecFactory() { + this.decoder = new RS2ProtocolDecoder(); + } + + /** + * The encoder. + */ + private ProtocolEncoder encoder = new RS2ProtocolEncoder(); + + /** + * The decoder. + */ + private ProtocolDecoder decoder; + + @Override + /** + * Get the encoder. + */ + public ProtocolEncoder getEncoder() throws Exception { + return encoder; + } + + @Override + /** + * Get the decoder. + */ + public ProtocolDecoder getDecoder() throws Exception { + return decoder; + } + +} diff --git a/server508/src/com/rs2hd/net/codec/ISAACCipher.java b/server508/src/com/rs2hd/net/codec/ISAACCipher.java new file mode 100644 index 0000000..2b6ffd2 --- /dev/null +++ b/server508/src/com/rs2hd/net/codec/ISAACCipher.java @@ -0,0 +1,184 @@ +package com.rs2hd.net.codec; + +/** + * Implementation of an ISAAC cipher. + * + * NOTE: because Paladino76 disabled the ISAAC client side (stupid idea really) we don't use this. + * @author Varek + * + */ +public class ISAACCipher { + + public ISAACCipher(int ai[]) { + cryptArray = new int[256]; + keySetArray = new int[256]; + for(int i = 0; i < ai.length; i++) + keySetArray[i] = ai[i]; + + initializeKeySet(); + } + + public int getNextKey() { + if(keyArrayIdx-- == 0) { + generateNextKeySet(); + keyArrayIdx = 255; + } + return keySetArray[keyArrayIdx]; + } + + public void generateNextKeySet() { + cryptVar2 += ++cryptVar3; + for(int i = 0; i < 256; i++) { + int j = cryptArray[i]; + if((i & 3) == 0) + cryptVar1 ^= cryptVar1 << 13; + else + if((i & 3) == 1) + cryptVar1 ^= cryptVar1 >>> 6; + else + if((i & 3) == 2) + cryptVar1 ^= cryptVar1 << 2; + else + if((i & 3) == 3) + cryptVar1 ^= cryptVar1 >>> 16; + cryptVar1 += cryptArray[i + 128 & 0xff]; + int k; + cryptArray[i] = k = cryptArray[(j & 0x3fc) >> 2] + cryptVar1 + cryptVar2; + keySetArray[i] = cryptVar2 = cryptArray[(k >> 8 & 0x3fc) >> 2] + j; + } + + } + + public void initializeKeySet() { + int i1; + int j1; + int k1; + int l1; + int i2; + int j2; + int k2; + int l = i1 = j1 = k1 = l1 = i2 = j2 = k2 = 0x9e3779b9; + for(int i = 0; i < 4; i++) { + l ^= i1 << 11; + k1 += l; + i1 += j1; + i1 ^= j1 >>> 2; + l1 += i1; + j1 += k1; + j1 ^= k1 << 8; + i2 += j1; + k1 += l1; + k1 ^= l1 >>> 16; + j2 += k1; + l1 += i2; + l1 ^= i2 << 10; + k2 += l1; + i2 += j2; + i2 ^= j2 >>> 4; + l += i2; + j2 += k2; + j2 ^= k2 << 8; + i1 += j2; + k2 += l; + k2 ^= l >>> 9; + j1 += k2; + l += i1; + } + + for(int j = 0; j < 256; j += 8) { + l += keySetArray[j]; + i1 += keySetArray[j + 1]; + j1 += keySetArray[j + 2]; + k1 += keySetArray[j + 3]; + l1 += keySetArray[j + 4]; + i2 += keySetArray[j + 5]; + j2 += keySetArray[j + 6]; + k2 += keySetArray[j + 7]; + l ^= i1 << 11; + k1 += l; + i1 += j1; + i1 ^= j1 >>> 2; + l1 += i1; + j1 += k1; + j1 ^= k1 << 8; + i2 += j1; + k1 += l1; + k1 ^= l1 >>> 16; + j2 += k1; + l1 += i2; + l1 ^= i2 << 10; + k2 += l1; + i2 += j2; + i2 ^= j2 >>> 4; + l += i2; + j2 += k2; + j2 ^= k2 << 8; + i1 += j2; + k2 += l; + k2 ^= l >>> 9; + j1 += k2; + l += i1; + cryptArray[j] = l; + cryptArray[j + 1] = i1; + cryptArray[j + 2] = j1; + cryptArray[j + 3] = k1; + cryptArray[j + 4] = l1; + cryptArray[j + 5] = i2; + cryptArray[j + 6] = j2; + cryptArray[j + 7] = k2; + } + + for(int k = 0; k < 256; k += 8) { + l += cryptArray[k]; + i1 += cryptArray[k + 1]; + j1 += cryptArray[k + 2]; + k1 += cryptArray[k + 3]; + l1 += cryptArray[k + 4]; + i2 += cryptArray[k + 5]; + j2 += cryptArray[k + 6]; + k2 += cryptArray[k + 7]; + l ^= i1 << 11; + k1 += l; + i1 += j1; + i1 ^= j1 >>> 2; + l1 += i1; + j1 += k1; + j1 ^= k1 << 8; + i2 += j1; + k1 += l1; + k1 ^= l1 >>> 16; + j2 += k1; + l1 += i2; + l1 ^= i2 << 10; + k2 += l1; + i2 += j2; + i2 ^= j2 >>> 4; + l += i2; + j2 += k2; + j2 ^= k2 << 8; + i1 += j2; + k2 += l; + k2 ^= l >>> 9; + j1 += k2; + l += i1; + cryptArray[k] = l; + cryptArray[k + 1] = i1; + cryptArray[k + 2] = j1; + cryptArray[k + 3] = k1; + cryptArray[k + 4] = l1; + cryptArray[k + 5] = i2; + cryptArray[k + 6] = j2; + cryptArray[k + 7] = k2; + } + + generateNextKeySet(); + keyArrayIdx = 256; + } + + public int keyArrayIdx = 0; + public int keySetArray[] = null; + public int cryptArray[] = null; + public int cryptVar1 = 0; + public int cryptVar2 = 0; + public int cryptVar3 = 0; +} \ No newline at end of file diff --git a/server508/src/com/rs2hd/net/codec/RS2LoginProtocolDecoder.java b/server508/src/com/rs2hd/net/codec/RS2LoginProtocolDecoder.java new file mode 100644 index 0000000..f34617e --- /dev/null +++ b/server508/src/com/rs2hd/net/codec/RS2LoginProtocolDecoder.java @@ -0,0 +1,306 @@ +package com.rs2hd.net.codec; + +//import java.io.FileNotFoundException; +//import java.io.IOException; +//import java.util.LinkedList; +//import java.util.Queue; + +import org.apache.mina.common.ByteBuffer; +import org.apache.mina.common.IdleStatus; +import org.apache.mina.common.IoFuture; +import org.apache.mina.common.IoFutureListener; +import org.apache.mina.common.IoSession; +import org.apache.mina.filter.codec.CumulativeProtocolDecoder; +import org.apache.mina.filter.codec.ProtocolCodecFilter; +import org.apache.mina.filter.codec.ProtocolDecoderOutput; + +//import com.grahamedgecombe.rs2.cache.Cache; +import com.rs2hd.Constants; +import com.rs2hd.WorkerThread; +import com.rs2hd.model.PlayerDetails; +import com.rs2hd.net.Packet; +import com.rs2hd.packetbuilder.StaticPacketBuilder; +import com.rs2hd.util.Misc; +import com.rs2hd.util.log.Logger; + +/** + * Login protocol decoder. + * @author Graham + * + */ +public class RS2LoginProtocolDecoder extends CumulativeProtocolDecoder { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + private WorkerThread workerThread; + + public RS2LoginProtocolDecoder(WorkerThread workerThread) { + this.workerThread = workerThread; + } + +// public static Cache CACHE; +// static { +// try { +// CACHE = new Cache(com.rs2hd.Main.workingDir+"data/cache/"); +// } catch (FileNotFoundException e) { +// CACHE = null; +// } +// } + +// private Queue requests = new LinkedList(); + + /** + * Parses the data in the provided byte buffer and writes it to + * out as a Packet. + * + * @param session The IoSession the data was read from + * @param in The buffer + * @param out The decoder output stream to which to write the Packet + * @return Whether enough data was available to create a packet + */ + @Override + public boolean doDecode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out) { + try { + Object loginStageObj = session.getAttribute("LOGIN_STAGE"); + int loginStage = 0; + if(loginStageObj != null) { + loginStage = (Integer)loginStageObj; + } + //Logger.log("recv login packet, stage: "+loginStage); + switch(loginStage) { + case -2: +// if(CACHE != null) { +// while(session.isConnected() && in.remaining() >= 4) { +// int requestType = in.get() & 0xFF; +// int requestCache = in.get() & 0xFF; +// int requestId = in.getShort() & 0xFFFF; +// switch(requestType) { +// case 0: +// /* +// * Get. +// */ +// requests.add(new int[] { requestType, requestCache, requestId }); +// break; +// case 1: +// /* +// * Get now. +// */ +// session.write(getFile(requestCache, requestId)); +// break; +// case 3: +// /* +// * Clear equests. +// */ +// requests.clear(); +// break; +// } +// return true; +// } +// return false; +// } else { + if(8 <= in.remaining()) { + for(int i = 0; i < 8; i++) { + in.get(); + } + StaticPacketBuilder ukeys = new StaticPacketBuilder(); + ukeys.setBare(true); + for(int key : Constants.UPDATE_KEYS) { + ukeys.addByte((byte) key); + } + session.write(ukeys.toPacket()).addListener(new IoFutureListener() { + @Override + public void operationComplete(IoFuture arg0) { + arg0.getSession().close(); + } + }); + return true; + } + in.rewind(); + return false; +// } + case -1: + if(3 <= in.remaining()) { + in.get(); + int clientVersion = in.getShort(); + if(clientVersion == 508) { + StaticPacketBuilder u1Response = new StaticPacketBuilder(); + u1Response.setBare(true).addByte((byte) 0); + session.write(u1Response.toPacket()); + session.setAttribute("LOGIN_STAGE", -2); + } else { + StaticPacketBuilder u1Response = new StaticPacketBuilder(); + u1Response.setBare(true).addByte((byte) 6); + session.write(u1Response.toPacket()).addListener(new IoFutureListener() { + @Override + public void operationComplete(IoFuture arg0) { + arg0.getSession().close(); + } + }); + session.removeAttribute("LOGIN_STAGE"); + } + return true; + } + in.rewind(); + return false; + case 0: //first login packets + if(2 <= in.remaining()) { + int protocolId = in.get() & 0xff; + int nameHash = in.get() & 0xff; + if(protocolId == 15) { + session.setAttribute("LOGIN_STAGE", -1); + } else { + long serverSessionKey = ((long) (java.lang.Math.random() * 99999999D) << 32) + (long) (java.lang.Math.random() * 99999999D); + StaticPacketBuilder s1Response = new StaticPacketBuilder(); + s1Response.setBare(true).addByte((byte) 0).addLong(serverSessionKey); + session.setAttribute("SERVER_SESSION_KEY", serverSessionKey); + session.write(s1Response.toPacket()); + session.setAttribute("LOGIN_STAGE", 1); + session.setAttribute("NAME_HASH", nameHash); + //Logger.log("protocolId="+protocolId+"; namePart="+namePart); + } + return true; + } else { + in.rewind(); + return false; + } + case 1: //here's where we get the username and password + @SuppressWarnings("unused") + int loginType = -1, loginPacketSize = -1; + if(3 <= in.remaining()) { + loginType = in.get() & 0xff; //should be 16 or 18 + loginPacketSize = in.getUnsignedShort(); + //Logger.log("loginType="+loginType); + } else { + in.rewind(); + return false; + } + if(loginPacketSize <= in.remaining()) { + byte[] payload = new byte[loginPacketSize]; + in.get(payload); + Packet p = new Packet(session, -1, payload); + @SuppressWarnings("unused") + int loginEncryptPacketSize = loginPacketSize - (36 + 1 + 1 + 2); // can't be negative + int clientVersion = p.readInt(); + if(clientVersion != 508) { + Logger.getInstance().error("Invalid ver : " + clientVersion); + session.close(); + return true; + } + @SuppressWarnings("unused") + int lowMemoryVersion = p.readByte() & 0xff; // is this still low mem ver? + p.readInt(); + for(int n=0; n<24; n++) { + int cacheIDX = p.readByte(); //i don't care personally + if(cacheIDX == 0) { + // possibly a bot + session.close(); + return true; + } + } + p.readRS2String(); // settings string? + for(int n=0; n<29; n++) { + int junk = p.readInt(); + if(junk == 0 && n != 0) { + // possibly a bot + session.close(); + return true; + } + } + int tmpEncryptPacketSize = p.readByte() & 0xff; //hopefully same as (--loginEncryptPacketSize) + boolean hd = true; + if(tmpEncryptPacketSize != 10) { + @SuppressWarnings("unused") + int encryptPacketId = p.readByte() & 0xff; //hopefully 10 + hd = false; + } + long clientSessionKey = p.readLong(); + long serverSessionKey = p.readLong(); + //int uid = p.readInt(); //unique identifier for this session i think ? + long l = p.readLong(); + int hash = (int) (31 & l >> 16); + if(hash != (Integer) session.getAttribute("NAME_HASH")) { + // invalid name hash (possibly a bot attacking) + session.close(); + return true; + } + String user = Misc.longToPlayerName(l), //given username + pass = p.readRS2String(); //given password + + int sessionKey[] = new int[4]; + sessionKey[0] = (int)(clientSessionKey >> 32); + sessionKey[1] = (int)clientSessionKey; + sessionKey[2] = (int)(serverSessionKey >> 32); + sessionKey[3] = (int)serverSessionKey; + + // set in ISAAC + for(int i = 0; i < 4; i++) sessionKey[i] += 50; + // set out ISAAC + + session.removeAttribute("LOGIN_STAGE"); + session.removeAttribute("NAME_HASH"); + + /** + * Here's where we add the user to the login queue, and if the login is + * accepted, we change their session filter to a standard RS2ProtocolCodec. + */ + logger.debug("Login request: [username="+user+",password="+pass+"]."); + + PlayerDetails d = new PlayerDetails(user, pass, session, hd); + workerThread.loadPlayer(d); + + session.setIdleTime(IdleStatus.BOTH_IDLE, Constants.SESSION_IDLE_TIME); + + session.getFilterChain().remove("protocolFilter"); + session.getFilterChain().addLast("protocolFilter", new ProtocolCodecFilter(new CodecFactory())); + + return true; + } else { + in.rewind(); + return false; + } + } + } catch(Exception e) { + //logger.stackTrace(e); + } + return false; + } + + + +// private ByteBuffer getFile(int requestCache, int requestId) throws IOException { +// ByteBuffer buffer = ByteBuffer.allocate(520); +// buffer.put((byte) requestCache); +// buffer.putShort((short) requestId); +// byte[] cache = CACHE.read(CACHE.index(requestCache, requestId)); +// int len = (((cache[1] & 0xff) << 24)+((cache[2] & 0xff) << 16)+((cache[3] & 0xff) << 8)+(cache[4] & 0xff)) + 9; +// if(cache[0] == 0) { +// len -= 4; +// } +// int c = 3; +// for(int i = 0; i < len; i++) { +// if(c == 512) { +// buffer.put((byte) 0xFF); +// c = 1; +// } +// buffer.put(cache[i]); +// } +// return buffer.flip(); +// } + + + + /** + * Releases the buffer used by the given session. + * + * @param session The session for which to release the buffer + * @throws Exception if failed to dispose all resources + */ + @Override + public void dispose(IoSession session) throws Exception { + super.dispose(session); + } + +} diff --git a/server508/src/com/rs2hd/net/codec/RS2ProtocolDecoder.java b/server508/src/com/rs2hd/net/codec/RS2ProtocolDecoder.java new file mode 100644 index 0000000..7bb767b --- /dev/null +++ b/server508/src/com/rs2hd/net/codec/RS2ProtocolDecoder.java @@ -0,0 +1,82 @@ +package com.rs2hd.net.codec; + +import org.apache.mina.common.ByteBuffer; +import org.apache.mina.common.IoSession; +import org.apache.mina.filter.codec.CumulativeProtocolDecoder; +import org.apache.mina.filter.codec.ProtocolDecoderOutput; + +import com.rs2hd.Constants; +import com.rs2hd.net.Packet; +import com.rs2hd.util.log.Logger; + +public class RS2ProtocolDecoder extends CumulativeProtocolDecoder { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * To make sure only the CodecFactory can initialise us. + */ + protected RS2ProtocolDecoder() { + } + + @Override + /** + * Decodes a message. + * @param session + * @param in + * @param out + * @return + */ + public boolean doDecode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out) throws Exception { + try { + if(in.remaining() >= 1) { + // get opcode + int id = in.get() & 0xFF; + // get length + int len = Constants.PACKET_LENGTHS[id]; + if(len == -1) { + // variable length packet + if(in.remaining() >= 1) { + len = in.get() & 0xff; + } else { + in.rewind(); + return false; + } + } + if(len < 0) { + len = in.remaining(); + logger.warning("Unkown length: " + id + ", guessed to be: " + len + "."); + //throw new Exception("Packet length not known: " + id); + } + // if we can get the packet then do so + if (in.remaining() >= len) { + byte[] payload = new byte[len]; + in.get(payload); + Packet p = new Packet(session, id, payload); + out.write(p); + return true; + } else { + in.rewind(); + return false; + } + } + return false; + } catch(Exception err) { + logger.stackTrace(err); + return false; + } + } + + @Override + /** + * Releases resources used by this decoder. + * @param session + */ + public void dispose(IoSession session) throws Exception { + super.dispose(session); + } + +} diff --git a/server508/src/com/rs2hd/net/codec/RS2ProtocolEncoder.java b/server508/src/com/rs2hd/net/codec/RS2ProtocolEncoder.java new file mode 100644 index 0000000..d94d0ff --- /dev/null +++ b/server508/src/com/rs2hd/net/codec/RS2ProtocolEncoder.java @@ -0,0 +1,72 @@ +package com.rs2hd.net.codec; + +import org.apache.mina.common.ByteBuffer; +import org.apache.mina.common.IoSession; +import org.apache.mina.filter.codec.ProtocolEncoder; +import org.apache.mina.filter.codec.ProtocolEncoderOutput; + +import com.rs2hd.net.Packet; +import com.rs2hd.util.log.Logger; + +public class RS2ProtocolEncoder implements ProtocolEncoder { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + /** + * Only CodecFactory can create us. + */ + protected RS2ProtocolEncoder() {} + + @Override + /** + * Encodes a message. + * @param session + * @param message + * @param out + */ + public void encode(IoSession session, Object message, ProtocolEncoderOutput out) throws Exception { + try { + Packet p = (Packet) message; + byte[] data = p.getData(); + int dataLength = p.getLength(); + ByteBuffer buffer; + if (!p.isBare()) { + buffer = ByteBuffer.allocate(dataLength + 3); + int id = p.getId(); + buffer.put((byte)id); + if(p.getSize() != Packet.Size.Fixed) { //variable length + //Logger.log("variable length: id="+id+",dataLength="+dataLength); + if(p.getSize() == Packet.Size.VariableByte) { + if(dataLength > 255) //trying to send more data then we can represent with 8 bits! + throw new IllegalArgumentException("Tried to send packet length "+dataLength+" in 8 bits [pid="+p.getId()+"]"); + buffer.put((byte)dataLength); + } else if(p.getSize() == Packet.Size.VariableShort) { + if(dataLength > 65535) //trying to send more data then we can represent with 16 bits! + throw new IllegalArgumentException("Tried to send packet length "+dataLength+" in 16 bits [pid="+p.getId()+"]"); + buffer.put((byte)(dataLength >> 8)); + buffer.put((byte)dataLength); + } + } + } else { + buffer = ByteBuffer.allocate(dataLength); + } + buffer.put(data, 0, dataLength); + buffer.flip(); + out.write(buffer); + } catch(Exception err) { + logger.stackTrace(err); + } + } + + @Override + /** + * Releases resources used by this encoder. + * @param session + */ + public void dispose(IoSession session) throws Exception { + } + +} diff --git a/server508/src/com/rs2hd/packetbuilder/NPCUpdate.java b/server508/src/com/rs2hd/packetbuilder/NPCUpdate.java new file mode 100644 index 0000000..f9aab3f --- /dev/null +++ b/server508/src/com/rs2hd/packetbuilder/NPCUpdate.java @@ -0,0 +1,169 @@ +package com.rs2hd.packetbuilder; + +import com.rs2hd.Constants; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet.Size; + +/** + * Handles NPC updating. + * @author Graham + * + */ +public class NPCUpdate implements PacketBuilder { + + /** + * Prevent instance creation. + */ + private NPCUpdate() {} + + /** + * Update the specified player's NPCs. + * @param p + */ + public static void update(Player p) { + StaticPacketBuilder mainPacket = new StaticPacketBuilder().setId(222).setSize(Size.VariableShort).initBitAccess(); + StaticPacketBuilder updateBlock = new StaticPacketBuilder().setBare(true); + mainPacket.addBits(8, p.getNpcListSize()); + int size = p.getNpcListSize(); + p.setNpcListSize(0); + boolean[] newNpc = new boolean[Constants.NPC_CAP]; + for(int i = 0; i < size; i++) { + if(p.getNpcList()[i] == null || !p.getNpcList()[i].getLocation().withinDistance(p.getLocation()) || p.getUpdateFlags().didTeleport() || p.getNpcList()[i].isHidden()) { + if(p.getNpcList()[i] != null) { + p.getNpcsInList()[p.getNpcList()[i].getIndex()] = 0; + // p.getNpcList()[i] = null; + } + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 3); + } else { + updateNpcMovement(p.getNpcList()[i], mainPacket); + if(p.getNpcList()[i].getUpdateFlags().isUpdateRequired()) { + appendUpdateBlock(p.getNpcList()[i], updateBlock); + } + p.getNpcList()[p.getNpcListSize()] = p.getNpcList()[i]; + p.setNpcListSize(p.getNpcListSize()+1); + } + } + for(NPC npc : World.getInstance().getNpcList()) { + if(npc == null || p.getNpcsInList()[npc.getIndex()] == 1 || !npc.getLocation().withinDistance(p.getLocation()) || npc.isHidden()) { + continue; + } + addNewNpc(p, npc, mainPacket); + if(npc.getUpdateFlags().isUpdateRequired()) { + appendUpdateBlock(npc, updateBlock); + } + newNpc[npc.getIndex()] = true; + } + if(updateBlock.getLength() >= 3) { + mainPacket.addBits(15, 32767); + } + mainPacket.finishBitAccess(); + if(updateBlock.getLength() > 0) { + mainPacket.addBytes(updateBlock.toPacket().getData()); + } + p.getSession().write(mainPacket.toPacket()); + } + + private static void addNewNpc(Player p, NPC npc, StaticPacketBuilder mainPacket) { + p.getNpcsInList()[npc.getIndex()] = 1; + p.getNpcList()[p.getNpcListSize()] = npc; + p.setNpcListSize(p.getNpcListSize()+1); + mainPacket.addBits(15, npc.getIndex()); + mainPacket.addBits(14, npc.getId()); + mainPacket.addBits(1, npc.getUpdateFlags().isUpdateRequired() ? 1 : 0); + int y = npc.getLocation().getY() - p.getLocation().getY(); + if(y < 0) { + y += 32; + } + int x = npc.getLocation().getX() - p.getLocation().getX(); + if(x < 0) { + x += 32; + } + mainPacket.addBits(5, y); + mainPacket.addBits(5, x); + mainPacket.addBits(3, 0); + mainPacket.addBits(1, 1); + } + + private static void updateNpcMovement(NPC npc, StaticPacketBuilder mainPacket) { + int sprite = npc.getSprite(); + if(sprite == -1) { + if(npc.getUpdateFlags().isUpdateRequired()) { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 0); + } else { + mainPacket.addBits(1, 0); + } + } else { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 1); + int dir = Constants.XLATE_DIRECTION_TO_CLIENT[sprite]; + mainPacket.addBits(3, dir); + mainPacket.addBits(1, npc.getUpdateFlags().isUpdateRequired() ? 1 : 0); + } + } + + private static void appendUpdateBlock(NPC npc, StaticPacketBuilder updateBlock) { + int mask = 0x0; + if(npc.getUpdateFlags().isFaceToUpdateRequired()) { + mask |= 0x10; + } + if(npc.getUpdateFlags().isAnimationUpdateRequired()) { + mask |= 0x1; + } + if(npc.getUpdateFlags().isGraphicsUpdateRequired()) { + mask |= 0x2; + } + if(npc.getUpdateFlags().isHit2UpdateRequired()) { + mask |= 0x20; + } + if(npc.getUpdateFlags().isHit1UpdateRequired()) { + mask |= 0x4; + } + updateBlock.addByte((byte) mask); + if(npc.getUpdateFlags().isFaceToUpdateRequired()) { + appendFaceToUpdate(npc, updateBlock); + } + if(npc.getUpdateFlags().isAnimationUpdateRequired()) { + appendAnimationUpdtae(npc, updateBlock); + } + if(npc.getUpdateFlags().isGraphicsUpdateRequired()) { + appendGraphicsUpdate(npc, updateBlock); + } + if(npc.getUpdateFlags().isHit2UpdateRequired()) { + appendHit2Update(npc, updateBlock); + } + if(npc.getUpdateFlags().isHit1UpdateRequired()) { + appendHit1Update(npc, updateBlock); + } + } + + private static void appendHit1Update(NPC npc, StaticPacketBuilder updateBlock) { + updateBlock.addByte((byte) npc.getHits().getHitDamage1()); + updateBlock.addByte((byte) npc.getHits().getHitType1()); + int hpRatio = npc.getHitpoints() * 255 / npc.getDefinition().getHitpoints(); + updateBlock.addByteS(hpRatio); + } + + private static void appendHit2Update(NPC npc, StaticPacketBuilder updateBlock) { + updateBlock.addByte((byte) npc.getHits().getHitDamage2()); + updateBlock.addByteS((byte) npc.getHits().getHitType2()); + } + + private static void appendGraphicsUpdate(NPC npc, StaticPacketBuilder updateBlock) { + updateBlock.addShortA(npc.getLastGraphics().getId()); + updateBlock.addInt2(npc.getLastGraphics().getDelay()); + } + + private static void appendAnimationUpdtae(NPC npc, StaticPacketBuilder updateBlock) { + updateBlock.addShortA(npc.getLastAnimation().getId()); + updateBlock.addByte((byte) npc.getLastAnimation().getDelay()); + } + + private static void appendFaceToUpdate(NPC npc, StaticPacketBuilder updateBlock) { + updateBlock.addShort(npc.getUpdateFlags().getFaceTo()); + } + +} diff --git a/server508/src/com/rs2hd/packetbuilder/PacketBuilder.java b/server508/src/com/rs2hd/packetbuilder/PacketBuilder.java new file mode 100644 index 0000000..4feb5c1 --- /dev/null +++ b/server508/src/com/rs2hd/packetbuilder/PacketBuilder.java @@ -0,0 +1,10 @@ +package com.rs2hd.packetbuilder; + +/** + * Packet builder interface + * @author Graham + * + */ +public interface PacketBuilder { + +} diff --git a/server508/src/com/rs2hd/packetbuilder/PlayerUpdate.java b/server508/src/com/rs2hd/packetbuilder/PlayerUpdate.java new file mode 100644 index 0000000..9b69163 --- /dev/null +++ b/server508/src/com/rs2hd/packetbuilder/PlayerUpdate.java @@ -0,0 +1,348 @@ +package com.rs2hd.packetbuilder; + +import com.rs2hd.Constants; +import com.rs2hd.model.Appearance; +import com.rs2hd.model.Equipment; +import com.rs2hd.model.Item; +import com.rs2hd.model.Player; +import com.rs2hd.model.PlayerUpdateFlags; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet.Size; +import com.rs2hd.util.Misc; + +/** + * Player update block. + * @author Graham + * + */ +public class PlayerUpdate implements PacketBuilder { + + /** + * Prevent instance creation. + */ + private PlayerUpdate() {} + + /** + * Update the specified player. + * @param p + */ + public static void update(Player p) { + if(p.getUpdateFlags().didMapRegionChange()) { + p.getActionSender().sendMapRegion(); + } + StaticPacketBuilder mainPacket = new StaticPacketBuilder().setId(216).setSize(Size.VariableShort).initBitAccess(); + StaticPacketBuilder updateBlock = new StaticPacketBuilder().setBare(true); + updateThisPlayerMovement(p, mainPacket); + if(p.getUpdateFlags().isUpdateRequired()) { + appendUpdateBlock(p, updateBlock, false); + } + mainPacket.addBits(8, p.getPlayerListSize()); + int size = p.getPlayerListSize(); + p.setPlayerListSize(0); + boolean[] newPlayer = new boolean[Constants.PLAYER_CAP]; + for(int i = 0; i < size; i++) { + if(p.getPlayerList()[i] == null || p.getPlayerList()[i].isDisconnected() || !p.getPlayerList()[i].getLocation().withinDistance(p.getLocation()) || p.getPlayerList()[i].getUpdateFlags().didTeleport() || p.getPlayerList()[i].isHidden()) { + if(p.getPlayerList()[i] != null) { + p.getPlayersInList()[p.getPlayerList()[i].getIndex()] = 0; + } + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 3); + } else { + updatePlayerMovement(p.getPlayerList()[i], mainPacket); + p.getPlayerList()[p.getPlayerListSize()] = p.getPlayerList()[i]; + p.setPlayerListSize(p.getPlayerListSize()+1); + } + } + for(Player p2 : World.getInstance().getPlayerList()) { + if(p2 == null || p2.getIndex() == p.getIndex()) { + continue; + } + if(p.getPlayersInList()[p2.getIndex()] == 1 || !p2.getLocation().withinDistance(p.getLocation()) || p2.isHidden()) { + continue; + } + newPlayer[p.getPlayerListSize()] = true; + addNewPlayer(p, p2, mainPacket); + } + for(int i = 0; i < p.getPlayerListSize(); i++) { + if(newPlayer[i]) { + appendUpdateBlock(p.getPlayerList()[i], updateBlock, true); + } else { + if(p.getPlayerList()[i].getUpdateFlags().isUpdateRequired()) { + appendUpdateBlock(p.getPlayerList()[i], updateBlock, false); + } + } + } + if(updateBlock.getLength() > 0) { + mainPacket.addBits(11, 2047); + } + mainPacket.finishBitAccess(); + if(updateBlock.getLength() > 0) { + mainPacket.addBytes(updateBlock.toPacket().getData()); + } + p.getSession().write(mainPacket.toPacket()); + } + + private static void addNewPlayer(Player p, Player p2, StaticPacketBuilder updateBlock) { + p.getPlayersInList()[p2.getIndex()] = 1; + p.getPlayerList()[p.getPlayerListSize()] = p2; + p.setPlayerListSize(p.getPlayerListSize()+1); + updateBlock.addBits(11, p2.getIndex()); + int yPos = p2.getLocation().getY() - p.getLocation().getY(); + int xPos = p2.getLocation().getX() - p.getLocation().getX(); + if(xPos < 0) { + xPos += 32; + } + if(yPos < 0) { + yPos += 32; + } + updateBlock.addBits(5, xPos); + updateBlock.addBits(1, 1); + updateBlock.addBits(3, 1); + updateBlock.addBits(1, 1); + updateBlock.addBits(5, yPos); + } + + private static void updatePlayerMovement(Player player, StaticPacketBuilder mainPacket) { + if(player.getSprites().getPrimarySprite() == -1) { + if(player.getUpdateFlags().isUpdateRequired()) { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 0); + } else { + mainPacket.addBits(1, 0); + } + } else if(player.getSprites().getSecondarySprite() == -1) { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 1); + mainPacket.addBits(3, player.getSprites().getPrimarySprite()); + mainPacket.addBits(1, player.getUpdateFlags().isUpdateRequired() ? 1 : 0); + } else { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 2); + mainPacket.addBits(3, player.getSprites().getPrimarySprite()); + mainPacket.addBits(3, player.getSprites().getSecondarySprite()); + mainPacket.addBits(1, player.getUpdateFlags().isUpdateRequired() ? 1 : 0); + } + } + + private static void updateThisPlayerMovement(Player p, StaticPacketBuilder mainPacket) { + if(p.getUpdateFlags().didTeleport()) { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 3); + mainPacket.addBits(7, p.getLocation().getLocalX(p.getUpdateFlags().getLastRegion())); + mainPacket.addBits(1, 1); + mainPacket.addBits(2, p.getLocation().getZ()); + mainPacket.addBits(1, p.getUpdateFlags().isUpdateRequired() ? 1 : 0); + mainPacket.addBits(7, p.getLocation().getLocalY(p.getUpdateFlags().getLastRegion())); + } else { + if(p.getSprites().getPrimarySprite() == -1) { + mainPacket.addBits(1, p.getUpdateFlags().isUpdateRequired() ? 1 : 0); + if(p.getUpdateFlags().isUpdateRequired()) { + mainPacket.addBits(2, 0); + } + } else { + if(p.getSprites().getSecondarySprite() != -1) { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 2); + mainPacket.addBits(3, p.getSprites().getPrimarySprite()); + mainPacket.addBits(3, p.getSprites().getSecondarySprite()); + mainPacket.addBits(1, p.getUpdateFlags().isUpdateRequired() ? 1 : 0); + } else { + mainPacket.addBits(1, 1); + mainPacket.addBits(2, 1); + mainPacket.addBits(3, p.getSprites().getPrimarySprite()); + mainPacket.addBits(1, p.getUpdateFlags().isUpdateRequired() ? 1 : 0); + } + } + } + } + + private static void appendUpdateBlock(Player p, StaticPacketBuilder updateBlock, boolean forceAppearance) { + int mask = 0x0; + + PlayerUpdateFlags flags = p.getUpdateFlags(); + if(flags.isHit2UpdateRequired()) { + mask |= 0x200; + } + if(flags.isFaceToUpdateRequired()) { + mask |= 0x20; + } + if(flags.isGraphicsUpdateRequired()) { + mask |= 0x400; + } + if(flags.isChatTextUpdateRequired()) { + mask |= 0x8; + } + if(flags.isAnimationUpdateRequired()) { + mask |= 0x1; + } + if(flags.isAppearanceUpdateRequired() || forceAppearance) { + mask |= 0x80; + } + if(flags.isHitUpdateRequired()) { + mask |= 0x2; + } + + if (mask >= 0x100) { + mask |= 0x10; + updateBlock.addByte((byte) (mask & 0xFF)); + updateBlock.addByte((byte) (mask >> 8)); + } else { + updateBlock.addByte((byte) (mask & 0xFF)); + } + + if(flags.isHit2UpdateRequired()) { + appendHit2Update(p, updateBlock); + } + if(flags.isFaceToUpdateRequired()) { + appendFaceToUpdate(p, updateBlock); + } + if(flags.isGraphicsUpdateRequired()) { + appendGraphicsUpdate(p, updateBlock); + } + if(flags.isChatTextUpdateRequired()) { + appendChatTextUpdate(p, updateBlock); + } + if(flags.isAnimationUpdateRequired()) { + appendAnimationUpdate(p, updateBlock); + } + if(flags.isAppearanceUpdateRequired() || forceAppearance) { + appendAppearanceUpdate(p, updateBlock); + } + if(flags.isHitUpdateRequired()) { + appendHitUpdate(p, updateBlock); + } + + } + + private static void appendFaceToUpdate(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addShort(p.getUpdateFlags().getFaceTo()); + } + + private static void appendHit2Update(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addByteS(p.getHits().getHitDamage2()); + updateBlock.addByteA(p.getHits().getHitType2()); + } + + private static void appendHitUpdate(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addByteS(p.getHits().getHitDamage1()); + updateBlock.addByteS(p.getHits().getHitType1()); + int hpRatio = p.getSkills().getLevel(3) * 255 / p.getSkills().getLevelForXp(3); + updateBlock.addByteS(hpRatio); + } + + private static void appendGraphicsUpdate(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addShort(p.getLastGraphics().getId()); + updateBlock.addInt1(p.getLastGraphics().getDelay()); + } + + private static void appendAnimationUpdate(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addShort(p.getLastAnimation().getId()); + updateBlock.addByteS(p.getLastAnimation().getDelay()); + } + + private static void appendChatTextUpdate(Player p, StaticPacketBuilder updateBlock) { + updateBlock.addShortA(p.getLastChatMessage().getEffects()); + updateBlock.addByteC(p.getRights()); + byte[] chatStr = new byte[256]; + chatStr[0] = (byte) p.getLastChatMessage().getChatText().length(); + int offset = 1 + Misc.encryptPlayerChat(chatStr, 0, 1, p.getLastChatMessage().getChatText().length(), p.getLastChatMessage().getChatText().getBytes()); + updateBlock.addByteC(offset); + updateBlock.addBytes(chatStr, 0, offset); + + } + + private static void appendAppearanceUpdate(Player p, StaticPacketBuilder updateBlock) { + StaticPacketBuilder playerProps = new StaticPacketBuilder().setBare(true); + + Appearance app = p.getAppearance(); + playerProps.addByte((byte) (app.getGender() & 0xFF)); + if((app.getGender() & 0x2) == 2) { + playerProps.addByte((byte) 0); + playerProps.addByte((byte) 0); + } + playerProps.addByte((byte) p.getHeadIcons().getPkIcon()); + playerProps.addByte((byte) p.getHeadIcons().getPrayerIcon()); + if(!app.isNpc()) { + for(int i = 0; i < 4; i++) { + if(p.getEquipment().get(i) != null) { + playerProps.addShort(32768 + p.getEquipment().get(i).getDefinition().getEquipId()); + } else { + playerProps.addByte((byte) 0); + } + } + if(p.getEquipment().get(Equipment.SLOT_CHEST) != null) { + playerProps.addShort(32768 + p.getEquipment().get(Equipment.SLOT_CHEST).getDefinition().getEquipId()); + } else { + playerProps.addShort(0x100 + app.getLook(2)); + } + if(p.getEquipment().get(Equipment.SLOT_SHIELD) != null) { + playerProps.addShort(32768 + p.getEquipment().get(Equipment.SLOT_SHIELD).getDefinition().getEquipId()); + } else { + playerProps.addByte((byte) 0); + } + Item chest = p.getEquipment().get(Equipment.SLOT_CHEST); + if(chest != null) { + if(!Equipment.isFullBody(chest.getDefinition())) { + playerProps.addShort(0x100 + app.getLook(3)); + } else { + playerProps.addByte((byte) 0); + } + } else { + playerProps.addShort(0x100 + app.getLook(3)); + } + if(p.getEquipment().get(Equipment.SLOT_LEGS) != null) { + playerProps.addShort(32768 + p.getEquipment().get(Equipment.SLOT_LEGS).getDefinition().getEquipId()); + } else { + playerProps.addShort(0x100 + app.getLook(5)); + } + Item hat = p.getEquipment().get(Equipment.SLOT_HAT); + if(hat != null) { + if(!Equipment.isFullHat(hat.getDefinition()) && !Equipment.isFullMask(hat.getDefinition())) { + playerProps.addShort(0x100 + app.getLook(0)); + } else { + playerProps.addByte((byte) 0); + } + } else { + playerProps.addShort(0x100 + app.getLook(0)); + } + if(p.getEquipment().get(Equipment.SLOT_HANDS) != null) { + playerProps.addShort(32768 + p.getEquipment().get(Equipment.SLOT_HANDS).getDefinition().getEquipId()); + } else { + playerProps.addShort(0x100 + app.getLook(4)); + } + if(p.getEquipment().get(Equipment.SLOT_FEET) != null) { + playerProps.addShort(32768 + p.getEquipment().get(Equipment.SLOT_FEET).getDefinition().getEquipId()); + } else { + playerProps.addShort(0x100 + app.getLook(6)); + } + if(hat != null) { + if(!Equipment.isFullMask(hat.getDefinition())) { + playerProps.addShort(0x100 + app.getLook(1)); + } else { + playerProps.addByte((byte) 0); + } + } else { + playerProps.addShort(0x100 + app.getLook(1)); + } + } else { + playerProps.addShort(-1); + playerProps.addShort(app.getNpcId()); + } + for(int colour : app.getColours()) { + playerProps.addByte((byte) colour); + } + playerProps.addShort(p.getEquipment().getStandAnim()); // standAnimIndex + playerProps.addShort(0x337); // standTurnAnimIndex + playerProps.addShort(p.getEquipment().getWalkAnim()); // walkAnimIndex + playerProps.addShort(0x334); // turn180AnimIndex + playerProps.addShort(0x335); // turn90CWAnimIndex + playerProps.addShort(0x336); // turn90CCWAnimIndex + playerProps.addShort(p.getEquipment().getRunAnim()); // runAnimIndex + playerProps.addLong(Misc.stringToLong(p.getPlayerDetails().getUsername())); + playerProps.addByte((byte) p.getSkills().getCombatLevel()); //combat level + playerProps.addShort(0); + updateBlock.addByte((byte) (playerProps.getLength() & 0xFF)); + updateBlock.addBytes(playerProps.toPacket().getData(), 0, playerProps.getLength()); + } + +} diff --git a/server508/src/com/rs2hd/packetbuilder/StaticPacketBuilder.java b/server508/src/com/rs2hd/packetbuilder/StaticPacketBuilder.java new file mode 100644 index 0000000..955b351 --- /dev/null +++ b/server508/src/com/rs2hd/packetbuilder/StaticPacketBuilder.java @@ -0,0 +1,371 @@ +package com.rs2hd.packetbuilder; + +import com.rs2hd.net.Packet; + +/** + * A mutable sequence of bytes used to construct the immutable + * Packet objects. + * By default, methods use big endian byte ordering. + */ +public class StaticPacketBuilder implements PacketBuilder { + /** + * Default capacity + */ + private static final int DEFAULT_SIZE = 32; + /** + * The payload buffer + */ + private byte[] payload; + /** + * Current number of bytes used in the buffer + */ + private int curLength; + /** + * ID of the packet + */ + private int id; + /** + * Current index into the buffer by bits + */ + private int bitPosition = 0; + private Packet.Size size = Packet.Size.Fixed; + /** + * Whether this packet does not use the standard packet header + */ + private boolean bare = false; + + /** + * Bitmasks for addBits() + */ + private static int bitmasks[] = { + 0, 0x1, 0x3, 0x7, + 0xf, 0x1f, 0x3f, 0x7f, + 0xff, 0x1ff, 0x3ff, 0x7ff, + 0xfff, 0x1fff, 0x3fff, 0x7fff, + 0xffff, 0x1ffff, 0x3ffff, 0x7ffff, + 0xfffff, 0x1fffff, 0x3fffff, 0x7fffff, + 0xffffff, 0x1ffffff, 0x3ffffff, 0x7ffffff, + 0xfffffff, 0x1fffffff, 0x3fffffff, 0x7fffffff, + -1 + }; + + /** + * Constructs a packet builder with no data and an initial capacity + * of DEFAULT_SIZE. + * + * @see DEFAULT_SIZE + */ + public StaticPacketBuilder() { + this(DEFAULT_SIZE); + } + + public byte[] getPayload() { + return payload; + } + + /** + * Constructs a packet builder with no data and an initial capacity + * of capacity. + * + * @param capacity The initial capacity of the buffer + */ + public StaticPacketBuilder(int capacity) { + payload = new byte[capacity]; + } + + /** + * Ensures that the buffer is at least minimumBytes bytes. + * + * @param minimumCapacity The size needed + */ + private void ensureCapacity(int minimumCapacity) { + if (minimumCapacity >= payload.length) + expandCapacity(minimumCapacity); + } + + /** + * Expands the buffer to the specified size. + * + * @param minimumCapacity The minimum capacity to which to expand + * @see java.lang.AbstractStringBuilder#expandCapacity(int) + */ + private void expandCapacity(int minimumCapacity) { + int newCapacity = (payload.length + 1) * 2; + if (newCapacity < 0) { + newCapacity = Integer.MAX_VALUE; + } else if (minimumCapacity > newCapacity) { + newCapacity = minimumCapacity; + } + byte[] newPayload = new byte[newCapacity]; + try { + while(curLength > payload.length) + curLength--; + System.arraycopy(payload, 0, newPayload, 0, curLength); + } catch(Exception e) { + + } + payload = newPayload; + } + + /** + * Sets this packet as bare. A bare packet will contain only the payload + * data, rather than having the standard packet header prepended. + * + * @param bare Whether this packet is to be sent bare + */ + public StaticPacketBuilder setBare(boolean bare) { + this.bare = bare; + return this; + } + + /** + * Sets the ID for this packet. + * + * @param id The ID of the packet + */ + public StaticPacketBuilder setId(int id) { + this.id = id; + return this; + } + + public StaticPacketBuilder setSize(Packet.Size s) { + size = s; + return this; + } + + public StaticPacketBuilder initBitAccess() { + bitPosition = curLength * 8; + return this; + } + + public StaticPacketBuilder finishBitAccess() { + curLength = (bitPosition + 7) / 8; + return this; + } + + /** + * TODO needs a proper description. + */ + public StaticPacketBuilder addBits(int numBits, int value) { + int bytePos = bitPosition >> 3; + int bitOffset = 8 - (bitPosition & 7); + bitPosition += numBits; + curLength = (bitPosition + 7) / 8; + ensureCapacity(curLength); + for (; numBits > bitOffset; bitOffset = 8) { + payload[bytePos] &= ~ bitmasks[bitOffset]; // mask out the desired area + payload[bytePos++] |= (value >> (numBits - bitOffset)) & bitmasks[bitOffset]; + + numBits -= bitOffset; + } + if (numBits == bitOffset) { + payload[bytePos] &= ~ bitmasks[bitOffset]; + payload[bytePos] |= value & bitmasks[bitOffset]; + } else { + payload[bytePos] &= ~ (bitmasks[numBits] << (bitOffset - numBits)); + payload[bytePos] |= (value & bitmasks[numBits]) << (bitOffset - numBits); + } + return this; + } + + /** + * Adds the contents of byte array data + * to the packet. The size of this packet will grow by the length of + * the provided array. + * + * @param data The bytes to add to this packet + * @return A reference to this object + */ + public StaticPacketBuilder addBytes(byte[] data) { + return addBytes(data, 0, data.length); + } + + /** + * Adds the contents of byte array data, + * starting at index offset. The size of this packet will + * grow by len bytes. + * + * @param data The bytes to add to this packet + * @param offset The index of the first byte to append + * @param len The number of bytes to append + * @return A reference to this object + */ + public StaticPacketBuilder addBytes(byte[] data, int offset, int len) { + int newLength = curLength + len; + ensureCapacity(newLength); + System.arraycopy(data, offset, payload, curLength, len); + curLength = newLength; + return this; + } + + public StaticPacketBuilder addLEShortA(int i) { + ensureCapacity(curLength + 2); + addByte((byte)(i + 128), false); + addByte((byte)(i >> 8), false); + return this; + } + + public StaticPacketBuilder addShortA(int i) { + ensureCapacity(curLength + 2); + addByte((byte)(i >> 8), false); + addByte((byte)(i + 128), false); + return this; + } + + /** + * Adds a byte to the data buffer. The size of this + * packet will grow by one byte. + * + * @param val The byte value to add + * @return A reference to this object + */ + public StaticPacketBuilder addByte(byte val) { + return addByte(val, true); + } + + public StaticPacketBuilder addByteA(int i) { + return addByte((byte)(i + 128), true); + } + + /** + * Adds a byte to the data buffer. The size of this + * packet will grow by one byte. + * + * @param val The byte value to add + * @param checkCapacity Whether the buffer capacity should be checked + * @return A reference to this object + */ + private StaticPacketBuilder addByte(byte val, boolean checkCapacity) { + if (checkCapacity) + ensureCapacity(curLength + 1); + payload[curLength++] = val; + return this; + } + + /** + * Adds a short to the data stream. The size of this + * packet will grow by two bytes. + * + * @param val The short value to add + * @return A reference to this object + */ + public StaticPacketBuilder addShort(int val) { + ensureCapacity(curLength + 2); + addByte((byte) (val >> 8), false); + addByte((byte) val, false); + return this; + } + + public StaticPacketBuilder addLEShort(int val) { + ensureCapacity(curLength + 2); + addByte((byte) val, false); + addByte((byte) (val >> 8), false); + return this; + } + + public StaticPacketBuilder setShort(int val, int offset) { + payload[offset++] = (byte) (val >> 8); + payload[offset++] = (byte) val; + if(curLength < offset+2) { + curLength += 2; + } + return this; + } + + /** + * Adds a int to the data stream. The size of this + * packet will grow by four bytes. + * + * @param val The int value to add + * @return A reference to this object + */ + public StaticPacketBuilder addInt(int val) { + ensureCapacity(curLength + 4); + addByte((byte) (val >> 24), false); + addByte((byte) (val >> 16), false); + addByte((byte) (val >> 8), false); + addByte((byte) val, false); + return this; + } + + public StaticPacketBuilder addInt1(int val) { + ensureCapacity(curLength + 4); + addByte((byte) (val >> 8), false); + addByte((byte) val, false); + addByte((byte) (val >> 24), false); + addByte((byte) (val >> 16), false); + return this; + } + + public StaticPacketBuilder addInt2(int val) { + ensureCapacity(curLength + 4); + addByte((byte) (val >> 16), false); + addByte((byte) (val >> 24), false); + addByte((byte) val, false); + addByte((byte) (val >> 8), false); + return this; + } + + public StaticPacketBuilder addLEInt(int val) { + ensureCapacity(curLength + 4); + addByte((byte) val, false); + addByte((byte) (val >> 8), false); + addByte((byte) (val >> 16), false); + addByte((byte) (val >> 24), false); + return this; + } + + /** + * Adds a long to the data stream. The size of this + * packet will grow by eight bytes. + * + * @param val The long value to add + * @return A reference to this object + */ + public StaticPacketBuilder addLong(long val) { + addInt((int) (val >> 32)); + addInt((int) (val & -1L)); + return this; + } + + public StaticPacketBuilder addLELong(long val) { + addLEInt((int) (val & -1L)); + addLEInt((int) (val >> 32)); + return this; + } + + @SuppressWarnings("deprecation") + public StaticPacketBuilder addString(String s) { + ensureCapacity(curLength + s.length() + 1); + s.getBytes(0, s.length(), payload, curLength); + curLength += s.length(); + payload[curLength++] = 0; + return this; + } + + public int getLength() { + return curLength; + } + + /** + * Returns a Packet object for the data contained + * in this builder. + * + * @return A Packet object + */ + public Packet toPacket() { + byte[] data = new byte[curLength]; + System.arraycopy(payload, 0, data, 0, curLength); + return new Packet(null, id, data, bare, size); + } + + public StaticPacketBuilder addByteC(int val) { + addByte((byte) -val); + return this; + } + + public StaticPacketBuilder addByteS(int val) { + addByte((byte) (128-val)); + return this; + } +} diff --git a/server508/src/com/rs2hd/packethandler/ActionButtonPacketHandler.java b/server508/src/com/rs2hd/packethandler/ActionButtonPacketHandler.java new file mode 100644 index 0000000..0dffeac --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/ActionButtonPacketHandler.java @@ -0,0 +1,755 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.content.Emotes; +import com.rs2hd.content.Wilderness; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; +import com.rs2hd.util.log.Logger; + +/** + * Action button handler. + * @author Graham + * + */ +public class ActionButtonPacketHandler implements PacketHandler { + + private Logger logger = Logger.getInstance(); + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + int interfaceId = packet.readShort() & 0xFFFF; + int buttonId = packet.readShort() & 0xFFFF; + int buttonId2 = 0; + if(packet.getLength() >= 6) { + buttonId2 = packet.readShort() & 0xFFFF; + } + if(buttonId2 == 65535) { + buttonId2 = 0; + } + switch(interfaceId) { + /* + * Standard weapon interfaces. + */ + case 92: + handleWeaponInterfaceButton(player, buttonId); + break; + /* + * Specials. + */ + case 84: + if(buttonId == 8) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 76: + if(buttonId == 8) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 75: + if(buttonId == 10) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 88: + if(buttonId == 10) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 78: + if(buttonId == 10) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 79: + if(buttonId == 8) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 77: + if(buttonId == 11) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 93: + if(buttonId == 8) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 81: + if(buttonId == 10) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 82: + if(buttonId == 10) { + player.getSpecials().setActive(!player.getSpecials().isActive()); + } else { + handleWeaponInterfaceButton(player, buttonId); + } + break; + case 153: + /* + * Noob death. + */ + if(buttonId == 89) { + player.getSettings().setHideDeathInterface(true); + player.getActionSender().sendCloseInterface(); + } else { + logger.debug("Unhandled button id: 153, " + buttonId + "."); + } + break; + case 382: + /* + * Wilderness warning screen. + */ + switch(buttonId) { + case 18: + Wilderness.handleJump(player); + break; + default: + logger.debug("Unhandled button id: 382, " + buttonId + "."); + break; + } + break; + case 387: + /* + * Equipment tab. + */ + switch(buttonId) { + case 55: + player.getActionSender().sendInterface(667); + player.getActionSender().sendInventoryInterface(670); + player.getActionSender().sendItems(-1, 64209, 93, player.getInventory().getContainer()); + player.getActionSender().sendItems(-1, 64208, 94, player.getEquipment().getContainer()); + break; + default: + logger.debug("Unhandled button id: 387, " + buttonId + "."); + break; + } + break; + case 182: + /* + * Logout. + */ + player.getActionSender().sendLogout(); + break; + case 746: + case 548: + switch(buttonId) { + case 60: + /* + * Show world map. + */ + // TODO make it work well + // player.getActionSender().sendWindowPane(755); + break; + default: + logger.debug("Unhandled button id: 548, " + buttonId + "."); + } + break; + case 750: + case 261: + switch(buttonId) { + case 1: + /* + * Toggle run. + */ + if(!player.getWalkingQueue().isRunToggled()) { + player.getWalkingQueue().setRunToggled(true); + player.getActionSender().sendConfig(173, 1); + } else { + player.getWalkingQueue().setRunToggled(false); + player.getActionSender().sendConfig(173, 0); + } + break; + case 14: + /* + * Settings screen. + */ + player.getActionSender().sendInterface(742); + break; + case 16: + /* + * Settings screen. + */ + player.getActionSender().sendInterface(743); + break; + case 2: + /* + * Chat effects config. + */ + if(!player.getSettings().isChatEffectsEnabled()) { + player.getSettings().setChatEffectsEnabled(true); + player.getActionSender().sendConfig(171, 0); + } else { + player.getSettings().setChatEffectsEnabled(false); + player.getActionSender().sendConfig(171, 1); + } + break; + case 3: + /* + * Split private chat config. + */ + if(!player.getSettings().isPrivateChatSplit()) { + player.getSettings().setPrivateChatSplit(true); + player.getActionSender().sendConfig(287, 1); + } else { + player.getSettings().setPrivateChatSplit(false); + player.getActionSender().sendConfig(287, 0); + } + break; + case 4: + /* + * Mouse button config. + */ + if(!player.getSettings().isMouseTwoButtons()) { + player.getSettings().setMouseTwoButtons(true); + player.getActionSender().sendConfig(170, 0); + } else { + player.getSettings().setMouseTwoButtons(false); + player.getActionSender().sendConfig(170, 1); + } + break; + case 5: + /* + * Accept aid config. + */ + if(!player.getSettings().isAcceptAidEnabled()) { + player.getSettings().setAcceptAidEnabled(true); + player.getActionSender().sendConfig(427, 1); + } else { + player.getSettings().setAcceptAidEnabled(false); + player.getActionSender().sendConfig(427, 0); + } + break; + default: + logger.debug("Unhandled button id: " + interfaceId + ", " + buttonId + "."); + break; + } + break; + case 755: + switch(buttonId) { + case 9: + /* + * Close world map. + */ + // TODO make it work well. + // player.getActionSender().sendWindowPane(548); + // player.getSession().write(new StaticPacketBuilder().setId(173).toPacket()); + break; + default: + logger.debug("Unhandled button id: 755, " + buttonId + "."); + break; + } + break; + case 378: + /* + * Welcome screen + */ + switch(buttonId) { + case 140: + /* + * Close the welcome screen. + */ + player.getActionSender().sendWindowPane(548); + break; + default: + logger.debug("Unhandled button id: 378, " + buttonId + "."); + } + break; + case 464: + /* + * Emote tab. + */ + if(!Emotes.emote(player, buttonId)) { + logger.debug("Unhandled button id: 464, " + buttonId + "."); + } + break; + case 320: + /* + * Skills tab. + */ + boolean lvlup = false; + int skillMenu = -1; + switch(buttonId) { + case 125: //Attack + skillMenu = 1; + if(player.getTemporaryAttribute("leveledUp[0]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 1); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 10); + } + break; + case 126: //Strength + skillMenu = 2; + if(player.getTemporaryAttribute("leveledUp[2]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 2); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 20); + } + break; + case 127: //Defence + skillMenu = 5; + if(player.getTemporaryAttribute("leveledUp[1]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 5); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 40); + } + break; + case 128: //Ranged + skillMenu = 3; + if(player.getTemporaryAttribute("leveledUp[4]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 3); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 30); + } + break; + case 129: //Prayer + if(player.getTemporaryAttribute("leveledUp[5]") != Boolean.TRUE) { + skillMenu = 7; + player.getActionSender().sendConfig(965, 7); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 60); + } + break; + case 130: //Magic + if(player.getTemporaryAttribute("leveledUp[6]") != Boolean.TRUE) { + skillMenu = 4; + player.getActionSender().sendConfig(965, 4); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 33); + } + break; + case 131: //Runecrafting + if(player.getTemporaryAttribute("leveledUp[20]") != Boolean.TRUE) { + skillMenu = 12; + player.getActionSender().sendConfig(965, 12); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 100); + } + break; + case 132: //Construction + skillMenu = 22; + if(player.getTemporaryAttribute("leveledUp[21]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 22); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 698); + } + break; + case 133: //Hitpoints + skillMenu = 6; + if(player.getTemporaryAttribute("leveledUp[3]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 6); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 50); + } + break; + case 134: //Agility + skillMenu = 8; + if(player.getTemporaryAttribute("leveledUp[16]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 8); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 65); + } + break; + case 135: //Herblore + skillMenu = 9; + if(player.getTemporaryAttribute("leveledUp[15]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 9); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 75); + } + break; + case 136: //Thieving + skillMenu = 10; + if(player.getTemporaryAttribute("leveledUp[17]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 10); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 80); + } + break; + case 137: //Crafting + skillMenu = 11; + if(player.getTemporaryAttribute("leveledUp[12]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 11); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 90); + } + break; + case 138: //Fletching + skillMenu = 19; + if(player.getTemporaryAttribute("leveledUp[9]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 19); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 665); + } + break; + case 139: //Slayer + skillMenu = 20; + if(player.getTemporaryAttribute("leveledUp[18]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 20); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 673); + } + break; + case 140: //Hunter + skillMenu = 23; + if(player.getTemporaryAttribute("leveledUp[22]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 23); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 689); + } + break; + case 141: //Mining + skillMenu = 13; + if(player.getTemporaryAttribute("leveledUp[14]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 13); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 110); + } + break; + case 142: //Smithing + skillMenu = 14; + if(player.getTemporaryAttribute("leveledUp[13]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 14); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 115); + } + break; + case 143: //Fishing + skillMenu = 15; + if(player.getTemporaryAttribute("leveledUp[10]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 15); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 120); + } + break; + case 144: //Cooking + skillMenu = 16; + if(player.getTemporaryAttribute("leveledUp[7]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 16); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 641); + } + break; + case 145: //Firemaking + skillMenu = 17; + if(player.getTemporaryAttribute("leveledUp[11]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 17); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 649); + } + break; + case 146: //Woodcutting + skillMenu = 18; + if(player.getTemporaryAttribute("leveledUp[8]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 18); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 660); + } + break; + case 147: //Farming + skillMenu = 21; + if(player.getTemporaryAttribute("leveledUp[19]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 21); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 681); + } + break; + case 148: //Summoning + skillMenu = 24; + if(player.getTemporaryAttribute("leveledUp[23]") != Boolean.TRUE) { + player.getActionSender().sendConfig(965, 24); + } else { + lvlup = true; + player.getActionSender().sendConfig(1230, 705); + } + break; + } + if(lvlup) { + player.getActionSender().sendInterface(741); + } else { + player.getActionSender().sendInterface(499); + } + for(int i = 0; i < 25; i++) { + player.removeTemporaryAttribute("leveledUp["+i+"]"); + } + if(skillMenu != -1) { + player.setTemporaryAttribute("skillMenu", skillMenu); + } + break; + case 499: + /* + * Skill information. + */ + skillMenu = -1; + if(player.getTemporaryAttribute("skillMenu") != null) { + skillMenu = (Integer) player.getTemporaryAttribute("skillMenu"); + } + switch(buttonId) { + case 10: + player.getActionSender().sendConfig(965, skillMenu); + break; + case 11: + player.getActionSender().sendConfig(965, 1024 + skillMenu); + break; + case 12: + player.getActionSender().sendConfig(965, 2048 + skillMenu); + break; + case 13: + player.getActionSender().sendConfig(965, 3072 + skillMenu); + break; + case 14: + player.getActionSender().sendConfig(965, 4096 + skillMenu); + break; + case 15: + player.getActionSender().sendConfig(965, 5120 + skillMenu); + break; + case 16: + player.getActionSender().sendConfig(965, 6144 + skillMenu); + break; + case 17: + player.getActionSender().sendConfig(965, 7168 + skillMenu); + break; + case 18: + player.getActionSender().sendConfig(965, 8192 + skillMenu); + break; + case 19: + player.getActionSender().sendConfig(965, 9216 + skillMenu); + break; + case 20: + player.getActionSender().sendConfig(965, 10240 + skillMenu); + break; + case 21: + player.getActionSender().sendConfig(965, 11264 + skillMenu); + break; + case 22: + player.getActionSender().sendConfig(965, 12288 + skillMenu); + break; + case 23: + player.getActionSender().sendConfig(965, 13312 + skillMenu); + break; + } + case 763: + /* + * Inventory interface with banking. + */ + if(buttonId == 0) { + switch(packet.getId()) { + case 233: + player.getBank().bankItem(buttonId2, 1); + break; + case 21: + player.getBank().bankItem(buttonId2, 5); + break; + case 169: + player.getBank().bankItem(buttonId2, 10); + break; + case 232: + player.getBank().bankItem(buttonId2, -100); + break; + } + } + break; + case 762: + /* + * Bank interface. + */ + if(buttonId == 73) { + switch(packet.getId()) { + case 233: + player.getBank().withdrawItem(buttonId2, 1); + break; + case 21: + player.getBank().withdrawItem(buttonId2, 5); + break; + case 169: + player.getBank().withdrawItem(buttonId2, 10); + break; + case 232: + player.getBank().withdrawItem(buttonId2, -100); + break; + } + } + break; + case 620: + /* + * Shop interface. + */ + if(buttonId == 26) { + if(player.getShopConfiguration().isShopping()) { + player.getShopConfiguration().setIsInMainStock(false); + player.getActionSender().sendShopTab(player.getShopConfiguration().isInMainStock(), player.getShopConfiguration().getCurrentShop().isGeneralStore()); + player.getShopConfiguration().getCurrentShop().refresh(player); + } + } else if(buttonId == 25) { + if(player.getShopConfiguration().isShopping()) { + player.getShopConfiguration().setIsInMainStock(true); + player.getActionSender().sendShopTab(player.getShopConfiguration().isInMainStock(), player.getShopConfiguration().getCurrentShop().isGeneralStore()); + player.getShopConfiguration().getCurrentShop().refresh(player); + } + } else if(buttonId == 24) { + switch(packet.getId()) { + case 233: + /* + * Value. + */ + World.getInstance().getShopManager().getValueShop(player, buttonId2); + break; + case 21: + /* + * Buy 1. + */ + World.getInstance().getShopManager().buy(player, buttonId2, 1); + break; + case 169: + /* + * Buy 5. + */ + World.getInstance().getShopManager().buy(player, buttonId2, 5); + break; + case 214: + /* + * Buy 10. + */ + World.getInstance().getShopManager().buy(player, buttonId2, 10); + break; + case 173: + /* + * Buy 50. + */ + World.getInstance().getShopManager().buy(player, buttonId2, 50); + break; + case 90: + /* + * Examine. + */ + World.getInstance().getShopManager().examineShop(player, buttonId2); + break; + } + } else { + logger.debug("Unhandled button id: 620, " + buttonId + "."); + } + break; + case 621: + /* + * Shop inventory interface. + */ + if(buttonId == 0) { + switch(packet.getId()) { + case 233: + /* + * Value. + */ + World.getInstance().getShopManager().getValueInventory(player, buttonId2); + break; + case 21: + /* + * Sell 1. + */ + World.getInstance().getShopManager().sell(player, buttonId2, 1); + break; + case 169: + /* + * Sell 5. + */ + World.getInstance().getShopManager().sell(player, buttonId2, 5); + break; + case 214: + /* + * Sell 10. + */ + World.getInstance().getShopManager().sell(player, buttonId2, 10); + break; + case 173: + /* + * Sell 50. + */ + World.getInstance().getShopManager().sell(player, buttonId2, 50); + break; + case 232: + /* + * Examine. + */ + World.getInstance().getShopManager().examineInventory(player, buttonId2, 1); + break; + } + } else { + logger.debug("Unhandled button id: 621, " + buttonId + "."); + } + break; + default: + logger.debug("Unhandled button id: " + interfaceId + ", " + buttonId + "."); + } + } + + private void handleWeaponInterfaceButton(Player player, int buttonId) { + switch(buttonId) { + case 2: + player.setAttackStyle(1); + break; + case 3: + player.setAttackStyle(2); + break; + case 4: + player.setAttackStyle(4); + break; + case 5: + player.setAttackStyle(3); + break; + case 24: + case 25: + case 26: + case 27: + player.getSettings().setAutoRetaliate(!player.getSettings().isAutoRetaliate()); + player.getSettings().refresh(); + break; + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/ChatPacketHandler.java b/server508/src/com/rs2hd/packethandler/ChatPacketHandler.java new file mode 100644 index 0000000..1512965 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/ChatPacketHandler.java @@ -0,0 +1,29 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.ChatMessage; +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; +import com.rs2hd.util.Misc; + +/** + * Chat packet handler. + * @author Graham + * + */ +public class ChatPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + int effects = packet.readShort() & 0xFFFF; + int numChars = packet.readByte() & 0xFF; + String text = Misc.decryptPlayerChat(packet, numChars); + /*byte[] bytes = new byte[500]; + bytes[0] = (byte) text.length(); + Misc.encryptPlayerChat(bytes, 0, 1, text.length(), text.getBytes());*/ + player.setLastChatMessage(new ChatMessage(effects, numChars, text)); + player.getUpdateFlags().setChatTextUpdateRequired(true); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/CommandPacketHandler.java b/server508/src/com/rs2hd/packethandler/CommandPacketHandler.java new file mode 100644 index 0000000..52107cb --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/CommandPacketHandler.java @@ -0,0 +1,212 @@ +package com.rs2hd.packethandler; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileReader; +import java.util.ArrayList; +import java.util.List; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.content.Combat; +import com.rs2hd.model.Container; +import com.rs2hd.model.Item; +import com.rs2hd.model.Location; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.Skills; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; +import com.rs2hd.script.ScriptManager; + +/** + * Handles any commands sent to the client. + * @author Graham + * + */ +public class CommandPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + String command = packet.readRS2String(); + String[] cmd = command.split(" "); + cmd[0] = cmd[0].toLowerCase(); + + try { + if(cmd[0].equals("coords")) { + player.getActionSender().sendMessage("Your position is: x: " + player.getLocation().getX() + ", y: " + player.getLocation().getY() + ", z: " + player.getLocation().getZ() + "."); + } else if(cmd[0].equals("tele")) { + if(cmd.length == 3 || cmd.length == 4) { + int x = Integer.valueOf(cmd[1]); + int y = Integer.valueOf(cmd[2]); + int z = 0; + if(cmd.length == 4) { + z = Integer.valueOf(cmd[3]); + } + player.teleport(Location.location(x, y, z)); + } else { + player.getActionSender().sendMessage("Syntax is: ::tele [z=0]."); + } + } else if(cmd[0].equals("item")) { + if(cmd.length == 2 || cmd.length == 3) { + int item = Integer.valueOf(cmd[1]); + int amount = 1; + if(cmd.length == 3) { + amount = Integer.valueOf(cmd[2]); + } + player.getInventory().addItem(item, amount); + } else { + player.getActionSender().sendMessage("Syntax is: ::item [amount=1]."); + } + } else if(cmd[0].equals("npc")) { + if(cmd.length == 2) { + int id = Integer.valueOf(cmd[1]); + NPC npc = new NPC(id); + npc.readResolve(); + npc.setLocation(player.getLocation()); + World.getInstance().getNpcList().add(npc); + player.getActionSender().sendMessage("Internal id: " + npc.getIndex()); + } else { + player.getActionSender().sendMessage("Syntax is ::npc ."); + } + } else if(cmd[0].equals("master")) { + if(cmd.length == 1) { + for(int i = 0; i < Skills.SKILL_COUNT; i++) { + player.getSkills().addXp(i, 200000000); + } + } else if(cmd.length == 2) { + int skill = Integer.valueOf(cmd[1]); + player.getSkills().addXp(skill, 200000000); + } else { + player.getActionSender().sendMessage("Syntax is ::master [id=all]."); + } + } else if(cmd[0].equals("reset")) { + player.getSkills().reset(); + } else if(cmd[0].equals("forcereset")) { + player.getSkills().forceReset(); + } else if(cmd[0].equals("rnl")) { + player.setRebuildNpcList(true); + } else if(cmd[0].equals("hit")) { + int dmg = 0; + if(cmd.length == 1) { + } else if(cmd.length == 2) { + dmg = Integer.valueOf(cmd[1]); + } else { + player.getActionSender().sendMessage("Syntax is ::hit [damage=0]."); + return; + } + player.hit(dmg); + } else if(cmd[0].equals("dhit")) { + int dmg = 0; + if(cmd.length == 1) { + } else if(cmd.length == 2) { + dmg = Integer.valueOf(cmd[1]); + } else { + player.getActionSender().sendMessage("Syntax is ::dhit [damage=0]."); + return; + } + player.hit(dmg); + player.hit(dmg); + } else if(cmd[0].equals("bank")) { + player.getBank().openBank(); + } else if(cmd[0].equals("config")) { + if(cmd.length == 3) { + player.getActionSender().sendConfig(Integer.valueOf(cmd[1]), Integer.valueOf(cmd[2])); + } else { + player.getActionSender().sendMessage("Syntax is ::config [id] [value]."); + } + } else if(cmd[0].equals("interface")) { + if(cmd.length == 2) { + int id = Integer.valueOf(cmd[1]); + player.getActionSender().sendInterface(id); + } else { + player.getActionSender().sendMessage("Syntax is ::interface ."); + } + } else if(cmd[0].equals("string")) { + if(cmd.length == 3) { + int id = Integer.valueOf(cmd[1]); + int child = Integer.valueOf(cmd[2]); + player.getActionSender().sendString("i"+id+"c"+child, id, child); + } else { + player.getActionSender().sendMessage("Syntax is ::interface ."); + } + } else if(cmd[0].equals("shop")) { + Container stuff = new Container(60, false); + stuff.forceAdd(new Item(1931, 10)); + stuff.forceAdd(new Item(1935, 10)); + stuff.forceAdd(new Item(1735, 10)); + stuff.forceAdd(new Item(1925, 10)); + stuff.forceAdd(new Item(1923, 10)); + stuff.forceAdd(new Item(1887, 10)); + stuff.forceAdd(new Item(590, 10)); + stuff.forceAdd(new Item(1755, 10)); + stuff.forceAdd(new Item(2347, 10)); + stuff.forceAdd(new Item(550, 10)); + stuff.forceAdd(new Item(9003, 10)); + player.getActionSender().sendConfig2(118, 17); + player.getActionSender().sendShopOptions(); + player.getActionSender().sendItems(-1, 64209, 93, player.getInventory().getContainer()); + player.getActionSender().sendItems(-1, 64285, 17, stuff); + player.getActionSender().sendString("General Store", 620, 22); + player.getActionSender().sendShopTab(true, true); + player.getActionSender().sendInterface(620); + player.getActionSender().sendInventoryInterface(621); + } else if(cmd[0].equals("iconfig")) { + if(cmd.length == 4) { + int inter = Integer.valueOf(cmd[1]); + int child = Integer.valueOf(cmd[2]); + boolean set = cmd[3].equals("true") ? true : false; + player.getActionSender().sendInterfaceConfig(inter, child, set); + } else { + player.getActionSender().sendMessage("Syntax is ::iconfig "); + } + } else if(cmd[0].equals("help")) { + String file = "index"; + if(cmd.length == 2) { + file = cmd[1]; + if(!file.matches("[A-Za-z ]+")) { + file = "index"; + } + } + String name = com.rs2hd.Main.workingDir+"data/help/"+file+".txt"; + File f = new File(name); + if(!f.exists()) { + player.getActionSender().sendMessage("Type ::help for help."); + return; + } + BufferedReader reader = new BufferedReader(new FileReader(f)); + String title = reader.readLine(); + if(title == null) { + return; + } + List lines = new ArrayList(); + String line = null; + while((line = reader.readLine()) != null) { + lines.add(line); + } + String[] data = lines.toArray(new String[0]); + player.getActionSender().sendQuestInterface(title, data); + } else if(cmd[0].equals("npcattack")) { + if(cmd.length == 3) { + NPC n1 = World.getInstance().getNpcList().get(Integer.valueOf(cmd[1])); + NPC n2 = World.getInstance().getNpcList().get(Integer.valueOf(cmd[2])); + Combat.attack(n1, n2); + } else { + player.getActionSender().sendMessage("Invalid syntax, use: [id1] [id2]."); + } + } else if(cmd[0].equals("tonpc")) { + player.getAppearance().transformToNpc(0); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } else if(cmd[0].equals("toplayer")) { + player.getAppearance().transformToPlayer(); + player.getUpdateFlags().setAppearanceUpdateRequired(true); + } else { + ScriptManager.getInstance().call("command_"+cmd[0], player, cmd); + } + } catch(Exception e) { + player.getActionSender().sendMessage("Malformed command or error: " + e.getMessage() + "."); + e.printStackTrace(); + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/ExaminePacketHandler.java b/server508/src/com/rs2hd/packethandler/ExaminePacketHandler.java new file mode 100644 index 0000000..477c076 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/ExaminePacketHandler.java @@ -0,0 +1,40 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.ItemDefinition; +import com.rs2hd.model.NPCDefinition; +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Handles examining. + * @author Graham + * + */ +public class ExaminePacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 38: + int id = packet.readLEShortA(); + player.getActionSender().sendMessage(ItemDefinition.forId(id).getExamine()); + break; + case 88: + id = packet.readShort(); + NPCDefinition def = NPCDefinition.forId(id); + if(def == null) { + player.getActionSender().sendMessage("It's an NPC!"); + } else { + player.getActionSender().sendMessage(def.getExamine()); + } + break; + case 84: + id = packet.readShort(); + player.getActionSender().sendMessage("It's an object!"); + break; + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/FriendsPacketHandler.java b/server508/src/com/rs2hd/packethandler/FriendsPacketHandler.java new file mode 100644 index 0000000..4c670ab --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/FriendsPacketHandler.java @@ -0,0 +1,38 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; +import com.rs2hd.util.Misc; + +/** + * Handles friends, ignores and PMs. + * @author Graham + * + */ +public class FriendsPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + long name = packet.readLong(); + if(packet.getId() == 30) { + player.getFriends().addFriend(name); + } else if(packet.getId() == 61) { + player.getFriends().addIgnore(name); + } else if(packet.getId() == 132) { + player.getFriends().removeFriend(name); + } else if(packet.getId() == 2) { + player.getFriends().removeIgnore(name); + } else if(packet.getId() == 178) { + sendMessage(player, session, packet, name); + } + } + + private void sendMessage(Player player, IoSession session, Packet packet, long name) { + int numChars = packet.readByte() & 0xFF; + String text = Misc.decryptPlayerChat(packet, numChars); + player.getFriends().sendMessage(name, text); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/HdNotificationPacketHandler.java b/server508/src/com/rs2hd/packethandler/HdNotificationPacketHandler.java new file mode 100644 index 0000000..94b5416 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/HdNotificationPacketHandler.java @@ -0,0 +1,15 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +public class HdNotificationPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + player.setHd(true); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/IdlePacketHandler.java b/server508/src/com/rs2hd/packethandler/IdlePacketHandler.java new file mode 100644 index 0000000..8405382 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/IdlePacketHandler.java @@ -0,0 +1,20 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Handles an 'idle' packet. + * @author Graham + * + */ +public class IdlePacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + player.getActionSender().sendLogout(); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/ItemPacketHandler.java b/server508/src/com/rs2hd/packethandler/ItemPacketHandler.java new file mode 100644 index 0000000..86eedaa --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/ItemPacketHandler.java @@ -0,0 +1,427 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.Constants; +import com.rs2hd.event.CoordinateEvent; +import com.rs2hd.model.Bank; +import com.rs2hd.model.Equipment; +import com.rs2hd.model.Inventory; +import com.rs2hd.model.Item; +import com.rs2hd.model.ItemDefinition; +import com.rs2hd.model.Location; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; +import com.rs2hd.script.ScriptManager; +import com.rs2hd.util.log.Logger; + +/** + * Handles all packets to do with items. + * @author Graham + * + */ +public class ItemPacketHandler implements PacketHandler { + + private Logger logger = Logger.getInstance(); + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 167: + /* + * Switch items. + */ + switchItems(player, session, packet); + break; + case 179: + /* + * Transfer items between two interfaces. + */ + switchItems2(player, session, packet); + break; + case 3: + /* + * Equip. + */ + equip(player, session, packet); + break; + case 203: + /* + * Item option 1. + */ + itemOption1(player, session, packet); + break; + case 152: + /* + * Item option 2. + */ + itemOption2(player, session, packet); + break; + case 220: + /* + * Item select. + */ + itemSelect(player, session, packet); + break; + case 186: + /* + * Item operate. + */ + itemOperate(player, session, packet); + break; + case 211: + /* + * Drop item. + */ + drop(player, session, packet); + break; + case 201: + /* + * Take item. + */ + take(player, session, packet); + break; + case 40: + /* + * Item on item. + */ + itemOnItem(player, session, packet); + break; + case 224: + /* + * Item on object. + */ + itemOnObject(player, session, packet); + break; + case 131: + /* + * Item on player. + */ + itemOnPlayer(player, session, packet); + break; + case 12: + /* + * Item on npc. + */ + itemOnNPC(player, session, packet); + break; + } + } + + private void itemOnPlayer(Player player, IoSession session, Packet packet) { + packet.readInt();// junk + int playerId = packet.readShort() & 0xFFFF; + int slot = packet.readLEShortA() & 0xFFFF; + int id = packet.readShortA() & 0xFFFF; + if(playerId < 0 || playerId >= Constants.PLAYER_CAP) { + return; + } + Player other = World.getInstance().getPlayerList().get(playerId); + if(other == null) { + return; + } + if(slot < 0 || slot >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null || item.getId() != id) { + return; + } + ScriptManager.getInstance().call("item_on_player_"+id, player, slot, other); + } + + private void itemOnNPC(Player player, IoSession session, Packet packet) { + packet.readInt(); // junk + int npcId = packet.readShort() & 0xFFFF; + int slot = packet.readLEShortA() & 0xFFFF; + int id = packet.readShortA() & 0xFFFF; + if(npcId < 0 || npcId >= Constants.NPC_CAP) { + return; + } + NPC npc = World.getInstance().getNpcList().get(npcId); + if(npc == null) { + return; + } + if(slot < 0 || slot >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null || item.getId() != id) { + return; + } + ScriptManager.getInstance().call("item_on_npc_"+id, player, slot, npc); + } + + private void itemOnObject(Player player, IoSession session, Packet packet) { + int y = packet.readLEShort(); + int itemId = packet.readShort() & 0xFFFF; + packet.readShort(); // junk + packet.readShort(); // junk + packet.readShort(); // junk + int objectId = packet.readShortA() & 0xFFFF; + int x = packet.readShort() & 0xFFFF; + // TODO can probably get this from the packet + int slot = player.getInventory().lookupSlot(itemId); + if(slot == -1) { + return; + } + ScriptManager.getInstance().call("item_on_object_"+itemId+"_"+objectId, player, slot, x, y); + } + + private void itemOnItem(Player player, IoSession session, Packet packet) { + int usedWith = packet.readLEShort(); + int itemUsed = packet.readShortA(); + int slot = player.getInventory().lookupSlot(itemUsed); + if(slot == -1) { + return; + } + int withSlot = player.getInventory().lookupSlot(usedWith); + if(withSlot == -1) { + return; + } + ScriptManager.getInstance().call("item_on_item_"+itemUsed+"_"+usedWith, player, slot, withSlot); + } + + private void itemOperate(Player player, IoSession session, Packet packet) { + int interfaceSet = packet.readInt(); + int interfaceId = interfaceSet >> 16; + int id = packet.readShortA() & 0xFFFF; + int slot = packet.readLEShortA() & 0xFFFF; + if(interfaceId == 7168) { + if(slot < 0 || slot >= Equipment.SIZE || player.getEquipment().getContainer().get(slot) == null) { + return; + } + if(player.getEquipment().getContainer().get(slot).getId() != id) { + return; + } + ScriptManager.getInstance().call("item_operate_"+id, player, slot); + } else { + logger.debug("Unhandled item operate, interface: " + interfaceId + "."); + } + } + + private void itemSelect(Player player, IoSession session, Packet packet) { + int interfaceSet = packet.readLEInt(); + int interfaceId = interfaceSet >> 16; + int id = packet.readLEShort() & 0xFFFF; + int slot = packet.readShortA() & 0xFFFF; + if(interfaceId == 149) { + if(slot < 0 || slot >= Inventory.SIZE || player.getInventory().getContainer().get(slot) == null) { + return; + } + if(player.getInventory().getContainer().get(slot).getId() != id) { + return; + } + ScriptManager.getInstance().call("item_select_"+id, player, slot); + } else { + logger.debug("Unhandled item select, interface: " + interfaceId + "."); + } + } + + private void itemOption2(Player player, IoSession session, Packet packet) { + int slot = packet.readLEShortA() & 0xFFFF; + int id = packet.readShortA() & 0xFFFF; + int interfaceSet = packet.readInt(); + int interfaceId = interfaceSet >> 16; + if(interfaceId == 149) { + if(slot < 0 || slot >= Inventory.SIZE || player.getInventory().getContainer().get(slot) == null) { + return; + } + if(player.getInventory().getContainer().get(slot).getId() != id) { + return; + } + ScriptManager.getInstance().call("item_option_2_"+id, player, slot); + } else { + logger.debug("Unhandled item option 2, interface: " + interfaceId + "."); + } + } + + private void take(final Player player, IoSession session, Packet packet) { + int y = packet.readShortA() & 0xFFFF; + int x = packet.readShort() & 0xFFFF; + final int id = packet.readLEShortA() & 0xFFFF; + final Location l = Location.location(x, y, player.getLocation().getZ()); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, l) { + @Override + public void run() { + if(player.getLocation().withinInteractionDistance(l)) { + if(World.getInstance().getItemManager().groundItemExists(l, id)) { + int itemAmount = World.getInstance().getItemManager().getItemAmount(l, id); + assert itemAmount != -1; + if(player.getInventory().hasRoomFor(id, itemAmount)) { + World.getInstance().getItemManager().destroyGroundItem(l, id); + player.getInventory().addItem(id, itemAmount); + } + } + } + } + }); + } + + private void drop(Player player, IoSession session, Packet packet) { + packet.readInt(); + int slot = packet.readLEShortA() & 0xFFFF; + @SuppressWarnings("unused") + int id = packet.readLEShort() & 0xFFFF; + if(slot < 0 || slot >= Inventory.SIZE || player.getInventory().getContainer().get(slot) == null) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + player.getInventory().getContainer().set(slot, null); + player.getInventory().refresh(); + World.getInstance().getItemManager().createGroundItem(player, item); + } + + private void switchItems2(Player player, IoSession session, Packet packet) { + int interface1 = packet.readInt() >> 16; + packet.readInt(); + int fromId = packet.readShort() & 0xFFFF; + int toId = packet.readLEShort() & 0xFFFF; + switch(interface1) { + case 762: + /* + * Bank. + */ + if(fromId < 0 || fromId >= Bank.SIZE || toId < 0 || toId >= Bank.SIZE) { + break; + } + Item temp = player.getBank().getContainer().get(fromId); + Item temp2 = player.getBank().getContainer().get(toId); + player.getBank().getContainer().set(fromId, temp2); + player.getBank().getContainer().set(toId, temp); + player.getBank().refresh(); + break; + case 763: + /* + * Inventory. + */ + if(fromId < 0 || fromId >= Inventory.SIZE || toId < 0 || toId >= Inventory.SIZE) { + break; + } + temp = player.getInventory().getContainer().get(fromId); + temp2 = player.getInventory().getContainer().get(toId); + player.getInventory().getContainer().set(fromId, temp2); + player.getInventory().getContainer().set(toId, temp); + player.getBank().refresh(); + break; + } + } + + private void itemOption1(Player player, IoSession session, Packet packet) { + int slot = packet.readLEShortA(); + int interfaceId = packet.readShort(); + packet.readShort(); + int itemId = packet.readShort(); + if(slot < 0 || itemId < 0) { + return; + } + switch(interfaceId) { + case 387: + /* + * Unequip item. + */ + if(slot < Equipment.SIZE && player.getEquipment().get(slot) != null) { + if(!player.getInventory().addItem(player.getEquipment().get(slot).getDefinition().getId(), player.getEquipment().get(slot).getAmount())) { + break; + } + player.getEquipment().set(slot, null); + } + break; + case 149: + if(slot < 0 || slot >= Inventory.SIZE || player.getInventory().getContainer().get(slot) == null) { + return; + } + if(player.getInventory().getContainer().get(slot).getId() != itemId) { + return; + } + ScriptManager.getInstance().call("item_option_1_"+itemId, player, slot); + break; + default: + logger.debug("Unhandled item option 1, interface: " + interfaceId + "."); + break; + } + } + + private void equip(Player player, IoSession session, Packet packet) { + packet.readInt(); + int wearId = packet.readLEShort(); + int index = packet.readByte() & 0xFF; + packet.readByte(); + if(index < 0 || index >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(index); + if(item == null) { + return; + } + if(Equipment.isTwoHanded(item.getDefinition()) && player.getInventory().getFreeSlots() < 1 && player.getEquipment().get(5) != null) { + player.getActionSender().sendMessage("Not enough free space in your inventory."); + return; + } + if(item.getDefinition().getId() == wearId) { + int targetSlot = Equipment.getItemType(wearId); + if(targetSlot == -1) { + return; + } + player.getInventory().deleteItem(item.getDefinition().getId(), item.getAmount()); + if(targetSlot == 3) { + if(Equipment.isTwoHanded(ItemDefinition.forId(wearId)) && player.getEquipment().get(5) != null) { + if(!player.getInventory().addItem(player.getEquipment().get(5).getDefinition().getId(), player.getEquipment().get(5).getAmount())) { + player.getInventory().addItem(wearId, item.getAmount()); + return; + } + player.getEquipment().set(5, null); + } + } else if(targetSlot == 5) { + if(Equipment.isTwoHanded(ItemDefinition.forId(wearId)) && player.getEquipment().get(3) != null) { + if(!player.getInventory().addItem(player.getEquipment().get(3).getDefinition().getId(), player.getEquipment().get(3).getAmount())) { + player.getInventory().addItem(wearId, item.getAmount()); + return; + } + player.getEquipment().set(3, null); + } + } + if(player.getEquipment().get(targetSlot) != null && (wearId != player.getEquipment().get(targetSlot).getDefinition().getId() || !item.getDefinition().isStackable())) { + player.getInventory().addItem(player.getEquipment().get(targetSlot).getDefinition().getId(), player.getEquipment().get(targetSlot).getAmount()); + player.getEquipment().set(targetSlot, null); + } + int oldAmt = 0; + if(player.getEquipment().get(targetSlot) != null) { + oldAmt = player.getEquipment().get(targetSlot).getAmount(); + } + Item item2 = new Item(wearId, oldAmt+item.getAmount()); + player.getEquipment().set(targetSlot, item2); + + } + } + + private void switchItems(Player player, IoSession session, Packet packet) { + int toId = packet.readLEShortA(); + packet.readByte(); + int fromId = packet.readLEShortA(); + packet.readShort(); + int interfaceId = packet.readByte() & 0xFF; + packet.readByte(); + + switch(interfaceId) { + case 149: + /* + * Switch items in inventory. + */ + if(fromId < 0 || fromId >= Inventory.SIZE || toId < 0 || toId >= Inventory.SIZE) { + break; + } + Item temp = player.getInventory().getContainer().get(fromId); + Item temp2 = player.getInventory().getContainer().get(toId); + player.getInventory().getContainer().set(fromId, temp2); + player.getInventory().getContainer().set(toId, temp); + break; + default: + logger.debug("Unhandled switch items, interface: " + interfaceId + "."); + break; + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/NpcPacketHandler.java b/server508/src/com/rs2hd/packethandler/NpcPacketHandler.java new file mode 100644 index 0000000..1f8251e --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/NpcPacketHandler.java @@ -0,0 +1,127 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.Constants; +import com.rs2hd.content.Combat; +import com.rs2hd.content.Combat.CombatType; +import com.rs2hd.event.CoordinateEvent; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; + +public class NpcPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 7: + /* + * Option 1. + */ + option1(player, session, packet); + break; + case 52: + /* + * Option 2. + */ + option2(player, session, packet); + break; + case 199: + /* + * Option 3. + */ + option3(player, session, packet); + break; + case 123: + /* + * Attack. + */ + attack(player, session, packet); + break; + } + } + + private void attack(final Player player, IoSession session, Packet packet) { + int id = packet.readShort() & 0xFFFF; + if(id < 0 || id >= Constants.NPC_CAP) { + return; + } + final NPC npc = World.getInstance().getNpcList().get(id); + if(npc == null) { + return; + } + player.turnTo(npc); + if(player.getCombatType().equals(CombatType.RANGE)) { + Combat.attack(player, npc); + } else { + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, npc.getLocation(), npc.getDefinition().getSize()) { + @Override + public void run() { + Combat.attack(player, npc); + } + }); + } + } + + private void option1(final Player player, IoSession session, Packet packet) { + int id = packet.readShortA() & 0xFFFF; + if(id < 0 || id >= Constants.NPC_CAP) { + return; + } + final NPC npc = World.getInstance().getNpcList().get(id); + if(npc == null) { + return; + } + player.turnTo(npc); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, npc.getLocation(), npc.getDefinition().getSize()) { + @Override + public void run() { + player.resetTurnTo(); + } + }); + } + + private void option2(final Player player, IoSession session, Packet packet) { + int id = packet.readLEShortA() & 0xFFFF; + if(id < 0 || id >= Constants.NPC_CAP) { + return; + } + final NPC npc = World.getInstance().getNpcList().get(id); + if(npc == null) { + return; + } + player.turnTo(npc); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, npc.getLocation(), npc.getDefinition().getSize()) { + @Override + public void run() { + player.resetTurnTo(); + // TODO do through configuration file + if(npc.getId() == 520 || npc.getId() == 521) { + npc.turnTemporarilyTo(player); + World.getInstance().getShopManager().openShop(player, 1); + } + } + }); + } + + private void option3(final Player player, IoSession session, Packet packet) { + int id = packet.readLEShort() & 0xFFFF; + if(id < 0 || id >= Constants.NPC_CAP) { + return; + } + final NPC npc = World.getInstance().getNpcList().get(id); + if(npc == null) { + return; + } + player.turnTo(npc); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, npc.getLocation(), npc.getDefinition().getSize()) { + @Override + public void run() { + player.resetTurnTo(); + } + }); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/ObjectPacketHandler.java b/server508/src/com/rs2hd/packethandler/ObjectPacketHandler.java new file mode 100644 index 0000000..193a244 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/ObjectPacketHandler.java @@ -0,0 +1,66 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.content.Wilderness; +import com.rs2hd.event.CoordinateEvent; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; +import com.rs2hd.script.ScriptManager; + +public class ObjectPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 158: + option1(player, session, packet); + break; + case 228: + option2(player, session, packet); + break; + } + } + + private void option1(final Player player, IoSession session, Packet packet) { + final int x = packet.readLEShort() & 0xFFFF; + final int id = packet.readShort() & 0xFFFF; + final int y = packet.readLEShortA() & 0xFFFF; + Location location = Location.location(x, y, player.getLocation().getZ()); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, location) { + @Override + public void run() { + // TODO + switch(id) { + case 23271: + Wilderness.showWarning(player); + break; + default: + ScriptManager.getInstance().call("object_option_1_" + id, player, x, y); + break; + } + } + }); + } + + private void option2(final Player player, IoSession session, Packet packet) { + final int y = packet.readShortA() & 0xFFFF; + final int id = packet.readLEShort() & 0xFFFF; + final int x = packet.readLEShortA() & 0xFFFF; + Location location = Location.location(x, y, player.getLocation().getZ()); + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, location) { + @Override + public void run() { + // TODO + switch(id) { + default: + ScriptManager.getInstance().call("object_option_2_" + id, player, x, y); + break; + } + } + }); + } + +} diff --git a/server508/src/com/rs2hd/packethandler/PacketHandler.java b/server508/src/com/rs2hd/packethandler/PacketHandler.java new file mode 100644 index 0000000..a076273 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/PacketHandler.java @@ -0,0 +1,17 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Packet handler interface. + * @author Graham + * + */ +public interface PacketHandler { + + public void handlePacket(Player player, IoSession session, Packet packet); + +} diff --git a/server508/src/com/rs2hd/packethandler/PacketHandlerDef.java b/server508/src/com/rs2hd/packethandler/PacketHandlerDef.java new file mode 100644 index 0000000..e9089a1 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/PacketHandlerDef.java @@ -0,0 +1,21 @@ +package com.rs2hd.packethandler; + +/** + * Packet handler def. + * @author Graham + * + */ +public class PacketHandlerDef { + + public String handler; + public int[] binds; + + public String getHandler() { + return handler; + } + + public int[] getBinds() { + return binds; + } + +} diff --git a/server508/src/com/rs2hd/packethandler/PacketHandlers.java b/server508/src/com/rs2hd/packethandler/PacketHandlers.java new file mode 100644 index 0000000..288dbb4 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/PacketHandlers.java @@ -0,0 +1,90 @@ +package com.rs2hd.packethandler; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; +import com.rs2hd.util.XStreamUtil; +import com.rs2hd.util.log.Logger; +import com.thoughtworks.xstream.XStream; + +/** + * Wholly static class used to handle packets. + * @author Graham + * + */ +public class PacketHandlers { + + /** + * Packet handlers map. + */ + private static Map handlers; + + /** + * Logger instance. + */ + private static Logger logger = Logger.getInstance(); + + /** + * Prevent an instance being created. + */ + private PacketHandlers() {} + + /** + * Loads the packet handlers. + * @throws FileNotFoundException + * @throws InstantiationException + * @throws IllegalAccessException + * @throws ClassNotFoundException + */ + @SuppressWarnings("unchecked") + public static void loadHandlers() throws FileNotFoundException, InstantiationException, IllegalAccessException, ClassNotFoundException { + handlers = new HashMap(); + XStream xstream = XStreamUtil.getXStream(); + + logger.info("Packet handlers:"); + List defs = (List) xstream.fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/packetHandlers.xml")); + for(PacketHandlerDef def : defs) { + + PacketHandler handler = (PacketHandler) Class.forName(def.handler).newInstance(); + + String binds = "[ "; + for(int bind : def.binds) { + binds += bind + ", "; + handlers.put(bind, handler); + } + binds = binds.substring(0, binds.length()-2); + binds += " ]"; + logger.info("\tPacket " + handler.getClass().getSimpleName() + " bound to: " + binds); + } + } + + /** + * Handles a packet. + * @param session + * @param p + */ + public static void handlePacket(IoSession session, Packet p) { + try { + if(!p.isBare()) { + PacketHandler handler = handlers.get(p.getId()); + if(handler == null) { + logger.debug("Unhandled packet: " + p + "."); + } else { + handler.handlePacket((Player) session.getAttachment(), session, p); + } + } + } catch(Exception e) { + // it may be sending an invalid packet + // in which case we just ignore errors + // thanks to thefithlord for finding the bug! + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/PlayerPacketHandler.java b/server508/src/com/rs2hd/packethandler/PlayerPacketHandler.java new file mode 100644 index 0000000..8ed5d31 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/PlayerPacketHandler.java @@ -0,0 +1,75 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.Constants; +import com.rs2hd.content.Combat; +import com.rs2hd.content.Combat.CombatType; +import com.rs2hd.event.CoordinateEvent; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; +import com.rs2hd.net.Packet; + +public class PlayerPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 160: + /* + * Option 1. + */ + option1(player, session, packet); + break; + case 37: + /* + * Option 2. + */ + option2(player, session, packet); + break; + case 227: + /* + * Option 3. + */ + option3(player, session, packet); + break; + } + } + + private void option1(final Player player, IoSession session, Packet packet) { + int id = packet.readLEShort() & 0xFFFF; + if(id < 0 || id >= Constants.PLAYER_CAP) { + return; + } + final Player victim = World.getInstance().getPlayerList().get(id); + if(victim == null) { + return; + } + player.turnTo(victim); + if(player.getCombatType().equals(CombatType.RANGE)) { + Combat.attack(player, victim); + } else { + World.getInstance().registerCoordinateEvent(new CoordinateEvent(player, victim.getLocation()) { + @Override + public void run() { + Combat.attack(player, victim); + } + }); + } + } + + private void option2(Player player, IoSession session, Packet packet) { + int id = packet.readShort() & 0xFFFF; + if(id < 0 || id >= Constants.PLAYER_CAP) { + return; + } + } + + private void option3(Player player, IoSession session, Packet packet) { + int id = packet.readLEShortA() & 0xFFFF; + if(id < 0 || id >= Constants.PLAYER_CAP) { + return; + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/QuietPacketHandler.java b/server508/src/com/rs2hd/packethandler/QuietPacketHandler.java new file mode 100644 index 0000000..6ac8b62 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/QuietPacketHandler.java @@ -0,0 +1,20 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Null packet handlers. + * @author Graham + * + */ +public class QuietPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + + } + +} diff --git a/server508/src/com/rs2hd/packethandler/RemoveInterfacePacketHandler.java b/server508/src/com/rs2hd/packethandler/RemoveInterfacePacketHandler.java new file mode 100644 index 0000000..70feed5 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/RemoveInterfacePacketHandler.java @@ -0,0 +1,36 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.content.LevelUp; +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Handles removing of interfaces. + * @author Graham + * + */ +public class RemoveInterfacePacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + switch(packet.getId()) { + case 63: + if(player.getTemporaryAttribute("leveledUp") != null) { + player.getActionSender().sendConfig(1179, LevelUp.SKILL_FLASH[(Integer) player.getTemporaryAttribute("leveledUp")]); + player.removeTemporaryAttribute("leveledUp"); + } + player.getActionSender().sendCloseChatboxInterface(); + break; + case 108: + if(player.getTemporaryAttribute("skillMenu") != null) { + player.getActionSender().sendConfig(1179, 0); + player.removeTemporaryAttribute("skillMenu"); + } + player.getActionSender().sendCloseInterface(); + break; + } + } + +} diff --git a/server508/src/com/rs2hd/packethandler/WalkPacketHandler.java b/server508/src/com/rs2hd/packethandler/WalkPacketHandler.java new file mode 100644 index 0000000..a7f7265 --- /dev/null +++ b/server508/src/com/rs2hd/packethandler/WalkPacketHandler.java @@ -0,0 +1,41 @@ +package com.rs2hd.packethandler; + +import org.apache.mina.common.IoSession; + +import com.rs2hd.model.Player; +import com.rs2hd.net.Packet; + +/** + * Handles walking packets. + * @author Graham + * + */ +public class WalkPacketHandler implements PacketHandler { + + @Override + public void handlePacket(Player player, IoSession session, Packet packet) { + player.setAttacking(false); + + int size = packet.getLength(); + if(packet.getId() == 119) { + size -= 14; + } + + player.getWalkingQueue().reset(); + + int steps = (size - 5) / 2; + int[][] path = new int[steps][2]; + + int firstX = packet.readLEShortA() - (player.getLocation().getRegionX() - 6) * 8; + int firstY = packet.readShortA() - (player.getLocation().getRegionY() - 6) * 8; + boolean runSteps = packet.readByteC() == 1; + player.getWalkingQueue().setIsRunning(runSteps); + player.getWalkingQueue().addToWalkingQueue(firstX, firstY); + for(int i = 0; i < steps; i++) { + path[i][0] = packet.readByte() + firstX; + path[i][1] = packet.readByteS() + firstY; + player.getWalkingQueue().addToWalkingQueue(path[i][0], path[i][1]); + } + } + +} diff --git a/server508/src/com/rs2hd/script/ScriptManager.java b/server508/src/com/rs2hd/script/ScriptManager.java new file mode 100644 index 0000000..f984280 --- /dev/null +++ b/server508/src/com/rs2hd/script/ScriptManager.java @@ -0,0 +1,75 @@ +package com.rs2hd.script; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; + +import org.python.core.Py; +import org.python.core.PyException; +import org.python.core.PyFunction; +import org.python.core.PyObject; +import org.python.util.PythonInterpreter; + +import com.rs2hd.util.log.Logger; + +public class ScriptManager { + + private static ScriptManager instance = null; + + public static ScriptManager getInstance() { + if(instance == null) { + instance = new ScriptManager(); + } + return instance; + } + + private PythonInterpreter interp; + private Logger logger = Logger.getInstance(); + + public ScriptManager() { + interp = new PythonInterpreter(); + } + + public boolean call(String name, Object... bindings) { + try { + PyObject obj = interp.get(name); + if(obj != null && obj instanceof PyFunction) { + PyFunction func = (PyFunction) obj; + PyObject[] objects = new PyObject[bindings.length]; + for(int i = 0; i < bindings.length; i++) { + Object bind = bindings[i]; + objects[i] = Py.java2py(bind); + } + func.__call__(objects); + } else { + return false; + } + return true; + } catch(PyException e) { + System.out.println(e.type); + System.out.println(e.value); + System.out.println(e.traceback); + Logger.getInstance().error("Problem while parsing: " + name + ":"); + Logger.getInstance().stackTrace(e); + return false; + } + } + + public void reload() throws IOException { + logger.info("Loading scripts..."); + interp.cleanup(); + File scriptDir = new File(com.rs2hd.Main.workingDir+"data/scripts/"); + int parsed = 0; + if(scriptDir.isDirectory()) { + File[] children = scriptDir.listFiles(); + for(File child : children) { + if(child.isFile() && child.getName().endsWith(".py")) { + interp.execfile(new FileInputStream(child)); + parsed++; + } + } + } + logger.info("Parsed " + parsed + " scripts."); + } + +} diff --git a/server508/src/com/rs2hd/tools/ItemXmlToBinary.java b/server508/src/com/rs2hd/tools/ItemXmlToBinary.java new file mode 100644 index 0000000..42d1703 --- /dev/null +++ b/server508/src/com/rs2hd/tools/ItemXmlToBinary.java @@ -0,0 +1,50 @@ +package com.rs2hd.tools; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.RandomAccessFile; +import java.util.List; + +import com.rs2hd.model.ItemDefinition; +import com.rs2hd.util.XStreamUtil; + +public class ItemXmlToBinary { + + public static void main(String[] args) throws IOException { + new ItemXmlToBinary().start(); + } + + @SuppressWarnings("unchecked") + public void start() throws IOException { + System.out.println("Loading..."); + List defs = (List) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/itemDefinitions.xml")); + System.out.println("Done."); + System.gc(); + System.out.println("Saving..."); + RandomAccessFile raf = new RandomAccessFile(new File(com.rs2hd.Main.workingDir+"data/itemDefinitions.dat"), "rw"); + raf.writeInt(defs.size()); + for(ItemDefinition def : defs) { + raf.writeShort(def.getId()); + raf.writeShort(def.getEquipId()); + raf.writeBoolean(def.isNoted()); + raf.writeBoolean(def.isStackable()); + raf.writeInt(def.getPrice().getNormalPrice()); + raf.writeInt(def.getPrice().getMinimumPrice()); + raf.writeInt(def.getPrice().getMaximumPrice()); + for(int i = 0; i < 13; i++) { + raf.writeByte(def.getBonus(i)); + } + raf.writeBytes(def.getName()); + raf.writeByte(0); + raf.writeBytes(def.getExamine()); + raf.writeByte(0); + if(def.getId() % 100 == 0) { + System.out.println(def.getId() + "/" + defs.size()); + } + } + raf.close(); + System.out.println("Done."); + } + +} diff --git a/server508/src/com/rs2hd/util/AnimationManager.java b/server508/src/com/rs2hd/util/AnimationManager.java new file mode 100644 index 0000000..8bda4f5 --- /dev/null +++ b/server508/src/com/rs2hd/util/AnimationManager.java @@ -0,0 +1,185 @@ +package com.rs2hd.util; + +import com.rs2hd.model.Equipment; +import com.rs2hd.model.NPC; +import com.rs2hd.model.Player; + +public class AnimationManager { + + /* + * Prevents an instance of this class being created. + */ + private AnimationManager() { + } + + public static int getDeathAnimation(Player Player) { + return 0x900; + } + + public static int getDeathAnimation(NPC npc) { + switch (npc.getDefinition().getId()) { + case 2745: + return 2654; + default: + return 0x900; + } + } + + public static int getAttackAnimation(Player player) { + int weapon = player.getEquipment().get(Equipment.SLOT_WEAPON).getId(); + switch (weapon) { + case 4153: + return 1665; + case 3190: + case 3192: + case 3194: + case 3196: + case 3198: + case 3200: + case 3202: + case 3204: + return 440; // halberd + case 4151: + return 1658; // whip + case 1215: + case 1231: + case 5680: + case 5698: + return 402; // dragon dagger + case 1307: + case 1309: + case 1311: + case 1313: + case 1315: + case 1317: + case 1319: + //if (Player.getFightType() == 2) + // return 406; + return 407; + case 1277: + case 1279: + case 1281: + case 1283: + case 1285: + case 1287: + case 1289: + case 1291: + case 1293: + case 1295: + case 1297: + case 1299: + case 1301: + case 1303: + case 1305: + case 1321: + case 1323: + case 1325: + case 1327: + case 1329: + case 1331: + case 1333: + case 4587: + //if (Player.getFightType() != 3) + // return 451; // sword slash emote for scim, sword setc. + return 412; + case 1349: + case 1351: + case 1353: + case 1355: + case 1357: + case 1359: + case 1361: + case 1363: + case 1365: + case 1367: + case 1369: + case 1371: + case 1373: + case 1375: + case 1377: + case 6739: + return 1833; + case 4214: + case 6724: + case 861: + case 4212: + case 839: + case 841: + case 843: + case 845: + case 847: + case 849: + case 851: + case 853: + case 855: + case 857: + case 4827: + return 426; // bows + case 4718: + //if (Player.getFightType() != 3) + // return 2067; + return 2066; + default: + //if (Player.getFightType() == 2) + // return 423; + return 422; + } + } + + public static int getDefendAnimation(Player player) { + int weapon = player.getEquipment().get(Equipment.SLOT_WEAPON).getId(); + int shield = player.getEquipment().get(Equipment.SLOT_SHIELD).getId(); + if (shield != -1) { + return 403; + } + switch (weapon) { + case 1307: + case 1309: + case 1311: + case 1313: + case 1315: + case 1317: + case 1319: + return 410; + default: + return 404; + } + } + + public static int getAttackAnimation(NPC npc) { + switch (npc.getDefinition().getId()) { + case 27: + return 426; + case 172: + return 711; + case 2475: + return 2655; + default: + return 422; + } + } + + public static int getDefendAnimation(NPC npc) { + switch (npc.getDefinition().getId()) { + case 81: + case 397: + case 1766: + case 1767: + case 1768: + return 0x03B; + case 41: + return 0x037; + case 87: + return 0x08A; + case 27: + return 426; + case 172: + return 711; + case 2475: + return 2653; + default: + return 404; + } + } + +} diff --git a/server508/src/com/rs2hd/util/EntityList.java b/server508/src/com/rs2hd/util/EntityList.java new file mode 100644 index 0000000..31e1cdc --- /dev/null +++ b/server508/src/com/rs2hd/util/EntityList.java @@ -0,0 +1,100 @@ +package com.rs2hd.util; + +import java.util.AbstractCollection; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Set; + +import com.rs2hd.model.Entity; + +public class EntityList extends AbstractCollection { + private static final int DEFAULT_CAPACITY = 1600, MIN_VALUE = 1; + public Object[] entities; + public Set indicies = new HashSet(); + public int curIndex = MIN_VALUE; + public int capacity; + + public EntityList(int capacity) { + entities = new Object[capacity]; + this.capacity = capacity; + } + + public EntityList() { + this(DEFAULT_CAPACITY); + } + + public boolean add(T entity) { + add(entity, curIndex); + return true; + } + + public void remove(T entity) { + entities[entity.getIndex()] = null; + indicies.remove(entity.getIndex()); + decreaseIndex(); + } + + @SuppressWarnings("unchecked") + public T remove(int index) { + Object temp = entities[index]; + entities[index] = null; + indicies.remove(index); + decreaseIndex(); + return (T) temp; + } + + @SuppressWarnings("unchecked") + public T get(int index) { + return (T) entities[index]; + } + + public void add(T entity, int index) { + if (entities[curIndex] != null) { + increaseIndex(); + add(entity, curIndex); + } else { + entities[curIndex] = entity; + entity.setIndex(index); + indicies.add(curIndex); + increaseIndex(); + } + } + + public Iterator iterator() { + return new EntityListIterator(entities, indicies, this); + } + + public void increaseIndex() { + curIndex++; + if (curIndex >= capacity) { + curIndex = MIN_VALUE; + } + } + + public void decreaseIndex() { + curIndex--; + if (curIndex <= capacity) + curIndex = MIN_VALUE; + } + + public boolean contains(T entity) { + return indexOf(entity) > -1; + } + + public int indexOf(T entity) { + for (int index : indicies) { + if (entities[index].equals(entity)) { + return index; + } + } + return -1; + } + + public int count() { + return indicies.size(); + } + + public int size() { + return indicies.size(); + } +} diff --git a/server508/src/com/rs2hd/util/EntityListIterator.java b/server508/src/com/rs2hd/util/EntityListIterator.java new file mode 100644 index 0000000..692b837 --- /dev/null +++ b/server508/src/com/rs2hd/util/EntityListIterator.java @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2008 RS2DBase Development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package com.rs2hd.util; + +import java.util.Iterator; +import java.util.Set; + +import com.rs2hd.model.Entity; + +public class EntityListIterator implements Iterator { + private Integer[] indicies; + private Object[] entities; + @SuppressWarnings("unchecked") + private EntityList entityList; + private int curIndex = 0; + + @SuppressWarnings("unchecked") + public EntityListIterator(Object[] entities, Set indicies, + EntityList entityList) { + this.entities = entities; + this.indicies = indicies.toArray(new Integer[0]); + this.entityList = entityList; + } + + public boolean hasNext() { + return indicies.length != curIndex; + } + + @SuppressWarnings("unchecked") + public E next() { + Object temp = entities[indicies[curIndex]]; + curIndex++; + return (E) temp; + } + + public void remove() { + if (curIndex >= 1) { + entityList.remove(indicies[curIndex - 1]); + } + } +} diff --git a/server508/src/com/rs2hd/util/ItemManager.java b/server508/src/com/rs2hd/util/ItemManager.java new file mode 100644 index 0000000..78072ad --- /dev/null +++ b/server508/src/com/rs2hd/util/ItemManager.java @@ -0,0 +1,237 @@ +package com.rs2hd.util; + +import java.util.ArrayList; +import java.util.List; + +import com.rs2hd.event.Event; +import com.rs2hd.model.FloorItem; +import com.rs2hd.model.Item; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.Spawn; +import com.rs2hd.model.World; + +/** + * Manages floor items. + * @author Graham + * + */ +public class ItemManager { + + /** + * List of items. + */ + private List items; + + /** + * Creates the ItemManager. + */ + public ItemManager() { + items = new ArrayList(); + } + + public void createGroundItem(Location location, Item item) { + for(FloorItem fi : items) { + if(fi.getPlayer() == null && !fi.isDestroyed() && !fi.isSpawn() && fi.getLocation().equals(location) && fi.getId() == item.getId()) { + fi.incrementAmount(item.getAmount()); + fi.resetDroppedAt(); + refresh(fi); + return; + } + } + final FloorItem floor = FloorItem.createGlobalDroppedItem(location, item); + items.add(floor); + refresh(floor); + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + long diff = System.currentTimeMillis() - floor.getDroppedAt(); + if(diff >= 60000) { + items.remove(floor); + floor.setDestroyed(true); + refresh(floor); + this.stop(); + } else { + this.setTick((int) diff); + } + } + }); + } + + public void createDropGroundItem(Player player, Location location, Item item) { + for(FloorItem fi : items) { + if(fi.getPlayer() == player && !fi.isDestroyed() && !fi.isSpawn() && fi.getLocation().equals(location) && fi.getId() == item.getId()) { + fi.incrementAmount(item.getAmount()); + fi.resetDroppedAt(); + refresh(fi); + return; + } + } + final FloorItem floor = FloorItem.createPlayerDroppedItemAt(player, location, item); + items.add(floor); + refresh(floor); + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + long diff = System.currentTimeMillis() - floor.getDroppedAt(); + if(diff >= 60000) { + floor.setPlayer(null); + refresh(floor); + if(!floor.isDestroyed()) { + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + long diff = System.currentTimeMillis() - floor.getDroppedAt(); + if(diff >= 60000) { + items.remove(floor); + floor.setDestroyed(true); + refresh(floor); + this.stop(); + } else { + this.setTick((int) diff); + } + } + }); + } else { + if(items.contains(floor)) { + items.remove(floor); + } + } + this.stop(); + } else { + this.setTick((int) diff); + } + } + }); + } + + /** + * Called when a player drops an item onto the floor. + * @param player + * @param item + */ + public void createGroundItem(Player player, Item item) { + final FloorItem floor = FloorItem.createPlayerDroppedItem(player, item); + items.add(floor); + refresh(floor); + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + floor.setPlayer(null); + refresh(floor); + if(!floor.isDestroyed()) { + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + items.remove(floor); + refresh(floor); + this.stop(); + } + }); + } else { + if(items.contains(floor)) { + items.remove(floor); + } + } + this.stop(); + } + }); + } + + /** + * Refreshes a floor item. + * @param floor + */ + private void refresh(FloorItem floor) { + if(floor.getDroppedAt() >= 60000*2) { + for(Player p : World.getInstance().getPlayerList()) { + if(p.getLocation().withinDistance(floor.getLocation())) { + p.getActionSender().sendDestroyGroundItem(floor); + } + } + } + if(floor.isDestroyed()) { + if(floor.getPlayer() == null) { + for(Player p : World.getInstance().getPlayerList()) { + if(p.getLocation().withinDistance(floor.getLocation())) { + p.getActionSender().sendDestroyGroundItem(floor); + } + } + } else { + if(floor.getPlayer().isDisconnected()) { + floor.setPlayer(null); + } else { + if(floor.getPlayer().getLocation().withinDistance(floor.getLocation())) { + floor.getPlayer().getActionSender().sendDestroyGroundItem(floor); + } + } + } + return; + } + if(floor.getPlayer() == null) { + for(Player p : World.getInstance().getPlayerList()) { + if(p.getLocation().withinDistance(floor.getLocation())) { + p.getActionSender().sendCreateGroundItem(floor); + } + } + } else { + if(floor.getPlayer().isDisconnected()) { + floor.setPlayer(null); + } else { + if(floor.getPlayer().getLocation().withinDistance(floor.getLocation())) { + floor.getPlayer().getActionSender().sendCreateGroundItem(floor); + } + } + } + } + + public boolean groundItemExists(Location l, int id) { + for(FloorItem f : items) { + if(f.getLocation().equals(l) && f.getId() == id && !f.isDestroyed()) { + return true; + } + } + return false; + } + + public int getItemAmount(Location l, int id) { + for(FloorItem f : items) { + if(f.getLocation().equals(l) && f.getId() == id) { + return f.getAmount(); + } + } + return -1; + } + + public void destroyGroundItem(Location l, int id) { + for(final FloorItem f : items) { + if(f.getLocation().equals(l) && f.getId() == id) { + f.setDestroyed(true); + refresh(f); + if(f.isSpawn()) { + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + f.setDestroyed(false); + refresh(f); + } + }); + } + } + } + } + + public void createSpawn(Spawn s) { + FloorItem f = FloorItem.createSpawnItem(s); + items.add(f); + } + + public void refresh(Player p) { + for(FloorItem f : items) { + if(p.getLocation().withinDistance(f.getLocation()) && !f.isDestroyed() && (p == f.getPlayer() || f.getPlayer() == null)) { + p.getActionSender().sendCreateGroundItem(f); + } + } + } + +} diff --git a/server508/src/com/rs2hd/util/Misc.java b/server508/src/com/rs2hd/util/Misc.java new file mode 100644 index 0000000..13a1b4b --- /dev/null +++ b/server508/src/com/rs2hd/util/Misc.java @@ -0,0 +1,464 @@ +package com.rs2hd.util; + +import com.rs2hd.net.Packet; + +/** + * A collection of miscellaneous methods and constants. + * @author Graham + * + */ +public class Misc { + + /** + * Convert a string to a long. + * @param s + * @return + */ + public static long playerNameToLong(String s) { + long l = 0L; + for(int i = 0; i < s.length() && i < 12; i++) { + char c = s.charAt(i); + l *= 37L; + if(c >= 'A' && c <= 'Z') l += (1 + c) - 65; + else if(c >= 'a' && c <= 'z') l += (1 + c) - 97; + else if(c >= '0' && c <= '9') l += (27 + c) - 48; + } + while(l % 37L == 0L && l != 0L) l /= 37L; + return l; + } + + /** + * Valid characters. + */ + public static char[] VALID_CHARS = { + '_', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', + 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', + 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', + '3', '4', '5', '6', '7', '8', '9' + }; + + /** + * Convert a long to a string. + * @param l + * @return + */ + public static String longToPlayerName(long l) { + if (l <= 0L || l >= 0x5b5b57f8a98a5dd1L) { + return null; + } + if (l % 37L == 0L) { + return null; + } + int i = 0; + char ac[] = new char[12]; + while (l != 0L) { + long l1 = l; + l /= 37L; + ac[11 - i++] = VALID_CHARS[(int)(l1 - l * 37L)]; + } + return new String(ac, 12 - i, i); + } + + /** + * Format a player's name for use in the protocol. + * @return + */ + public static String formatPlayerNameForProtocol(String name) { + name = name.replaceAll(" ", "_"); + name = name.toLowerCase(); + return name; + } + + /** + * Format a player's name for display. + * @param name + * @return + */ + public static String formatPlayerNameForDisplay(String name) { + name = name.replaceAll("_", " "); + name = name.toLowerCase(); + StringBuilder newName = new StringBuilder(); + boolean wasSpace = true; + for(int i = 0; i < name.length(); i++) { + if(wasSpace) { + newName.append((new String()+name.charAt(i)).toUpperCase()); + wasSpace = false; + } else { + newName.append(name.charAt(i)); + } + if(name.charAt(i) == ' ') { + wasSpace = true; + } + } + return newName.toString(); + } + + private static int[] anIntArray241 = { + 215, 203, 83, 158, 104, 101, 93, 84, + 107, 103, 109, 95, 94, 98, 89, 86, 70, 41, 32, 27, 24, 23, -1, -2, + 26, -3, -4, 31, 30, -5, -6, -7, 37, 38, 36, -8, -9, -10, 40, -11, + -12, 55, 48, 46, 47, -13, -14, -15, 52, 51, -16, -17, 54, -18, -19, + 63, 60, 59, -20, -21, 62, -22, -23, 67, 66, -24, -25, 69, -26, -27, + 199, 132, 80, 77, 76, -28, -29, 79, -30, -31, 87, 85, -32, -33, + -34, -35, -36, 197, -37, 91, -38, 134, -39, -40, -41, 97, -42, -43, + 133, 106, -44, 117, -45, -46, 139, -47, -48, 110, -49, -50, 114, + 113, -51, -52, 116, -53, -54, 135, 138, 136, 129, 125, 124, -55, + -56, 130, 128, -57, -58, -59, 183, -60, -61, -62, -63, -64, 148, + -65, -66, 153, 149, 145, 144, -67, -68, 147, -69, -70, -71, 152, + 154, -72, -73, -74, 157, 171, -75, -76, 207, 184, 174, 167, 166, + 165, -77, -78, -79, 172, 170, -80, -81, -82, 178, -83, 177, 182, + -84, -85, 187, 181, -86, -87, -88, -89, 206, 221, -90, 189, -91, + 198, 254, 262, 195, 196, -92, -93, -94, -95, -96, 252, 255, 250, + -97, 211, 209, -98, -99, 212, -100, 213, -101, -102, -103, 224, + -104, 232, 227, 220, 226, -105, -106, 246, 236, -107, 243, -108, + -109, 231, 237, 235, -110, -111, 239, 238, -112, -113, -114, -115, + -116, 241, -117, 244, -118, -119, 248, -120, 249, -121, -122, -123, + 253, -124, -125, -126, -127, 259, 258, -128, -129, 261, -130, -131, + 390, 327, 296, 281, 274, 271, 270, -132, -133, 273, -134, -135, + 278, 277, -136, -137, 280, -138, -139, 289, 286, 285, -140, -141, + 288, -142, -143, 293, 292, -144, -145, 295, -146, -147, 312, 305, + 302, 301, -148, -149, 304, -150, -151, 309, 308, -152, -153, 311, + -154, -155, 320, 317, 316, -156, -157, 319, -158, -159, 324, 323, + -160, -161, 326, -162, -163, 359, 344, 337, 334, 333, -164, -165, + 336, -166, -167, 341, 340, -168, -169, 343, -170, -171, 352, 349, + 348, -172, -173, 351, -174, -175, 356, 355, -176, -177, 358, -178, + -179, 375, 368, 365, 364, -180, -181, 367, -182, -183, 372, 371, + -184, -185, 374, -186, -187, 383, 380, 379, -188, -189, 382, -190, + -191, 387, 386, -192, -193, 389, -194, -195, 454, 423, 408, 401, + 398, 397, -196, -197, 400, -198, -199, 405, 404, -200, -201, 407, + -202, -203, 416, 413, 412, -204, -205, 415, -206, -207, 420, 419, + -208, -209, 422, -210, -211, 439, 432, 429, 428, -212, -213, 431, + -214, -215, 436, 435, -216, -217, 438, -218, -219, 447, 444, 443, + -220, -221, 446, -222, -223, 451, 450, -224, -225, 453, -226, -227, + 486, 471, 464, 461, 460, -228, -229, 463, -230, -231, 468, 467, + -232, -233, 470, -234, -235, 479, 476, 475, -236, -237, 478, -238, + -239, 483, 482, -240, -241, 485, -242, -243, 499, 495, 492, 491, + -244, -245, 494, -246, -247, 497, -248, 502, -249, 506, 503, -250, + -251, 505, -252, -253, 508, -254, 510, -255, -256, 0 + }; + public static int[] anIntArray233 = { + 0, 1024, 2048, 3072, 4096, 5120, + 6144, 8192, 9216, 12288, 10240, 11264, 16384, 18432, 17408, 20480, + 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, + 30720, 31744, 32768, 33792, 34816, 35840, 36864, 536870912, + 16777216, 37888, 65536, 38912, 131072, 196608, 33554432, 524288, + 1048576, 1572864, 262144, 67108864, 4194304, 134217728, 327680, + 8388608, 2097152, 12582912, 13631488, 14680064, 15728640, + 100663296, 101187584, 101711872, 101974016, 102760448, 102236160, + 40960, 393216, 229376, 117440512, 104857600, 109051904, 201326592, + 205520896, 209715200, 213909504, 106954752, 218103808, 226492416, + 234881024, 222298112, 224395264, 268435456, 272629760, 276824064, + 285212672, 289406976, 223346688, 293601280, 301989888, 318767104, + 297795584, 298844160, 310378496, 102498304, 335544320, 299892736, + 300941312, 301006848, 300974080, 39936, 301465600, 49152, + 1073741824, 369098752, 402653184, 1342177280, 1610612736, + 469762048, 1476395008, -2147483648, -1879048192, 352321536, + 1543503872, -2013265920, -1610612736, -1342177280, -1073741824, + -1543503872, 356515840, -1476395008, -805306368, -536870912, + -268435456, 1577058304, -134217728, 360710144, -67108864, + 364904448, 51200, 57344, 52224, 301203456, 53248, 54272, 55296, + 56320, 301072384, 301073408, 301074432, 301075456, 301076480, + 301077504, 301078528, 301079552, 301080576, 301081600, 301082624, + 301083648, 301084672, 301085696, 301086720, 301087744, 301088768, + 301089792, 301090816, 301091840, 301092864, 301093888, 301094912, + 301095936, 301096960, 301097984, 301099008, 301100032, 301101056, + 301102080, 301103104, 301104128, 301105152, 301106176, 301107200, + 301108224, 301109248, 301110272, 301111296, 301112320, 301113344, + 301114368, 301115392, 301116416, 301117440, 301118464, 301119488, + 301120512, 301121536, 301122560, 301123584, 301124608, 301125632, + 301126656, 301127680, 301128704, 301129728, 301130752, 301131776, + 301132800, 301133824, 301134848, 301135872, 301136896, 301137920, + 301138944, 301139968, 301140992, 301142016, 301143040, 301144064, + 301145088, 301146112, 301147136, 301148160, 301149184, 301150208, + 301151232, 301152256, 301153280, 301154304, 301155328, 301156352, + 301157376, 301158400, 301159424, 301160448, 301161472, 301162496, + 301163520, 301164544, 301165568, 301166592, 301167616, 301168640, + 301169664, 301170688, 301171712, 301172736, 301173760, 301174784, + 301175808, 301176832, 301177856, 301178880, 301179904, 301180928, + 301181952, 301182976, 301184000, 301185024, 301186048, 301187072, + 301188096, 301189120, 301190144, 301191168, 301193216, 301195264, + 301194240, 301197312, 301198336, 301199360, 301201408, 301202432 + }; + public static byte[] aByteArray235 = { + 22, 22, 22, 22, 22, 22, 21, 22, 22, + 20, 22, 22, 22, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 3, 8, 22, 16, 22, 16, 17, 7, 13, 13, 13, + 16, 7, 10, 6, 16, 10, 11, 12, 12, 12, 12, 13, 13, 14, 14, 11, 14, + 19, 15, 17, 8, 11, 9, 10, 10, 10, 10, 11, 10, 9, 7, 12, 11, 10, 10, + 9, 10, 10, 12, 10, 9, 8, 12, 12, 9, 14, 8, 12, 17, 16, 17, 22, 13, + 21, 4, 7, 6, 5, 3, 6, 6, 5, 4, 10, 7, 5, 6, 4, 4, 6, 10, 5, 4, 4, + 5, 7, 6, 10, 6, 10, 22, 19, 22, 14, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 21, 22, 21, 22, 22, 22, 21, + 22, 22 + }; + + public static String decryptPlayerChat(Packet str, int totalChars) { + try { + if (totalChars == 0) { + return ""; + } + int charsDecoded = 0; + int i_4_ = 0; + String s = ""; + for (;;) { + byte i_7_ = str.readByte(); + if (i_7_ >= 0) { + i_4_++; + } else { + i_4_ = anIntArray241[i_4_]; + } + int i_8_; + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (totalChars <= ++charsDecoded) { + break; + } + i_4_ = 0; + } + if (((i_7_ & 0x40) ^ 0xffffffff) != -1) { + i_4_ = anIntArray241[i_4_]; + } else { + i_4_++; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (++charsDecoded >= totalChars) { + break; + } + i_4_ = 0; + } + if ((0x20 & i_7_) == 0) { + i_4_++; + } else { + i_4_ = anIntArray241[i_4_]; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (totalChars <= ++charsDecoded) { + break; + } + i_4_ = 0; + } + if (((0x10 & i_7_) ^ 0xffffffff) == -1) { + i_4_++; + } else { + i_4_ = anIntArray241[i_4_]; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (totalChars <= ++charsDecoded) { + break; + } + + i_4_ = 0; + } + if (((0x8 & i_7_) ^ 0xffffffff) != -1) { + i_4_ = anIntArray241[i_4_]; + } else { + i_4_++; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (++charsDecoded >= totalChars) { + break; + } + i_4_ = 0; + } + if ((0x4 & i_7_) == 0) { + i_4_++; + } else { + i_4_ = anIntArray241[i_4_]; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (totalChars <= ++charsDecoded) { + break; + } + i_4_ = 0; + } + if (((i_7_ & 0x2) ^ 0xffffffff) != -1) { + i_4_ = anIntArray241[i_4_]; + } else { + i_4_++; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (totalChars <= ++charsDecoded) { + break; + } + i_4_ = 0; + } + if (((i_7_ & 0x1) ^ 0xffffffff) != -1) { + i_4_ = anIntArray241[i_4_]; + } else { + i_4_++; + } + if ((i_8_ = anIntArray241[i_4_]) < 0) { + s += (char) (byte) (i_8_ ^ 0xffffffff); + if (++charsDecoded >= totalChars) { + break; + } + i_4_ = 0; + } + } + return s; + } catch (RuntimeException runtimeexception) { + } + return ""; + } + + public static int encryptPlayerChat(byte[] is, int i_25_, int i_26_, int i_27_, byte[] is_28_) { + try { + i_27_ += i_25_; + int i_29_ = 0; + int i_30_ = i_26_ << -2116795453; + for (; i_27_ > i_25_; i_25_++) { + int i_31_ = 0xff & is_28_[i_25_]; + int i_32_ = anIntArray233[i_31_]; + int i_33_ = aByteArray235[i_31_]; + int i_34_ = i_30_ >> -1445887805; + int i_35_ = i_30_ & 0x7; + i_29_ &= (-i_35_ >> 473515839); + i_30_ += i_33_; + int i_36_ = ((-1 + (i_35_ - -i_33_)) >> -1430991229) + i_34_; + i_35_ += 24; + is[i_34_] = (byte) (i_29_ = (i_29_ | (i_32_ >>> i_35_))); + if ((i_36_ ^ 0xffffffff) < (i_34_ ^ 0xffffffff)) { + i_34_++; + i_35_ -= 8; + is[i_34_] = (byte) (i_29_ = i_32_ >>> i_35_); + if (i_36_ > i_34_) { + i_34_++; + i_35_ -= 8; + is[i_34_] = (byte) (i_29_ = i_32_ >>> i_35_); + if (i_36_ > i_34_) { + i_35_ -= 8; + i_34_++; + is[i_34_] = (byte) (i_29_ = i_32_ >>> i_35_); + if (i_34_ < i_36_) { + i_35_ -= 8; + i_34_++; + is[i_34_] = (byte) (i_29_ = i_32_ << -i_35_); + } + } + } + } + } + return -i_26_ + ((7 + i_30_) >> -662855293); + } catch (RuntimeException runtimeexception) { + } + return 0; + } + + public static final byte[] DIRECTION_DELTA_X = new byte[] {-1, 0, 1, -1, 1, -1, 0, 1}; + public static final byte[] DIRECTION_DELTA_Y = new byte[] {1, 1, 1, 0, 0, -1, -1, -1}; + + /** + * Convert a String to a Long. + * @param s The string to convert to a long. + * @return Returns the string as a long. + */ + public static long stringToLong(String s) { + long l = 0L; + for (int i = 0; i < s.length() && i < 12; i++) { + char c = s.charAt(i); + l *= 37L; + if (c >= 'A' && c <= 'Z') + l += (1 + c) - 65; + else if (c >= 'a' && c <= 'z') + l += (1 + c) - 97; + else if (c >= '0' && c <= '9') + l += (27 + c) - 48; + } + for (; l % 37L == 0L && l != 0L; l /= 37L); + return l; + } + + public static int direction(int dx, int dy) { + if (dx < 0) { + if (dy < 0) + return 5; + else if (dy > 0) + return 0; + else + return 3; + } else if (dx > 0) { + if (dy < 0) + return 7; + else if (dy > 0) + return 2; + else + return 4; + } else { + if (dy < 0) + return 6; + else if (dy > 0) + return 1; + else + return -1; + } + } + + // gets the direction between the two given points + // valid directions are N:0, NE:2, E:4, SE:6, S:8, SW:10, W:12, NW:14 + // the invalid (inbetween) direction are 1,3,5,7,9,11,13,15 i.e. odd + // integers + // returns -1, if src and dest are the same + public static int direction(int srcX, int srcY, int destX, int destY) { + int dx = destX - srcX, dy = destY - srcY; + // a lot of cases that have to be considered here ... is there a more + // sophisticated (and quick!) way? + if (dx < 0) { + if (dy < 0) { + if (dx < dy) + return 11; + else if (dx > dy) + return 9; + else + return 10; // dx == dy + } else if (dy > 0) { + if (-dx < dy) + return 15; + else if (-dx > dy) + return 13; + else + return 14; // -dx == dy + } else { // dy == 0 + return 12; + } + } else if (dx > 0) { + if (dy < 0) { + if (dx < -dy) + return 7; + else if (dx > -dy) + return 5; + else + return 6; // dx == -dy + } else if (dy > 0) { + if (dx < dy) + return 1; + else if (dx > dy) + return 3; + else + return 2; // dx == dy + } else { // dy == 0 + return 4; + } + } else { // dx == 0 + if (dy < 0) { + return 8; + } else if (dy > 0) { + return 0; + } else { // dy == 0 + return -1; // src and dest are the same + } + } + } + +} diff --git a/server508/src/com/rs2hd/util/ProjectileManager.java b/server508/src/com/rs2hd/util/ProjectileManager.java new file mode 100644 index 0000000..4919f6f --- /dev/null +++ b/server508/src/com/rs2hd/util/ProjectileManager.java @@ -0,0 +1,20 @@ +package com.rs2hd.util; + +import com.rs2hd.model.Entity; +import com.rs2hd.model.Location; +import com.rs2hd.model.Player; +import com.rs2hd.model.World; + +public class ProjectileManager { + + public void fire(Location source, Location dest, int gfx, int angle, int speed, int startHeight, int endHeight, Entity lockon) { + int offsetX = (source.getX() - dest.getX()) * -1; + int offsetY = (source.getY() - dest.getY()) * -1; + for(Player p : World.getInstance().getPlayerList()) { + if(p.getLocation().withinDistance(source) && p.getLocation().withinDistance(dest)) { + p.getActionSender().sendProjectile(source, dest, offsetX, offsetY, gfx, angle, speed, startHeight, endHeight, lockon); + } + } + } + +} diff --git a/server508/src/com/rs2hd/util/Scripts.java b/server508/src/com/rs2hd/util/Scripts.java new file mode 100644 index 0000000..02349ce --- /dev/null +++ b/server508/src/com/rs2hd/util/Scripts.java @@ -0,0 +1,16 @@ +package com.rs2hd.util; + +import javax.script.ScriptEngine; +import javax.script.ScriptEngineManager; + +public class Scripts { + + private static ScriptEngineManager mgr = new ScriptEngineManager(); + @SuppressWarnings("unused") + private static ScriptEngine engine; + + public static void init() { + engine = mgr.getEngineByName("JavaScript"); + } + +} diff --git a/server508/src/com/rs2hd/util/ShopManager.java b/server508/src/com/rs2hd/util/ShopManager.java new file mode 100644 index 0000000..3cc5e8c --- /dev/null +++ b/server508/src/com/rs2hd/util/ShopManager.java @@ -0,0 +1,299 @@ +package com.rs2hd.util; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.Map; + +import com.rs2hd.event.Event; +import com.rs2hd.model.Inventory; +import com.rs2hd.model.Item; +import com.rs2hd.model.ItemDefinition; +import com.rs2hd.model.Player; +import com.rs2hd.model.Shop; +import com.rs2hd.model.ShopConfiguration; +import com.rs2hd.model.ShopItem; +import com.rs2hd.model.World; +import com.rs2hd.util.log.Logger; + +public class ShopManager { + + private static final int CURRENCY = 995; + + private Map shops; + + @SuppressWarnings("unchecked") + public ShopManager() throws FileNotFoundException { + Logger.getInstance().debug("Loading shops..."); + shops = (Map) XStreamUtil.getXStream().fromXML(new FileInputStream(com.rs2hd.Main.workingDir+"data/shops.xml")); + World.getInstance().registerEvent(new Event(60000) { + @Override + public void execute() { + updateAmounts(); + } + }); + Logger.getInstance().debug("Loaded " + shops.size() + " shops."); + } + + public void tick(Player player) { + if(player.getShopConfiguration().isShopping()) { + Shop shop = player.getShopConfiguration().getCurrentShop(); + if(shop.isUpdateRequired()) { + shop.refresh(player); + } + } + } + + private void updateAmounts() { + for(Shop s : shops.values()) { + s.updateAmounts(); + } + } + + public int getShopToInvPrice(Player player, int id) { + ShopConfiguration cfg = player.getShopConfiguration(); + if(!cfg.isShopping()) { + return -1; + } + ItemDefinition def = ItemDefinition.forId(id); + Shop shop = cfg.getCurrentShop(); + if(shop.isGeneralStore()) { + if(cfg.isInMainStock()) { + return def.getPrice().getMaximumPrice() > 0 ? def.getPrice().getMaximumPrice() : 1; + } else { + return def.getPrice().getNormalPrice() > 0 ? def.getPrice().getNormalPrice() : 1; + } + } else { + if(cfg.isInMainStock()) { + return def.getPrice().getNormalPrice() > 0 ? def.getPrice().getNormalPrice() : 1; + } else { + return def.getPrice().getMinimumPrice() > 0 ? def.getPrice().getMinimumPrice() : 1; + } + } + } + + public int getInvToShopPrice(Player player, int id) { + ShopConfiguration cfg = player.getShopConfiguration(); + if(!cfg.isShopping()) { + return -1; + } + ItemDefinition def = ItemDefinition.forId(id); + Shop shop = cfg.getCurrentShop(); + if(shop.isGeneralStore()) { + //if(cfg.isInMainStock()) { + // return def.getPrice().getMinimumPrice(); + //} else { + return def.getPrice().getNormalPrice(); + //} + } else { + //if(cfg.isInMainStock()) { + // return def.getPrice().getNormalPrice(); + //} else { + return def.getPrice().getMaximumPrice(); + //} + } + } + + public void openShop(Player player, int id) { + Shop shop = shops.get(id); + player.getShopConfiguration().setCurrentShop(shop); + player.getShopConfiguration().setIsInMainStock(true); + player.getActionSender().sendConfig2(118, 17); + // TODO get it working correctly + //player.getActionSender().sendShopLoadMainStock(800); + player.getActionSender().sendShopOptions(); + shop.refresh(player); + player.getActionSender().sendString(shop.getName(), 620, 22); + player.getActionSender().sendShopTab(player.getShopConfiguration().isInMainStock(), shop.isGeneralStore()); + player.getActionSender().sendInterface(620); + player.getActionSender().sendInventoryInterface(621); + } + + public void getValueShop(Player player, int slot) { + ShopConfiguration cfg = player.getShopConfiguration(); + if(!cfg.isShopping()) { + return; + } + Shop shop = cfg.getCurrentShop(); + if(slot < 0 || slot >= Shop.SIZE) { + return; + } + Item shopItem = null; + if(cfg.isInMainStock()) { + shopItem = shop.getMainStock().get(slot); + } else { + shopItem = shop.getPlayerStock().get(slot); + } + if(shopItem == null) { + return; + } + int price = getShopToInvPrice(player, shopItem.getId()); + player.getActionSender().sendMessage(shopItem.getDefinition().getName() + ": currently worth " + price + " coins."); + } + + public void buy(Player player, int slot, int amount) { + ShopConfiguration cfg = player.getShopConfiguration(); + if(!cfg.isShopping()) { + return; + } + Shop shop = cfg.getCurrentShop(); + if(slot < 0 || slot >= Shop.SIZE) { + return; + } + Item shopItem = null; + if(cfg.isInMainStock()) { + shopItem = shop.getMainStock().get(slot); + } else { + shopItem = shop.getPlayerStock().get(slot); + } + if(shopItem == null) { + return; + } + int price = getShopToInvPrice(player, shopItem.getId()); + int totalPrice = price*amount; + if(cfg.isInMainStock()) { + if(player.getInventory().contains(CURRENCY, totalPrice)) { + if(player.getInventory().hasRoomFor(shopItem.getId(), amount)) { + player.getInventory().deleteItem(CURRENCY, totalPrice); + player.getInventory().addItem(shopItem.getId(), amount); + } else { + player.getActionSender().sendMessage("Not enough room in your inventory."); + } + } else { + player.getActionSender().sendMessage("Not enough coins."); + } + } else { + int shopAmt = shop.getPlayerStock().getNumberOf(shopItem); + if(amount > shopAmt) { + amount = shopAmt; + } + ShopItem add = new ShopItem(shopItem.getId(), amount); + if(shop.getPlayerStock().contains(add)) { + if(player.getInventory().contains(CURRENCY, totalPrice)) { + if(player.getInventory().hasRoomFor(add.getId(), add.getAmount())) { + player.getInventory().deleteItem(CURRENCY, totalPrice); + player.getInventory().addItem(add.getId(), add.getAmount()); + shop.getPlayerStock().remove(add); + if(!shop.isGeneralStore() && shop.getMainStock().containsOne(add) && !shop.getPlayerStock().containsOne(add)) { + shop.getPlayerStock().set(shop.getPlayerStock().getFreeSlot(), new ShopItem(add.getId(), 0)); + } + shop.refresh(player); + shop.setUpdateRequired(true); + } else { + player.getActionSender().sendMessage("Not enough room in your inventory."); + } + } else { + player.getActionSender().sendMessage("Not enough coins."); + } + } else { + player.getActionSender().sendMessage("Shop does not have enough stock."); + } + } + } + + public void examineShop(Player player, int slot) { + ShopConfiguration cfg = player.getShopConfiguration(); + if(!cfg.isShopping()) { + return; + } + Shop shop = cfg.getCurrentShop(); + if(slot < 0 || slot >= Shop.SIZE) { + return; + } + Item shopItem = null; + if(cfg.isInMainStock()) { + shopItem = shop.getMainStock().get(slot); + } else { + shopItem = shop.getPlayerStock().get(slot); + } + if(shopItem == null) { + return; + } + player.getActionSender().sendMessage(shopItem.getDefinition().getExamine()); + } + + public void getValueInventory(Player player, int slot) { + if(slot < 0 || slot >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null) { + return; + } + int price = getInvToShopPrice(player, item.getId()); + player.getActionSender().sendMessage(item.getDefinition().getName() + ": shop will buy for " + price + " coins."); + } + + public void sell(Player player, int slot, int amount) { + ShopConfiguration cfg = player.getShopConfiguration(); + Shop shop = cfg.getCurrentShop(); + if(!cfg.isShopping()) { + return; + } + if(cfg.isInMainStock()) { + cfg.setIsInMainStock(false); + player.getActionSender().sendShopTab(player.getShopConfiguration().isInMainStock(), player.getShopConfiguration().getCurrentShop().isGeneralStore()); + shop.refresh(player); + } + if(slot < 0 || slot >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null) { + return; + } + int price = getInvToShopPrice(player, item.getId()); + int invAmt = player.getInventory().numberOf(item.getId()); + if(amount > invAmt) { + amount = invAmt; + } + /*if(cfg.isInMainStock()) { + if(shop.getMainStock().containsOne(new ShopItem(item.getId(), 1)) && item.getId() != CURRENCY) { + Item rem = new Item(item.getId(), amount); + if(player.getInventory().getContainer().contains(rem)) { + if(player.getInventory().hasRoomFor(CURRENCY, (price*amount))) { + player.getInventory().addItem(CURRENCY, (price*amount)); + player.getInventory().deleteItem(rem.getId(), rem.getAmount()); + } else { + player.getActionSender().sendMessage("Not enough room."); + } + } else { + player.getActionSender().sendMessage("You do not have enough of the required item."); + } + } else { + player.getActionSender().sendMessage("The shop will not buy that item."); + } + } else */{ + if((shop.getMainStock().containsOne(new ShopItem(item.getId(), 1)) || shop.isGeneralStore()) && item.getId() != CURRENCY) { + if(player.getInventory().hasRoomFor(CURRENCY, (price*amount))) { + ShopItem add = new ShopItem(item.getId(), amount); + if(shop.getPlayerStock().freeSlots() >= 1 || shop.getPlayerStock().containsOne(add)) { + //shop.getPlayerStock().set(shop.getPlayerStock().getFreeSlot(), add); + shop.getPlayerStock().add(add); + player.getInventory().deleteItem(item.getId(), amount); + player.getInventory().addItem(CURRENCY, (price*amount)); + shop.setUpdateRequired(true); + shop.refresh(player); + } else { + player.getActionSender().sendMessage("The shop does not have enough room at the moment."); + } + } else { + player.getActionSender().sendMessage("Not enough room in your inventory."); + } + } else { + player.getActionSender().sendMessage("The shop will not buy that item."); + } + } + } + + public void examineInventory(Player player, int slot, int amount) { + if(slot < 0 || slot >= Inventory.SIZE) { + return; + } + Item item = player.getInventory().getContainer().get(slot); + if(item == null) { + return; + } + player.getActionSender().sendMessage(item.getDefinition().getExamine()); + } + +} diff --git a/server508/src/com/rs2hd/util/XStreamUtil.java b/server508/src/com/rs2hd/util/XStreamUtil.java new file mode 100644 index 0000000..989448c --- /dev/null +++ b/server508/src/com/rs2hd/util/XStreamUtil.java @@ -0,0 +1,37 @@ +package com.rs2hd.util; + +import com.thoughtworks.xstream.XStream; + +/** + * Util class to get the xstream object. + * @author Graham + * + */ +public class XStreamUtil { + + private XStreamUtil() {} + + private static XStream xstream = null; + + public static XStream getXStream() { + if(xstream == null) { + xstream = new XStream(); + /* + * Set up our aliases. + */ + xstream.alias("packet", com.rs2hd.packethandler.PacketHandlerDef.class); + xstream.alias("player", com.rs2hd.model.Player.class); + xstream.alias("itemDefinition", com.rs2hd.model.ItemDefinition.class); + xstream.alias("item", com.rs2hd.model.Item.class); + xstream.alias("npcDefinition", com.rs2hd.model.NPCDefinition.class); + xstream.alias("npc", com.rs2hd.model.NPC.class); + xstream.alias("npcDrop", com.rs2hd.model.NPCDrop.class); + xstream.alias("drop", com.rs2hd.model.NPCDrop.Drop.class); + xstream.alias("spawn", com.rs2hd.model.Spawn.class); + xstream.alias("shop", com.rs2hd.model.Shop.class); + xstream.alias("config", com.rs2hd.Configuration.class); + } + return xstream; + } + +} diff --git a/server508/src/com/rs2hd/util/log/Logger.java b/server508/src/com/rs2hd/util/log/Logger.java new file mode 100644 index 0000000..f32d80a --- /dev/null +++ b/server508/src/com/rs2hd/util/log/Logger.java @@ -0,0 +1,147 @@ +package com.rs2hd.util.log; + +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.Date; + +/** + * Logging utility class + * @author Graham + * + */ +public class Logger { + + /** + * The cached date. + */ + private static Date date = new Date(); + + /** + * The date format string. + */ + private static DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); + + /** + * The cached formatted date. + */ + private static String dateText = dateFormat.format(date); + + /** + * When the date was last updated. + */ + private static long lastUpdatedDate = 0; + + /** + * Different debug levels. + * + * There are 4: + * DEBUG - used only for debugging, not reccomended in release servers + * INFO - used for informative purposes + * WARNING - reports problems that won't be dangerous to the runtime of the server, but + * should still be looked at + * ERROR - reports serious problems that can effect the runtime of the server + * @author Graham + * + */ + private static enum Level { + DEBUG, + INFO, + WARNING, + ERROR + } + + /** + * Creates an instance of the logger. + */ + private Logger() { + } + + /** + * Used to send log messages to their appropriate locations (i.e. DEBUG/INFO go to stdout + * and WARNING/ERROR go to stderr). + * @param level + * @param message + */ + public void log(Level level, String message) { + synchronized(getClass()) { + if(level == Level.DEBUG || level == Level.INFO) { + System.out.println(formatMessage(message)); + } else { + System.err.println(formatMessage(message)); + } + } + } + + /** + * Formats a log message. + * @param message The unformatted message. + * @return The formatted message. + */ + private String formatMessage(String message) { + if(message == null) { + message = ""; + } + if((lastUpdatedDate+500) < System.currentTimeMillis()) { + lastUpdatedDate = System.currentTimeMillis(); + date = new Date(); + dateText = dateFormat.format(date); + } + message = message.replaceAll("\t", " "); + return "[" + dateText + "] ["+Thread.currentThread().getName()+"]: " + message; + } + + /** + * Log a INFO-level message. + * @param message + */ + public void info(String message) { + log(Level.INFO, message); + } + + /** + * Log a DEBUG-level message. + * @param message + */ + public void debug(String message) { + log(Level.DEBUG, message); + } + + /** + * Log a WARNING-level message. + * @param message + */ + public void warning(String message) { + log(Level.WARNING, message); + } + + /** + * Log a ERROR-level message. + * @param message + */ + public void error(String message) { + log(Level.ERROR, message); + } + + /** + * Log a stack trace. + * @param throwable + */ + public void stackTrace(Throwable throwable) { + synchronized(getClass()) { + log(Level.ERROR, throwable.getMessage()); + for(StackTraceElement e : throwable.getStackTrace()) { + log(Level.ERROR, e.toString()); + } + } + } + + private static Logger instance = null; + + public static Logger getInstance() { + if(instance == null) { + instance = new Logger(); + } + return instance; + } + +} diff --git a/server508/src/com/rs2hd/util/log/SLF4JAppender.java b/server508/src/com/rs2hd/util/log/SLF4JAppender.java new file mode 100644 index 0000000..ad9ba79 --- /dev/null +++ b/server508/src/com/rs2hd/util/log/SLF4JAppender.java @@ -0,0 +1,89 @@ +package com.rs2hd.util.log; + +import org.apache.log4j.Appender; +import org.apache.log4j.Layout; +import org.apache.log4j.Priority; +import org.apache.log4j.spi.ErrorHandler; +import org.apache.log4j.spi.Filter; +import org.apache.log4j.spi.LoggingEvent; + +/** + * Puts SLF4J logs through to our own system. + * @author Graham + * + */ +public class SLF4JAppender implements Appender { + + /** + * Logger instance. + */ + private Logger logger = Logger.getInstance(); + + @Override + public void addFilter(Filter arg0) { + + } + + @Override + public void clearFilters() { + + } + + @Override + public void close() { + + } + + @SuppressWarnings("deprecation") + @Override + public void doAppend(LoggingEvent arg0) { + if(arg0.getLevel().isGreaterOrEqual(Priority.ERROR)) { + logger.error(arg0.getMessage().toString()); + return; + } + if(arg0.getLevel().isGreaterOrEqual(Priority.WARN)) { + logger.warning(arg0.getMessage().toString()); + return; + } + } + + @Override + public ErrorHandler getErrorHandler() { + return null; + } + + @Override + public Filter getFilter() { + return null; + } + + @Override + public Layout getLayout() { + return null; + } + + @Override + public String getName() { + return null; + } + + @Override + public boolean requiresLayout() { + return false; + } + + @Override + public void setErrorHandler(ErrorHandler arg0) { + + } + + @Override + public void setLayout(Layout arg0) { + + } + + @Override + public void setName(String arg0) { + } + +} diff --git a/server508/src/server.java b/server508/src/server.java new file mode 100644 index 0000000..7414277 --- /dev/null +++ b/server508/src/server.java @@ -0,0 +1,14 @@ +/** + * Created by IntelliJ IDEA. + * User: mopar + * Date: Feb 28, 2010 + * Time: 8:56:51 PM + * To change this template use File | Settings | File Templates. + */ +public class server { + + public static void main(String[] args) { + System.setProperty("python.home", args[0]+"libs/cachedir/"); + com.rs2hd.Main.main(args); + } +} diff --git a/cachedump/src/org/moparscape/cacheutils/v317/ByteStream.java b/src/org/moparscape/cacheutils/v317/ByteStream.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v317/ByteStream.java rename to src/org/moparscape/cacheutils/v317/ByteStream.java diff --git a/cachedump/src/org/moparscape/cacheutils/v317/CacheFile.java b/src/org/moparscape/cacheutils/v317/CacheFile.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v317/CacheFile.java rename to src/org/moparscape/cacheutils/v317/CacheFile.java diff --git a/cachedump/src/org/moparscape/cacheutils/v317/CacheIndex.java b/src/org/moparscape/cacheutils/v317/CacheIndex.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v317/CacheIndex.java rename to src/org/moparscape/cacheutils/v317/CacheIndex.java diff --git a/cachedump/src/org/moparscape/cacheutils/v317/Main.java b/src/org/moparscape/cacheutils/v317/Main.java similarity index 88% rename from cachedump/src/org/moparscape/cacheutils/v317/Main.java rename to src/org/moparscape/cacheutils/v317/Main.java index 9f010a8..368cd08 100644 --- a/cachedump/src/org/moparscape/cacheutils/v317/Main.java +++ b/src/org/moparscape/cacheutils/v317/Main.java @@ -4,9 +4,8 @@ import java.io.*; public class Main { - public static final String folderName = "/home/mopar/htdocs/317/ondemand/"; - public static final String cacheToDumpFolder = "./cachedump/complete317/"; - //public static final String cacheToDumpFolder = "/home/mopar/.moparscape/cache317/"; + public static String folderName = "~/htdocs/317/ondemand/"; + public static String cacheToDumpFolder = "./cachedump/complete317/"; public static PrintStream log; public Main() { @@ -94,6 +93,12 @@ public class Main { } public static void main(String args[]) throws Exception { + if(args.length != 2){ + System.out.println("Usage: org.moparscape.cacheutils.v317.Main folderToDumpCacheTo folderWithCompleteCacheToDump"); + return; + } + folderName = args[0]+"/317/ondemand/"; + cacheToDumpFolder = args[1]+"/"; long startTime = System.currentTimeMillis(); new Main(); println("execution time: " + ((System.currentTimeMillis() - startTime) / 1000) + "s"); diff --git a/cachedump/src/org/moparscape/cacheutils/v508/CacheFile.java b/src/org/moparscape/cacheutils/v508/CacheFile.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v508/CacheFile.java rename to src/org/moparscape/cacheutils/v508/CacheFile.java diff --git a/cachedump/src/org/moparscape/cacheutils/v508/CacheFileSet.java b/src/org/moparscape/cacheutils/v508/CacheFileSet.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v508/CacheFileSet.java rename to src/org/moparscape/cacheutils/v508/CacheFileSet.java diff --git a/cachedump/src/org/moparscape/cacheutils/v508/FileOnDisk.java b/src/org/moparscape/cacheutils/v508/FileOnDisk.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v508/FileOnDisk.java rename to src/org/moparscape/cacheutils/v508/FileOnDisk.java diff --git a/cachedump/src/org/moparscape/cacheutils/v508/Main.java b/src/org/moparscape/cacheutils/v508/Main.java similarity index 94% rename from cachedump/src/org/moparscape/cacheutils/v508/Main.java rename to src/org/moparscape/cacheutils/v508/Main.java index e27e6e0..445662f 100644 --- a/cachedump/src/org/moparscape/cacheutils/v508/Main.java +++ b/src/org/moparscape/cacheutils/v508/Main.java @@ -7,14 +7,15 @@ import java.io.PrintStream; public class Main { - public static final String folderName = "/home/mopar/htdocs/508/"; + public static String folderName = "~/htdocs/508/"; + public static String cacheToDumpFolder = "./cachedump/complete508/"; // some (crappy) filesystems can't handle more than this many files in any given folder, so we have to handle it (suffer) public static final int maxFilesInFolder = 33005; public static PrintStream log; public Main() { try { - CacheFileSet cache = new CacheFileSet("./cachedump/complete508/"); + CacheFileSet cache = new CacheFileSet(cacheToDumpFolder); File dump = new File(folderName); if (dump.exists()) @@ -217,6 +218,12 @@ public class Main { } public static void main(String args[]) throws Exception { + if(args.length != 2){ + System.out.println("Usage: org.moparscape.cacheutils.v508.Main folderToDumpCacheTo folderWithCompleteCacheToDump"); + return; + } + folderName = args[0]+"/508/"; + cacheToDumpFolder = args[1]+"/"; long startTime = System.currentTimeMillis(); new Main(); println("execution time: " + ((System.currentTimeMillis() - startTime) / 1000) + "s"); diff --git a/cachedump/src/org/moparscape/cacheutils/v508/Misc.java b/src/org/moparscape/cacheutils/v508/Misc.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v508/Misc.java rename to src/org/moparscape/cacheutils/v508/Misc.java diff --git a/cachedump/src/org/moparscape/cacheutils/v508/RandomAccessFile.java b/src/org/moparscape/cacheutils/v508/RandomAccessFile.java similarity index 100% rename from cachedump/src/org/moparscape/cacheutils/v508/RandomAccessFile.java rename to src/org/moparscape/cacheutils/v508/RandomAccessFile.java diff --git a/src/org/moparscape/security/SecurityManager.java b/src/org/moparscape/security/SecurityManager.java new file mode 100644 index 0000000..2761601 --- /dev/null +++ b/src/org/moparscape/security/SecurityManager.java @@ -0,0 +1,105 @@ +package org.moparscape.security; + +import java.security.Permission; +import java.security.Permissions; +import java.util.HashMap; +import java.util.Map; + +/** + * Created by IntelliJ IDEA. + * User: mopar + * Date: Mar 2, 2010 + * Time: 7:37:50 AM + * To change this template use File | Settings | File Templates. + */ +public class SecurityManager extends java.lang.SecurityManager { + + private Map permissionMap = new HashMap(); + + // two permissions allowed if using java.util.GregorianCalendar + private Permission p1 = new java.lang.RuntimePermission("accessClassInPackage.sun.util.resources"); + private Permission reflectPerm = new java.lang.reflect.ReflectPermission("suppressAccessChecks"); + + public void addPermissions(ClassLoader cl, Permissions perms) { + //if the key already exists, just return, we only support setting the permissions once + if (permissionMap.containsKey(cl)) + return; + perms.setReadOnly(); + permissionMap.put(cl, perms); + } + + /** + * Throws a SecurityException if the requested + * access, specified by the given permission, is not permitted based + * on the security policy currently in effect. + *

+ * This method calls AccessController.checkPermission + * with the given permission. + * + * @param perm the requested permission. + * @throws SecurityException if access is not permitted based on + * the current security policy. + * @throws NullPointerException if the permission argument is + * null. + * @since 1.2 + */ + @Override + public void checkPermission(Permission perm) { + if (perm == null) + throw new NullPointerException("Permission cannot be null."); + + // this isn't ready to go live yet, so just return and allow it all + if(true) return; + + // we are now going to go through the ClassLoaders of all Classes on the stack + // if any of them are in perms, then check the permissions, sticking to the most + // restrictive of the permissions of any class in the stack (ANDing them all together) + + // so default value should be true or it would never be true ((false & anything) == false) + boolean allow = true; + // get all classes on stack + Class c[] = getClassContext(); + + for (int i = 1; i < c.length; i++) { + ClassLoader cl = c[i].getClassLoader(); + // if the ClassLoader is null (can it be?) continue... + if (cl == null) + continue; + Permissions clPerms = permissionMap.get(cl); + // if the classloader isn't in our map, we don't have any say on it so continue + if (clPerms == null) + continue; + // 2 exceptions here for java.util.GregorianCalendar and java.util.Calendar: + // java.lang.RuntimePermission accessClassInPackage.sun.util.resources + // java.lang.reflect.ReflectPermission suppressAccessChecks + String lastCName = c[i - 1].getName(); + if (lastCName.startsWith("java.util.") && lastCName.endsWith("Calendar") && (perm.equals(p1) || perm.equals(reflectPerm)) ) + return; + // some more exceptions for when java classes use reflection. why?... + if(lastCName.equals("java.awt.Component") && perm.equals(reflectPerm)) + return; + // it must be in our map, so update allow appropriatly + allow &= clPerms.implies(perm); + } + + // if allow is true, just return to allow the permission + if (allow) + return; + + System.out.println("denying: " + perm.toString()); + + // class stack for debugging + //for (int i = 1; i < c.length; i++) System.out.println(i + ": " + c[i].getName()); + Thread.dumpStack(); + + // otherwise allow is false, throw a SecurityException + throw new SecurityException("Permission denied: "+perm.toString()); + } + + @Override + public void checkPermission(Permission perm, Object context) { + // ignore context + this.checkPermission(perm); + } + +}