• record

    From Pequito@21:1/126 to g00r00 on Thursday, January 11, 2018 04:54:22
    g00r00,

    Did the following record type change from A36 to A38 by chance, seems to only and always read back 1 and never 0 if turned off.

    MScanRec = Record { <Message Base Path> *.SCN }
    NewScan : Byte; { Include this base in new scan? }
    QwkScan : Byte; { Include this base in qwk scan? }
    End;

    Thanks/Cheers!
    Pequito

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Twinkle BBS # (21:1/126)
  • From g00r00@21:1/108 to Pequito on Thursday, January 11, 2018 10:55:15
    Did the following record type change from A36 to A38 by chance, seems to only and always read back 1 and never 0 if turned off.

    Yep, that record is wrong. The format is:

    RecMessageScan = Record // *.SCN for message bases
    UserID : LongInt;
    NewScan : Byte;
    QwkScan : Byte;
    End;

    RecFileScan = Record
    UserID : LongInt;
    NewScan : Byte;
    LastNew : Cardinal;
    End;

    --- Mystic BBS v1.12 A39 2018/01/08 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From Pequito@21:1/126 to g00r00 on Thursday, January 11, 2018 17:14:59
    On 01/11/18, g00r00 said the following...

    Did the following record type change from A36 to A38 by chance, seems only and always read back 1 and never 0 if turned off.

    Yep, that record is wrong. The format is:

    RecMessageScan = Record // *.SCN for message bases
    UserID : LongInt;
    NewScan : Byte;
    QwkScan : Byte;
    End;

    Ty g00r00 the records file provided still showed the old one that is why it
    was not working for me. :P

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Twinkle BBS # (21:1/126)
  • From g00r00@21:1/108 to Pequito on Friday, January 12, 2018 11:46:04
    Ty g00r00 the records file provided still showed the old one that is why it was not working for me. :P

    What are you using that is reading this information? Are you properly searching for a match of the user's UID to get the record?

    --- Mystic BBS v1.12 A39 2018/01/08 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From Pequito@21:1/126 to g00r00 on Friday, January 12, 2018 17:40:39
    On 01/12/18, g00r00 said the following...

    Ty g00r00 the records file provided still showed the old one that is it was not working for me. :P

    What are you using that is reading this information? Are you properly searching for a match of the user's UID to get the record?


    I do customizations for almost everything on my system this one was for a lightbar version of the set scan areas which is now working after mentioning the record change. I read this using MPL to read the .scn file(s). :)

    Cheers!
    Pequito

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Twinkle BBS # (21:1/126)
  • From Pequito@21:1/126 to g00r00 on Saturday, January 13, 2018 19:14:24
    On 01/12/18, g00r00 said the following...

    Ty g00r00 the records file provided still showed the old one that is it was not working for me. :P

    What are you using that is reading this information? Are you properly searching for a match of the user's UID to get the record?

    That was a change and making that change in my mpl now to make sure I get the correct data. I do lightbar's for a lot of my ui in mpl.

    Cheers!
    Pequito

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Twinkle BBS # (21:1/126)
  • From g00r00@21:1/108 to Pequito on Tuesday, January 16, 2018 17:43:40
    I do customizations for almost everything on my system this one was for a lightbar version of the set scan areas which is now working after mentioning the record change. I read this using MPL to read the .scn file(s). :)

    Okay just know that they are stored differently now, not just the format has changed but the way they are stored did too.

    --- Mystic BBS v1.12 A39 2018/01/15 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From Pequito@21:1/126 to g00r00 on Tuesday, January 16, 2018 18:05:43
    On 01/16/18, g00r00 said the following...

    I do customizations for almost everything on my system this one was f lightbar version of the set scan areas which is now working after mentioning the record change. I read this using MPL to read the .scn file(s). :)

    Okay just know that they are stored differently now, not just the format has changed but the way they are stored did too.

    It actually looks like a standard data file am I correct when I state this?
    I will see about reading this file tonight to properly fix the lightbar
    version of the set scan area. :P

    Cheers!
    Pequito

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Twinkle BBS # (21:1/126)
  • From g00r00@21:1/108 to Pequito on Tuesday, January 16, 2018 21:37:09
    It actually looks like a standard data file am I correct when I state this? I will see about reading this file tonight to properly fix the lightbar version of the set scan area. :P

    You have to search for the user's UID now. In the past it was stored by
    record location of the user in user.dat.

    --- Mystic BBS v1.12 A39 2018/01/16 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)