Results 1 to 7 of 7

Thread: a random completer

  1. #1
    Join Date
    Jan 2012
    Posts
    121
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default a random completer

    I am trying to afk with guthans at bandits, but i keep getting messed up, anyone have any ideas on what to do about that?

    maybe someone can make a script or something?

  2. #2
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Define "messed up".

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  3. #3
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    There is the findnormalrandoms in the SRL-OSR include

    include it in script so it isn't called every second but make sure there is no infinite loops in your script so it is called

  4. #4
    Join Date
    Jan 2012
    Posts
    121
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    im not an experience scripter, but i am not currently using a script was wondering if someone could create a script?

  5. #5
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by rol prodigy View Post
    im not an experience scripter, but i am not currently using a script was wondering if someone could create a script?
    Such a thing wouldn't be hard to do on your own ya know. Something like this perhaps?

    Simba Code:
    program AFKing;
    {$DEFINE SMART8}
    {$i SRL-OSR/SRL.Simba}

    Procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name        := '';
        Pass        := '';
        Nick        := '';
        Pin         := '';
        LampSkill   := Skill_Herblore;
        WorldInfo   := [];
        Member      := True;
        Active      := True;
      end;
    end;

    begin
      DeclarePlayers;
      SRL_CombatRandoms := False;  //So our combat doesn't set off SRL's combat anti-randoms
      SetupSRL;

      Repeat
        //Random mouse movements?
        //Check hover skills?
        //Right-click moving objects?

        FindNormalRandoms;
        Wait(RandomRange(50,250));
      Until(False)
    end.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  6. #6
    Join Date
    Jan 2012
    Posts
    121
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    so that will do the randoms? or would i have to modify it? i thought that you would have to have an actually script action not just random completer tbh

  7. #7
    Join Date
    Oct 2006
    Posts
    6,752
    Mentioned
    95 Post(s)
    Quoted
    532 Post(s)

    Default

    Well, In the official Osr Srl include,there is a random solver. While it isn't finished it is very good. The script flight posted will just repeat the random finding function to solve any that it can!
    “The long-lived and those who will die soonest lose the same thing. The present is all that they can give up, since that is all you have, and what you do not have, you cannot lose.” - Marcus Aurelius

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
  •