Changeset 471 for Daodan/src


Ignore:
Timestamp:
Oct 29, 2009, 2:38:27 AM (15 years ago)
Author:
gumby
Message:

int32_t cheat_oldhealth = 1;
int32_t cheat_oldmaxhealth = 1;
Added "tellmetheversion", needs a version number.

Location:
Daodan/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan_Cheater.c

    r458 r471  
    3939        { "x",              "Developer Access Enabled",        "Developer Access Disabled",  cheat_x              },
    4040        { "testcheat",      "Testing...",                      "",                           cheat_testcheat      },
     41        { "tellmetheversion","Daodan Version ???",                         "",                                                   cheat_tellmetheversion},
    4142        {0}
    4243};
     
    7778
    7879uint16_t cheat_oldshield = 0;
    79 int32_t cheat_oldhealth = 0;
    80 int32_t cheat_oldmaxhealth = 0;
     80int32_t cheat_oldhealth = 1;
     81int32_t cheat_oldmaxhealth = 1;
    8182float cheat_oldjet_accel = 0.03f;
    8283uint16_t cheat_oldjet_timer = 20;
     
    235236                        return 1;
    236237                }
     238                case cheat_tellmetheversion:
     239                {
     240                        return 1;
     241                }
    237242                case cheat_x:
    238243                        return ONrCheater(cheat_thedayismine);
  • Daodan/src/Daodan_Cheater.h

    r455 r471  
    4242                cheat_x,
    4343                cheat_testcheat,
     44                cheat_tellmetheversion,
    4445};
    4546
Note: See TracChangeset for help on using the changeset viewer.