• CNet to Mystic..

    From Bucko@21:4/131 to All on Sun Jan 20 15:41:00 2019
    Not sure if g00r00 did this on purpose with A42, but Mystic is reading CNet
    MCI color commands now.. It's a nice surprise for someone who also runs a
    CNet Amiga BBS and has my local messages bases networked between the two systems..

    --- Mystic BBS v1.12 A42 2018/12/30 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From g00r00@21:1/108 to Bucko on Tue Jan 22 01:05:18 2019
    Not sure if g00r00 did this on purpose with A42, but Mystic is reading CNet MCI color commands now.. It's a nice surprise for someone who also runs a CNet Amiga BBS and has my local messages bases networked between the two systems..

    Yep a couple of people requested it so I added it in.

    --- Mystic BBS v1.12 A42 2018/12/31 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From Bucko@21:4/131 to g00r00 on Tue Jan 22 07:09:04 2019
    On 22 Jan 2019, g00r00 said the following...


    Yep a couple of people requested it so I added it in.

    --- Mystic BBS v1.12 A42 2018/12/31 (Windows/32)

    Nice.. Thank you.. :)

    --- Mystic BBS v1.12 A42 2018/12/30 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From Digital Man@21:1/183 to Bucko on Tue Jan 22 23:32:52 2019
    Re: CNet to Mystic..
    By: Bucko to All on Sun Jan 20 2019 03:41 pm

    Not sure if g00r00 did this on purpose with A42, but Mystic is reading CNet MCI color commands now.. It's a nice surprise for someone who also runs a CNet Amiga BBS and has my local messages bases networked between the two systems..

    What are those codes - do you have a reference link/document?

    digital man

    Synchronet "Real Fact" #39:
    Synchronet first supported Windows NT v6.x (a.k.a. Vista/Win7) w/v3.14a (2006). Norco, CA WX: 56.2øF, 15.0% humidity, 5 mph E wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.06-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (21:1/183)
  • From g00r00@21:1/108 to Digital Man on Wed Jan 23 03:30:20 2019
    Not sure if g00r00 did this on purpose with A42, but Mystic is reading MCI color commands now.. It's a nice surprise for someone who also runs CNet Amiga BBS and has my local messages bases networked between the tw systems..

    What are those codes - do you have a reference link/document?

    I wasn't able to find anything myself but I can paste you what I came up with. I am not entirely sure its 100% accurate and probably not complete as far as cursor movement functions and so on but I think the colors are correct at least.

    The codes are 3 digit and start with ASCII 25. SetFore and SetBack are just your standard DOS foreground/background numbers.

    Hope that helps.

    If GotCNETY Then Begin
    If (Ch = #25) and (ColorCode = '') Then Begin
    AddChar(#25);

    Exit;
    End;

    ColorCode := ColorCode + Ch;

    If Length(ColorCode) = 2 Then Begin
    Found := True;

    Case ColorCode[1] of
    'c' : Case UpCase(ColorCode[2]) of
    '0' : SetFore(0);
    '1' : SetFore(4);
    '2' : SetFore(2);
    '3' : SetFore(6);
    '4' : SetFore(1);
    '5' : SetFore(5);
    '6' : SetFore(3);
    '7' : SetFore(7);
    '8' : SetFore(8);
    '9' : SetFore(12);
    'A' : SetFore(10);
    'B' : SetFore(14);
    'C' : SetFore(9);
    'D' : SetFore(13);
    'E' : SetFore(11);
    'F' : SetFore(15);
    Else
    Found := False;
    End;
    'n' : Case ColorCode[2] of
    '1' : MoveXY (1, CursorY + 1);
    Else
    Found := False;
    End;
    'q' : Case ColorCode[2] of
    '1' : ;
    Else
    Found := False;
    End;
    'z' : Case ColorCode[2] of
    '0' : SetBack(0);
    '1' : SetBack(4);
    '2' : SetBack(2);
    '3' : SetBack(6);
    '4' : SetBack(1);
    '5' : SetBack(5);
    '6' : SetBack(3);
    '7' : SetBack(7);
    Else
    Found := False;
    End;
    Else
    Found := False;
    End;

    If Not Found Then Begin
    AddChar (#25);
    OneChar (ColorCode[1]);
    OneChar (ColorCode[2]);
    End;

    GotCNETY := False;
    ColorCode := '';
    End;

    Exit;
    End

    --- Mystic BBS v1.12 A42 2018/12/31 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From Digital Man@21:1/183 to g00r00 on Wed Jan 23 14:08:40 2019
    Re: Re: CNet to Mystic..
    By: g00r00 to Digital Man on Wed Jan 23 2019 03:30 am

    Not sure if g00r00 did this on purpose with A42, but Mystic is reading MCI color commands now.. It's a nice surprise for someone who also runs CNet Amiga BBS and has my local messages bases networked between the tw systems..

    What are those codes - do you have a reference link/document?

    I wasn't able to find anything myself but I can paste you what I came up with. I am not entirely sure its 100% accurate and probably not complete as far as cursor movement functions and so on but I think the colors are correct at least.

    Thanks. How did you come up with them without a reference?

    digital man

    This Is Spinal Tap quote #27:
    As long as there's, y'know, sex and drugs, I can do without the rock and roll. Norco, CA WX: 69.5øF, 16.0% humidity, 1 mph WNW wind, 0.00 inches rain/24hrs --- SBBSecho 3.06-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (21:1/183)
  • From Bucko@21:4/131 to Digital Man on Wed Jan 23 18:05:00 2019
    On 22 Jan 2019, Digital Man said the following...

    Re: CNet to Mystic..

    What are those codes - do you have a reference link/document?

    digital man

    I can get you a list of the color codes. They are basically like Mystic back slash commands.. I will get together a list..

    --- Mystic BBS v1.12 A42 2018/12/30 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From Digital Man@21:1/183 to Bucko on Wed Jan 23 15:11:56 2019
    Re: Re: CNet to Mystic..
    By: Bucko to Digital Man on Wed Jan 23 2019 06:05 pm

    On 22 Jan 2019, Digital Man said the following...

    Re: CNet to Mystic..

    What are those codes - do you have a reference link/document?

    digital man

    I can get you a list of the color codes. They are basically like Mystic back slash commands.. I will get together a list..

    Sure, thanks.

    digital man

    Synchronet/BBS Terminology Definition #62:
    SSL = Secure Sockets Layer (precursor to TLS)
    Norco, CA WX: 67.8øF, 18.0% humidity, 1 mph SE wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.06-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (21:1/183)
  • From NuSkooler@21:1/121 to Digital Man on Wed Jan 23 21:15:22 2019
    On Wednesday, January 23rd Digital Man was heard saying...
    What are those codes - do you have a reference link/document?

    I had pointed g00r00 to ENiG's implementation and he ported it over. If they look right, that probably means I even got them right :X Got some basic info from aNACHRONiST a while back.

    Here is the same link I gave g00r00: https://github.com/NuSkooler/enigma-bbs/blob/0.0.9-alpha/core/color_codes.js#L2 50





    --- ENiGMA 1/2 v0.0.9-alpha (linux; x64; 10.13.0)
    * Origin: Xibalba -+- xibalba.l33t.codes:44510 (21:1/121)
  • From Digital Man@21:1/183 to NuSkooler on Wed Jan 23 21:32:12 2019
    Re: RE: CNet to Mystic..
    By: NuSkooler to Digital Man on Wed Jan 23 2019 09:15 pm


    On Wednesday, January 23rd Digital Man was heard saying...
    What are those codes - do you have a reference link/document?

    I had pointed g00r00 to ENiG's implementation and he ported it over. If they look right, that probably means I even got them right :X Got some basic info from aNACHRONiST a while back.

    Here is the same link I gave g00r00: https://github.com/NuSkooler/enigma-bbs /blob/0.0.9-alpha/core/color_codes.js#L2 50

    k, thx.

    digital man

    Synchronet/BBS Terminology Definition #29:
    FTN = FidoNet Technology Network
    Norco, CA WX: 53.0øF, 41.0% humidity, 0 mph SSW wind, 0.00 inches rain/24hrs --- SBBSecho 3.06-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (21:1/183)
  • From g00r00@21:1/108 to Digital Man on Thu Jan 24 03:21:28 2019
    I wasn't able to find anything myself but I can paste you what I came u with. I am not entirely sure its 100% accurate and probably not complet far as cursor movement functions and so on but I think the colors are correct at least.

    Thanks. How did you come up with them without a reference?

    I just exported a collection of messages from CNet that came through an echomail base in another network into .txt files, and then used that to test with. I was planning to ask someone using CNet to post a message with all of the colors in a single message for testing and verification but I never got that far before my vacation from work was up. So I just released what I had.

    I also cross referenced it with some javascript code someone else linked to me.

    --- Mystic BBS v1.12 A42 2019/01/23 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)
  • From g00r00@21:1/108 to Bucko on Thu Jan 24 03:21:56 2019
    I can get you a list of the color codes. They are basically like Mystic back slash commands.. I will get together a list..

    This would be great!

    --- Mystic BBS v1.12 A42 2019/01/23 (Windows/32)
    * Origin: Sector 7 [Mystic BBS WHQ] (21:1/108)