Advertisement
Guest User

Untitled

a guest
Aug 11th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. package scripts.CrabKiller;
  2.  
  3. import org.tribot.api2007.NPCs;
  4. import org.tribot.api2007.types.RSNPC;
  5.  
  6. public class UserVariables {
  7.  
  8. // *****Strings*****//
  9. public static String rockCrabNames[] = { "Rocks", "Rock Crab" };
  10.  
  11. // *****Integers*****//
  12. public static int foodID;
  13.  
  14. public static int foodWithdrawAmmount;
  15.  
  16. // *****Npc's*****//
  17. public static RSNPC[] rockCrab = NPCs.findNearest(rockCrabNames);
  18.  
  19. // *****Booleans*****//
  20. static boolean running = false;
  21.  
  22. boolean refreshing = false;
  23.  
  24. public static boolean banking;
  25.  
  26. public static boolean eating;
  27.  
  28. static boolean eastCrabs = true;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement