home *** CD-ROM | disk | FTP | other *** search
- program keygen;
- uses crt;
-
- var
- count : integer;
- code, users, crc : longint;
- name : string;
-
-
-
- begin
-
-
-
- TextColor(9);
- writeln(' ▄▄▄▄▄ ');
- writeln(' █ ▄ █ ');
- writeln(' █▀▀▀▀▀▀▀▀ ▄ ▀▀▀▀▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀▀▀▀█ ');
- writeln(' █ │░███████ │▓███████▀ │░███▀█▀▀▀▀▀▀▀ ▀ ▀▀▀▀ │░███▀█▀▀▀▀▀▓████▓▄ █ ');
- writeln(' █ │▒███████ │▓███████ │▒███████ │▓███████▀ │▒███████ │▓███████ █ ');
- writeln(' █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ ');
- writeln(' ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █▄▄▄ ');
- writeln(' ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████▄ ▄ █ ');
- writeln(' █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ ');
- writeln(' █ │▓███████▄▄▄▄▄█▄█▓▀ │▓███████▄▄▄▄▄█▄████ │▓███████▀▀ ▀ ▀ █ ');
- writeln(' █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▀ █▀▀▀▀▀▀▀▀▀ ▀ ▀▀ ');
- writeln(' .::[ u n i t e d · c r æ c k i n g · f o r c e ]::. █ ▀ █ Antibody<SAC> ');
- writeln(' ▀▀▀▀▀ ');
- writeln;
- writeln;
- textcolor(red);
- writeln;
-
- writeln(' KeyEx v1.03 - Keygenerator by Quantico ');
- writeln;
-
- textcolor(white);
-
- write('Enter your name please : ');
- readln(name);
- write('Enter the number of users : ');
- readln(users);
- writeln;
- writeln('You may use any REG number.');
- writeln;
-
- for count := 1 TO length(name) DO BEGIN
- code := byte(name[count]) + code;
- end;
-
- crc := code;
-
- {CRC := (code MOD 10000)*users;}
-
- writeln('Your CRC is : ',crc*users);
-
- writeln;
-
- Sound(523);
- Delay(250);
- Sound(659);
- Delay(250);
- Sound(784);
- Delay(250);
- Sound(1046);
- Delay(300);
- NoSound;
-
- writeln;
- writeln('Enjoy the full, registered program....courtesy of UCF.');
- textcolor(lightgray);
- end.
-
- end.
-
-
-
-
-