OSBotMerccy

Untitled

Jul 4th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public void contains(Inventory inv, int[] i){
  2. boolean found = false;
  3. for(int x : i){
  4. if(found){
  5. continue;
  6. }
  7. if(inv.contains(x)){
  8. found = true;
  9. }
  10. }
  11. return found;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment