Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string list_of_IDs;
- int ID_counter;
- boolean[int] ID_holes;
- for i from 1 to 10000{
- if(i.to_item().to_int() == -1 || i.to_item().image == "nopic.gif" || i.to_item().name.contains_text("]")){
- ID_holes[i] = true;
- list_of_IDs += i.to_string()+",";
- ID_counter++;
- if(ID_counter > 69 || (i == 10000 && list_of_IDs != "")){
- visit_url("inventory.php?manageaction=addtab_0&pwd&action=manage&iids="+list_of_IDs.substring(0,list_of_IDs.length()-1));
- print_html("inventory.php?manageaction=addtab_0&pwd&action=manage&iids="+list_of_IDs.substring(0,list_of_IDs.length()-1));
- ID_counter = 0;
- list_of_IDs = "";
- }
- }
- }
- map_to_file(ID_holes,"ID holes.txt");
Advertisement
Add Comment
Please, Sign In to add comment