Results 1 to 14 of 14

Thread: Reflection Draynor Fisher

  1. #1
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Reflection Draynor Fisher

    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

  2. #2
    Join Date
    Oct 2006
    Posts
    468
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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];

  3. #3
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  4. #4
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Bad Boy JH View Post
    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...

    On a side note, the script is now updated, and supports bait fishing also.
    if (random(100) = 1) then antiban;

  5. #5
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  6. #6
    Join Date
    Oct 2006
    Posts
    468
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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.

  7. #7
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  8. #8
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Bad Boy JH View Post
    just consider that wait as antiban, cause its just adding more human-ness to it...
    what you have is just unintelligent. at least try to learn a better way?

  9. #9
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  10. #10
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Bad Boy JH View Post
    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...
    I'm not worried about the five seconds...I just think that there are better ways to add random waits like that.

  11. #11
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  12. #12
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  13. #13
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Bad Boy JH View Post
    is no one testing cause its simba? or cause no one wants it?
    I'll test it on my noob account later today

  14. #14
    Join Date
    Dec 2009
    Location
    Newcastle, Australia
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks...

    Current Script Project
    Pot of flour gatherer - 95% done

    Can't get Simba to work? Click here for a tutorial

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
  •