Jump to content
UBot Underground

gandenkohkono

Members
  • Content Count

    45
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by gandenkohkono

  1. determine window size not work when using ui html panel. This is my code;

    ui stat monitor($plugin function("Advanced Ubot.dll", "$on load", "HideCodeButton()", 500, "False"),"")
    define HideCodeButton {
        plugin command("Advanced Ubot.dll", "hide some menu item", "File", "False")
        plugin command("Advanced Ubot.dll", "hide some menu item", "Edit", "False")
        plugin command("Advanced Ubot.dll", "hide some menu item", "Help", "False")
        plugin command("Advanced Ubot.dll", "menu box control", "True", "False", "True")
        plugin command("Advanced Ubot.dll", "determine window size min/max", 450, 222, 450, 222)
    }
    ui html panel(my UI code,222)
    
  2. How to use condition if exist this element. i use this code to reload pages pinterest. please correct my code

    if($find regular expression("Choose an image to create a Pin","<img alt=\"\" class=\"_mi _25 _3w _2h\" src=\"https?:\\/\\/sstatic1.histats.com(.*?)\">")) {
        then {
            plugin command("ExBrowser.dll", "ExBrowser ReloadPage")
        }
    }
  3. Dear all member. i hope anybody can help me to solve this issue. I can't input captcha on this form hublaagram.me

     

    This is my code

    set user agent("iPhone")
    loop(100) {
        navigate("https://hublaagram.me/","Wait")
        wait for element(<method="post">,"","Appear")
        type text(<username field>,"myaccountid","Standard")
        wait(3)
        type text(<password field>,"mypassword","Standard")
        wait(3)
        click(<login button>,"Left Click","No")
        wait for element(<last name field>,"","Appear")
        type text(<last name field>,$solve captcha(<src="/cacaca.php?_CAPTCHA&t=0.51728400+1495021197">),"Standard")
    }
    
    

    Thanks

     

×
×
  • Create New...