Jump to content
UBot Underground

Gogetta

Moderators
  • Content Count

    870
  • Joined

  • Last visited

  • Days Won

    73

Everything posted by Gogetta

  1. I really don't understand the problem you are having since variables can be used just about anywhere in UBot. Paste part of your code so we can take a look.
  2. Did you copy and paste a define somewhere in your script? If so try this, as it may solve the problem. Your code is working in Ubot v.4 for me.
  3. I suggest learning the commands as you go. There is no reason to try and learn a command until it is needed for the project you are working on. I think this is where a lot of new ubotters start to feel over whelmed. It is best to just jump in and start coding something, anything. Take a website you visit regularly and begin some sort of automation. By doing this you can search google using the search operator site:ubotstudio.com/forum/ along with some keywords defining what it is you are trying to accomplish. So say you begin your code by wanting to go to hotmail.com and you do not know what
  4. Welcome to the community. There are a lot of great UBotters here and they are very helpful people. If you have any questions while starting out don't hesitate to ask. Good Luck!
  5. + 1 Count me in. I would love to see more information on how to use the api.
  6. Im using these settings with yahoo and haven't had a problem. Type: SMTP With SSL Server: smtp.mail.yahoo.com Port: 587
  7. I have the Twitter image upload PM me. Pinterest like any other site that generates a token using javascript will always be problem.
  8. I'm running win 8 and 16gb of rams. The only problem I have noticed is with the ftp commands. They currently do not work in UBot 4 or 5 on windows 8. I have reported it to the support and they are suppose to fix it. Oh, and + 1 for the UBot Launcher program.
  9. Have you script run the commands for commenting only if something exists. That could be some text that is only present on the page if the user is logged in. So, say a Log out button or some other element that only a logged in user can see on the page.
  10. Your question is somewhat confusing. Check out the if exists command on the wiki. http://wiki.ubotstudio.com/wiki/Exists
  11. Thanks LazyBotter for the reply. Yeah, I seen that thread after I posted this thread and was gonna purchase the plugin from Aymen. Then while watching his video I noticed he didn't have the upload folder command. So just waiting to hear back from him.
  12. I am looking to buy an FTP Plugin so that I can upload files and folders. I am fully aware that UBot comes stocked with built in FTP Commands. However, these commands are not working correctly for me and I am willing to purchase a working solution. Please PM me if you are interested. Thanks.
  13. @kreatus, nice. I guess I misunderstood what he was wanting.
  14. You can do this by using multiple lists. Try this. You can keep hitting play a few times after the pause to see whats going on. ui open file("Load:", #load) clear list(%main_list) add list to list(%main_list, $list from file(#load), "Delete", "Global") clear list(%check_list) add list to list(%check_list, $list from file(#load), "Don\'t Delete", "Global") loop($list total(%main_list)) { set(#item_check, $next list item(%main_list), "Global") clear list(%total_items) set list position(%check_list, 0) loop($list total(%check_list)) { set(#compare_item, $next list item(
  15. I helped create this script for the OP. If anyone else is interested PM me. Video Demo: http://www.screencast.com/t/5CnxZXbu06Up
  16. You might also want to take a look at the $trim function. http://wiki.ubotstudio.com/wiki/Trim
  17. I agree with quite_interesting, that it might be that you are copying and pasting a define. 1) Make sure when copying and pasting a define that you delete the original copy. UBot will have problems if you have multiple defines that share the same name. Even if you have the defines in separate tabs they must all have a different name. 2) After you copy a define and delete the original one click edit and then the ok button. This seems to refresh the copied define and any new code you add to that define will now register in UBot. I hope that helps.
  18. Hmmm, not sure why you ignored my reply I was only trying to help. But anyway, the reason I asked for you to post your code is because I wanted to see if you identified the button using some innertext written in English. Because if you did then that may be the problem. Example: Post Button in French: <button value="1" class="_42ft _4jy0 _11b _yo _4jy3 _4jy1 selected" type="submit" aria-owns="js_4" aria-haspopup="true" aria-label="Publier">Publier</button> Post Button in English: <button value="1" class="_42ft _4jy0 _11b _yo _4jy3 _4jy1 selected" type="submit" aria-owns="j
  19. Post the click code you are using in your bot.
  20. ui text box("Keyword:", #Keyword) ui stat monitor("Links:", $list total(%links)) set(#google_results, $plugin function("HTTP post.dll", "$http get", "https://www.google.com/search?q={#Keyword}", $plugin function("HTTP post.dll", "$http useragent string", "Firefox 27.0 Win7 64-bit"), "", "", ""), "Global") clear list(%links) add list to list(%links, $plugin function("HTTP post.dll", "$xpath parser", #google_results, "//div//h3//a[contains(@onmousedown,\'rwt\')]", "href", "HTML"), "Delete", "Global")
  21. I completely agree with you there. i was interested until I seen there was no video showing exactly how this plugin works. If this is a plugin used in ubot and can break recaptcha you will have no problem getting sales.
  22. I know some of your customers might not like this. But why not charge an upgrade fee for some of the new features you have been adding in your plugins? Updates are one thing but you have been adding some amazing new features to the two plugins I have purchased. Anyway, what I would like to see added to this plugin. 1) Numbers for UI Elements: The user can enter a "start value", "increment by", and an "end value". Parameters: Start Value: 5 Increment by: 5 End Value: 125 The function returns: 5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,105,110,115,120,125 2
  23. I just wanted to give you a heads up. When using the html to pdf command if the image doesn't actually exists or load the PDF conversion will fail. This is the error you get when trying to open the file in adobe. http://i.imgur.com/QTqX9Wb.png
  24. @TJ, let me know where to send a payment. Your paypal isnt working right now. Thanks
×
×
  • Create New...