Jump to content
UBot Underground

Gogetta

Moderators
  • Content Count

    870
  • Joined

  • Last visited

  • Days Won

    73

Everything posted by Gogetta

  1. Frustrated by the limitations of a plugin I purchased I decided to come up with another solution to convert Html into PDF. You will need the Advanced Shell plugin to run this script. This script also uses the open source wkhtmltopdf software to convert html to pdf. For additional commands that can also be added check this link here. Download Html to PDF Example I hope this helps.
  2. I really tried to go with 5 and honestly my bots were crashing left and right. The same scripts in 4 run with no problems.
  3. You should be using local variables in your "LoginProcedure" command. Check the wiki for more information on Global and Local variables.
  4. You're not getting the error when switching to node view because the code is corrupted. This script requires that you have the HTTP Plugin.
  5. If you're using the Http Plugin then use the command http method.
  6. HelloInsomnia, I have a suggestion for the next update. I would like to be able to set some plugins that are always checked each time I open the ubot launcher. These plugins should remain checked even when I open and load a script. I think this would be a good feature to add since I am finding that I have to enable plugins I always use. Basically, there are some plugins I never want disabled even if I haven't used them in the script . Thanks
  7. I need an example script showing how to store and later call a session for a Google Account. Please let me know if you can help me with this. Thanks.
  8. This worked for me. I used ccleaner instead of the disk cleanup tool though. Thanks.
  9. It sounds like you're wanting to hide your login credentials in a bot and pass it out. This would be a really bad idea since any web sniffling program like fiddler or wireshark would be able to capture the request.
  10. Thanks for the update! On the next update can you also include plugins with special characters in the filename.
  11. If you want to select a folder using the UI commands I would suggest using Aymen's File Management Plugin here. The function you will want to use is the $folder browser dialog. If you then want the script to select a random file from the selected folder you can use the $get files function and add the filenames to a list. Example: (requires the file management plugin) ui button("Select a Folder") { set(#c_folder, $plugin function("File Management.dll", "$folder browser dialog"), "Global") clear list(%files) add list to list(%files, $get files(#c_folder, "Yes"), "Delete", "Globa
  12. Can you also scrape data from the app into UBot? I hope this isn't just some information that explains how to use online emulators.
  13. If the studio is slowing down due to the size of your bot you should be making use of the include command. Seth has added this command back to UBot since v.5.5 and up. As far as compiling goes, I've never had an issue with it and I have some pretty big bots.
  14. If I understood the question correctly this should work. ui list box("Cat Select:", "Cat 1,Cat 2,Cat 3", #chosen_cat) set(#selected_cat_value, $find regular expression("<option value=\"8\">- Cat 1</option> <option value=\"9\">- Cat 2</option> <option value=\"10\">- Cat 3</option>", "(?<=<option value=\").*?(?=\">- {#chosen_cat})"), "Global") alert(#selected_cat_value)
  15. Gogetta

    If Exists

    I know what site you are trying to code this for and this should work to click the image. click identical image to validate.ubot
  16. Gogetta

    If Exists

    I don't feel that I am wrong now. The function is used when trying to identify elements that are identical (similar in every way). Based on the question posted by the OP these images are "identical". I agree that it's not safe and it's best to look at other options first. But when the elements are in fact identical then the element offset is the function to use. Try having a script click only the 2nd link. Link Link Link Now please, without using the element offset explain the correct way.
  17. Gogetta

    If Exists

    Sounds like your looking for Element Offset. Most of the time just entering 0 as the offset will help. But play around with the offset count until you get to the one you need.
  18. After clicking the dialog you are linking the button to make sure to click the page you want the button added to. Try doing that before clicking the "Add Button". Video: https://www.screenr.com/dmqN
  19. There are two examples in this script. The second example is the workaround I will be using since it's more reliable when using threads. Unless I am doing something wrong and not using the thread container correctly? Datagrid Thread Test.ubot
  20. Are you guys not having problems while running the datagrid within threads? Even while using the STA thread container there's problems where columns aren't being updated.
  21. Go ahead and download the script again. It should be working now.
  22. While scraping this regex code should work about 90% of the time. set(#Category, $find regular expression($find regular expression($document text, "(?<=Category:</strong>).*?(?=/a>)"), "(?<=>).*?(?=<)"), "Global") alert(#Category) set(#Web, $find regular expression($document text, "(?<=Web:</strong> <a href=\").*?(?=\")"), "Global") alert(#Web) set(#Phone, $find regular expression($document text, "(?<=Phone:</strong> ).*?(?=<)"), "Global") alert(#Phone) set(#adresa, $trim($replace regular expression($replace regular expression($find regular express
  23. Yes, but if you look in his OP you will see he is using the $next list item. So based on that code I'm pretty sure it wasn't working because he's using transparent proxies.
×
×
  • Create New...