Jump to content
UBot Underground

Using Proxy's With Thread Spawn


Recommended Posts

Add your proxies to a list and use the function $next list item

I did this :

 

thread spawn(#tweeets,5) {

    in new browser {

        clear cookies

        set(#rowcounter,$rand(0,1361),"Global")

        set(#proxiforpost,$table cell(&logintotwitter,#rowcounter,4),"Global")

        change proxy(#proxiforpost)

        navigate("https://twitter.com/login/?lang=en","Wait")

 

I get the proxies from a table were the proxies are assigned too an account, but i cant get it to work.

Link to post
Share on other sites
  • 4 weeks later...

You have to set the row and proxiforpost to local. If they are set to Global each thread will overwrite one another.

Changed it to this, can you tell me whats wrong ?

ui open file("open twitter accounts file",#twittertable)

ui open file("Hash tag file",#hashtags)

ui text box("How many tweets do you want to make",#tweeets)

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

create table from file(#twittertable,&logintotwitter)

set(#rowcounter multithread,0,"Local")

set proxy credentials("user","username")

thread spawn(#tweeets,2) {

    in new browser {

        clear cookies

        set(#proxi,$table cell(&logintotwitter,#rowcounter multithread,4),"Local")

        change proxy(#proxi)

        wait(3)

        navigate("https://twitter.com/","Wait")

        wait for browser event("Page Loaded",20)

        wait for browser event("Everything Loaded",20)

        type text($element offset(<email field>,1),$table cell(&logintotwitter,#rowcounter multithread,0),"Standard")

        type text($element offset(<password field>,1),$table cell(&logintotwitter,#rowcounter multithread,2),"Standard")

        wait(3)

        click($element offset(<login button>,1),"Left Click","No")

        wait for browser event("Page Loaded","")

        wait for browser event("Everything Loaded","")

        wait(3)

        increment(#rowcounter multithread)

        pause script

    }

}

clear all data

 

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