-
Content Count
1566 -
Joined
-
Last visited
-
Days Won
170
Code Docta (Nick C.) last won the day on November 10 2023
Code Docta (Nick C.) had the most liked content!
Community Reputation
638 ExcellentAbout Code Docta (Nick C.)
-
Rank
Member for Hire
- Birthday 10/12/2012
Contact Methods
-
Website URL
https://codedocta.com/
-
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
-
updated/uploaded the file to version 0.2
- 5 replies
-
- python code in ubot
- ironpython
-
(and 2 more)
Tagged with:
-
Does your plugin work in Ubot v6.x?
- 5 replies
-
- python code in ubot
- ironpython
-
(and 2 more)
Tagged with:
-
Code Docta (Nick C.) started following Is their anybody out there!!!!
-
Is their anybody out there!!!!
Code Docta (Nick C.) replied to SmileyBot's topic in General Discussion
I am definitely out there SmileyBot. What do you need? -
This is the only software I have had to allow passage through AV. Hmmmm...
- 25 replies
-
- code sign
- code sign certificate
-
(and 1 more)
Tagged with:
-
Code Docta (Nick C.) changed their profile photo
-
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.
- 5 replies
-
- 1
-
- python code in ubot
- ironpython
-
(and 2 more)
Tagged with:
-
mulcahy started following Code Docta (Nick C.)
-
I think ubot stop supporting windows 7 some time ago.
-
Run Python + Selenium With Ubot Studio?
Code Docta (Nick C.) replied to ponda199's topic in General Discussion
https://ubotdocta.com/category/python/ -
Exbrowser Twitter Upload Image Pop Up Window
Code Docta (Nick C.) replied to fastlinks's topic in General Discussion
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. -
Exbrowser Twitter Upload Image Pop Up Window
Code Docta (Nick C.) replied to fastlinks's topic in General Discussion
ya, there's a command for it something like ExB change file field -
Ubot Studio Interacting With A Thin Client?
Code Docta (Nick C.) replied to Gunfighter53's topic in General Discussion
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.- 2 replies
-
- UBOT Plug in
- Ubot and thin client
- (and 1 more)
-
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
-
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?
-
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.