+ Reply to Thread
Results 1 to 17 of 17

Thread: major bug

  1. #1
    Join Date
    Feb 2009
    Location
    Irvine, CA
    Posts
    2,873
    Mentioned
    8 Post(s)
    Quoted
    138 Post(s)

    Default major bug

    When it calls the antiban that goes to the achievement tab, it doesn't go back to the invenotory. this causd the bot to stand at the rocks with a full inv in lb west swamp for 4 hours. i wouldnt be surpised if my character is banned now. please fix this.

  2. #2
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    Quote Originally Posted by TomTuff View Post
    i wouldnt be surpised if my character is banned now. please fix this.
    I would be. I've had a script run back and forth for 8 hours because of one bug, that char is still going strong.

    Scripts: Edgeville Chop & Bank, GE Merchanting Aid
    Tutorials: How to Dominate the Grand Exchange

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

  3. #3
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    I've had a char standing in freaky forester for about eight hours just spinning the camera the whole time. You're fine, but the bug is a simple fix.

  4. #4
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    I just looked through and I can't see why this would happen. This bug was in woodcutting and I fixed it yesterday. At the end of every antiban it will go to the inventory tab if not already there, so MSI_Antiban isn't the problem.

    Has it only happened the once?

  5. #5
    Join Date
    Feb 2009
    Location
    Irvine, CA
    Posts
    2,873
    Mentioned
    8 Post(s)
    Quoted
    138 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    I just looked through and I can't see why this would happen. This bug was in woodcutting and I fixed it yesterday. At the end of every antiban it will go to the inventory tab if not already there, so MSI_Antiban isn't the problem.

    Has it only happened the once?
    no it has occurred multiple times on both the miner and wcer. most of the times i've been around to set it straight, but this time i was at school.

  6. #6
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    InvFull calls this, which calls gametab..
    Simba Code:
    {*******************************************************************************
    function InvCount: Integer;
    By: RsN
    Description: Returns amount of items in your inventory
    *******************************************************************************}

    function InvCount: Integer;
    var
      I: Integer;
    begin
      Result := 0;
      GameTab(tab_inv);
      for I := 1 to 28 do
        if (ExistsItem(I)) then
         Inc(Result);
    end;

    ...

    Can you find the debug ? Also, what revision are you using?

    ~RM
    Last edited by Sir R. M8gic1an; 09-03-2010 at 10:00 AM.

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  7. #7
    Join Date
    Feb 2009
    Location
    Irvine, CA
    Posts
    2,873
    Mentioned
    8 Post(s)
    Quoted
    138 Post(s)

    Default

    Quote Originally Posted by Sir R. Magician View Post
    InvFull calls this, which calls gametab..
    Simba Code:
    {*******************************************************************************
    function InvCount: Integer;
    By: RsN
    Description: Returns amount of items in your inventory
    *******************************************************************************}

    function InvCount: Integer;
    var
      I: Integer;
    begin
      Result := 0;
      GameTab(tab_inv);
      for I := 1 to 28 do
        if (ExistsItem(I)) then
         Inc(Result);
    end;

    ...

    Can you find the debug ? Also, what revision are you using?

    ~RM
    the latest as far as i know o.O i'm going to be cooking for the next month and a half or so and i don't really have any alternate accounts to test with, sorry =\

  8. #8
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I know what bug he's talking about, and I think it might somehow be related to SRL and more specifically, gametab. Not completely sure though.

  9. #9
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by nickrules View Post
    I know what bug he's talking about, and I think it might somehow be related to SRL and more specifically, gametab. Not completely sure though.
    I'm almost positive GameTab isn't broken as nothing in the game has been changed recently (that I know of), so the function itself should still work.

    Has anyone else been getting this problem with the latest revision?

  10. #10
    Join Date
    Jun 2008
    Posts
    219
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have. I have even tried to make my own failsafe by adding another gametab command, but it failed too

  11. #11
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    It doesn't make any sense. I'm gonna do a test and see what comes out of it.

    E: I've done a few tests and GameTab works just fine. Let's see if we can gather some more information.
    1. Which skill did the bug occur with?
    2. How often does it occur?
    Last edited by Coh3n; 09-06-2010 at 04:02 AM.

  12. #12
    Join Date
    Jun 2008
    Posts
    219
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1. woodcutting.
    2. about every 4-6th load. it with click the achievements tab and just never click the inventory tab again.

  13. #13
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by traveler View Post
    1. woodcutting.
    2. about every 4-6th load. it with click the achievements tab and just never click the inventory tab again.
    Okay, thanks. I'll see what I can do.

  14. #14
    Join Date
    Feb 2007
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Until this bug is fixed, you can alter Antiban.simba (SVN rev 258) to remove the random-tab functionality:

    1. On line 27, change 3 to 2
    2. On line 29, change 1 to 2
    3. On line 35, change 2 to 1

  15. #15
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by marijuana View Post
    Until this bug is fixed, you can alter Antiban.simba (SVN rev 258) to remove the random-tab functionality:

    1. On line 27, change 3 to 2
    2. On line 29, change 1 to 2
    3. On line 35, change 2 to 1
    I've edited WaitWhileChopping and Anitban to never click the diary tab, so please let me know how it goes. I also made a lot of other bug fixes.

    E: Are you guys sure it was the diary tab? I just had it happen with the quest tab...
    Last edited by Coh3n; 09-10-2010 at 04:05 AM.

  16. #16
    Join Date
    Jun 2008
    Posts
    219
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    happened with both tabs if i remembered right.

  17. #17
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by traveler View Post
    happened with both tabs if i remembered right.
    It would have helped if someone mentioned that before...

    E: I think I have fixed this. I haven't gotten this error and I've ran a woodcutter on multiple accounts for several hours. Update your MSI and you should be fine.
    Last edited by Coh3n; 09-12-2010 at 06:22 AM.

+ Reply to Thread

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 post replies
  • You may post attachments
  • You may edit your posts
  •