home *** CD-ROM | disk | FTP | other *** search
-
-
- #include <stdio.h>
- #include <string.h>
- #include <conio.h>
-
- int main(void)
- {
- char code[8]={0};
- char license[13]={0};
-
- int length=0;
-
-
- printf(" ▄▄▄▄▄ \n");
- printf(" █ ▄ █ \n");
- printf(" █▀▀▀▀▀▀▀▀ ▄ ▀▀▀▀▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀▀▀▀█ \n");
- printf(" █ │░███████ │▓███████▀ │░███▀█▀▀▀▀▀▀▀ ▀ ▀▀▀▀ │░███▀█▀▀▀▀▀▓████▓▄ █ \n");
- printf(" █ │▒███████ │▓███████ │▒███████ │▓███████▀ │▒███████ │▓███████ █ \n");
- printf(" █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ \n");
- printf(" ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █▄▄▄ \n");
- printf(" ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████▄ ▄ █ \n");
- printf(" █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ \n");
- printf(" █ │▓███████▄▄▄▄▄█▄█▓▀ │▓███████▄▄▄▄▄█▄████ │▓███████▀▀ ▀ ▀ █ \n");
- printf(" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▀ █▀▀▀▀▀▀▀▀▀ ▀ ▀▀ \n");
- printf(" .::[ u n i t e d · c r æ c k i n g · f o r c e ]::. █ ▀ █ Antibody<SAC> \n");
- printf(" ▀▀▀▀▀ \n");
- printf(" \n");
- printf("\n RenderSoft VRML Editor v1.722 - Keygenerator by Quantico. \n\n");
- printf(" \n");
- printf("Enter a 7 character string or number : ");
- gets(code);
-
- length=strlen(code);
-
-
- if(length != 7)
- {
- printf("\n\nI said 7 characters you twat !!! ;)");
- return 0;
- }
-
-
-
-
-
- license[0]='P';
- license[1]='R';
- license[2]='S';
- license[3]=code[0];
- license[4]=code[1];
- license[5]=code[2];
- license[6]=code[3];
- license[7]='1';
- license[8]=code[4];
- license[9]=code[5];
- license[10]=code[6];
- license[11]='Z';
-
-
-
-
- printf("Your serial number is : %s\n",license);
-
- return 0;
- }