Results 1 to 4 of 4

Thread: Auto Typer I need help.

  1. #1
    Join Date
    Jun 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default Auto Typer I need help.

    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?

  2. #2
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    1,668
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Jacob View Post
    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]

  3. #3
    Join Date
    Mar 2007
    Posts
    674
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Is writein a function? Or did you get it mixed up with WriteLn?

  4. #4
    Join Date
    Jun 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Isolated's Auto-Typer

    EDIT: Lol was supposed to be a new thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Auto Typer
    By scissormetimbers in forum First Scripts
    Replies: 12
    Last Post: 08-07-2012, 12:51 PM
  2. Auto Typer
    By kevin0095 in forum First Scripts
    Replies: 4
    Last Post: 12-31-2007, 06:38 PM
  3. My First Auto Typer
    By otoole123 in forum First Scripts
    Replies: 12
    Last Post: 12-07-2007, 11:12 PM
  4. VERY VERY VERY x4 auto typer
    By rs cheata in forum First Scripts
    Replies: 14
    Last Post: 11-25-2007, 04:43 AM
  5. i need help again (not an auto typer)
    By corl455 in forum First Scripts
    Replies: 5
    Last Post: 09-18-2007, 09:08 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •