PDA

View Full Version : My First Script (Very Simple Autotyper)



atmmaster2
05-22-2007, 09:26 AM
This Is My Very First Script (i know its nooby)
Please Rate it And Tell Me How Rubbish It Is



///Atmmaster2s Simple Autotyper\\\
///Setup lines 9,10,11 and 12\\\
///////////And Line 40\\\\\\\\\\\

Var
Counter:integer;

Const
Message1=''; //Message You Want to be typed
Message2='';
Message3='';
TimeA=3000; //Time inbetween messages

Procedure Talk;
Begin
SendKeysSilent(Message1);
Wait(100+random(40));
SendKeysSilent(chr(13));
Wait(TimeA);
SendKeysSilent(Message2);
Wait(100+random(40));
SendKeysSilent(chr(13));
Wait(TimeA);
SendKeysSilent(Message3);
Wait(100+random(40));
SendKeysSilent(chr(13));
End;
Begin
counter=:0;
Repeat
Talk
Writeln('You Have Typed Your Message ' IntToStr(Counter) ' Times!');
Writeln('You have said this');
Writeln(Message1);
Writeln('This');
Writeln(Message2);
Writeln('And This');
Writeln(Message3);
Writeln('Autotyper Made By Atmmaster2')
Until(counter=0) //The Amount of times you want to say it 0=Forever
End.

JAD
05-22-2007, 02:08 PM
You should have + random's in your waits to make it less detectable to Jagex.

Also, you should read the first chapter in my tut (links in sig) Things the beginner tuts don't teach you. That will teach you about moving the mouse undetectably, and the IsFKeyDown function, which would make your script not type anything unless the user presses the specified key!

Good try, but this will get you banned. Glad to see you learning though, keep it up!

P.S. You should use TypeSend which presses the enter key for you, and types message less detectably then SendKeysSilent (from what I know). You can learn that in my tut too :p

atmmaster2
05-22-2007, 06:34 PM
kk thx for the support ill read ur tut now

JAD
05-22-2007, 08:39 PM
kk thx for the support ill read ur tut now

K no problem. If you need any help, you can add me on msn but I may not be able to help you every second I'm on because I'm pretty busy :p

Inf456
06-01-2007, 08:08 PM
I would suggest using TypeSend instead if SendKeysSilent, unless you want to get banned ;). Pretty nice for your first script, keep up the good work and you could be a good scripter in no time!

JAD
06-01-2007, 09:02 PM
I would suggest using TypeSend instead if SendKeysSilent, unless you want to get banned ;).time!

Lol, I said that like 9 days ago already ;) :p

Inf456
06-05-2007, 08:39 PM
Lol, I said that like 9 days ago already ;) :p

Lol :p.

evilwalrus
06-05-2007, 10:49 PM
good work