Advertisement
pouar

diaperfur.6

Apr 1st, 2016
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. '\" t
  2. .\" Title: diaperfurix
  3. .\" Author: [see the "AUTHOR" section]
  4. .\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
  5. .\" Date: 04/01/2016
  6. .\" Manual: \ \&
  7. .\" Source: \ \&
  8. .\" Language: English
  9. .\"
  10. .TH "DIAPERFURIX" "6" "04/01/2016" "\ \&" "\ \&"
  11. .\" -----------------------------------------------------------------
  12. .\" * Define some portability stuff
  13. .\" -----------------------------------------------------------------
  14. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. .\" http://bugs.debian.org/507673
  16. .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  17. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  18. .ie \n(.g .ds Aq \(aq
  19. .el .ds Aq '
  20. .\" -----------------------------------------------------------------
  21. .\" * set default formatting
  22. .\" -----------------------------------------------------------------
  23. .\" disable hyphenation
  24. .nh
  25. .\" disable justification (adjust text to left margin only)
  26. .ad l
  27. .\" -----------------------------------------------------------------
  28. .\" * MAIN CONTENT STARTS HERE *
  29. .\" -----------------------------------------------------------------
  30. .SH "NAME"
  31. diaperfurix \- A diaperfur game with a unix\-like design
  32. .SH "SYNOPSIS"
  33. .PP
  34. \fBnew\fR \fIplayer\fR \fIgender\fR \fIspecies\fR
  35. .RS 4
  36. creates a new player
  37. .RE
  38. .PP
  39. \fBinteract\fR \fIobject\fR do \fIcommand\fR
  40. .RS 4
  41. runs
  42. \fIcommand\fR
  43. on
  44. \fIobject\fR
  45. .RE
  46. .PP
  47. \fBinteract\fR \fIobject\fR take \fIitem\fR
  48. .RS 4
  49. take an
  50. \fIitem\fR
  51. from
  52. \fIobject\fR
  53. .RE
  54. .PP
  55. \fBinteract\fR \fIobject\fR list
  56. .RS 4
  57. list items in
  58. \fIobject\fR
  59. .RE
  60. .PP
  61. \fBlist\fR inventory
  62. .RS 4
  63. list items in inventory
  64. .RE
  65. .PP
  66. \fBlist\fR objects
  67. .RS 4
  68. list objects in room
  69. .RE
  70. .PP
  71. \fBmove\fR north|south|east|west|up|down
  72. .RS 4
  73. move to room toward this direction
  74. .RE
  75. .SH "DESCRIPTION"
  76. .sp
  77. 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
  78. .sp
  79. You may need to set the shebang interpreter directive to the right shell by running the following in $DIAPERFURIX_HOME
  80. .sp
  81. .if n \{\
  82. .RS 4
  83. .\}
  84. .nf
  85. find * \-type f|xargs sed \-i \*(Aqs|^#!\&.*$|#!/path/to/shell|\*(Aq
  86. .fi
  87. .if n \{\
  88. .RE
  89. .\}
  90. .sp
  91. or if your sed can\(cqt do inplace editing
  92. .sp
  93. .if n \{\
  94. .RS 4
  95. .\}
  96. .nf
  97. find * \-type f|xargs perl \-pi \-e \*(Aqs|^#!\&.*$|#!/path/to/shell|\*(Aq
  98. .fi
  99. .if n \{\
  100. .RE
  101. .\}
  102. .SH "ENVIRONMENT"
  103. .PP
  104. \fBDIAPERFURIX_HOME\fR
  105. .RS 4
  106. path to the top directory of the game
  107. .RE
  108. .SH "AUTHOR"
  109. .sp
  110. Pouar The Dragon <pouar@pouar\&.net>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement