• XQ-FMAG

    From Captain Obvious@21:1/157 to xqtr on Friday, October 14, 2016 16:00:00
    Just a quick question about the file/message base lister. Have installed it here and the file groups and message groups are working fine but When I
    attempt to use the xq-ma script it immediately drops carrier (for lack of better words).

    One other question as far as the display of them. Would it be possible for
    you to add comments to the scripts as far as what each portion does? I've
    been able to change the ansi and also where the groups are positioned, and
    the width, but display is still screwy. I'm sure I can eventually figure everything out given time but just saying it would be cool if it were commented.

    -=>Richard Miles<=-
    -=>Captain Obvious<=-
    -=>bbs.shadowscope.com<=-

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Shadowscope BBS | bbs.shadowscope.com | Temple, GA (21:1/157)
  • From xqtr@21:1/101 to Captain Obvious on Sunday, October 16, 2016 22:01:00
    Just a quick question about the file/message base lister. Have installed it here and the file groups and message groups are working fine but When
    I attempt to use the xq-ma script it immediately drops carrier (for lack of better words).

    Does the xq-fa script works fine? Cause are almost the same and if something is wrong with code, you should see it in both scripts. Throw some writeln, commands inside the code, with various text, and see after which point it crashes. This could help a lot to find the bug or the error, maybe in another file? In my system the script works just fine... thats why i am living a
    chance that something else is going wrong.

    One other question as far as the display of them. Would it be possible
    for you to add comments to the scripts as far as what each portion does? I've been able to change the ansi and also where the groups are positioned, and the width, but display is still screwy. I'm sure I can eventually figure everything out given time but just saying it would be cool if it were commented.

    In some point i will :) For now, if you have any questions just ask me and
    i'll help you as mush as i can.

    |08\|15x|08/

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (21:1/101)
  • From Captain Obvious@21:1/157 to xqtr on Sunday, October 16, 2016 06:08:00
    On 10/16/16, xqtr said the following...

    Does the xq-fa script works fine? Cause are almost the same and if something is wrong with code, you should see it in both scripts. Throw some writeln, commands inside the code, with various text, and see after


    Yes, the xq-fa script works fine. I'll try to take a look this afternoon. Sunday's I normally have several hours of paperwork when I get home from work so don't normally do anything after that besides hang out with the wife. I
    may be able to get everything finished a bit quicker this afternoon though so would be able to take a look then.

    -=>Richard Miles<=-
    -=>Captain Obvious<=-
    -=>bbs.shadowscope.com<=-

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Shadowscope BBS | bbs.shadowscope.com | Temple, GA (21:1/157)
  • From Gryphon@21:1/120 to xqtr on Tuesday, October 18, 2016 09:14:00
    On 10/16/16, xqtr said the following...

    Just a quick question about the file/message base lister. Have instal it here and the file groups and message groups are working fine but W I attempt to use the xq-ma script it immediately drops carrier (for l of better words).

    Does the xq-fa script works fine? Cause are almost the same and if something is wrong with code, you should see it in both scripts. Throw some writeln, commands inside the code, with various text, and see after which point it crashes. This could help a lot to find the bug or the error, maybe in another file? In my system the script works just fine... thats why i am living a chance that something else is going wrong.

    I have found that this error stems from trying to access an invalid array element. Like if the array index is -1 or something like that. It's pretty forgiving if you have a 100 element array and you go past the 100th element, but when you go below the first element, it will balk and through that error.

    "No matter where you go, there you are!" - Buckaroo Bonzai

    --- Mystic BBS v1.12 A31 (Raspberry Pi)
    * Origin: Cyberia BBS | Cyberia.Darktech.Org | Kingwood, TX (21:1/120)
  • From xqtr@21:1/101 to Gryphon on Friday, October 21, 2016 04:39:00
    I have found that this error stems from trying to access an invalid array element. Like if the array index is -1 or something like that. It's pretty forgiving if you have a 100 element array and you go past the
    100th element, but when you go below the first element, it will balk and through that error.

    I check that for xq-ma and realize that if a BBS has more than 100 message bases it will exceed the size of an array... and probably this is causing the crash.

    There are two fixes. The Sysop can alter the total size of the array at line
    11 and make it a little bigger than the total count of his message bases, or
    at line 180 change this: If TotalAreas = 100 Then begin into this:
    If TotalAreas >= 100 Then begin

    With the second way if the bases are over 100, it will display the old style.

    If someone can confirm that i will post an updated package with the fixes. I suppose the same goes for xq-fa.

    Thanx Gryphon :)

    |08\|15x|08/

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (21:1/101)
  • From Captain Obvious@21:1/157 to xqtr on Thursday, October 20, 2016 20:13:00
    On 10/21/16, xqtr said the following...

    There are two fixes. The Sysop can alter the total size of the array at line 11 and make it a little bigger than the total count of his message bases, or at line 180 change this: If TotalAreas = 100 Then begin into this: If TotalAreas >= 100 Then begin


    Neither of those works for me.

    -=>Richard Miles<=-
    -=>Captain Obvious<=-
    -=>bbs.shadowscope.com<=-

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Shadowscope BBS | bbs.shadowscope.com | Temple, GA (21:1/157)