Jump to content
UBot Underground

drewness

Members
  • Content Count

    164
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by drewness

  1. Right, but is there a way to inject the generated HTML into the UI area and not the browser? Sent from my SAMSUNG-SM-N920A using Tapatalk
  2. Could anyone that has a copy please post the source code for the login/license entry form, as mentioned here (huge thanks to cүвεя_נυηкιε for pointing this post out to me) : http://network.ubotstudio.com/forum/index.php/topic/12958-sell-ubotlocker-web-web-based-licensing-solution-that-prevents-decompiling-and-cracking/page-34?do=findComment&comment=100591 ? I would like to customize my license forms for my locked bots, but the dropbox link is dead. I would be eternally grateful if anyone could find the time to upload it! Thanks in advance.
  3. Does anyone here use Aymen's XAML UI plugin? I've been trying to get an open file dialog picker to show (the one that comes with Aymen's File Management Plugin) and for some reason whenever I add the command to open the file dialog picker, it never opens the dialog window when I click the button. If I right click and run it in Ubot Studio it opens the dialog window just fine, but it doesn't run when clicking the button in the interface, and it doesn't run in compiled bots either. Does anyone have a workaround for this, or have this same issue? I was thinking about buying Pash's Advanced
  4. Whoops meant to post in the UStrap thread, apologies - please disregard. Sent from my SAMSUNG-SM-N920A using Tapatalk
  5. This looks awesome. Is there any way to create tables in the GUI? I watched the overview video but didn't see any option for that. Sent from my SAMSUNG-SM-N920A using Tapatalk
  6. Still messing with this, thank you for pointing me in the right direction - very helpful & much appreciated!
  7. This looks very interesting, will be back to buy when I can budget for it. Thanks for creating it! Sent from my SAMSUNG-SM-N920A using Tapatalk
  8. Thank you for sharing this, looks like a fantastic resource! Will be downloading and digging into it this weekend. Quick question: I've been using the XAML UI for a while now with just some default styling, and I use the "add datagrid to xaml ui" function to put a grid in the middle of the UI. All of my bots I've built so far are not responsive (fixed height and width), but I decided to start experimenting to get them that way. I've started using DockPanels to dock elements and letting the last child fill the rest of the space. It works great, except that if the height I set in the Load XA
  9. Hi Frank, thanks for the response. I'm pretty familiar with threading in C#, I have my bots limited to 50 threads right now and they're all running like champs, preciate the tip though, definitely good to keep in mind! Sent from my SAMSUNG-SM-N920A using Tapatalk
  10. Awesome thank you, I have that plugin but I don't have any experience with thread locking and updating a global list so I think I'll need to go through that thread and hopefully someone has discussed using thread locking, as I'm not sure where to even start with that lol Thank you for pointing me in the right direction! Sent from my SAMSUNG-SM-N920A using Tapatalk
  11. Hi there, I'm trying to figure out how to handle proxies in my multithreaded bot. Right now, there's a master list of search terms it uses, and a master list of proxies it pulls from. For the search terms it pulls, it's using standard threading and next list item, and for the proxy grabbing it uses a random proxy from the master list. Everything works great for the most part, but now I'm trying to figure out how to handle bad/blocked proxies. I had originally tried copying a the global Master Proxy List to a local list inside the thread, pulling a random proxy from that list,
  12. Fantastic video, exactly what I was needing, thank you so much! Got it all recreated in my bot, now trying to add my proxy functions into the new threading framework. Thank you again!
  13. Hi there, I have multithreading working well in my bot, but I'm trying to enhance the functionality to allow for a user to cancel the process before the multithreading completes and having some issues. This is some code from the multithreaded proxy checker part of the bot, as it's the most simple threading, and wanted to get it working first before trying to implement the same enhancements on the main bot process. Approach #1: First i tried changing it from looping through the number of proxies to check to using a loop while #cancelProxyTesting = false, and added a button that sets #canc
  14. Lol bought this an hour ago, still learning how to use it, just got an update for it. If that's not amazing service, I have no idea what is. Thanks Dan! Also thank you to arigatou for the screenshots to my earlier questions! Sent from my SAMSUNG-SM-N920A using Tapatalk
  15. Sorry if this has been covered, didn't want to go through all 60+ pages to find out: 1) Can I specify the browser viewport (width & height) on launching and 2) Can I take a screenshot with ExBrowser? If I wanted to take 3 screenshots of 5 different sizes (different width/height viewport) of a webpage as quickly as possible, what would be the best way to achieve that with ExBrowser?
  16. This may be a dumb question, but is there a way to allow users to choose what folder to save in and force an extension (i.e. .txt) when saving results, without a paid plugin?
  17. Makes sense, thank you! Sent from my SAMSUNG-SM-N920A using Tapatalk
  18. Awesome thank you, moving away from the Program Files approach has made everything much smoother. One more question: how can I have multiple free offers going at once? The /free/ code only has place for one project key - can I have more than one free giveaway running at the same time? Thanks again! Sent from my SAMSUNG-SM-N920A using Tapatalk
  19. Still having some issues getting this to run properly. The problem isn't with the locker itself or the interface, but more to do with Windows permissions. Right now I have the locked bot set to install in program files (x86)/BotName but it can't create the file if I dont manually set/run the exe as administrator. I've added Run As Admin from the Advanced Ubot plugin, tried modifying the file to be admin with Resource Hacker, and a combination of both with no luck so far. How do y'all handle permissions? Is there something I'm missing, or do y'all install to a different folder such as AppDa
  20. I'm experiencing a similar issue - files that should go in Program Files(x86)/Software Folder/ are in a bunch of subfolders instead, like this: C:\Program Files (x86)\Software Name\C\Users\Username\Desktop\Ubot Installer\Resource\Program File\ Did you find a workaround/fix for this issue by chance?
  21. Any eta on when this will become for sale again? Itching to grab a copy! lol
  22. Hi there, I have a list of comma-separated values set to a text variable, but some of them are blank, so the list looks kind of like true,2,'yes',,,,'value',false,'info',,, And I'm trying to use add list to list - list from text, and it splits all the values, but it ignores adding new rows where there are multiple commas in a row. So ,,,, should create multiple blank lines in a row when creating the list. Does anyone know of a way to handle that without having to go rewrite the code to add in a dummy value for every blank value? Thanks for your time!
  23. Thank you for releasing this for free, this is incredible. Just digging into it an messing around, mainly focused on the SQLite feature right now. What is the best way to handle querying SQLite with your plugin and setting the results to a table? I see it puts it all comma formatted when you set the SQLite Query to a variable, so I'm wondering if there's a way to put results directly to a table instead? Thanks for your time, and thanks for the awesome plugin!
  24. Cool thanks I'll check it out! I really appreciate you taking time to help me out, much appreciated!
×
×
  • Create New...