Jump to content
UBot Underground

Proxy List Does Not Connect


Recommended Posts

Hey i have a simple problem but don't know how to solve it.

I have a list of proxy's as .txt. I import it etc. add it to list and then it should be entered as next list item. But when he grabs it from the list
i get "TUNNEL_CONNECTION_FAILED" after a view seconds.
If i enter IP:PORT manuell into the field "change proxy" everything is working fine.
Anyone has an idea what could there be wrong?

ui text box("Link:",#vt_link)
ui text box("How many pushes do you need?",#pushes)
ui open file("Proxy List (.txt)",#proxy)
add list to list(%proxys,$list from file("C:\\Users\\Anonymous\\Documents\\proxy.txt"),"Delete","Global")
set list position(%proxys,0)
loop(#pushes) {
    clear cookies
    change proxy($next list item(%proxys))
    wait(3)
    navigate(#vt_link,"Wait")
    wait(10)
    click(<vote="harmless">,"Left Click","No")
}
Edited by Domkonit
Link to post
Share on other sites
ui text box("Link:",#vt_link)
ui text box("How many pushes do you need?",#pushes)
ui open file("Proxy List (.txt)",#proxy)
add list to list(%proxys,$list from file(#proxy),"Delete","Global")
set list position(%proxys,0)
loop(#pushes) {
    clear cookies
    change proxy($next list item(%proxys))
    navigate("http://www.whatsmyip.org/","Wait")
    wait(10)
}

works fine in ubot version 5.5.13  maybe reboot your pc

Link to post
Share on other sites

Hey there,

 

I had the same problem today when I used a navigate command.

It would work manually by running the node, but when I ran my bot it didn't.

So I had to change the way it was used.

 

Try to open your file through UI and add it in a completely different way.

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...