Page 1 of 2 12 LastLast
Results 1 to 25 of 26

Thread: Why are these 3 procedures repeating?

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default Why are these 3 procedures repeating?

    In my script, the procedures walkbank and use bank repeat for some reason and its making me mad.

    Heres what the script does:
    withdraws raw fish
    uses them on range
    chooses cook all
    waits for all the raw fish to disapear.
    walks to the bank(clicking the bank minimap icon)
    opens the bank
    hits store all
    clicks the minimap icon
    opens the bank
    hits store all
    clicks the minimap icon
    opens the bank
    hits store all
    clicks the minimap icon
    opens the bank
    hits store all
    so on and so on until i stop it..

    Heres the script:
    Simba Code:
    program Cook;
    {$i srl/srl.simba}
    const
    rawfishcol=5927257;
    cookrange=7633898;
    cookfish=12868;
    minimap=2216175;
    bank=1857394;
    bankx=305;
    banky=61;
    bankxtwo=404;
    bankytwo=131;
    var
      cookall,usebank,cookicon: Integer;
    procedure backpack;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,4578368,350,296,381,320,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Wait(250 + Random(150));
      ClickMouse(X, Y, mouse_Left);
      Wait(1200 + Random(900));
      end;
    end;
    procedure bankfish;
    var
      X, Y: Integer;
      begin
      Writeln('Looking for bank . . .')
      if FindColorTolerance(X,Y,bank,bankx,banky,bankxtwo,bankytwo,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Writeln('Found bank.')
      Wait(250 + Random(150));
      ClickMouse(x, y, mouse_Right);
      Wait(900 + Random(250));
      FindBitmapToleranceIn(usebank, X, Y,31, 93, 455, 304, 165)
      MouseSpeed:=40;
      mmouse(x, y,1,1);
      WriteLn('Opened Bank!');
      Wait(500 + Random(120));
      ClickMouse(X, Y, mouse_Left);
      Wait(1500 + Random(250));
      backpack;
      end;
    end;
    procedure walkbank;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,minimap,555,85,630,122,5) then
      begin
      mmouse(x, y,1,1);
      Wait(600 + Random(150));
      ClickMouse(x, y, mouse_Left);
      Wait(6500 + Random(1500));
      bankfish;
      end;
    end;
    procedure checkcook;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,rawfishcol,566,217,715,454,5) then
      begin
      Wait(600 + Random(150));
      checkcook;
      end;
      walkbank;
    end;
    procedure choosefish;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,cookfish,207,379,300,452,5) then
      begin
       MouseSpeed:=17;
       mmouse(x, y,1,1);
       Wait(600 + Random(150));
       ClickMouse(x, y, mouse_Right);
       Wait(800 + Random(150));
       FindBitmapToleranceIn(cookall, X, Y,194, 351, 311, 478, 155)
       mmouse(x, y,1,1);
       Wait(600 + Random(150));
       ClickMouse(x, y, mouse_Left);
       checkcook;
      end;
     end;
    procedure cookfisha;
    var
      X, Y: Integer;
         begin
         if FindColorTolerance(X,Y,cookrange,374,12,503,121,5) then
         begin
         if FindColorTolerance(X,Y,rawfishcol,558,218,718,455,5) then
         begin
         MouseSpeed:=17;
         mmouse(x, y,1,1);
         Wait(600 + Random(150));
         ClickMouse(x, y, mouse_Left);
         Wait(600 + Random(150));
         if FindColorTolerance(X,Y,cookrange,374,12,503,121,5) then
         begin
         mmouse(x, y,1,1);
         Wait(600 + Random(150));
         ClickMouse(x, y, mouse_Left);
         Wait(7800 + Random(150));
         choosefish;
        end;
       end;
      end;
     end;
    procedure closecook;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,8421504,423,29,491,45,15) then
      begin
      Wait(800 + Random(150));
      Writeln('Closing bank . . .')
      MouseSpeed:=20;
      mmouse(x, y,1,1);
      Wait(250 + Random(150));
      ClickMouse(x, y, mouse_Left);
      Wait(700 + Random(150));
      cookfisha;
      end;
    end;
    procedure withdrawfish;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,rawfishcol,261,124,389,235,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Wait(350 + Random(150));
      ClickMouse(x, y, mouse_Right);
      MouseSpeed:=10;
      Wait(750 + Random(150));
      mmouse(x, y+65,1,1);
      ClickMouse(x, y, mouse_Left);
      closecook;
      end;
    end;
    begin
    cookall := BitmapFromString(21, 15, 'meJyTUdeWGVA0dccxICJSGaZKiC' +
            'ADAwNBvUA1mCYQ1A5XAFGDZgLx2vFzcQUC3NfICE07mgtxOR5uC6Z' +
            '2rHqJdDye6KOK3wlqx5WE8GsHImRfYw0BNEFcoURnBAAo+e/w');
    usebank := BitmapFromString(38, 13, 'meJyTUdeWoTuauuMYEOHiko3+/2' +
            'dARpg2MjAwYOVSaCMEoFlKaxvR2IPQRggXjtBCBk+ko8UjBBC0Ec5' +
            'GBmjiuCwlOx7xeBDNdirGI6Zf0IIaOcSIsVEGKQ8iG4JmAv7QJinl' +
            '4HI2fr/gSlHEpBy00ENzNlZBglJEKqAPAgANRYUm');
    cookicon := BitmapFromString(9, 11, 'meJw7cICaQPDfP2HrFAiSjV4DJOH' +
            'iTH/+MDIwICNeJWseRT+gOBBBFAMRUASIIFJANQx372JKLQADoCxW' +
            'KYiNaFIQLXB3LkACRHoNAJkkmKw=');
     repeat
          withdrawfish;
          until False;
      FreeBitmap(cookall);
      FreeBitmap(usebank);
      FreeBitmap(cookicon);
    end.

  2. #2
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    You have repeat until in the main execution, so its only 'withdrawfish' ing.
    ~Rez

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  3. #3
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    You have repeat until in the main execution, so its only 'withdrawfish' ing.
    ~Rez
    At the end of withdrawfish, it calls the next procedure.

    Forum account issues? Please send me a PM

  4. #4
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    You have repeat until in the main execution, so its only 'withdrawfish' ing.
    ~Rez
    what the guy above me said

  5. #5
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Still having problems.

  6. #6
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Look at your checkcook procedure. What im wondering is why it has CheckCook in a CheckCook Since it can't 'checkcook' twice, it walks to bank again. I think you should do a Repeat-Until(isNotCooking) where isNotCooking is a function that checks for pixelshift.
    ~Rez

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  7. #7
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    Look at your checkcook procedure. What im wondering is why it has CheckCook in a CheckCook Since it can't 'checkcook' twice, it walks to bank again. I think you should do a Repeat-Until(isNotCooking) where isNotCooking is a function that checks for pixelshift.
    ~Rez
    Code:
    procedure checkcook;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,rawfishcol,566,217,715,454,5) then
      begin
      Wait(600 + Random(150));
      checkcook; 
      end;
      walkbank;
    end;
    if the bot finds the raw fish color, then it repeats, and if it does not then it goes to the bank :d

  8. #8
    Join Date
    Nov 2012
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    43 Post(s)

    Default

    You should rework your script so you can understand whats going on a little better.
    It's a bit tough to understand, since you call the next function from other functions, etc.
    Try using a main loop. Honestly, it will help in the long run.

  9. #9
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Explain your bankfish procedure to me, in detail, what is it supposed to do according to the script.
    I think that is where the problem is.
    ~Rez

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  10. #10
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    Explain your bankfish procedure to me, in detail, what is it supposed to do according to the script.
    I think that is where the problem is.
    ~Rez
    Code:
    procedure bankfish;
    var
      X, Y: Integer;
      begin
      Writeln('Looking for bank . . .')
      if FindColorTolerance(X,Y,bank,bankx,banky,bankxtwo,bankytwo,5) then 
      begin //looks for the bank color, if it finds it in right clicks
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Writeln('Found bank.')
      Wait(250 + Random(150));
      ClickMouse(x, y, mouse_Right);
      Wait(900 + Random(250)); //after it rights clicks and waits a bit it looks for the "usebank" bitmap
      FindBitmapToleranceIn(usebank, X, Y,31, 93, 455, 304, 165)
      MouseSpeed:=40;
      mmouse(x, y,1,1); //it finds the bitmap and clicks on it
      WriteLn('Opened Bank!');
      Wait(500 + Random(120));
      ClickMouse(X, Y, mouse_Left);
      backpack; //this goes to the next procedure, this hits the bank all button
      end;
    end;

  11. #11
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Well, does the right click not give an option? Is that 'bank' color the minimap or regular? is the usebank on the minimap? If it is, that should come before the first findcolortolerance right?

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  12. #12
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    Well, does the right click not give an option? Is that 'bank' color the minimap or regular? is the usebank on the minimap? If it is, that should come before the first findcolortolerance right?
    It right clicks on the color it found (the bank) and when it right clicks it sees "use bank" it clicks use bank and the next procedure is started

  13. #13
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    What is the UseBank bitmap a picture of?
    Also, try making your boxes for your findcolortolerance's smaller.
    Third, where is the walk section for walking to the range?

    PS: Where is this of? Where are you cooking?

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  14. #14
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    What is the UseBank bitmap a picture of?
    Also, try making your boxes for your findcolortolerance's smaller.
    Third, where is the walk section for walking to the range?

    PS: Where is this of? Where are you cooking?
    The bitmap is of "use b" this is at south neit, the range is in view at the bank, the procedure is cookfisha

  15. #15
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Please tell me that the bitmap is not of the options...
    Is this for a RSPS, cause that is the only reason I could think of not using ChooseOption...
    Even then, I think it would work, unless the font is different.

    Using a bitmap for that is very risky, as it could very easily not read it half the time.
    For a lot of your FindColorTolerances, you could easily use MouseBox.

    The thing with your script is if it reads 1 thing wrong, the rest explodes. Try putting your procedure names in the main execution section, in a loop.

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  16. #16
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Code:
    usebank := BitmapFromString(38, 13, 'meJyTUdeWoTuauuMYEOHiko3+/2' +
            'dARpg2MjAwYOVSaCMEoFlKaxvR2IPQRggXjtBCBk+ko8UjBBC0Ec5' +
            'GBmjiuCwlOx7xeBDNdirGI6Zf0IIaOcSIsVEGKQ8iG4JmAv7QJinl' +
            '4HI2fr/gSlHEpBy00ENzNlZBglJEKqAPAgANRYUm');
    the script is working perfectly except for those things repeating..

  17. #17
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    In the main execution, take out the withdrawfish, and put walkbank in its place, run it. Tell me what happens.

    Change it back, then take out the CheckCook inside the CheckCook, that should make it do the samething right? If it does, you need to replace that if statement with
    Simba Code:
    repeat
    until(FindColorTolerance(X,Y,rawfishcol,566,217,715,454,5)=false);
    Last edited by Rezozo; 12-02-2012 at 04:03 AM.

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  18. #18
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    In the main execution, take out the withdrawfish, and put walkbank in its place, run it. Tell me what happens.
    I changed the code before, then all it did was do the bankall procedure. After i put walkbank, it does the same thing

    Simba Code:
    program Cook;
    {$i srl/srl.simba}
    const
    rawfishcol=6322271;
    cookrange=9014742;
    cookfish=12868;
    minimap=2216175;
    bank=1857394;
    bankx=220;
    banky=28;
    bankxtwo=328;
    bankytwo=201;
    rangex=310;
    rangey=4;
    rangex2=489;
    rangey2=145;
    var
      cookall,usebank,cookicon: Integer;
    procedure glitch;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,4578368,357,299,385,320,5) then
      begin
      Writeln('Finished.')
      end;
    end;
    procedure backpack;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,4578368,357,299,385,320,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Wait(250 + Random(150));
      ClickMouse(X, Y, mouse_Left);
      Wait(1200 + Random(900));
      Writeln('start glitch proc')
      glitch;
      end;
      Writeln('start backpackagain')
      Wait(250 + Random(150));
      backpack;
    end;
    procedure bankfish;
    var
      X, Y: Integer;
      begin
      Writeln('Looking for bank . . .')
      if FindColorTolerance(X,Y,bank,bankx,banky,bankxtwo,bankytwo,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Writeln('Found bank.')
      Wait(250 + Random(150));
      ClickMouse(x, y, mouse_Right);
      Wait(900 + Random(250));
      FindBitmapToleranceIn(usebank, X, Y,31, 93, 455, 304, 165)
      MouseSpeed:=40;
      mmouse(x, y,1,1);
      WriteLn('Opened Bank!');
      Wait(500 + Random(120));
      ClickMouse(X, Y, mouse_Left);
      backpack;
      end;
    end;
    procedure walkbank;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,minimap,555,85,630,122,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Wait(600 + Random(150));
      ClickMouse(x, y, mouse_Left);
      Wait(6500 + Random(1500));
      bankfish;
      end;
    end;
    procedure checkcook;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,rawfishcol,566,217,715,454,5) then
      begin
      Wait(600 + Random(150));
      checkcook;
      end;
      walkbank;
    end;
    procedure choosefish;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,cookfish,207,379,300,452,5) then
      begin
       MouseSpeed:=17;
       mmouse(x, y,1,1);
       Wait(600 + Random(150));
       ClickMouse(x, y, mouse_Right);
       Wait(800 + Random(150));
       FindBitmapToleranceIn(cookall, X, Y,194, 351, 311, 478, 155)
       mmouse(x, y,1,1);
       Wait(600 + Random(150));
       ClickMouse(x, y, mouse_Left);
       checkcook;
      end;
      Wait(600 + Random(150));
      choosefish;
     end;
    procedure cookfisha;
    var
      X, Y: Integer;
         begin
         if FindColorTolerance(X,Y,cookrange,rangex,rangey,rangex2,rangey2,5) then
         begin
         if FindColorTolerance(X,Y,rawfishcol,558,218,718,455,5) then
         begin
         MouseSpeed:=17;
         mmouse(x, y,1,1);
         Wait(600 + Random(150));
         ClickMouse(x, y, mouse_Left);
         Wait(600 + Random(150));
         if FindColorTolerance(X,Y,cookrange,rangex,rangey,rangex2,rangey2,5) then
         begin
         mmouse(x, y,1,1);
         Wait(600 + Random(150));
         ClickMouse(x, y, mouse_Left);
         //Wait(7800 + Random(150));
         choosefish;
        end;
       end;
      end;
     end;
    procedure closecook;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,8421504,423,29,491,45,15) then
      begin
      Wait(800 + Random(150));
      Writeln('Closing bank . . .')
      MouseSpeed:=20;
      mmouse(x, y,1,1);
      Wait(250 + Random(150));
      ClickMouse(x, y, mouse_Left);
      Wait(700 + Random(150));
      cookfisha;
      end;
    end;
    procedure withdrawfish;
    var
      X, Y: Integer;
      begin
      if FindColorTolerance(X,Y,rawfishcol,261,124,389,235,5) then
      begin
      MouseSpeed:=15;
      mmouse(x, y,1,1);
      Wait(350 + Random(150));
      ClickMouse(x, y, mouse_Right);
      MouseSpeed:=10;
      Wait(750 + Random(150));
      mmouse(x, y+65,1,1);
      ClickMouse(x, y, mouse_Left);
      closecook;
      end;
    end;
    begin
    cookall := BitmapFromString(21, 15, 'meJyTUdeWGVA0dccxICJSGaZKiC' +
            'ADAwNBvUA1mCYQ1A5XAFGDZgLx2vFzcQUC3NfICE07mgtxOR5uC6Z' +
            '2rHqJdDye6KOK3wlqx5WE8GsHImRfYw0BNEFcoURnBAAo+e/w');
    usebank := BitmapFromString(38, 13, 'meJyTUdeWoTuauuMYEOHiko3+/2' +
            'dARpg2MjAwYOVSaCMEoFlKaxvR2IPQRggXjtBCBk+ko8UjBBC0Ec5' +
            'GBmjiuCwlOx7xeBDNdirGI6Zf0IIaOcSIsVEGKQ8iG4JmAv7QJinl' +
            '4HI2fr/gSlHEpBy00ENzNlZBglJEKqAPAgANRYUm');
    cookicon := BitmapFromString(9, 11, 'meJw7cICaQPDfP2HrFAiSjV4DJOH' +
            'iTH/+MDIwICNeJWseRT+gOBBBFAMRUASIIFJANQx372JKLQADoCxW' +
            'KYiNaFIQLXB3LkACRHoNAJkkmKw=');
     repeat
          //withdrawfish;
          walkbank;
          until False;
      FreeBitmap(cookall);
      FreeBitmap(usebank);
      FreeBitmap(cookicon);
    end.

  19. #19
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Second part of my previous post^^^

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  20. #20
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    Second part of my previous post^^^
    It still auto loops storeall

  21. #21
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Put a writeln in that if then statement that loops checkcook.
    does it keep repeating that writeln?

    Edit: Well, this is taking too long
    - Your script has way to many flaws, reading wise, it is just too hard.
    Please change your script to use some of the more updated functions, as well as taking out the if then loops, and using repeat until loops. I am going to sleep. I have a friends sweet sixteen tomorrow.
    ~Rez
    Last edited by Rezozo; 12-02-2012 at 04:25 AM.

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  22. #22
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    Put a writeln in that if then statement that loops checkcook.
    does it keep repeating that writeln?

    Edit: Well, this is taking too long
    - Your script has way to many flaws, reading wise, it is just too hard.
    Please change your script to use some of the more updated functions, as well as taking out the if then loops, and using repeat until loops. I am going to sleep. I have a friends sweet sixteen tomorrow.
    ~Rez
    Yes. It repeats the writeln's. and this is for a pserver

  23. #23
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    What I meant was, does it go to cook, keep repeating the writeln, go back, then ever say it again?
    Also, in the very beginning, does your withdraw procedure assume that the bank is open? If so, then what does the closefish procedure do?

    Somehow, when you go back to the bank, the script skips everything to do with fishing. So it could be many things.
    Since this is a PS, for all I know, the color of the items could be changing every second, or the coordinates are off.
    Now...I sleep.
    ~Rez
    Last edited by Rezozo; 12-02-2012 at 04:55 AM.

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  24. #24
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    What I meant was, does it go to cook, keep repeating the writeln, go back, then ever say it again?
    Also, in the very beginning, does your withdraw procedure assume that the bank is open? If so, then what does the closefish procedure do?

    Somehow, when you go back to the bank, the script skips everything to do with fishing. So it could be many things.
    Since this is a PS, for all I know, the color of the items could be changing every second, or the coordinates are off.
    Now...I sleep.
    ~Rez
    It keeps repeating the WriteLn for the storeall procedure. and yes, it assumes the bank is open, not adding a failsafe for that until i can complete this script

  25. #25
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    back

Page 1 of 2 12 LastLast

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
  •