yojimbos_law

sekrit item hider.ash

Jul 17th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. string list_of_IDs;
  2. int ID_counter;
  3. boolean[int] ID_holes;
  4. for i from 1 to 10000{
  5. if(i.to_item().to_int() == -1 || i.to_item().image == "nopic.gif" || i.to_item().name.contains_text("]")){
  6. ID_holes[i] = true;
  7. list_of_IDs += i.to_string()+",";
  8. ID_counter++;
  9. if(ID_counter > 69 || (i == 10000 && list_of_IDs != "")){
  10. visit_url("inventory.php?manageaction=addtab_0&pwd&action=manage&iids="+list_of_IDs.substring(0,list_of_IDs.length()-1));
  11. print_html("inventory.php?manageaction=addtab_0&pwd&action=manage&iids="+list_of_IDs.substring(0,list_of_IDs.length()-1));
  12. ID_counter = 0;
  13. list_of_IDs = "";
  14. }
  15. }
  16. }
  17. map_to_file(ID_holes,"ID holes.txt");
Advertisement
Add Comment
Please, Sign In to add comment