home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Quantico / km / vrml.c.txt < prev    next >
Encoding:
Text File  |  2000-05-25  |  1.7 KB  |  66 lines

  1.  
  2.  
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <conio.h>
  6.  
  7. int main(void)
  8. {
  9. char code[8]={0};
  10. char license[13]={0};
  11.  
  12. int length=0;
  13.  
  14.  
  15. printf("            ▄▄▄▄▄ \n");
  16. printf("            █ ▄ █ \n");
  17. printf("    █▀▀▀▀▀▀▀▀ ▄ ▀▀▀▀▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀▀▀▀█ \n");
  18. printf("    █ │░███████  │▓███████▀ │░███▀█▀▀▀▀▀▀▀ ▀ ▀▀▀▀ │░███▀█▀▀▀▀▀▓████▓▄  █ \n");
  19. printf("    █ │▒███████  │▓███████  │▒███████  │▓███████▀ │▒███████  │▓███████ █ \n");
  20. printf("    █ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████ █ \n");
  21. printf("    ▀ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████ █▄▄▄ \n");
  22. printf("    ▀ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████▄ ▄ █ \n");
  23. printf("    █ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████               █ \n");
  24. printf("    █ │▓███████▄▄▄▄▄█▄█▓▀   │▓███████▄▄▄▄▄█▄████  │▓███████▀▀ ▀    ▀      █ \n");
  25. printf("    █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▀ █▀▀▀▀▀▀▀▀▀ ▀ ▀▀ \n");
  26. printf("    .::[ u n i t e d · c r æ c k i n g · f o r c e ]::. █ ▀ █ Antibody<SAC> \n");
  27. printf("                                                        ▀▀▀▀▀ \n");
  28. printf(" \n");
  29. printf("\n        RenderSoft VRML Editor v1.722  -  Keygenerator by Quantico.      \n\n");
  30. printf(" \n");
  31. printf("Enter a 7 character string or number  : ");
  32. gets(code);
  33.  
  34. length=strlen(code);
  35.  
  36.  
  37. if(length != 7)
  38. {
  39.   printf("\n\nI said 7 characters you twat !!! ;)");
  40.   return 0;
  41. }
  42.  
  43.  
  44.  
  45.  
  46.  
  47. license[0]='P';
  48. license[1]='R';
  49. license[2]='S';
  50. license[3]=code[0];
  51. license[4]=code[1];
  52. license[5]=code[2];
  53. license[6]=code[3];
  54. license[7]='1';
  55. license[8]=code[4];
  56. license[9]=code[5];
  57. license[10]=code[6];
  58. license[11]='Z';
  59.  
  60.  
  61.  
  62.  
  63. printf("Your serial number is                 : %s\n",license);
  64.  
  65.    return 0;
  66. }