Jump to content
UBot Underground

arunner26

Fellow UBotter
  • Content Count

    283
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by arunner26

  1. dankass, Here are the commands that I have been using successfully recently (version 4 of UBOT): set(#FilePathForSave, "{$special folder("Application Data")}/ReferredUserList.txt", "Global") save to file(#FilePathForSave, #EncryptedUserIDText) plugin command("FTPCommands.dll", "connect to ftp server", "FTP", "ftp.domainname.com", 21, "username@domainname.com", "***password***", "/wp-content/uploads/2015/04") { plugin command("FTPCommands.dll", "ftp upload file", #FilePathForSave, "/wp-content/uploads/2015/02/ReferredUserList.txt") }
  2. If you went from Version 4 to 5 maybe a plugin that you rely on has not been tested/re-coded for Version 5. Another reason might be that a needed plugin is no long included in your UBOT Studio and needs to be added.
  3. Try this: (contact or "contact us") site:www.somewebsite.com
  4. I let Google or Bing do the heavy lifting to find pages that may contain contact emails. Below is a list of search phrases I used in Google or Bing to identify pages that might contain emails for a campaign aimed at SE Florida SEO/Advertising companies. 1 search in Google or Bing for each row below then I scrape the first 2 or 3 pages of the SERPs to get URLs: "Coral Gables" seo and (advertising or marketing) and (contact or "contact us") Hialeah seo and (advertising or marketing) and (contact or "contact us") Homestead seo and (advertising or marketing) and (contact or "contact us") "Key We
  5. To those interested in the product and service: I bought Darryl's UI Builder a few weeks ago and have been very happy with it. It helps you create beautiful UIs and works well. It addition, Darryl has been fantastic in supporting the product when I have questions or screw up when using it. Thanks and keep up the good work Darryl.
  6. darryl561,I bought the product and got a receipt from Paypal but didn't find an email with the license key. Can you send me one?
  7. itexspert, Try this code usingHelloInsomnia 's regex: set(#LinkText, " Today I show you how to teach your dog to sit. Teaching a dog to sit on command is an extremely easy thing to do when you know the correct training techniques. I\'ve studied dog training techniques my whole life & have found that this method is without a doubt the most effective. Not only is it quick & easy, it also works on all breeds of dogs of all ages! So it doesn\'t matter if you have a new puppy or an old turd, you\'ll see results very quickly! Click Here To Eggscribe! --► http://bit.ly/Eggscribe SHARE this in
  8. Yes. You can use the "Change Proxy" command. And the "Set Proxy Credentials" command if you are using private proxies.
  9. Wow Dan!! One of the very best shares I had seen. Thanks for the program. I think in your ideas list you are getting at what I think would be awesome. It would be to extend what you already have to multiple rows in the CSV file or SQLlite db. The load would put the multiple rows into a grid, allow the user to CREATE new rows, UPDATE existing rows and DELETE rows and then save the modified table back to the CSV or database. A simple example would be a proxy list with IP, PORT, Username, Password and you are allowing the user to work on the data in the bot and save the result.
  10. Maybe your second proxy is no good. You can plug a proxy IP, port, username and password into a browse and try it to see if it is good. I often find that I have to go back to my proxy service and request a new proxy because the one they provided does not work. You would need to make a change to add set proxy credentials command: change proxy("{#AccountsProxyIP}:{#AccountsProxyPort}") wait(1) set proxy credentials(#AccountsProxyUsername, #AccountsPassword) wait(1)
  11. Jeredoc,I have the same question as jbossman Where do we go to buy the source code?
  12. vinnyuk, I would start with something like the code below. I ran it on a couple of scenarios on http://www.flexicover.co.uk and it let's me know what the page has on it. set(#BronzeFound, $nothing, "Global") set(#SilverFound, $nothing, "Global") set(#GoldFound, $nothing, "Global") set(#PlatinumFound, $nothing, "Global") set(#BrowzeFound, $scrape attribute(<innertext="Bronze">, "innertext"), "Global") set(#SilverFound, $scrape attribute(<innertext="Silver">, "innertext"), "Global") set(#GoldFound, $scrape attribute(<innertext="Gold">, "innertext"), "Global") set(#PlatinumFou
  13. itexspert,From a BOT I am currently using: set(#AnswerText, $replace(#AnswerText, $new line, " "), "Global")
  14. itexspert,You want to use the UBOT REPLACE command to replace the $NEWLINE with a space for the columns that wrap.
  15. Bawzee, Daryl talks about being able to refresh the UI with his builder. See the video on his page: "Refresh" the UI in the UI HTML Panel http://www.ubotstudio.com/forum/index.php?/topic/16343-sell-newgen-ui-builder-most-advanced-feature-rich-drag-drop-ui-builder-for-ubot/
  16. I'm always very relaxed, thanks and no offense taken.
  17. Enigma,Yes, you did say that because I was quoting you. I was saying you do NOT need to digg into the source code to make changes. Just type 7-3 in the SET and UBOT does the rest.
  18. Enigma said: "So basically you must use $eval and then digg into source mode and remove the $eval part."Actually if you just type 7-3 into the "New Value:" field of a SET command then UBOT will write a subtract for you and you get the code below: set(#test, $subtract(7, 3), "Global")
  19. Enigma,I agree with Marton in this case. I would just use the native UBOT commands for math. I just figured you had a particular reason why you wanted to use java. I know a lot of people are experts in java and want to use it. I have never needed it in my bots.
  20. Enigma,I tried your command above in uBot 4.2.20 and it worked fine for me.
×
×
  • Create New...