Jump to content
UBot Underground

pash

Fellow UBotter
  • Content Count

    3523
  • Joined

  • Last visited

  • Days Won

    167

Everything posted by pash

  1. see file "video from image + audio.ubot"
  2. 4.2.7.4 youtube video info: add option "Monetization Details"
  3. use blank list use blank list. how to use command. see sample file. "Top Middle", "Bottom Middle"
  4. 1. use "image space" command 2. not sure try command 2.1 "video from image + audio" set "Transition" in "Image Config" to Fade 2.2 "video to gif image" set 100 Frame Rate
  5. 3.4.4.3 2captcha.com: fix time out option
  6. try https://wiki.ubotstudio.com/wiki/Send_Email Email type set to HTML
  7. use this https://wiki.ubotstudio.com/wiki/Reset_Browser thread { loop while($true) { wait(60) reset browser } }
  8. in your video system detect you press "Right Shift" button try check your pc or keyboard.
  9. 3.4.8.0 system power on shutdown: run ubot defind on windows shutdowning or logoff
  10. It works normally, but you press the wrong button.You must use "Left Shift", not "Right Shift".
  11. 3.4.4.1 2captcha.com recaptcha: update command set(#AccessKey,"XXXXXXX","Global") navigate("https://www.google.com/recaptcha/api2/demo?invisible=true","Wait") wait for browser event("Everything Loaded","") wait(1) set(#GoogleKey,$scrape attribute(<class="g-recaptcha">,"data-sitekey"),"Global") clear list(%Debug) add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha", #AccessKey, #GoogleKey, $url, "", "", 50, 120, "", "", "", "Invisible"),"Delete","Global") change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1)) run javascript
  12. Because of the Border Style featureYou must sacrifice one of the features. plugin command("Advanced Dialog.dll", "advertise dialog", "Software Name Ad - Please Purchase PRO to Remove Ads", "<p>Ad Banner Here</p>", 925, 625, "Center", "True", "True", "False", "True,True,True", "False", "True", "Default Browser", "True", "True", "False", 0, "") wait(1) plugin command("Advanced Screen and Windows.dll", "app window menu box control", "Software Name Ad - Please Purchase PRO to Remove Ads", "", "False", "False", "False") wait(2) plugin command("Advanced Screen and Windows.dll", "app win
  13. try set(#Text,"UBot","Global") if($search page(#Text)) { then { alert("yes") } else { alert("no") } }
  14. @drewness use "app window title change" in "Advanced Screen and Windows"
  15. you can use python or js or plugin try search "javascript - Age calculation" function calculateAge (birthDate, otherDate) { birthDate = new Date(birthDate); otherDate = new Date(otherDate); var years = (otherDate.getFullYear() - birthDate.getFullYear()); if (otherDate.getMonth() < birthDate.getMonth() || otherDate.getMonth() == birthDate.getMonth() && otherDate.getDate() < birthDate.getDate()) { years--; } return years; } var age = calculateAge("02/24/1991", "02/24/2010"); // Format: MM/DD/YYYY or load html($plugin function("Advanced
×
×
  • Create New...