function HorT(const Heads: variant; const Tails: variant):variant;
var
Flip: integer;
begin
Flip:=Random(0, 1);
if Flip = 0 then Result:=Heads;
if Flip = 1 then Result:=Tails;
end;
kinda easy script, it's the heads/tails, I think it works...
as for Random Letter, I think there is an easier way to do it then to make 78 "if then" 's
if there is an easier way, please tell me...