home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / lefty.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  910b  |  20 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 'You drop down into the leisure department and you feel like you are in paradise. The Zombies are safely locked behind a 2 inch thick glass wall and the room is filled with sporting equipment, clothes, sweets, food, Tvs, Computers and loads of other things. For the first 10 minutes you run around sampling the clothes and food and even playing basket ball in a proper net.'
  8. echo 'Do you feel like going ice skating??'
  9.    pull answer
  10.    Select
  11.     When answer = yes then cmd = 'ice.rexx'
  12.     When answer = y then cmd = 'ice.rexx'
  13.     When answer = No then cmd = 'sausage.rexx'
  14.     When answer = N then cmd = 'sausage.rexx'
  15.     When answer = Shit then cmd = 'savini.rexx'
  16.     otherwise cmd = 'lefty.rexx'
  17.     end
  18.     address command 'rx dawn:bits/'cmd
  19.  
  20.