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?
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?
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..."
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
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..."
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
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
There are currently 1 users browsing this thread. (0 members and 1 guests)