Start at draynor bank, with either a net or rod + bait in your inventory, just set up the declare players, and run!
Start at draynor bank, with either a net or rod + bait in your inventory, just set up the declare players, and run!
Last edited by Bad Boy JH; 06-05-2010 at 05:17 AM.
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
SCAR Code:while IsFishing do
begin
If TimeFromMark(Mark) >= RandomRange(250000, 300000) then
Break; //runescape will take u back to lobby after just over 5 mins
Wait(RandomRange(7500, 10000)); //******this line******
AntiBan;
I suggest you remove the line I marked because it will can cause a lot of stalling if the fishing spot has disappeared and the character needs to switch to another one.
SCAR Code:if FindNormalRandoms then
begin
UseRewardBox;
FindLamp(Players[CurrentPlayer].Strings[TheSkill]);
end;
That's not really necessary because FindNormalRandoms; checks for the reward box and lamp already. For the lampskill just do
SCAR Code:LampSkill := Players[CurrentPlayer].Strings[TheSkill];
there NEEDS to be a wait there, otherwise the antiban procedure will run every loop, which will take all of a few miliseconds, it was reduced (halved) from my lobster fisher, and I think a wait such as that is more human like...
have another look and FindNormalRandoms, it stops the loop if it finds a random, and won't use the lamp immediatly! this little snippet makes it use the lamp straight away, which again is more human like.
On a side note, the script is now updated, and supports bait fishing also.
Last edited by Bad Boy JH; 06-05-2010 at 05:04 AM.
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
look, halving it again is really the best I can do,
Just added another minor edit to script.
Last edited by Bad Boy JH; 06-05-2010 at 05:19 AM.
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
Try something like this
SCAR Code://from my fisher's antiban
i := Random(150);
Case i of
0..7: RandomRClick;
8..9: HoverSkill('Fishing', False);
10..17: PickupMouse;
18..20: BoredHuman;
21..22: ExamineInv;
{$IfDef Reflection}
23..26: RandomCompass;
{$EndIf}
27..149: Wait(250 + random(250));
end;
Or try like what Mormonman said but add a little wait
SCAR Code:if (random(100) = 1) then
Antiban
else
Wait(150 + random(100));
Last edited by bbri06; 06-05-2010 at 05:26 AM.
just consider that wait as antiban, cause its just adding more human-ness to it...
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
if you are worried about up to 5 seconds of lag, occasionally, then you need to take a step back and really try and enjoy life more, sure It may cost people a trip or two a day, but overall, they are quite probably going to be banned less...
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
I think its all opinion, can we simply agree to disagree? I think my way is best, and you think urs is best, I don't think either of us will convince the other of anything different...
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
is no one testing cause its simba? or cause no one wants it?
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
thanks...
Current Script Project
Pot of flour gatherer - 95% done
Can't get Simba to work? Click here for a tutorial
There are currently 1 users browsing this thread. (0 members and 1 guests)