Advertisement
yojimbos_law

putting everything in an inventory tab.ash

Apr 20th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. //change addtab_[number] to whatever inventory tab you want this to be.
  2. int[int][int] eyedeez;
  3. string[int] join_is_not_a_thing;
  4. //choose i range such that total length of string iids is <2^16 characters including commas. 128 to 237, 238 to 347, 348 to 457
  5. for i from 0 to 127{
  6. for j from 0 to 99{
  7. eyedeez[i][j] = 100*i + j;
  8. if(j==99){
  9. join_is_not_a_thing[i] += eyedeez[i][j].to_string();
  10. }
  11. else{
  12. join_is_not_a_thing[i] += eyedeez[i][j].to_string()+",";
  13. }
  14. }
  15. //debugging:
  16. print_html("inventory.php?manageaction=addtab_14&pwd&action=manage&iids="+join_is_not_a_thing[i]);
  17. visit_url("inventory.php?manageaction=addtab_14&pwd&action=manage&iids="+join_is_not_a_thing[i]);
  18. wait(5);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement