home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / lefty2.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  530b  |  19 lines

  1. /*
  2. \\  Dawn Of The Dead RPG  - By Gareth Murfin
  3. //  Game created in Arexx - ver$  Dawn Of The Dead RPG v1.0a
  4. \\
  5. */
  6. address command 'Dawn:bits/style R 2'
  7. echo 'Do you feel like going ice skating??'
  8.    pull answer
  9.    Select
  10.     When answer = yes then cmd = 'ice.rexx'
  11.     When answer = y then cmd = 'ice.rexx'
  12.     When answer = No then cmd = 'sausage.rexx'
  13.     When answer = N then cmd = 'sausage.rexx'
  14.     When answer = Shit then cmd = 'savini.rexx'
  15.     otherwise cmd = 'lefty.rexx'
  16.     end
  17.     address command 'rx dawn:bits/'cmd
  18.  
  19.