home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / smee.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  913b  |  26 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.  
  8. say 'You enter a large room.....there are 4 exits and the room looks as though it has never been touched
  9.  by the zombies.....you could be safe here for a while...'
  10.       echo 'North East South or West or Wait?'
  11.     pull answer
  12.    Select
  13.     When answer = west then cmd = 'wst.rexx'
  14.     When answer = north then cmd = 'est.rexx'
  15.     When answer = east then cmd = 'nth.rexx'
  16.     When answer = south then cmd = 'sot.rexx'
  17.     When answer = w then cmd = 'wst.rexx'
  18.     When answer = n then cmd = 'est.rexx'
  19.     When answer = e then cmd = 'nth.rexx'
  20.     When answer = s then cmd = 'sot.rexx'
  21.     When answer = Wait then cmd = 'waity.rexx'
  22.     When answer = Shit then cmd = 'savini.rexx'
  23.     Otherwise cmd = 'smee.rexx'
  24.    End
  25.    Address command 'rx Dawn:bits/'cmd
  26.