Results 1 to 14 of 14

Thread: Gametab error...

  1. #1
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default Gametab error...

    Whenever my script is running, it will click the skill game tab and come up with:
    [Runtime Error] : Could not call proc in line 321 in script C:\Program Files\SCAR 3.20\includes\SRL/SRL/Core/GameTab.scar
    line 321 is:
    ColArr := [577, 631, 687];

    Whatsup?
    I have tried deleting it and re-updating
    (Dev Rev)

    T~M

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

    Default

    Somebody else posted about this error too.

    http://www.villavu.com/forum/showthread.php?t=48855

    Nauman posted something that he asked the other people having the problem to try (at the bottom of the thread). Not sure if it worked, but at least give what he posted a try and let me know if it works.

  3. #3
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Cheers it worked

    T~M

  4. #4
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Did this happen all the time or pretty much just randomly?

  5. #5
    Join Date
    Sep 2007
    Location
    Pennsylvania
    Posts
    3,396
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Zeph - It occurred whenever some certain function was called (Obviously something with Gametabs). Not sure which, but it occurred a couple times in a row when I was running my EssMiner (then I applied Naum's fix and everything seemed to work fine).

    Lots of people have been complaining about this recently

  6. #6
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Tad View Post
    Zeph - It occurred whenever some certain function was called (Obviously something with Gametabs). Not sure which, but it occurred a couple times in a row when I was running my EssMiner (then I applied Naum's fix and everything seemed to work fine).

    Lots of people have been complaining about this recently
    Apparently EC fixed it . The function is GetSkillLevel, GetSkillInfo e.t.c
    Last edited by Naum; 08-17-2009 at 01:11 AM.

  7. #7
    Join Date
    Sep 2007
    Location
    Pennsylvania
    Posts
    3,396
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh, so it's in the latest Dev revision now?

  8. #8
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Well doubtless, I think he's done it wrong..

    SCAR Code:
    Result := Point(ColArr[Column], RowArr[Row]);

    Should be the other way around:

    SCAR Code:
    Result := Point(RowArr[Row], ColArr[Column]);

    Maybe that's the problem?

    EDIT : I'm 99% sure that's the problem.

  9. #9
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    I tried that but still got error.
    With your other fix it keeps scrolling up and down.

    T~M

  10. #10
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    The script your using must have the error then :-/

  11. #11
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Nope, other people have got it.
    I used the fix where you change the whole proc which after a while it just scrolls in the skill tab over and over.
    The fix where you switch the 2 round doesnt do anything.

    T~M

  12. #12
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Try removing
    Code:
    [1..3]
    and
    Code:
    [1..8]
    like it was in rev 205.

    Also
    Code:
     Result := Point(ColArr[Column], RowArr[Row]);
    would probably need to be
    Code:
     Result := Point(ColArr[Column-1], RowArr[Row-1]);
    but talk to EvilChicken! just in case.
    Last edited by Boreas; 08-17-2009 at 10:42 AM.

  13. #13
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Boreas is correct. I think its fixed now. Also fixed another bug in GetSkillInfo that made it return 0 a lot of the time.

  14. #14
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry, guys, did a lot of stupid mistakes on that one.

    Thanks a lot for the fix, Zeph/Boreas.

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
  •