Jump to content
UBot Underground

BeerNut

Fellow UBotter
  • Content Count

    155
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by BeerNut

  1. I minor thing since I can work around it but can you make it so the columns of a table do not have to match the columns of the data grid for it to work? For example I have a table Name | Address | Email where the email is an Optional field the user can add. I would like to have my DataGrid use a preset column list of Name | Address | Email each time. If the user did not check the Email box in the program then this last column would just stay empty. Right now I have to make two datagrids. If the user checked the email box then I need to make a datagrid with 3 columns. If they did not che
  2. How do I get the original download link? Its not in the email receipt from PayPal or 2CheckOut. Nevermind found it still in my browser downloads page. Thanks for the update.
  3. Just to mirror what others have said I absolutely need the ability to reinitialize the datagrid. Different parts of my bot display different information, they do not all share the same headers. If a user switches from one tab to another I need each tab to be able to have its own datagrid.
  4. Looks awesome! Ive been wanting something like this for awhile now. Just purchased.
  5. Is there anyway you can fix the 405 error issue I mentioned on page 42? I am unable to load the source of a page because it always responds as a 405 error. But the same URL will display in browser. This is being used as a anti-bot protection.
  6. I really hope you get time to release an update. I was just in a dispute with PayPal over a order and I really wish that the locker system would have recorded the users IP address or other information that would have helped the cause. I don't want to start modding the system now because a update would break it. The ideas mentioned a few pages back would be incredibly to have.
  7. Yeah I discovered the 405 in browser headers after I posted this. For the moment I am using the uBot browser to load the page since that gets past this. Maybe there will be an update to allow http post to see the 405 html.
  8. I have run into a issue with Manta.com and Yell.com. They are both using the same captcha system now that uses reCaptcha as the captcha. The company providing the service is Distill Networks http://www.distilnetworks.com/ The problem is that I can not access the captcha page with HTTP Post. For example below is a URL from Yell.com http://www.yell.com/distil_r_captcha.html?Ref=/biz/david-lloyd-leisure-cardiff-cardiff-901247661/&distil_RID=5453F6F6-F512-11E3-9E06-985663A08541 What happens is you hit the business page, then run into a 10 second meta refresh that leads to the above URL.
  9. Purchased today, didn't get any email with license or download link so I figured your IPN is still busted. Can you manually email me my details? PayPal Trans: 3G716486NE822790J
  10. Email from the client I just lost. That does not feel good.
  11. So it seems that on certain systems no bots work at all? I have never had access to my clients computer so I was unable to test like Orbital did.
  12. Today I lost another customer due to this issue. Using a fresh install of Windows 7 with all windows updates. Nothing else was installed to cause the problem. It has affected both Windows 7 and WIndows 8 customers.
  13. Interesting, This bot has not Javascript in the UI its just basic html, inline css, and external images. Ill be sure future bots don't have Javascript in the UI to make sure I don't get any extra problems, these ones are enough.
  14. On my site I have a trial version of my program so I get a lot of tire kickers. Every once in awhile I get an angry email saying that my bot does not work and when the user opens it they can not edit any of the text fields. They say the buttons all work but they can never enter text. I then email them back asking for full details of their computer but usually just get a OS version or an email saying they tried it on another computer and it works fine now. I still try to get details from them but as a trail user they really don't care to help debug. Most recently was a guy running WIndows 8
  15. There is no link to the page because its not on any single page you can access. This is what pops up overlaying whatever page you happen to be trying to visit. This is all of the code from the page minus the css style and the google analytics at the bottom.
  16. I am trying to figure out how to solve this captcha using http get and post. But it seems I do not have enough programing knowledge to figure out what its doing. This is the html on the page for the elements. <img id="captchaImage" /> <br/> <input id="captchaInput" /> <button id="submitObject">Compare</button> This is the javascript for the captcha on page. <script type="text/javascript"> this.SBM = {}; SBM.mode = "frmrld"; SBM.smbt = function () { if (SBM.mode=="frm") { SBM.captchaVld.value = VCO.smbt(); SBM.captchaInput.value = SBM.inputObj.value
  17. I was doing something similiar but I have been finding the ADD and SUBTRACT options in uBot absolutely would not work. I had this problem on my laptop but they worked on my desktop. No clue why but math has been buggy so I avoided it. Also on v4. Basicly what I did was just make a loop with the increment, i loop 10 or 20 times whatever I need so it counts up.
  18. I really can't believe that no one has made this yet so I finally made a simple one after a customer had a firewall problem today. So here is what it is. This exe is just a simple self extracting zip file and will auto copy the 4.2.20 support files into their proper place. It was made using 7zip, 7zsd.sfx, and a config file. The config file just says to extract a "files.7z" item into "%APPDATA%\\UBot Studio\\Browser\\4.2.20" The installer is only 12mb since its all compressed so its not a major problem for users. It has no prompts or "Success!" message its just a zip file that auto unzips
  19. Does anyone have some Advanced HTML UI tips to share? I have seen some really nice UI's built with uBot, but not people sharing how they did it. I would like to know how to add tables of data to the UI Window. Ive seen UI's that open a new window and show nice cell formatted data like excel. Id love to show my users the data as its created. But I don't know where to start. Charts, Graphs, Status Bars? Share some of your UI tips. Ill share this one first since I just figured it out here is how to make a Fake Logging Console like below. Bot Idle.. Starting Process.. Building Accounts.. V
  20. I figure I would update this incase anyone else needed some method of doing this. Mine is probably not the best but its working for now. When scraping all the data with threads I have them save the data to Local Variables. #name, #address etc Then in a "Thread Safe Container" I have Local Lists that the local variable data is being saved to #name to %name and so on. I then have the Local Lists added to a table as columns. &output 0 0 %name Outside of the Thread Safe Container I am adding the Above table (%output) to a new Table (%save) this appends the %output to %save. So each threa
  21. I really hate to ask because I like to work this stuff out for my self but can you post a example code? I can not figure out how to use table to do this. Table functions seem very limited and I can't seem to figure this out. Thanks.
  22. Sorry I must be missing it but how do I download the plugin?
  23. Hmm table rows, didn't think about that. Ill have to see if I can rework the way I do things now to do this. Thanks. Looking forward to grabbing your threading plugin also.
  24. I was toying around with threads and ways to speed up my programs but I can't quite figure out the best way to use multiple threads but still be able to save data. Its easy to get them to all go and sign up for a site. But gathering organized data and saving it seems to be the hard part. The problem is that I had all the threads write to the same list. But each thread task is completed at different speeds so the data is always out of order. When your scraping multiple objects on multiple sites it becomes impossible to know what data came from where. Right now the best thing I can think of
  25. How can I convert the table into html? I have never tried that.
×
×
  • Create New...