Jump to content
UBot Underground

Restart The Whole Project


Recommended Posts

put everthing before the if into a define command, or you could actually put the whole thing in would be better

 

if something = another thing then do X

 

else do your command again

 

see the simple code below keeps repeating itself

Heres a thread a guy basically asked the same question, I thought he was a different person hrnce the long rambling, but the rambling might actually help you so maybe take a read of it, but check the code out

 

http://network.ubotstudio.com/forum/index.php/topic/20715-google-scraping-how-to-tell-ubot-to-loop-as-many-times-as-there-are-google-results-pages/?p=128493

define alerter {
    alert("hello")
    if($comparison(1,"=",1)) {
        then {
            wait(2)
            alerter()
        }
        else {
        }
    }
}
alerter()

  • Like 1
Link to post
Share on other sites

 

put everthing before the if into a define command, or you could actually put the whole thing in would be better

 

if something = another thing then do X

 

else do your command again

 

see the simple code below keeps repeating itself

Heres a thread a guy basically asked the same question, I thought he was a different person hrnce the long rambling, but the rambling might actually help you so maybe take a read of it, but check the code out

 

http://network.ubotstudio.com/forum/index.php/topic/20715-google-scraping-how-to-tell-ubot-to-loop-as-many-times-as-there-are-google-results-pages/?p=128493

define alerter {
    alert("hello")
    if($comparison(1,"=",1)) {
        then {
            wait(2)
            alerter()
        }
        else {
        }
    }
}
alerter()

 

Worked by using the define option, thank you so much!

  • Like 1
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...