Ok well I've been trying to get this simple autotalker to work for an hour or so now and its really frustrating me. I'm trying to make it like 100% anti-ban as my main is in deep kaka atm. Well here is what I have and I obviously messed with it a little bit so you can't report me if you find the exact same words being said.
SCAR Code:function TypeHuman(Text:String;MillisecondPerLetter:Integer):string;
var
i: Integer;
begin
i:= 1;
repeat
Wait(Random(MillisecondPerLetter) + 45+random(45));
SendKeys(Copy(Text, i, 1));
i:=i+1;
until(i>Length(Text));
end;
procedure AutoTalk;
begin
case random (1) of
0: typehuman(inttostr(blahg) +' '+inttostr(blah0)+' '+inttostr(blah1)+' by'+inttostr(blah4)+' '+inttostr(blah3)+ 'blah '+inttostr(join)+ ' ******** cc' +chr(13), 62 +random(80));
end;
end;
Btw the typehuman function is NOT mine, I forget exactly where I got it from but it was around these forums somewhere and I take NO CREDIT whatsoever for the function.
It gives me an error that says this : Line 95: [Error] (16314:187): Type mismatch in script


Reply With Quote



