Jump to content
UBot Underground

BobbyP

Fellow UBotter
  • Content Count

    77
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by BobbyP

  1. Hi bangali_beta!

    No intend to being rude here but You post very long posts and try to suggest how Seth should run his business- that ain't gonna happen (period).

    If u have questions about how to complete a particular task here u my find answers.

    If u complain about features there is a separate section for that and if Seth finds Your suggestion  doable  You are lucky guy.

    Back to your post title dev allows You to design and brand  your soft as You wish and You have more control and features.

    Some people are happy even with the Pro ver. so it is up to You to decide which one will serve your needs and if none of the offered here is  meeting Your expectations nothing stops You from learning Python or other language and build it like You need it.

    Keep this in mind next time You post.

    Like my post :mellow: :angry:(don't really)!

  2. inside ubot browser right click on the image and in the options select click.
    then in the node view while still <innertext="

    17,395 points"> is highlighted select the purple wheel and in the popup window where it says attributes scroll down to  ID and press ok.

    In node view select advanced and in click using location select yes.

    That will give u the unique img id like <id="prn0i"> or <id="eN6ETzL">

    code should look like this

    click(<id="eN6ETzL">,"Left Click","Yes")
        click(<id="ZotFLAZ">,"Left Click","Yes")
    
  3. Hi John!
    Find a new social network like Tsu for example.
    Get some money making book with Master resell rights .

    Put it on the net with a squeeze page with your PayPal redirect button.
    Make a bot that will comment or send to all users ina this social network based on keywords.
    That is a start from nothing.
    Do not start with FB u'll get burned fast.

    Important before spamming: CHECK POST LIMITS OR COMMENT LIMITS PER DAY AND MAKE THE BOT TO SEND  LESS THAN IT PER DAY.

    • Like 1
  4. download ubot(again)
    uninstall older ver.

    install again
    if it still hangs Pm me i'll help u>

    It should work we all have it for years even if we face issues. 
    As u can see in my profile i am from Bulgaria so don't hesitate to approach me.

    Many have helped me so help will be given to you as well.

    PM if needed.

  5. I think he means a already preformatted table from harddrive.The way to go is to load that table with 

    create table from file("D:\\EOD\\data\\dax12YEARt2.csv",&table1)
    
    

    and then save data 1 to list 1 data2 to list two and so on and add them to the table loaded with the prev.command

    Hope it helps .

    create table from file("D:\\EOD\\data\\dax12YEARt2.csv",&table1)
    add list to table as column(&table1,0,0,%list1)
    add list to table as column(&table1,0,1,%list2)
    add list to table as column(&table1,0,2,%list3)
    
    

    and so on.

  6. This is what i get from log in any compiled plugin.

     

     

    2016-06-16 23:47:25: Failed to load plugin WebDriver.Support.dll: System.IO.FileNotFoundException: Could not load file or assembly 'WebDriver, Version=2.53.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.

    File name: 'WebDriver, Version=2.53.0.0, Culture=neutral, PublicKeyToken=null'

  7. local vars are overriden

    simple code:

    define multithreadaccounts {
        plugin command("LocalDictionary.dll", "clear global dictionary")
        Clear ALL Cookies()
        Change user agent()
        thread {
            reset account("Female")
            plugin command("LocalDictionary.dll", "init local dictionary")
            plugin command("LocalDictionary.dll", "clear local dictionary")
            plugin command("LocalDictionary.dll", "local dictionary add", "firstname", $account data("First Name"))
            plugin command("LocalDictionary.dll", "local dictionary add", "lastname", $account data("Last Name"))
            plugin command("LocalDictionary.dll", "init local list")
            plugin command("LocalDictionary.dll", "local list from file", "tmpmail", "{$special folder("Application")}\\fbmail.txt")
            plugin command("LocalDictionary.dll", "local dictionary add", "password", "{$random text($rand(8,16))}@{$rand(34,1999)}")
            wait(4)
            type text(<first name field>,$plugin function("LocalDictionary.dll", "$local dictionary get", "firstname"),"Standard")
            wait(4)
            type text($element offset(<last name field>,0),$plugin function("LocalDictionary.dll", "$local dictionary get", "lastname"),"Standard")
            wait(6)
            type text(<email field>,"{$plugin function("LocalDictionary.dll", "$local dictionary get", "firstname")}{$plugin function("LocalDictionary.dll", "$local dictionary get", "lastname")}{$plugin function("LocalDictionary.dll", "$local list item", "tmpmail", 0)}","Standard")
            wait(4)
            change dropdown(<sex dropdown>,"Female")
            wait(2)
            type text(<name="birthday_month">,$rand(1,12),"Standard")
            wait(4)
            type text(<name="birthday_day">,$rand(2,28),"Standard")
            wait(5)
            type text(<name="birthday_year">,$rand(1965,1989),"Standard")
            wait(2)
            type text(<name="reg_passwd__">,$plugin function("LocalDictionary.dll", "$local dictionary get", "password"),"Standard")
            wait(4)
            click(<create account button>,"Left Click","No")
            wait for element(<id="nux-nav-button">,"","Appear")
            wait(5)
            click(<id="nux-nav-button">,"Left Click","No")
            wait(5)
            click($element offset(<login link>,0),"Left Click","No")
            wait(5)
            wait for element(<span,class="">,5,"Appear")
            click($element offset(<class="_54k8 _56bs _56b_ _qyx _56bx _56bt">,1),"Left Click","No")
            type text(<email field>,"ducce111-{$plugin function("LocalDictionary.dll", "$local dictionary get", "firstname")}{$plugin function("LocalDictionary.dll", "$local dictionary get", "lastname")}@mail-on.us","Standard")
            alert("
    {$plugin function("LocalDictionary.dll", "$local dictionary get", "password")}")
            click(<name="submit">,"Left Click","No")
            alert($plugin function("LocalDictionary.dll", "$local dictionary get", "firstname"))
        }
    }
    multithreadaccounts()
    
    

    firstname becomes password

    Bug or my mistake?

  8. Hi Dady lovely baby u got there.

    when i set a user i usually use ini file reader plugin so i set  every account to a ini file and load it when needed.In Ubot there are lots of ways coding the same action , same as in any language.

    Basically i store each username and password(in most cases username equals email) in a ini file and then i could call them whenever i need them.

    like this:

    define Save Account {
        plugin command("IniFileReader.dll", "ini container", "{$special folder("Application")}\\ACC\\{#firstname}_{#lastname}1.dll") {
            plugin command("IniFileReader.dll", "ini write", "fbaccounts", "username", #realmail)
            plugin command("IniFileReader.dll", "ini write", "fbaccounts", "password", #password)
        }
    }
    Save Account()
    
    

    so next time i log into FB  i could call that account and log in. Match is assured.

    I never use a table or list for that.

    just my 2 cents

    If u need more code just say here i will be happy to help u as others helped me in the past.

    • Like 1
  9. Sorry my mistake define won't work inside on load command.

     code should be

    on load("Bot Loaded") {
        navi()
    }
    

    and in hidden tab put the define

    define navi {
        clear cookies
        set user agent("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36")
        navigate("https://www.google.com/","Wait")
    }
    
    

    that's tested and works.

    Sorry again  it worked before coz i had the define in another tab.

    Also if u need to keep the cookies and the session data acros deleate Clear cookies command and use it after bot completes the job.

  10. Hi Pash thanks for those plugs. I build advanced webdriver, installed the plugin, installed webdriver too, but i can´t make the connection on win7. Crome is using other paths now. Could u make this work on win7 please. Other think i noticed in your video is that a lots of commands and funcions are missing. Is this something for sale or are u willing to give complete plugin away?

    I really want to make webdriver running.It is awesome plug if it works.

    Thank you in advance.

    P.S. Or just point the file and the line where webdriver looks for chrome path and i will change it accordingly.

×
×
  • Create New...