Jump to content
UBot Underground

Pete

Fellow UBotter
  • Content Count

    863
  • Joined

  • Last visited

  • Days Won

    17

Posts posted by Pete

  1. Just an update to help anyone else thats trieds this

     

    It seems the native commands work (in version 5.9.44) but are being blocked by the big online free email providers

    so you need to use your own domains IMAP/SMTP or search out one thats not blocked

  2. Myself i would just take the whole tables, really depends how you like to skin you cat

     

    scrape table(<class="calls W(100%) Pos® Bd(0) Pt(0) list-options">,&TableOne)
    scrape table(<class="puts W(100%) Pos® list-options">,&TableTwo)

    • Like 1
  3. Last time ubot worked one hundred percent with tumblr that i know of was version 3.5, it had its own firefox plugin (that was Firefox 3.6.13)

    then we had the big update to ubot 4, i have never seen it work to what i would call hundred percent with its own browser from that update, always needed a work around moblie useragent and that sort of suff,

     

    Have a look for UbotClipboardPlugin if it works with your version of ubot it may well help you if you can copy and paste

  4. This is very old code, but some may still be usfull

            focus(<class="dropdown settings-icon pinned-target">)
            click(<class="dropdown settings-icon pinned-target">,"Left Click","No")
            change attribute(<id="customUrl_input">,"value",$find regular expression(#Post,"(?<=<Custom Url>).*?(?=</Custom Url>)"))
            wait for element(<class="dropdown-area icon_arrow_carrot_down pinned-target">,240,"Appear")
            focus(<class="dropdown-area icon_arrow_carrot_down pinned-target">)
            click(<class="dropdown-area icon_arrow_carrot_down pinned-target">,"Left Click","No")
            wait(1)
            click(<innerhtml="Add to queue">,"Left Click","No")
            wait(1)
            click(<(innertext="Add photo from web" AND class="dropzone-text")>,"Left Click","No")
            wait for element(<aria-label="Paste a URL">,"","Appear")
            type text(<aria-label="Paste a URL">,$find regular expression(#Post,"(?<=<Image Url>).*?(?=</Image Url>)"),"Standard")
            type text(<aria-label="Paste a URL">,"\{ENTER\}","Standard")
    
    • Like 1
  5. 3 Months FREE Bot Bank Access. After 3 months, what happens?

    if your not subscribed for updates you area locked out of bot bank but that's no great loss imo,

    3 Months FREE Updates

    May not be any updates in that year :)

     

    a more constructive questions would of been will all updates be compatible with all the plugins

  6. add item to list(%Accounts,"{$account data("Username")},{$account data("Password")},{$account data("First Name")},{$account data("Last Name")},{$account data("Username")}@zoho.eu","Don\'t Delete","Global")
    
    

    just edit the add to list

  7. navigate("https://www.zoho.eu/mail/","Wait")
    clear list(%Accounts)
    reset account("Any")
    change checkbox(<id="personal">,"Checked")
    type text(<username field>,$account data("Username"),"Standard")
    type text(<password field>,$account data("Password"),"Standard")
    type text(<first name field>,$account data("First Name"),"Standard")
    type text(<last name field>,$account data("Last Name"),"Standard")
    change checkbox(<name="tos">,"Checked")
    type text($element offset(<email field>,0),$account data("Email"),"Standard")
    add item to list(%Accounts,"{$account data("Username")},{$account data("Password")},{$account data("First Name")},{$account data("Last Name")},{$account data("Email")}","Don\'t Delete","Global")
    click(<create account button>,"Left Click","No")
    save to file("{$special folder("Desktop")}\\accounts.txt",%Accounts)
    

    i think thats what you are looking for

  8. if you want to do it with regex this is one way

    clear all data
    set(#list1,"google.com
    newsweek.com
    caller.com
    washingtonpost.com
    yahoo.com
    facebook.com
    cleveland.com
    foxsports.com","Global")
    set(#list2,"sportsnet.com
    google.com
    yahoo.com
    thegaurdian.com
    cleveland
    mugshot","Global")
    set(#output,$replace regular expression($replace regular expression(#list2,"\\b(?:{$replace regular expression(#list1,"\\r?\\n","|")})\\b",$nothing),"\\r?\\n\\s",$nothing),"Global")
    
    

    note cleveland.com in list 1 and cleveland are not a match

    • Like 1

  9. navigate("http://ubotsandbox.com/text-area-box.php","Wait")
    wait for element(<name="comment">,"","Appear")
    loop(6) {
    type text(<name="comment">,$spin("\{First of all i want to thank you for taking the time reading this.|I\'ve just started playing with ubot and i\'m still in the process of wrapping my head around things.|My problem is when i try to type a text from a file where everything is in spintax the spintax command won\'t work, everything is written as in the file|What am i doing wrong ?\}"),"Standard")
    wait(3)
    }

     

    • Like 1
×
×
  • Create New...