==============================================================================

            TUHACKER  version 0.2       24/10/96


      TBBS userbase hacker, allows simple changes to user records


   Written by:         Robert Dyball (c) 1996

   Internet email:     bob.dyball@dse.com.au
   Fidonet:            3:711/932
   Fax:                +61-2-9887-2972


==============================================================================

What does it do?
----------------


    Read the TBBS user log, USERLOG.BBS file, and write back a modified version
    which can have (at yuour option) fields changed.


    eg., if you want all users who have level 5 to have 50,000 bytes per day
         level 7 to have 50,000 bytes per day and level 10 to have 50,000
         then you should add in code like:

-=---------------------------------------------------------------------------

    switch(tusers.userspriv) {

        case  5:    tusers.dlbytesperday = 50000;
                    break;

        case  7:    tusers.dlbytesperday = 50000;
                    break;

        case 10:  tusers.dlbytesperday = 50000;
                    break;
    };

-=---------------------------------------------------------------------------

    eg., if you wanted tomake sure all users levl 27 and above were to
         have 120 minutes per day and 120 minutes per call, you would
         add code like:

    if (tusers.userspriv >= 27)
    {   tusers.mins_day = 120;
        tusers.percalltimelimit = 120;
    };

-=---------------------------------------------------------------------------


In othe words, simply use the TBBS_2.H file to find the field name you want
to look for, or change, and whack in some code then compile it...


NOTE: 1. THIS PROGRAM DOESN'T MAKE BACKUPS!!! IF you want to be sure of
         something, make sure you do it yourself.

      2. This program might have bugs, if it does, sorry, yuor problem, you
         run this at your own risk.

==============================================================================

What files are what? ...
-----------------------

   tuhacker.zip    The original ZIP file, as distributed


  it contains (or did when I did it, the following files:


    tuhacker.c      Turbo C source       \
    tuhacker.prj    Turbo C project file  \-- use these if you want to
    tuhacker.dsk    Turbo C DSK file      /   modify the file, using Turbo C
    tuhacker.obj    Turbo C object file  /    (or other C compiler).
    tbbs_2.h        Include file        /

    tuhacker.txt    This text file, with a few rought notes on the program


NOTE: I did not include a precompiled version of the program as this would
      be of little use, since the users levels and changes are made to suit
      the BBS here, and unlikely to make more than a mess of yours, as it is.

==============================================================================

Disclaimer
----------

This program is supplied as is, as I am not charging you to use it, then
I do not feel I owe you anything if it doesn't work.

I do not want to know if your dog eats you cat because of this program,
nor if your computer goes up into smoke, gets eaten in a black hole, or


==============================================================================

How much is the program?
------------------------

Free!

     BUT!!

     If you like the program, find it of use, I'd think it nice if you
     gave $10 or $20 or so to a worthwhile charity.


==============================================================================

Copyright
---------

As I wrote this, I would think it a bit mean of someone to take it,
change it, and then go and sell it, or say they wrote it...

If you want to use some of it, tell me, and I am sure I can come to
some arrangement, hey even barter something for it, who knows !  :)

In other words, you are free to use this, as is, or modified, if it is
for your personal use, and not sold off to others.

==============================================================================

