Advertisement
lostcalpolydude

smashParty

Apr 23rd, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. int barrelcount()
  2. {
  3. int count = 0;
  4. for x from 8568 to 8577
  5. {
  6. count += item_amount( to_item( x ) );
  7. }
  8. return count;
  9. }
  10.  
  11. for x from 8568 to 8577
  12. {
  13. if ( item_amount( to_item( x ) ) > 0 )
  14. {
  15. visit_url( "inv_use.php?pwd&whichitem=" + x + "&choice=1" );
  16. break;
  17. }
  18. }
  19.  
  20. while ( barrelcount() > 0 )
  21. {
  22. run_choice( 2 );
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement