Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public boolean isInMine() {
  2.  
  3. RSObject[] Walls = Objects.find(17, 1441, 1440);
  4. RSObject[] Essence = Objects.find(30, "Rune Essence", "Pure Essence");
  5.  
  6. if (Walls != null && Walls.length > 0) {
  7.  
  8. if (Essence != null && Essence.length > 0) {
  9.  
  10. return true;
  11.  
  12. } else {
  13. return false;
  14. }
  15.  
  16. } else {
  17. return false;
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement