Results 1 to 3 of 3

Thread: IncrediblyGreatAutoTeleporter

  1. #1
    Join Date
    Jun 2015
    Posts
    64
    Mentioned
    2 Post(s)
    Quoted
    21 Post(s)

    Default IncrediblyGreatAutoTeleporter

    Made this to quickly get 55 mage.
    Start with any teleporter in the ability slot one.
    Simple antiban and on screen proggy.
    CallumsTeleporter.simba

    Simba Code:
    program Telepawrt;
    {$DEFINE SMART}
    {$I SRL-6/SRL.simba}

    var
    ebola: integer = 0;

    procedure declarePlayers();
    begin
      setLength(players, 1);
      with players[0] do
      begin
        loginName := 'USERNAME'; // username
        password := 'PASSWORD';  //password
        isActive := true;
        world := -1;// set 0 for random -1 for play button 138 for world 138
        isMember := true;
      end
      currentPlayer := 0;
    end;
    procedure writeStatus;
    begin
      with (smartImage) do
      begin
        clearArea(Mainscreen.getBounds());

        drawText('Times clicked: ' + IntToStr(ebola), point(1, 365), upcharsex, false, clwhite);
      end;
    end;
    procedure Antiban();
    begin
      case random(6000) of
        1..60:
          begin
            pickUpMouse();
            wait(randomRange(50, 250));
          end;
        61..150:
          begin
            smallRandomMouse();
            wait(randomRange(100, 500));
          end;
        150..214:
          begin
            mouseOffClient(OFF_CLIENT_RANDOM);
            wait(randomRange(512, 1051));
          end;
        215..250:
          begin
            case random(4) of
              1: hoverSkill(SKILL_MAGIC);
              2: hoverRandomSkill();
            end;
            wait(randomRange(2000, 7500));
          end;
        251..310:
          begin
            sleepAndMoveMouse(2150 + random(2000));
            wait(randomRange(500, 1250));
          end;
      end;
    end;
    procedure Click
      begin
          wait(randomRange(90, 140));
          actionBar.clickSlot(1);
          AntiBan;
          wait(randomRange(10, 250));
          inc(ebola);
      end
    begin
    clearDebug();
    smartEnableDrawing :=true;
    setupSRL();
    Writeln('Logging in');
    declarePlayers();
    repeat
    if not isLoggedIn() then
      begin
       players[currentPlayer].login();
       exitSquealOfFortune();
       mainScreen.setAngle(MS_ANGLE_HIGH);
       minimap.setAngle(MM_DIRECTION_NORTH);
       end;
       begin
       Click();
       writeStatus;
    end;
    until players.getActive() < 1;
    end.
    hi it me

  2. #2
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Simba Code:
    var
    ebola: integer = 0;

    LOL

    Gratz on the release!
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  3. #3
    Join Date
    Nov 2014
    Location
    Estonia
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Works like a charm.

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
  •