Results 1 to 2 of 2

Thread: Auto-Typer Script [SIMPLE]

  1. #1
    Join Date
    Oct 2013
    Posts
    42
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Exclamation Auto-Typer Script [SIMPLE]

    Whenever I try making an auto-typer script.. the code doesnt work out -.-! i need one :S could someone tell me the code?? I know its really simple but it doesnt work when i try mine

    has to be included in Simba directly and have SMART

  2. #2
    Join Date
    Feb 2012
    Posts
    83
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    program simple_autotyper;
    {$DEFINE SMART}
    {$I SRL-OSR/SRL.Simba}
    const
    speed = 3000; //interval in ms

    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;
    Players[0].Name := ''; //name here
    Players[0].Pass := ''; //pass here
    Players[0].Active := True;

    end;
    begin
    SetupSRL;
    DeclarePlayers;
    LoginPlayer;
    repeat
    wait(speed);
    TypeSendEx('text here',true); // text here
    Until (false);
    end.
    Fletching: 99/99 done
    Mining: 82/99
    Runecrafting: 92/99
    Smithing: 85/99
    Agility: 80/99

Thread Information

Users Browsing this Thread

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

Posting Permissions

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