Results 1 to 6 of 6

Thread: [REQ]Auto-Teleporter

  1. #1
    Join Date
    May 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default [REQ]Auto-Teleporter

    i was suprised to not see an auto-teleporter, it seems like it would be pretty easy but i dont know much about scripting.

  2. #2
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

    Default

    Quote Originally Posted by jammin6996 View Post
    i was suprised to not see an auto-teleporter, it seems like it would be pretty easy but i dont know much about scripting.
    Check out the tutorials then since you don't know much
    http://villavu.com/forum/forumdisplay.php?f=490

  3. #3
    Join Date
    Apr 2012
    Location
    Melbourne, Australia
    Posts
    230
    Mentioned
    0 Post(s)
    Quoted
    59 Post(s)

    Default

    Quote Originally Posted by jammin6996 View Post
    i was suprised to not see an auto-teleporter, it seems like it would be pretty easy but i dont know much about scripting.
    If you only want it to get to like lvl 55 or something then just use an auto clicker and baby sit it

  4. #4
    Join Date
    Dec 2011
    Location
    Holland
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Could make you one, but I would need runes to test it.
    Not gonna make myself poor testing this
    07Scripter
    I mostly write private scripts

  5. #5
    Join Date
    Apr 2013
    Location
    Las Vegas
    Posts
    111
    Mentioned
    1 Post(s)
    Quoted
    35 Post(s)

    Default

    ummm

    Simba Code:
    program Teleporter;
    {$DEFINE SMART8}
    {$I SRL-OSR/SRL.Simba}
    const
      Tele      =        'Varrock';    // Teleport location
    var
      Where, Loc: TPoint;
      Cords: TPointArray;
    begin
    setupSRL;

      Cords := [Point (595, 288), Point(667, 287), Point(572, 312), Point(619, 312), Point(691, 312)];

      case Lowercase(Tele) of
      'varrock': Loc := Cords[0];
      'lumbridge': Loc := Cords[1];
      'falador': Loc := Cords[2];
      'house': Loc := Cords[3];
      'camelot': Loc := Cords[4];
      end;

    GameTab(tab_magic);

    MMouse (Loc.x, Loc.y, 5, 5);

      repeat

      GetMousePos(where.x, where.y);

        if ((where.x > (Loc.x + 10)) OR (where.x < (Loc.x - 10)) OR (where.y > (Loc.y + 10)) OR (where.y < (Loc.y - 10))) then
        MMouse (Loc.x, Loc.y, 5, 5);

        if (IsUpText ('Cast')) then
        ClickMouse2(Mouse_left);

        if (Randomrange(1,50) = 1) then
        wait (Randomrange(5000,7000));

        wait(randomrange(2000,2500));

      until (IsChatBoxTextBetween('enough', clMessage, 4, 8));

    end.

    Complete with anti-ban, or an attempt at anti-ban.

  6. #6
    Join Date
    Aug 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i made one go check it out

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
  •