home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / ice.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-01  |  1KB  |  29 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. echo 'You decide to go for an ice skate on the rink below. You open the door and walk onto the ice rink...big Mistake!! As you walk into the room hundreds of zombies stand up on the ice and walk towards you. One of your ice skates gets jammed in the metal grid and the zombies
  9.  are rapidly approaching....The Zombies are about 2 meters away from you when you manage to rip off the ice skate...which way?'
  10.     echo 'There are exits to the North, South, East, West'
  11.     pull answer
  12.    Select
  13.     When answer = North then cmd = 'Nor.rexx'
  14.     When answer = N then cmd = 'Nor.rexx'
  15.     When answer = South then cmd = 'Sou.rexx'
  16.     When answer = S then cmd = 'Sou.rexx'
  17.     When answer = East then cmd = 'Eas.rexx'
  18.     When answer = E then cmd = 'Eas.rexx'
  19.     When answer = West then cmd = 'Wes.rexx'
  20.     When answer = W then cmd = 'Wes.rexx'
  21.     When answer = Shit then cmd = 'savini.rexx'
  22.     Otherwise cmd = 'ice.rexx'
  23.    End
  24.    Address command 'rx Dawn:bits/'cmd
  25.  
  26.  
  27.  
  28.   
  29.