Alright so here is a script that tells you what your perfect match is gonna be like !!!! lol setup the setup and enjoy haha have fun and post your perfect matches 
SCAR Code:
program GirlFriendFinder;
var
x, y: integer;
{
**************************************************************
** Perfect Girlfriend Finder **
** **
** Version: 1.0 **
** Author: Insanomano **
** Description: Will Tell You your perfect Girlfriend match **
**************************************************************
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++ SETUP +++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++}
Const
Age= 15; //Age
HairColor= 'brown'; //Hair Color
HairType= 'curly'; //Type of hair you have (Curly, straight, long, frizzy)
Height= 6; //Height (Round to nearest foot)
{+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++ END OF SETUP ++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++}
Procedure AgeChecker;
begin
ClearDebug
if((Age) < (12)) then
Writeln('You Are Way To Young To Have A Girlfriend. :P');
begin
if((Age) > (12)) then
Writeln('You are ' + IntToStr(Age) + ' Years old, You are old enough for this quiz.');
end;
wait(4000)
end;
Procedure GirlGenerator;
begin
ClearDebug;
Writeln('---------------------------------------');
wait(700);
Writeln('Your GirlFriend will be:');
wait(1500)
case Random(10) of
1: Writeln('Sandy');
2: Writeln('Morgan');
3: Writeln('Samantha');
4: Writeln('meghan');
5: Writeln('jasmyn');
6: Writeln('vanessa');
7: Writeln('natasha');
8: Writeln('lana');
9: Writeln('britney');
10: Writeln('bethany');
end;
wait(1500)
Writeln('Age ' + IntToStr(Age) + '');
wait(1500);
Writeln('Hair Color ' + (HairColor) + '');
wait(1500);
Writeln('She will have pretty ' + (HairType) + ' hair');
wait(1500);
Writeln('She will be around ' + IntToStr(Height) + ',2 ');
wait(700);
Writeln('---------------------------------------');
end;
begin
AgeChecker;
GirlGenerator;
end.
SCAR Code:
---------------------------------------
Your GirlFriend will be:
lana
Age 15
Hair Color brown
She will have pretty curly hair
She will be around 6,2
---------------------------------------

ENJOY
EDIT: HAHAHA freddy no im pretty sure i didnt put that anywhere in the script !!!, and for the randomness
ok this would be possible lol but this script is just s'posed to be a funny script lol I didn;t put a whole lot of time into it 