• CNet to Mystic..

    From Bucko@21:4/131 to All on Sun Jan 20 20:41:01 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 06:05:19 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 12: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 Wed Jan 23 04:32:53 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 08:30:21 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 19: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 23:05:01 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 20: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 Thu Jan 24 02:15:23 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 Thu Jan 24 02: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 08:21:29 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 08:21:57 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)
  • From Bucko@21:4/131 to Digital Man on Tue Feb 5 01:46:01 2019
    Hi DM.. Dan Fitzgerald (K-Guide) new Writer and owner of CNet is going to log on your board and get you setup with what you will need to get the CNet color codes into Synchro..

    --- Mystic BBS v1.12 A42 2019/02/01 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From g00r00@21:1/108 to Bucko on Tue Feb 5 02:08:35 2019
    Hi DM.. Dan Fitzgerald (K-Guide) new Writer and owner of CNet is going
    to log on your board and get you setup with what you will need to get
    the CNet color codes into Synchro..

    Not sure how much he reads here, it might be better to contact him on a Synchronet area.

    --- Mystic BBS v1.12 A42 2019/02/01 (Linux/64)
    * Origin: Sector 7 (21:1/108)
  • From Digital Man@21:1/183 to Bucko on Tue Feb 5 00:09:11 2019
    Re: Re: CNet to Mystic..
    By: Bucko to Digital Man on Mon Feb 04 2019 08:46 pm

    Hi DM.. Dan Fitzgerald (K-Guide) new Writer and owner of CNet is going to log on your board and get you setup with what you will need to get the CNet color codes into Synchro..

    Cool, thanks!

    digital man

    This Is Spinal Tap quote #41:
    Ian Faith: It say's "Memphis show cancelled due to lack of advertising funds." Norco, CA WX: 49.4°F, 90.0% humidity, 0 mph WNW wind, 0.20 inches rain/24hrs --- SBBSecho 3.06-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (21:1/183)
  • From Avon@21:1/101 to g00r00 on Tue Feb 5 21:27:14 2019
    On 04 Feb 2019 at 09:08p, g00r00 pondered and said...

    Not sure how much he reads here, it might be better to contact him on a Synchronet area.

    DM has eyeballs everywhere :)

    Or bots that can do his bidding :)

    Best, Paul

    --- E:avon@bbs.nz ------ W:bbs.nz ---
    --- K:keybase.io/avon --------------

    --- Mystic BBS v1.12 A42 2019/02/01 (Windows/32)
    * Origin: Agency BBS | Dunedin, New Zealand | agency.bbs.nz (21:1/101)
  • From g00r00@21:1/108 to Avon on Tue Feb 5 04:26:51 2019
    Not sure how much he reads here, it might be better to contact him on Synchronet area.

    DM has eyeballs everywhere :)

    I mean... He is a digital man. I should not have doubted!

    --- Mystic BBS v1.12 A42 2019/02/01 (Linux/64)
    * Origin: Sector 7 (21:1/108)
  • From g00r00@21:1/108 to Bucko on Tue Feb 5 04:27:30 2019
    Hi DM.. Dan Fitzgerald (K-Guide) new Writer and owner of CNet is going
    to log on your board and get you setup with what you will need to get
    the CNet color codes into Synchro..

    Does that mean the codes I gave him were wrong? I'd like to make sure I have the colors right too.

    --- Mystic BBS v1.12 A42 2019/02/01 (Linux/64)
    * Origin: Sector 7 (21:1/108)
  • From Digital Man@21:1/183 to g00r00 on Tue Feb 5 02:03:39 2019
    Re: Re: CNet to Mystic..
    By: g00r00 to Bucko on Mon Feb 04 2019 11:27 pm

    Hi DM.. Dan Fitzgerald (K-Guide) new Writer and owner of CNet is going to log on your board and get you setup with what you will need to get the CNet color codes into Synchro..

    Does that mean the codes I gave him were wrong? I'd like to make sure I have the colors right too.

    I'll share whatever I learn. Probably at wiki.synchro.net.

    digital man

    Synchronet/BBS Terminology Definition #13:
    CP437 = Code Page 437 (so-called IBM Extended ASCII)
    Norco, CA WX: 48.3°F, 92.0% humidity, 9 mph E wind, 0.28 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 Tue Feb 5 07:37:48 2019
    I'll share whatever I learn. Probably at wiki.synchro.net.

    Sounds good, thanks much appreciated!

    --- Mystic BBS v1.12 A42 2019/02/01 (Linux/64)
    * Origin: Sector 7 (21:1/108)
  • From Bucko@21:4/131 to g00r00 on Wed Feb 6 01:49:07 2019
    On 04 Feb 2019, g00r00 said the following...

    Not sure how much he reads here, it might be better to contact him on a Synchronet area.


    Thanks I will do that.. :)

    --- Mystic BBS v1.12 A42 2019/02/01 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From Bucko@21:4/131 to Digital Man on Wed Feb 6 01:50:43 2019

    On 04 Feb 2019, Digital Man said the following...


    Cool, thanks!


    No sweat... :)

    --- Mystic BBS v1.12 A42 2019/02/01 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)
  • From Bucko@21:4/131 to g00r00 on Wed Feb 6 01:52:55 2019
    On 04 Feb 2019, g00r00 said the following...

    Does that mean the codes I gave him were wrong? I'd like to make sure I have the colors right too.


    `I doubt it because they look fine on my end.. I can tell Dan to get in touch with you too if you would like.. :)

    --- Mystic BBS v1.12 A42 2019/02/01 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (21:4/131)