• Re: Save game per user for Infocom type games as doors

    From Nathanael Culver@3:770/3 to All on Fri Sep 6 19:15:17 2019
    Here’s how I’m doing it under Linux:

    (DD) /mystic/doors/info come/infocom %# <datfile name>

    And my Infocom bash script:

    #!/bin/bash
    trap '' 2

    homedir=/mystic/doors/infocom
    savedir=$homedir/save/$1/$2
    game=$homedir/$.dat

    mkdir -p $savedir
    cd $savedir
    Frotz -w -l 1 -r 2 -x $game


    I keep all the .dat files in $homedir.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Nathanael Culver@3:770/3 to All on Fri Sep 6 19:18:13 2019
    *eyeroll*

    Guess I should remember to check dates on the thread before replying :)

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Shane O'Neill@3:770/3 to Nathanael Culver on Sat Sep 7 07:29:55 2019
    On Friday, September 6, 2019 at 8:18:14 PM UTC-6, Nathanael Culver wrote:
    *eyeroll*

    Guess I should remember to check dates on the thread before replying :)

    I did solve it a while ago but your input I know is valuable as it is sure to help someone in the future!

    Thanks for sharing!!!

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)