Jump to content
UBot Underground

Code Docta (Nick C.)

Fellow UBotter
  • Content Count

    1559
  • Joined

  • Last visited

  • Days Won

    169

Code Docta (Nick C.) last won the day on November 4 2021

Code Docta (Nick C.) had the most liked content!

Community Reputation

637 Excellent

1 Follower

About Code Docta (Nick C.)

  • Rank
    Member for Hire
  • Birthday 10/12/2012

Contact Methods

  • Website URL
    https://www.buymeacoffee.com/ubotdocta
  • Skype
    codedocta.com

Profile Information

  • Gender
    Male
  • Location
    In a Python or UBot IDE codedocta.com
  • Interests
    Making Python and UBot software hybrids and teaching others to do the same.
    Need some software? Contact me on S k y p e

    Want to donate? http://buymeacoffee.com/codedocta

System Specs

  • OS
    Windows 10
  • Total Memory
    More Than 9Gb
  • Framework
    unsure
  • License
    Developer Edition

Recent Profile Visitors

19692 profile views
  1. I think ubot stop supporting windows 7 some time ago.
  2. ya, try the first one I know I did this with python selenium and it worked for me plugin command("ExBrowser.dll", "ExBrowser Change File Field", "", "") plugin command("ExBrowser.dll", "ExBrowser File Upload Dialog Window", "", "") if not try the second I pressed ctrl + e to get into ubots search box then typed file and scrolled through to see what would make most sense.
  3. ya, there's a command for it something like ExB change file field
  4. Python's subprocess module or ubotdev.com plugin "advance shell" it has a $shell batch function that returns the output you can parse as well. His site has been down for some time now so it's not available there anymore. I can sen it to you some how.
  5. What's your use case for such a thing? Here's how to run a define from ui html panel https://www.youtube.com/watch?v=bkkRiQKX-fM I know you can run jquery in the browser window using run javascript command then use $eval if you need to return something. Never tried to do it in the ui html panel tho. Nick
  6. http://network.ubotstudio.com/ubot_install_archive/ubot%20studio/v5.9.37/Setup.msi 5.9.55 https://s3-us-west-2.amazonaws.com/ubotsupportfiles/5.9.55+Setup.msi what level of ubot do you have? Dev, Pro?
  7. Are you using this version, for 32bit specifically? https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads You may have an old version of any of those years.
  8. I usually place all my UI commands at the end of my scripts. That way they're out of my way. You can have five loops in the same stat monitor, the stat monitor is not just for loops. You can use variables in there too. You can also have multiple stat monitors. It's just a debug tool and a way to give the user all sorts of information.
  9. What version of UBot are you using? Which browser are you using? Which user agent command are you using? "set user agent" command is for browser "29" and has a dropdown with old user agents in it. set header("User-Agent","your user agent") is for browser 49+ This will surely have an impact if you don't use them correctly. Regards, Nick
  10. Normalize the data define $phone { set(#F_pjhone,$plugin function("XpathPlugin.dll", "$Generic Xpath Parser", $document text, "//li", "InnerText", ""),"Global") if($comparison(#F_pjhone,"= Equals",$nothing)) { then { return("NA") } else { comment("returns user name if not blank") return(#F_phone) } } } define $user name { set(#F_user_name,$plugin function("XpathPlugin.dll", "$Generic Xpath Parser", $document text, "//li", "InnerText", ""),"Global") if($is blank(#F_user_name)) { then {
  11. Try using the function in a variable first then put the variable in large list command
  12. Example block of text? Example of the end result? Help us, help you.
  13. more info here https://www.w3schools.com/js/js_cookies.asp
×
×
  • Create New...