Results 1 to 6 of 6

Thread: Keep logged in?

  1. #1
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Keep logged in?

    Okay, for the new minigame you get 3 zeal points for a win. - I did anyway.
    Can sombody make a script that keeps you logged on and just antiban, I would do it myself but dont have scar on this pc.
    ________________________________________
    14:19 < cycrosism> I wonder what she would have done without it
    14:19 < cycrosism> without me*
    Cycrosism is now an it.
    Quote Originally Posted by Dervish View Post
    /Facedesk.

  2. #2
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    u want it to log in and out?

    EDIT:
    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    procedure AntiBan;
    begin
      if(not(LoggedIn))then Exit;
      case Random(15) of
       0: begin
          FindNormalRandoms;
          HoverSkill('Attack', false);
          wait(2453+Random(432));
          end;
         1: PickUpMouse;
           2: begin
              MakeCompass('N');
              wait(100+random(5));
              MakeCompass('S');
              wait(100+random(5));
              MakeCompass('N');
              end;
             3:wait(500 + random(500));
      end;
    end;


    procedure Waiting;
    begin
      Case Random(4) of
        0: Wait(20000+random(250));
        1: begin
           Antiban;
           GameTab(4);
           wait(18000+random(400));
           end;
        2: begin
           Antiban;
           GameTab(4)
           wait(176000+random(450));
           end;
        3: Wait(19000+random(345));
      end;
    end;


    procedure AntiRandom;
    begin
      FindNormalRandoms;
    end;

    begin
      SetupSRL;
      Waiting;
    AntiRandom;
    end.
    Did someone say GDK?

  3. #3
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    You dont need Anti randoms, this is a minigame...
    Just get into the game and start this scrip, hold down key 's' to stop the script

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    procedure AntiBan;
    begin
      if(not(LoggedIn))then Exit;
      case random(4) of
        0: PickUpMouse;
        1: RandomMovement;
        2: RandomRClick;
        3: case random(3) of
          0: HoverSkill('Attack', false);
          1: HoverSkill('Defece', false);
          2: HoverSkill('Hitpoints', false);
          end;
      end;
    end;

    begin

      SetupSRL;
      Wait(500+random(100));
        repeat
          Wait(12000+random(8000));
          AntiBan;
        until(IsKeyDown('s'))
    end.
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  4. #4
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, I need to modify this to leave the spawn/graveyard as if you stay in there too long then ya get kicked.


    Thanks!
    ________________________________________
    14:19 < cycrosism> I wonder what she would have done without it
    14:19 < cycrosism> without me*
    Cycrosism is now an it.
    Quote Originally Posted by Dervish View Post
    /Facedesk.

  5. #5
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by 05hartor View Post
    Well, I need to modify this to leave the spawn/graveyard as if you stay in there too long then ya get kicked.


    Thanks!
    Maybe something like this:

    SCAR Code:
    Function FindFeather : Boolean;
    begin
      if not LoggedIn then Exit;
      MakeCompass('N');
      Result := FindObjCustom(x, y, ['ass'{Pass barrier etc? :D}], [DoorColor1, DoorColor2], 10);
      Mouse(x, y, 5, 5, false);
      Result := ChooseOption('ass');
    end;



    What i would do is to make a char to move near the obelisk and set auto ret. on, then someone will attack me and so i can make some xp to h):
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  6. #6
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm making a full reflection script for this. I'm probably going to have it run between obstacles, maybe fight people (hey, on busy worlds, you can move them mouse and attack someone!), etc.

    .

    ~Sandstorm

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Last logged in 1196 days ago
    By Mr.Klean in forum News and General
    Replies: 19
    Last Post: 08-19-2008, 02:16 AM
  2. a script that keeps me logged in
    By Haxor in forum RS3 Outdated / Broken Scripts
    Replies: 9
    Last Post: 07-07-2007, 12:31 PM

Posting Permissions

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