home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / hellz.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  773b  |  32 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. wait 1
  8.  
  9.  
  10. say 'Ok.... you will be transported to a random location in the game. And try not to
  11.  swear again or you will return to HELL'
  12.   address command 'wait 3'
  13.       echo 'Selecting Random Location in Game...'
  14.  address command 'wait 1'
  15.  echo '*** 3 ***'
  16.  address command 'wait 1'
  17.  echo '*** 2 ***'
  18.  address command 'wait 1'
  19.  echo '*** 1 ***'
  20.  address command 'wait 1'
  21.  
  22. r = Random(1,5,Time('S'))
  23. Select
  24.  When r = 1 then cmd = 'vents.rexx'
  25.  When r = 2 then cmd = 'seuth.rexx'
  26.  When r = 3 then cmd = 'Smee.rexx'
  27.  When r = 4 then cmd = 'shop.rexx'
  28.  Otherwise cmd = 'escalator.rexx'
  29. End
  30. Address command 'rx dawn:bits/'cmd
  31.  
  32.