Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 04/28/18 in all areas

  1. Yep, And you would want to use an "IF" statement for when you run out of proxies. like If $list total is > 0(in a comparison): alert Out of proxies!! (or whatever) Regards, CD
    1 point
  2. Remove from list is asking for the position in the list you want to remove so its asking for a number (integer). And you are giving it the value of the previous list item (which is a string) - so that is returning back the proxy. I think what you really want is this: clear list(%list) add list to list(%list,$list from text("1,2,3",","),"Delete","Global") loop($list total(%list)) { alert("using proxy {$list item(%list,0)}") remove from list(%list,0) }
    1 point
  3. I did it with two tables. 2nd table had 2 columns Went a little something like this: Imported names into TABLE ACreated a loop that Looped Table Total Rows of TABLE Athrough each rowif TABLE B contains name from TABLE A then grab total from from TABLE A row 2nd column and increment itelse insert the new name into TABLE B row on the first column and then 2nd column would be set to I did it with tables because my CSV had a few more thing i wanted to count which were in separate columns.
    1 point
×
×
  • Create New...