Package org.rsbot.script.internal.wrappers

Examples of org.rsbot.script.internal.wrappers.HashTable


    if (inter.getParentID() != -1) {
      return inter.getParentID();
    }

    final int mainID = getID() >>> 16;
    final HashTable ncI = new HashTable(methods.client.getRSInterfaceNC());

    for (RSInterfaceNode node = (RSInterfaceNode) ncI.getFirst(); node != null;
         node = (RSInterfaceNode) ncI.getNext()) {
      if (mainID == node.getMainID()) {
        return (int) node.getID();
      }
    }
View Full Code Here

TOP

Related Classes of org.rsbot.script.internal.wrappers.HashTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.