Page 6 of 7 FirstFirst ... 4567 LastLast
Results 126 to 150 of 159

Thread: Nebula's Monkfish Fisher

  1. #126
    Join Date
    Apr 2012
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Exclamation Problem

    ***All of the following problems may be caused by clicking "Disable START" then enabling it again, but I'm not sure.***

    I've noticed problems when choosing to stop using SMART then using it again. Also, this one time, I saw my character trying to use this random person as the bank guy. Additionally, my character doesn't want to move from fishing spots occasionally. Furthermore, I have experienced inabilities to type on the screen at times. This problem is probably the most severe because I need to be able to communicate with people when they have spoken to me to remove chances of a ban. ***World selection problems are also present***

    If you fix the error, please sent me a message or something to let me know. Thanks.
    Last edited by cparks1000000; 04-23-2012 at 07:07 AM.

  2. #127
    Join Date
    Mar 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by oligofren View Post
    I modified a little bit banking procedure, in my opinion the script did not try hard to find bank and gave up too quickly, now in my hands it runs until token failure

    [/SIMBA]

    I believe that you solved the problems, oligofren!

    Not only has the script been running for over an hour now, but the fish (297) and the experience (35645) per hour are higher than I've seen in the past!

  3. #128
    Join Date
    Apr 2012
    Location
    United States
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I made a 6 minute progress / bug report video of the bot. Here it is:

    You're reading what I am doing. Absolutely nothing.

  4. #129
    Join Date
    Apr 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it keeps on needlessy switching fishing spots by mine but otherwise it works quite smoothly

  5. #130
    Join Date
    Nov 2011
    Posts
    61
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bmbmb View Post
    it keeps on needlessy switching fishing spots by mine but otherwise it works quite smoothly
    the script detects when character is fishing by pixelshift, in your case threshold is too low so it thinks that character stopped fishing while it is still fishing.

    you can:
    1. equip weapon shield and cape to make pixelshift more pronounced
    2. change pixelshift threshold value in the script

    below is procedure WhileFishing, I use threshold value for pixelshift 35, it works fine with hands empty and no cape or Ava's accumulator on, also there is a Writeln command with output of pixelshift value in debug window, so you can adjust this value manually for your settings.

    Simba Code:
    Procedure WhileFishing;
    begin
      if not findnormalrandoms then
      begin
        wait(randomrange(2000,2500));
        repeat
          PBox := IntToBox(245, 130, 285, 195);
          repeat
            APShift := AveragePixelShift(PBox, 1, 2500);
            Writeln('pixel shift A= ' + IntToStr(APShift));
            if (APShift>=35) then
              AntiBan;
          until ((APShift<35) or (InvFull));
          Writeln('pixelshift A done');
          if (InvFull) then
          begin
            writeln('Inv is full');
            SquellDepo;
            break;
          end else
          begin
            if (AveragePixelShift(PBox, 250, 2500)<550) then
            begin
              Writeln('PixelShift B done');
              wait(randomrange(10,150));
              if not startfishing then
              break;
            end;
          end;
        until(InvFull);
      end else
      begin
        writeln('found random event');
        Logout;
        TerminateScript;
      end;
    end;
    Last edited by oligofren; 04-27-2012 at 02:17 AM.

  6. #131
    Join Date
    Dec 2011
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This script still uses SPS 1.0, because I get the

    [Error] C:\Simba\Includes\sps/sps.simba(300:3): Unknown identifier 'SPS_FilterMinimap' at line 299
    Compiling failed.

    message when trying to run it. If possible, could you update it to SPS 2.0? Otherwise there will probably be a bunch of people crying in this thread soon.

  7. #132
    Join Date
    Dec 2006
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    seems to run good no problems has trouble finding bank every once in while and logs out but usually after couple hours

  8. #133
    Join Date
    Apr 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So far great script, I've manage to run it enough to get from 77-79.
    Just FYI
    I get this error everytime my character can't find the bank, or gets lost.
    The following DTMs were not freed: [n]
    where n=to single digit number

  9. #134
    Join Date
    Feb 2010
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah it works flawlessly, maximum time I've ran is 2 hours lowest is like 5 minutes. The banker problem seems completely random to when it happens. I'll try watch it to see what actually happens with the banker.

  10. #135
    Join Date
    Dec 2011
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    I can't seem to start it,


    [Hint] C:\Simba\Includes\SRL/SRL/core/mapwalk.simba(1353:3): Variable 'BOX' never used at line 1352
    [Error] C:\Simba\Includes\sps/sps.simba(300:3): Unknown identifier 'SPS_FilterMinimap' at line 299
    Compiling failed.

  11. #136
    Join Date
    Apr 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here is an instance of DTM not freed:
    Walking East Path
    done walking to bank2;
    Banking
    couldnt find the banker
    Successfully executed.
    The following DTMs were not freed: [2]

  12. #137
    Join Date
    Feb 2010
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For the banker problem it seems to be when an interface is up, for the example I seen it was the pin screen, sometimes it is also just the bank itself. Since it can't find the banker while that interface is up, it stops.

  13. #138
    Join Date
    May 2012
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    This is an awesome bot, can run for hours or 10 minutes, I cant seem to find any reason for the banking problem and logging out its completely random (to me at least) , thanks again.
    Edit: seems that when it clicks to go to the bank it clicks so that your character is out side the bank at the south west corner, from the it can find banker and logs out, start the script up again and it finds the banker.
    Last edited by cadet54; 05-20-2012 at 08:16 AM.

  14. #139
    Join Date
    May 2012
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Seems to be working without any bugs. The only problem is that the xp/hr is very, very low.

  15. #140
    Join Date
    May 2012
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I have had a problem with this script all of a sudden, it has been working well for a while but i come to start it up the next day and

    Code:
    SRL Compiled in 0 msec
    SMART Initialized.
    Loaded: Server 91, Members: False, Signed: True, Super Detail: False.
    [Warning] (1:1): Calculation always evaluates to True at line 0
    [Hint] (19:3): Variable 'ITEMS' never used at line 18
    [Hint] (20:3): Variable 'AFOUND' never used at line 19
    Compiled successfully in 484 ms.
    any ideas would be appreciated

    Strange I ran it again after about the 5th time it worked but got stuck on transfer thread entered, i entered my details manually into smart and it worked.
    Last edited by cadet54; 05-26-2012 at 08:18 AM.

  16. #141
    Join Date
    May 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Help I've followed everything in the instructions but when I start the script it doesn't want to type in my user and pass

  17. #142
    Join Date
    May 2012
    Posts
    55
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Make sure your display settings are on 'minimum', and that your screen size is set to 'fixed', and have brightness turned all the way up.

  18. #143
    Join Date
    May 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks everythings fine now

  19. #144
    Join Date
    May 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks indeed , from your script you got me from 85 to 90 in almost no time
    has some problems with the script at the begging then everything went well ^_^

  20. #145
    Join Date
    May 2012
    Posts
    54
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Will let you know how this goes
    Seemed to fish a couple of hundred, then fail to find the banker, repeatedly :/
    Last edited by Castiel1; 05-28-2012 at 07:03 PM.

  21. #146
    Join Date
    May 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Why does it type random stuff into the chat line?

  22. #147
    Join Date
    May 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yup banking problem needs to be fixed asap

  23. #148
    Join Date
    May 2012
    Location
    Somewhere in, PA
    Posts
    1,810
    Mentioned
    9 Post(s)
    Quoted
    226 Post(s)

    Default

    Great script! Only problem for me is that it has trouble finder banker at times. Also it once got stuck on the pinball wizard random. Only minor issues and i have managed to gain 10 fishing levels so far. Thanks!

  24. #149
    Join Date
    May 2012
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Just want to say I love this script, I have used alot of its core for other scripts like shrimps in draynor, lobsters in the fishing guild, harpoon fishing and fly fishing. Very nice script to play with, the banking problem is easy to fix, just make your own or edit it so that it try s harder to find the bank.
    Thanks neb

  25. #150
    Join Date
    Jun 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my guy gets a bit lost when finding the banker
    but without that its good shit!

Page 6 of 7 FirstFirst ... 4567 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •