Jump to content
UBot Underground

Recommended Posts

Someone asked this on skype so I'm posting it here so newbies can play with it.

 

ui text box("Random delay from:", #delay from)
ui text box("Random delay up to:", #delay to)
ui stat monitor("<p>", "<span style=\"font-size:20px;\">{#random delay}</span>")
navigate("http://www.google.com/", "Wait")
random delay()
define random delay {
   set(#random delay, $rand(#delay from, #delay to), "Global")
   loop while($comparison(#random delay, "!=", 0)) {
       wait(1)
       decrement(#random delay)
   }
}
set(#random delay, "DONE!!!", "Global")
navigate("http://www.custombotsolutions.com/", "Wait")

 

What it does is give you a live stat monitor of your random delay.

Copy the codes in your code view then enter your "random delay from and to" and hit "run".

 

Kreatus

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