Results 1 to 9 of 9

Thread: Requesting Autotyper

  1. #1
    Join Date
    Jun 2014
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Requesting Autotyper

    Hey , im looking for an Autotyping script that will be done on the client and i can browse other programs while the autotyper is going on my rs3 client on simba



    Mod edit: Script buying is not allowed on this forum.
    Last edited by masterBB; 06-06-2014 at 10:18 PM. Reason: no buying

  2. #2
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Rofl offering $30 for a auto typer script I wish we could do this for him

  3. #3
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    saw @Ashaman88; browsing this thread, surprised he didn't remove it yet?

    OP: read the rules: no selling/buying scripts

    Creds to DannyRS for this wonderful sig!

  4. #4
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Can't tell if troll or just too lazy to script like 5 lines of code?
    Simba Code:
    repeat
      typeSend('I like cheese');
      wait(gaussRangeInt(250, 750));
    until false;
    Last edited by Clarity; 06-06-2014 at 07:32 PM.

  5. #5
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Didn't they make an auto-typer built into the game?




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  6. #6
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

  7. #7
    Join Date
    Jun 2014
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Clarity View Post
    Can't tell if troll or just too lazy to script like 5 lines of code?
    Simba Code:
    repeat
      typeSend('I like cheese');
      wait(gaussRangeInt(250, 750));
    until false;
    not a troll just don't know how to script XD pls make one that works on a Rs3 client!!!! Plsss i donated $20 2 the site

  8. #8
    Join Date
    Jan 2012
    Posts
    550
    Mentioned
    2 Post(s)
    Quoted
    177 Post(s)

    Default

    Quote Originally Posted by GamingGold View Post
    not a troll just don't know how to script XD pls make one that works on a Rs3 client!!!! Plsss i donated $20 2 the site
    You just quoted it...

  9. #9
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by GamingGold View Post
    not a troll just don't know how to script XD pls make one that works on a Rs3 client!!!! Plsss i donated $20 2 the site
    Idk if you really donated but I am feeling helpful today.
    Simba Code:
    program ClarityAutotyper;
    {$DEFINE SMART}
    {$I SRL-6/SRL.simba}

    const
      message = 'Hello, how are you?'; //message to autotype
      timeBetweenMessages = 500;       //ms to wait between messages (center of normal distribution randomization, minimum 500)

    var
      messageCount: Integer;

    procedure declarePlayers;
    begin
      setLength(players, 1);
      with players[0] do
      begin
        loginName        := 'Username';
        password         := 'Password';
        isActive         := true;
        isMember         := false;
        world            := -1;
      end;
      currentPlayer := 0;
    end;

    procedure ClarityDebug(message: string);
    begin
      writeln('== ClarityDebug == | ' + message);
    end;

    procedure mainLoop;
    begin
      typeSend(message, true);
      wait(gaussRangeInt(timeBetweenMessages - 500, timeBetweenMessages + 500));
      inc(messageCount);
      ClarityDebug('Message send count: ' + ToStr(messageCount));
    end;

    begin
      setupsrl;
      declarePlayers;
      while players.getActive > 0 do
        mainLoop;
    end.

    Make sure chat's "Always-On" mode is active as shown in the picture below.


    This script will run until you press the stop button.
    Last edited by Clarity; 06-06-2014 at 08:38 PM.

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
  •