Reply to Re: GoD v1.1
If you don't have an account, just leave the password field blank.
And how did you plan to detect that? If you have the corresponding key script in the DMOD installing a cheat just overwrites that key script...
EDIT: Hey, this gives me an idea... How about making a key script that corresponds to the one used by ultimate cheat and put an external procedure in it that is somehow needed to make the DMOD work?
Something like this:
With in the key script:
That would tell you if the original key script is overwritten...
EDIT: Hey, this gives me an idea... How about making a key script that corresponds to the one used by ultimate cheat and put an external procedure in it that is somehow needed to make the DMOD work?
Something like this:
external("Key-86","cheat"); if (&return != 5) { say("You're a cheater!",1); }
With in the key script:
void cheat(void) { return(5); }
That would tell you if the original key script is overwritten...
