Advertisement
pouar

diaperfurix.6

Mar 16th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. .TH DIAPERFURIX 6 "23 Nov 2015" "1.0" "Diaperfurix man page"
  2. .SH NAME
  3. Diaperfurix - A diaperfur game with a unix-like design
  4. .SH SYNOPSIS
  5. \fBnew\fP \fIplayer\fP \fIgender\fP \fIspecies\fP
  6. .RS
  7. .sp
  8. creates a new player
  9. .RE
  10. .sp
  11. \fBinteract\fP \fIobject\fP do \fIcommand\fP
  12. .sp
  13. .RS
  14. runs \fIcommand\fP on \fIobject\fP
  15. .RE
  16. .sp
  17. \fBinteract\fP \fIobject\fP take \fIitem\fP
  18. .sp
  19. .RS
  20. take an \fIitem\fP from \fIobject\fP
  21. .RE
  22. .sp
  23. \fBinteract\fP \fIobject\fP list
  24. .sp
  25. .RS
  26. list items in \fIobject\fP
  27. .RE
  28. .sp
  29. \fBlist\fP inventory
  30. .sp
  31. .RS
  32. list items in inventory
  33. .RE
  34. .sp
  35. \fBlist\fP objects
  36. .sp
  37. .RS
  38. list objects in room
  39. .RE
  40. .sp
  41. \fBmove\fP north|south|east|west|up|down
  42. .sp
  43. .RS
  44. move to room toward this direction
  45. .RE
  46. .SH DESCRIPTION
  47. 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
  48. .sp
  49. .sp
  50. You may need to set the shebang interpreter directive to the right shell by running the following in $DIAPERFURIX_HOME
  51. .sp
  52. \fBfind\fP * -type f|\fBxargs\fP \fBsed\fP -i 's|^#!.*$|#!/path/to/shell|'
  53. .sp
  54. or if your sed can't do inplace editing
  55. .sp
  56. \fBfind\fP * -type f|\fBxargs\fP \fBperl\fP -pi -e 's|^#!.*$|#!/path/to/shell|'
  57. .SH ENVIRONMENT
  58. .TP
  59. .B DIAPERFURIX_HOME
  60. path to the top directory of the game
  61. .SH AUTHOR
  62. Pouar The Dragon ([email protected])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement