My main account has two temporary bans, but you should stay away from methods that are considered like gold farming and stuff as that will result in a perm ban. Also, you probably don't want to test Jagex, so just quit botting.
I feel like you would make more by manually training someone else's account than if you were to make an account that has those stats. Honestly, just need to find someone that would want it to be created for them.
Just stick to the proxy, no need to try making them using a VPN.
When creating them you can get an extension to enable proxies btw.
Also should add that this is the market section.
Maybe easier to just use a switch statement with a value rather than have a bunch of if statements.
if(api.configs.get(29) == 0)
{
//code
}
if(api.configs.get(29) == 1)
{
//code
}
etc
to something like
switch(api.configs.get(29)){
case 0:
//code
return 600; //Default sleep or just break
case 1:
//code
return 600;
}