Jump to content
UBot Underground

Code Docta (Nick C.)

Fellow UBotter
  • Content Count

    1566
  • Joined

  • Last visited

  • Days Won

    170

Everything posted by Code Docta (Nick C.)

  1. I am definitely out there SmileyBot. What do you need?
  2. My new site replaces ubotdocta.com where I shared many tutorials on ubot and python so any tutorials here on the forum witll be located at codedocta.com now. I will update forum links when I post old tutorials that I have already done to https://codedocta.com. Running Python 3 code in ubot with/with out a Ubot plugin: 1. You can not run Python 3 code in ubot's python nodes, not str8 out like that anyways. 2. Ubot uses IronPython which is a windows simple version of Python 2. It's old and outdated and uses Python 2 syntax. So, you can not use Python 3 modules/packages/code.
  3. I think ubot stop supporting windows 7 some time ago.
  4. 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.
  5. ya, there's a command for it something like ExB change file field
  6. 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.
  7. 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
  8. 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?
  9. 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.
  10. 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.
  11. 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
  12. 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 {
  13. Try using the function in a variable first then put the variable in large list command
  14. Example block of text? Example of the end result? Help us, help you.
  15. more info here https://www.w3schools.com/js/js_cookies.asp
  16. You should be getting and setting your own cookies and save them to your own DB/file. navigate("http://www.html-kit.com/tools/cookietester/","Wait") wait for element(<value="Set Test Cookie">,20,"Appear") comment("set cookie") click(<value="Set Test Cookie">,"Left Click","No") wait(.5) comment("refresh document") click(<value="Refresh">,"Left Click","No") run javascript("var x = document.cookie;") set(#eval,$eval("x"),"Global") alert(#eval) There was a bug in 6.0.1 too Regards, Nick
  17. That's a great contribution mate!! One thing to note is that there are different flavors of regex and ubot uses the .NET style. I generally use this site to do my regex if I need to. https://pythex.org/ But I am sure people will find your bot very useful, thank you. Regards, Nick
  18. Unless you have a place to send the hash key to the server you don't send the hashed key. If you send the hash key it is useless to hash it in the first place because anyone sniffing your HTTP traffic can see it. The only purpose to hash it would be to keep it on your machine to obfuscate your API key so no one gets a hold of it. However, most services allow you to create new API keys at will if someone does get a hold of your API key. So, hashing is a personal preference in my experiences. Not all API's are created the same some have APP Secret and APP secret key as well. In the case of
  19. Only time I've seen something like this is when I open and compile a bot on another machine. So, when you compile make sure your path is correct for the current machine. The path to your .exe. Likely machine name is different but maybe the path in general. Or you moved your bot from one directory to another.
×
×
  • Create New...