Jump to content
UBot Underground

Guerrilla

Fellow UBotter
  • Content Count

    341
  • Joined

  • Last visited

  • Days Won

    5

Guerrilla last won the day on June 29 2011

Guerrilla had the most liked content!

Community Reputation

19 Good

About Guerrilla

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5
  • License
    Standard Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. OK this is weird! I tried compiling it several times yesterday, each time ubot crashed. I tried compiling it again today and it compiles and works! A big relief but I hope I dont have the crashing bug again next time i compile.
  2. The problem I get is that when I add the $application folder to the path then ubot crashes when I try to compile it.
  3. In my bot I populate some menus from text files. The problem I have run into that I just cant see a way round is how to do change the logic for distributing the bot. I can only get the menu to populate when I use an exact path like "C:\folder\file.txt". If I use "$application folder\file.txt" then it doesn't work. This is a real problem. Right now the way my bot works is that user fills out a configuration file with the user/pass for various sites. They then run the setup script and all the text files for the menus are generated. Right now those menus are only loading with hardco
  4. Yeah, all someone would have to do is use a network sniffer and get all the URL's for my source code library I spent the last year creating. Were talking about a lot of script pages here. It's just not an option to have all that code in a single bot, especially as I would only want to show maybe 4-5 tabs to the user. Ideally what ubot needs to do is have the ability to create a compiled include file, so even if someone gets your include files, they cant just open then up and take all your work. Is there any solution to this problem that works now?
  5. Make some javascript code that changes the value of a hidden field on the page. You can then use this in your logic to create different actions determined by user selection. You could use a waitfor command to discover when they have made choice but this is very buggy. The way I do it is I add in a pause, and after any choice is made I make text appear in window telling them to click play to continue. Its haphazzard but works. I use this for sakiving logs after an operation completes. As often an operation will fail for some reason, i output message saying "if operation completed succe
  6. I have run into a problem I wonder if anyone can help me with. I have my bot code organised into a library (folders containing bot source code). Then when I want to create a bot I just include the libraries I need and have instant access to all my routines. The problem is that when I compile the bot, the includes are not compiled with it. The only way of getting the compiled bot to work is to actually include the bot source code for any includes. I don't want to give away my source code with releases. Is there a way I can get around this? (I am using 3.5 still)
  7. The is a programming library I came across once (cant remember name) that allowed you to feed in a pdf and it would export the PDF as HTML. I even remember finding a few websites that you could upload a pdf to and get a HTML version of it. This would be the route to go down to scrape the text via ubot.
  8. I use search & replace to remove all quote marks with unique placeholder then replace them back in when i need to use data.
  9. A member of the forum made an app that does this which you can call from ubot. He shared it here for free. Apparently next version of ubot will have this feature built in.
  10. I wrote an adwords scraper. The annoying thing was that google change the html from search to search. There are 3 main types of pattern (well there were when i did it). Also to scrape multiple pages you will need to disable cookies otherwise when you programatically access several pages google just starts showing you the same set of ads over and over again.
  11. I just ran into the 5000 word count issue. I am sending already spun articles to the API to add nested spins so I have to be careful as a break in wrong place would break whole article. Logic I am following is this: - Break article into a list seperating by $newline and removing blank entries. - Send each paragrpah one at a time - Re-assemble article A longer way about it but work. If I get time I will write some JS that will make this better.
  12. How much will upgrade cost?
  13. Does utorrent have a log file? If it does you can parse this to work out what is going on.
  14. Another trick if you don't want to enable legacy mode is to call your bot iexplore.exe (or the same filename of any other supported browser) and it will work.
×
×
  • Create New...