I don't think this has been created before, but it allows the user to input how many milliseconds they type per each letter so it equals less bannage of players. I really do hope this gets into SRL, i am always trying and hoping so my includes would 
Information:
SCAR Code:
{*******************************************************************************
function TypeHuman(Text:String;MillisecondPerLetter:Integer):String;
By: IP-Drowner
Description: Types text human-like. Set MillisecondPerLetter to how many
many milliseconds it takes for you to type 1 letter in a word.
*******************************************************************************}
Usage:
The Code:
SCAR Code:
function TypeHuman(Text:String;MillisecondPerLetter:Integer):string;
var
i: Integer;
begin
i:= 1;
repeat
Wait(Random(MillisecondPerLetter) + 50);
SendKeys(Copy(Text, i, 1));
i:=i+1;
until(i>Length(Text));
end;
Well, how do you guys like it. Feedback is appreciated