• .MPS output-> .ANS/.ASC/.TXT

    From syrinxcultist@21:1/167 to All on Sunday, December 24, 2017 13:35:51
    How would you output a script file to a ansi/ascii/text file?
    Output doesn't have to be seen by user...
    I just want a screen of the output.

    |06/Ú¿=¿Ú.Ú¿úöú¿.¿/ýÚÄ=¿Ú.³.Åúöú.Ú¿=Å:
    |06ÀÙ1~À´~Á~~ÁþÙ³~/À~ÀÄ›ÀÁ:³/ÀþÁ~ÀÙ1~À.

    --- Mystic BBS v1.12 A36 2017/12/03 (Linux/64)
    * Origin: tEMPLEoFsYRINX.info : <3 mystic (21:1/167)
  • From dream master@21:1/163 to syrinxcultist on Sunday, December 24, 2017 12:08:32
    On 12/24/17, syrinxcultist said the following...
    How would you output a script file to a ansi/ascii/text file?
    Output doesn't have to be seen by user...
    I just want a screen of the output.

    you have to fassign() frewrite() fwriteln() fclose()

    so quick dirty way

    vat

    txt : file;
    str : string;

    begin
    fassign(txt, 'c;\mystic\filename.txt',66);
    frewrite(txt);
    fwriteln('blah blah blah' + str);
    fclose(txt);
    end

    you could also add the MX menu command and email it to you as well..

    |08 .|05ú|13ù|15Dr|07e|08am Ma|07st|15er|13ù|05ú|08.
    |08 øù|05ú|13ùø |13øù|05ú|08ùø
    |11 DoRE|03!|11ACiDiC|03!|11Demonic |08[|15dreamland|09.|15darktech|09.|15org|08]

    --- Mystic BBS v1.12 A36 2017/12/03 (Windows/64)
    * Origin: |08--[|15!|07dreamland BBS dreamland.darktech.org (21:1/163)
  • From Gryphon@21:1/120 to syrinxcultist on Monday, December 25, 2017 10:50:03
    On 12/24/17, syrinxcultist said the following...

    How would you output a script file to a ansi/ascii/text file?
    Output doesn't have to be seen by user...
    I just want a screen of the output.

    I use appendtext() as quick and dirty output to text files.
    appendtext(/path/to/to/file.txt,'text to add to the file.')

    --- Mystic BBS v1.12 A37 2017/12/13 (Linux/64)
    * Origin: Cyberia BBS | cyberia.darktech.org | San Jose, CA (21:1/120)
  • From syrinxcultist@21:1/167 to Gryphon on Monday, December 25, 2017 14:48:41
    How would you output a script file to a ansi/ascii/text file?
    Output doesn't have to be seen by user...
    I just want a screen of the output.

    I use appendtext() as quick and dirty output to text files.
    appendtext(/path/to/to/file.txt,'text to add to the file.')

    I'd like the output of the script to go to the ascii file...
    What I'd like to do is have a file of the output of your Latest Files
    Bulletin mod.

    |06/Ú¿=¿Ú.Ú¿úöú¿.¿/ýÚÄ=¿Ú.³.Åúöú.Ú¿=Å:
    |06ÀÙ1~À´~Á~~ÁþÙ³~/À~ÀÄ›ÀÁ:³/ÀþÁ~ÀÙ1~À.

    --- Mystic BBS v1.12 A36 2017/12/03 (Linux/64)
    * Origin: tEMPLEoFsYRINX.info : <3 mystic (21:1/167)