Jump to content
UBot Underground

Proxy Changing


Recommended Posts

Hello

 

Setting up a bot to make outlook email accounts.

 

I need to put in a  proxy changer I currently have one in place but its not showing which proxy is it in use, It just stays displaying the proxy in postion 0.

 

when it does change proxy and loads up the sign up form it then cycles itself again and I lose the chance to even create an account.

 

ui open file("Proxy List:"#Proxies)
add list to list(%Proxies$list from file(#Proxies), "Delete""Global")
ui stat monitor("Proxy :"#Proxy)
set(#Proxy$list item(%Proxies, 0), "Global")
loop($list total(%Proxies)) {
    change proxy(#Proxy)
    wait(3)
    navigate("https://signup.live.com/signup.aspx?wa=wsignin1.0&ct=1380783288&rver=6.1.6206.0&sa=1&ntprob=-1&wp=MBI_SSL_SHARED&wreply=https%3a%2f%2fmail.live.com%2f%3fowa%3d1%26owasuffix%3dowa%252f&id=64855&snsc=1&cbcxt=mail&bk=1380783289&uiflavor=web&mkt=EN-GB&lc=2057&lic=1""Wait")
}

 

 

Kind regards

 

Nick

Link to post
Share on other sites

ui open file("Proxy List:"#Proxies)
add list to list(%Proxies$list from file(#Proxies), "Delete""Global")
set list position(%Proxies, 0)
ui stat monitor("Proxy :"#Proxy)
loop($list total(%Proxies)) {
    set(#Proxy$list item(%Proxies, 0), "Global")
    change proxy(#Proxy)
    wait(3)
    navigate("https://signup.live....B&lc=2057&lic=1""Wait")
    remove from list(%Proxies, 0)
}

 

 

You should really use a define

Link to post
Share on other sites

ui open file("Proxy List:"#Proxies)

add list to list(%Proxies$list from file(#Proxies), "Delete""Global")

set list position(%Proxies, 0)

ui stat monitor("Proxy :"#Proxy)

loop($list total(%Proxies)) {

    set(#Proxy$list item(%Proxies, 0), "Global")

    change proxy(#Proxy)

    wait(3)

    navigate("https://signup.live....B&lc=2057&lic=1""Wait")

    remove from list(%Proxies, 0)

}

 

 

You should really use a define

 

 

Hi thanks for that its working now, but it doesn't give the proxy long enough to open the page before it decides to change proxy again, Is there anything I can add to give it more time before it changes?

 

Cheers

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...