Results 1 to 12 of 12

Thread: HELP ME with my auto fisher

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

    Default HELP ME with my auto fisher

    hello people

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

    const
    FishPlace = 15780000;

    procedure Fish;
    begin
    if(FindColorSpiral(x,y,FishPlace,0,0,1,1))then
    Wait(500 + random(250));
    MMouse(x,y,0,0);
    end;


    Begin
    SetupSRL;
    repeat
    Fish;
    until(false)

    that is my script, it wont compile ([Error] (17356:1): Unexpected end of file) and i want to add a part of script i dont know

    MMouse(x,y,0,0);
    i want to add if find fishplace = flase then
    repeat


    EDIT:: it now compiles, i forgot the last end.
    ________________________________________
    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
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You say until(false) but you need an end. after it.

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

    Default

    i beat you to it

    a few scecs ime guessing
    ________________________________________
    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.

  4. #4
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol kk, glad you sorted it out.

  5. #5
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    u dont really need if find fishplace then repeat because this is just a power fisher and wont be moving newhere....
    plus it just fishes and no dropping(not good)add
    SCAR Code:
    if(InvFull) then
    DropTo(2,28);

    and chande this
    SCAR Code:
    if(FindColorSpiral(x,y,FishPlace,0,0,1,1))then
    to this
    SCAR Code:
    if(FindColorTolerance(x,y,FishPlace,0,0,1,1,5))then

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

    Default

    i know, i think its a failsafe, if it cant find it then it waits and repeats, thats what code i was asking for

    oh yeah and that is a rubbish dropper, i gonna make a dtm 1



    EDT: i am just abit rusty atm
    ________________________________________
    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.

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Heres how your script should be:
    SCAR Code:
    program AutoFisher;
    {.include SRL/SRL.scar}
     
    const
      FishPlace = 15780000;
     
    procedure Fish;
    begin
      if(FindColorSpiral(x,y,FishPlace,0,0,1,1))then
      begin
        Wait(500 + random(250));
        MMouse(x,y,0,0);
      end;
    end;
     
     
    Begin
      SetupSRL;
      repeat
        Fish;
      until(false)
    end.
    1. notice how I spaced everything out? 2 spaces after repeats/begins, 2 spaces back for untils/ends. Looks a lot better that way eh?

    2. Check out the FindColorSpiral thing. after every then, it does the line of code after it and it does everything else after it, even if it doesn't find the color. so what it does, is if it finds the color, it waits 500-750 milliseconds. It moves the mouse even if it doesn't find the color. For more then one thing, you need a

    if(Whatever)then
    begin
    DoStuff;
    DoMoreStuff;
    end;

    like so. Also, I strongly suggest looking for any color on the main screen with tolerance because Jagex changes colors in game all the time to help stop autoers. You could also use multi colors like FishSpot, FishSpot2...etc.

    I also hope your aware that this script wouln't click the fishing spot It only MMouse's (Moves mouse)

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

    Default

    yeah, soon i am gonna get some DTMs sorted and and learn some more
    thnx and hello JAD
    ________________________________________
    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.

  9. #9
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dtms are hard for a fish spot but u can try it i would of used a bitmap

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

    Default

    okay,i am gonna learn to use a bitmap
    ________________________________________
    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.

  11. #11
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    OKay... good luck!


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  12. #12
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    i like dtms, but the fishing spots arent good for them

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. First Auto Fisher
    By fusion in forum First Scripts
    Replies: 6
    Last Post: 10-25-2007, 07:26 AM
  2. Really Need Help With Auto Fisher
    By LOL? in forum OSR Help
    Replies: 3
    Last Post: 10-03-2007, 06:09 PM
  3. auto fisher plz
    By haxal in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 04-12-2007, 12:20 AM
  4. help whit auto fisher
    By robeike in forum OSR Help
    Replies: 8
    Last Post: 03-15-2007, 06:20 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
  •