Jump to content
UBot Underground

Recommended Posts

hi,need some help

 

my code:

clear all data
set user agent("Android")
set(#status1,"mike12545smith19241","Global")
set(#status2,"jessi245bill19241","Global")
thread {
    navigate("https://watchlist.yahoo.com/?.lang=en-US&.intl=us&.username={#status1}","Wait")
    wait(10)
    if($exists(<login link>)) {
        then {
            set(#username1,#status1,"Global")
        }
        else {
            set(#username1,"None","Global")
        }
    }
}
thread {
    in new browser {
        navigate("https://watchlist.yahoo.com/?.lang=en-US&.intl=us&.username={#status2}","Wait")
        wait(10)
        if($exists(<login link>)) {
            then {
                set(#username2,#status2,"Global")
            }
            else {
                set(#username2,"None","Global")
            }
        }
    }
}

... and is not working when i use threads

 

if i use the code without threads its work

set(#status1,"mikesmith19241","Global")

    navigate("https://watchlist.yahoo.com/?.lang=en-US&.intl=us&.username={#status1}","Wait")
    wait(10)
    if($exists(<login link>)) {
        then {
            set(#username1,#status1,"Global")
        }
        else {
            set(#username1,"None","Global")
        }
    }

  

I really dont understand what i am doing wrong,can someone help me with this?

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