Jump to content
UBot Underground

kev123

Fellow UBotter
  • Content Count

    731
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by kev123

  1. it the background it looks like a webrequest object is being shared between threads instead of creating a new one or not correctly closed one for the tracker thanks kev123
  2. the growing trend is to use browser footprints, post the site and me or someone will be able to tell you if this is the case
  3. https://www.youtube.com/playlist?list=PLhq7kqloVlM8eVYqw_cv_-fi4buaIpgLq the above link is a good introduction series to c# and covers many things that someone new to c# or even object based programming would get caught out by. Its goes at a slow pace and explains in detail so ideal for someone new to programming using c# thanks Kev123
  4. @meter ill test my mutex code thats built into one of my bots on a non admin machine and report back
  5. beernut meters system does this you just need to set disable updates for the project thus when someone doesn't pay sub only updates are disabled, if you want the full bot disabled if sub not paid it does this by default by paypal IPN. i'll double check the source as mine is heavily mod but pretty certain this is how meters system without mods works thanks kev123
  6. what issue did you have meter this is what I do in a .net project and seems to work bool createdNew = true; using (Mutex mutex = new Mutex(true, "softname555b9866588", out createdNew)) { if (createdNew) {
  7. sounds like a nice feature. seth quick one thou from a conversion point of view I think a lot of people are talking about a straight text conversion. Not using any ubot existing files/plugins or manipulating them or some tool for vb.net to control ubot or vice versa. heres a basic example of what I think people are talking about. taking a if statement in ubot and outputting a if statement in VB and so on for rest of commands not using any ubot file structure basically what the linked to tool does below for VB to c# http://www.developerfusion.com/tools/convert/vb-to-csharp/
  8. it can't be against terms if you take a text file and convert it. maybe a ubot compiled exe or .ubot file. I did c# one year or so ago to save time for a specific project. you just need to make a parser and a dictionary for conversion pretty simple. One I made was specific to my project but to cover all the commands would probably be a bit more work for someone.
  9. I think people after getting burned are starting to understand the one time payment just doesn't work for a complex project. I'm not talking about a basic scraper but something that requires active development monthly. I've seen in several forums recently potential customers before purchase questioning new applications that clearly shouldn't be a one time payment because they don't want to get burned. I do stuff for local business using initial payment then monthly support model and its stuff I virtually never have to update. They key thou is these business don't want to find its not working
  10. sounds like a firewall is blocking the ubot file download. What AV are they using
  11. the first one just needs the license.dll changing and the version check php script changing. the second one you need to see if your cart has a IPN and create new or mod one of the existing scripts. you can even have it post back with the new generated license rather than email it which is what I do with one payment processor. Which has it advantages of the license and download being sent by the payment processor. thanks kev123
  12. code example please you can rename the define that the thread launches and remove its code if you wish. Also if your using "thread control advanced add" one thing I see people do is select "list" instead of "loop number" this will casue the issue you have mentioned thanks kev123
  13. its a good idea probably needs a bit of polish to make workable for most people. As anyone knows manual is a pain for digital license product delivery. People will chargeback /refund if they don't receive within 24hrs sometimes. Probably be a bit different as looking at it only ubot users can purchase. Still IPN needed. Also are ubot technically the reseller now as they accept payment and product vendors just receive the commission of sale even if it is currently 100%. This would make life easier for a few people but i'm not sure if ubot have meant for this to be like this or even realise,
  14. I think this would work, if you copy your current login details as a separate row in the user database then change the username. Login as the new user using your original password for other account and then change to new password for that account. thanks kev123
  15. that error is because there's not enough memory to read all the file into memory. I know dan got to around 7 million but never tested higher. Not sure if ubot runs as 32bit or 64bit. You could try and get it working the easier option is when you downloaded this plugin you should have got access to my other free plugins. The file plugin has a part read file command you could try combining that with the large data plugin and seeing what the results are like. I haven't tried this combo but worth a try. thanks Kev123
  16. nope but 14 million rows, means your going to need a lot of memory. post your code here and i'll take a look and make sure there is no issues.
  17. Dan don't have this plugin but I must say your tutorials are some of the best I've seen. You should really look at udemy there's certainly a gap for bot automation in .net thanks kev123
  18. if there's bugs being found by the beta testers which I assume there is because of the delay it benefits everyone if its delayed while there fixed.
  19. cool i've added -last access date -last access ip -last access version -first access date(the first time user activated license and hence ran software) -number of times ran so should be a easy fix for me to adjust when you update. could i suggest that you also add first access date and number of times ran. The reason for this is any extra info is pretty useful for any paypal disputes. As you can show when they first ran the software, how many times ran and the last time ran and of course IP I have the code if you want its slightly modified from aymens update so you may have some of the
  20. software does it work with windows 10 and can it pre install c++ redistrubtion packs by windows 10 I mean detect .net 4.6
  21. where on your computer are you saving the install files?
  22. meter have you any idea about features in your next update. I've added a few things in my custom install and I don't want to go any further without checking that things could conflict web backend wise
  23. see above for code example. You won't see in debugger as this isn't possible with plugins. thanks kev123
×
×
  • Create New...