Michael, before posting this kind of stuff make some exploration. You give false hope to people.
From what I understand you are a programmer, right?
You should take a look at the nightmare the guy wrote there, for example:
Code:
tmplen=strlen(CHAT_STRING)-4;
chatrnd=(rand() % 0x9);
CHAT_STRING[tmplen]=CHAT_STRING[tmplen]+chatrnd;
tmplen++;
printf("chatrnd=%d\n",chatrnd);
chatrnd=(rand() % 0x9);
CHAT_STRING[tmplen]=CHAT_STRING[tmplen]+chatrnd;
tmplen++;
printf("chatrnd=%d\n",chatrnd);
chatrnd=(rand() % 0x9);
CHAT_STRING[tmplen]=CHAT_STRING[tmplen]+chatrnd;
tmplen++;
printf("chatrnd=%d\n",chatrnd);
chatrnd=(rand() % 0x9);
CHAT_STRING[tmplen]=CHAT_STRING[tmplen]+chatrnd;
tmplen++;
printf("chatrnd=%d\n",chatrnd);
And a lot of this kind of stuff, it's really a nightmare... Makes me wanna cry...