Jump to content
UBot Underground

Net66

Fellow UBotter
  • Content Count

    559
  • Joined

  • Last visited

  • Days Won

    17

Posts posted by Net66

  1. I don't post much on the ubot forum these days but I just wanted to chip in here and say what an awesome job Buddy has done with this package. I bought it from him as soon as I heard about it and even though I know my way around ubot and can make it do pretty much whatever I need, I still learnt some nifty tricks from the code samples and having these to copy and paste from saves me reinventing the wheel when I'm doing a project.

     

    I recommend this package of bots to any ubotter from beginner to experienced.

     

    Great job Buddy!

     

    Andy

  2. Do you have a full list of changes?

    Anything done to the admin interface? From what I understand it is only partially implemented.

     

    Yes - there is now a browser based admin system for the licenses so you don't need to use phpMyAdmin. The browser based option lets you search on name, email, transaction, etc and then edit/delete records, etc.

     

    Do you still need a database for every product you want to license?

     

    Yes. You actually don't need a database for each product though. You can manage 1000 bots in one database if you want to, just give each a unique app id and its own php folder. Personally I do create a new database for each bot but it is personal preference.

     

    A full list of changes has been added to this page: http://66th.net/ProtectGold.html

     

    Andy

  3. I'll echo the whole VPS idea. I switched to VPS recently and its solved sooooo many issues. And if you're not into web server stuff then people like hostgator offer a fully managed vps (anything from level3 onwards on their plans).

     

    While it increases hosting costs from $10-$15 a month to $50 (inc cpanel which is a must have), the time and money it saves from not having issues is massive.

     

    Andy

  4. I took a quick look at digiresults. You could make it work with that fairly easily.

     

    1) Take their standard php example.

    2) Include the config.php file in it by putting this line near the top;

     

    require_once 'config.php';

     

    3) Stuff the information they provide into suitable variables for customer name, transaction id, email address and in the section where it tells you the sale was successful, etc put something like this in;

    
       
     $res = query("SELECT * FROM `licence` WHERE `transid` = '$rcpt'");
    list($total_rows) = mysql_fetch_array($res);
    if( $total_rows < 1 ){
    
     query("INSERT INTO `licence` (`custname`, `custemail`, `appid`, `move`, `transid`,`machineid`) VALUES ( \"$custname\", \"$custemail\", \"$appid\", 9, \"$rcpt\",\"inactive\")");	

     

    Assuming that;

     

    $custname is your customers full name

    $custemail is your customers email address.

    $rcpt is the unique transaction id.

     

    Andy

  5. Just a quick update to let you know that I now have a way of intergrating Protect Gold with Rapid Action Profits (RAP). It does involve a few steps that might be considered 'intermediate' in the skill level required. If anyone needs to know how to do it then drop me an email, but the basic steps are;

     

    1) Move your licence database table into the RAP database.

    2) Set the config up so it points to that database/user/pass/etc.

    3) Insert the following code around line 405 of the RAP ipn.php script (right before the comment "# Send download notification to purchaser"

    # Create Protection License
    $custname="$payer_firstname $payer_lastname";
    $appid="2";
    $res = query("SELECT * FROM `licence` WHERE `transid` = '$txn_id'");
    list($total_rows) = mysql_fetch_array($res);
    if( $total_rows < 1 ){
     query("INSERT INTO `licence` (`custname`, `custemail`, `appid`, `move`, `transid`,`machineid`) VALUES ( \"$custname\", \"$payer_email\", \"$appid\", 6, \"$txn_id\",\"inactive\")");}

     

    4) You can optionally put in code to delete the license in the refund/reversal section (around line 278) too.

     

    This will create licenses using the same transaction id that RAP reports in its delivery pages.

     

    Enjoy!

     

    Andy

  6. Hi everyone, I just want to share my experience of using Andy's ubot protection scripts: http://66th.net/First off, I can say that Andy gives excellent support, and even before I purchased Protector Gold he had added a new script to help integration with warriorplus which is the selling platform I used for my WSO.I sold 950 copies of my software, and I've scoured the net to find cracked copies.There are none.I found some results which were people pretending to have a crack in order to trick people into downloading spyware, but I can say that the $250 I spent on Protector Gold was flawless. It is perhaps the best business investment I have made interms of ROI, and time saving.For me, the best feature is the update ability. This means you can distribute new versions to all your customers simply by FTP-ing a new version made in Protector Gold "update mode". To have this kind of infrastructure in my product seems bizarre since I work in my living room. But sure enough, your ubot can update like all the big name software out there, and the piracy protection is even better.So, I want to say a big thank you to Andy, and I thoroughly recommend his product as he delivers on quality, ease of use, support, and value for money.http://i53.tinypic.com/33tjdyg.jpg

     

    Thanks for the positive feedback. Really glad your product did well.

     

    wow..how I wish I could make money like that..Im beginning to think something better to do with ubot. :)

     

    You can make money like that! One good idea and the determination to do it! Launching as a WSO is a good way to kick start things (Protect Gold now works with WSO Pro too - blatent plug!)

     

    Andy

  7. Yes it does, Andy is the man, I can vouch for him. I use his script too. :)

     

    Awwww thanks Praney :-)

     

    By the way, if anyone wants to sell protected bots using WSOPro then I now have a script that works for that. Its been tested by Adam Jackson, Mike Carlin and myself and works well.

     

    If you are a registered user of Protect Gold (sorry this isn't for the Protect66/Silver version) and need WSO Pro interfacing then fire me an email and I'll sort you out!

     

    Andy

  8. Google seems to be getting a lot tighter on its detecting of bots with it triggering a capthcha within a few pages even with delays in place. Just wondered if others have noticed this? Its got to the point that I've changed my commercial bots to use bing instead where possible.

     

    Andy

  9. Hi Abs,

     

    I am beta testing something in Protect Gold that might help toward this. I can send you the beta version if you like (just don't use it for live bots just yet).

     

    Its a feature a bit like the trial feature but it enables users to put the keyword 'free' instead which will generate a 'free license' on the fly. You can then use the auto update feature, etc. Free is different from the trial system as it doesn't prevent users re-installing or moving the license from PC to PC.

     

    I'll email you about it now. I am happy for other Protect Gold users to have this beta too but only on the understanding that I cannot give it the level of support I do usually, if there are bugs in it I cannot guarantee a time-line for fixes, etc.

     

    You can run this beta alongside the last stable version so you can use the stable one for your existing bots.

     

    Andy

  10. I am quite new to programming, but have put together a bot in the following structure:

     

    Within script:

     

    Create table from file

    setup UI monitors

    Set variables based on table

    Run sub(mainbody), so within mainsub:

    run sub(check) - will check if a counting variable has exceeded a number of repeats, if so stop.

    run sub(task1)

    run sub(task2)

    run sub(mainbody repeater)*

     

    This just runs the mainsub again (if I say to run mainbody immediately without this step it crashes).

     

    I read elsewhere that using lots of subs, especially within subs can cause a stack overload. How else would I structure it?

     

    Steve

     

    Calling a sub within a sub doesn't cause a problem for ubot but if that sub in turn calls another sub and that calls another... you're going to have to issues in all likelyhood.

     

    Just avoid nesting too deep and the stack will be fine.

     

    Andy

  11. just a way to edit the ubot script with a text editor (ie. like with imacros)

     

    hope that made more sense

     

    i love the visual editor, but as your robots grow in complexity, it's just hell to navigate nodes and maintain them (once you start nesting nodes more than 3 levels deep it's teeth pulling time)

    Yeah I agree. People have been asking for improvements to that for sometime and I know a text interface could be on the cards at some point in the future. In the mean time some way of 'searching for a sub' minimizing all nodes, it remembering which nodes were minimized when we hit refresh - anything like that would help. Not to mention that when a bot gets to a certain size the edior frequently crashes losing any changes you've just made.

     

    Andy

×
×
  • Create New...