
Originally Posted by
Jacob
SCAR Code:
Program Autotyper;
var message: string;
Procedure setup;
begin
message:= 'Happy Birthday !'
end;
begin
setup;
repeat
writeIn;
wait(2000)
until(false)
end.
I already posted this is the noob forum. There is an error with write in. can someone help me?
huh who what?
What are you trying to do?
writeln(String); writes something to the debug slot
Srl function sendkeys(String); makes your char act like he is typing
SCAR Code:
repeat
sendkeys('Ban me please');
until(false);
or, if you want variables, make sure you declare them
like
SCAR Code:
var text:String;
text:='Ban me please';
repeat
sendkeys(text);
until(false);
be sure to import srl first, if you dont know how, read some beginer tutorials.
[IMG]http://farm3.static.flickr.com/2120/2052732965_348f3629d0_o.jpg[/IMG]