Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. package osbotOS;
  2.  
  3. import org.osbot.rs07.script.Script;
  4.  
  5. public abstract class Node {
  6. public Script script;
  7. public BankingMethods bankMethods = new BankingMethods();
  8. public PositionMethods positionMethods = new PositionMethods();
  9. public PouchMethods pouchMethods = new PouchMethods();
  10. public Core coreMethods = new Core();
  11.  
  12. public int BANK_ID = 11744;
  13. public int UNNOTE_ESS = 7937;
  14. public int NOTE_ESS = 7936;
  15. public String BANK_OPTION = "Bank";
  16.  
  17. public Node(Script script) {
  18. this.script = script;
  19. }
  20.  
  21. public abstract void execute();
  22.  
  23. public abstract boolean validate();
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement