thanksDepend which languages, per exemple, in C# im rotating my proxies like this:
private int counter = 0;
public void Proxy()
{
var proxy = richtextbox.Lines;
usedProxy = proxy[counter];
if(condition to change proxy)
counter++;
}
Its almost the same for any language. In C# im using array because textbox and richtextbox have a function .Lines who automatically add each lines to an array.