Results 1 to 5 of 5

Thread: How do I make simba type

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

    Default How do I make simba type

    How do i make simba type letters? Lol, im currently testing my bot on a private server until I feel it can be used on RS.(ignore the fact that it has no anti ban)

    Code:
    program autof;
    var
     X,Y: Integer;
     procedure sum;
    begin
    //1
    wait(1000000)
          FindColorTolerance(X,Y,7383480,1202,468,1234,500,4)
          Wait(250 + Random(90));
          movemouse(x, y);
           Wait(320 + Random(150));
          ClickMouse(x, y, Mouse_left);
          wait(1200)
          FindColorTolerance(X,Y,16777215,1186,363,1246,386,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(1400 + Random(80));
          FindColorTolerance(X,Y,3452099,851,333,1028,355,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(3200 + Random(80));
          //pray
          FindColorTolerance(X,Y,16514554,1270,172,1300,201,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(1000 + Random(80));
          //turm
          FindColorTolerance(X,Y,16508164,1275,333,1305,351,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(1000 + Random(80));
           //inv
          FindColorTolerance(X,Y,2249607,1203,170,1235,199,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(1000 + Random(80));
           //clicktocon
          FindColorTolerance(X,Y,16711680,812,441,953,451,4)
          wait(200);
          movemouse(x, y);
          wait(500);
          ClickMouse(x, y, Mouse_left);
          Wait(1000 + Random(80));
    end;
    begin
      repeat
      sum;
      until False;
      end.

  2. #2
    Join Date
    May 2012
    Location
    Chaaaaiir
    Posts
    376
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    There's a few functions for possible use.

    1.
    Simba Code:
    TypeSend('Message here '); // types a message then presses enter
    2.
    Simba Code:
    SendKeys('Message here'); // same thing as above, but doesn't press enter
    3. The one Im not familiar with:
    Simba Code:
    KeyDown(); and KeyUp();

    Also another tip, try not to use 'MoveMouse' and 'ClickMouse', as they're rudimentary mouse functions and can easily get you banned in Live RS. Instead try using MMouse/Mouse and/or ClickMouse2!

    Best of luck!

    ~(s)okkr7
    Last edited by (s)okkr7; 10-04-2012 at 10:38 PM.

  3. #3
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Simba Code:
    SendKeys("KEYSHERE",100,100);

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

    Default

    thanks! and ofcourse ill be changing the mouce movement before i even come close to using it on rs.

  5. #5
    Join Date
    May 2012
    Location
    Brazil
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Use this:

    program Talker;
    {$i srl/srl.simba}

    Const
    Message0 = ('Hello!');


    procedure Talk;
    begin
    TypeSend(message0);
    Wait(10000);
    end;

    begin
    Talk;
    end.
    Hope I helped.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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