Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DIAPERFURIX(6)
- ==============
- :doctype: manpage
- NAME
- ----
- diaperfurix - A diaperfur game with a unix-like design
- SYNOPSIS
- --------
- *new* 'player' 'gender' 'species'::
- creates a new player
- *interact* 'object' do 'command'::
- runs 'command' on 'object'
- *interact* 'object' take 'item'::
- take an 'item' from 'object'
- *interact* 'object' list::
- list items in 'object'
- *list* inventory::
- list items in inventory
- *list* objects::
- list objects in room
- *move* north|south|east|west|up|down::
- move to room toward this direction
- DESCRIPTION
- -----------
- Diaperfurix is an experimental diaperfur/babyfur themed game that is played by typing commands in a Unix shell. It uses a filesystem hierarchy in place of variables for simplicity. It is written in the KornShell language and requires a POSIX system and a ksh compatable shell to play (Sorry ash users). Some shells that support the KornShell language include bash, zsh, ksh93, the modified ksh88 in various UNIXes, dtksh, loksh, mksh, and pdksh
- You may need to set the shebang interpreter directive to the right shell by running the following in $DIAPERFURIX_HOME
- [source,bash]
- ----
- find * -type f|xargs sed -i 's|^#!.*$|#!/path/to/shell|'
- ----
- or if your sed can't do inplace editing
- [source,bash]
- ----
- find * -type f|xargs perl -pi -e 's|^#!.*$|#!/path/to/shell|'
- ----
- ENVIRONMENT
- -----------
- *DIAPERFURIX_HOME*::
- path to the top directory of the game
- AUTHOR
- ------
- Pouar The Dragon <[email protected]>
Add Comment
Please, Sign In to add comment