home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / deader / bits / outside.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-21  |  2KB  |  43 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 head ontop of the building, there are numerous puddles up here and strangely a tennis racket and balls. You decide to have a quick game of tennis and begin to hit the balls against the wall to release your anger....Meanwhile down below at the very bottom of the building there are still lots of zombies scratching at the entrance to the shopping Mall.'
  9.  echo 'Look over the edge of the building? Yes or No?'
  10.     pull answer
  11.    Select
  12.     When answer = Yes then cmd = 'You look over the edge of the building and see the many zombies below...nothing else interests you..'
  13.     When answer = No then cmd = 'You decide not to look over the edge of the building..nothing else interests you here..'
  14.     When answer = Y then cmd = 'You look of the edge over the building and see the many zombies below...nothing else interests you..'
  15.     When answer = N then cmd = 'Youre too afraid to look over the edge of the building in case you fall...nothing else interests you here..'
  16.     When answer = Shit then cmd = 'You are a very rude person....'
  17.    Otherwise cmd = 'I dont understand, bottom breath..'
  18.    End
  19.    echo cmd
  20.  
  21.    echo '[PUSH RETURN]'
  22.    pull answer
  23.  
  24.    echo 'You suddenly see lots of pipes, closer inspection shows that these pipes lead to different parts of the Mall'
  25.          echo 'There are ten pipes you could go down... pick a pipe 1-10'
  26.     pull answer
  27.    Select
  28.     When answer = 1 then cmd = 'seuth.rexx'
  29.     When answer = 2 then cmd = 'Eest.rexx'
  30.     When answer = 3 then cmd = 'Nerth.rexx'
  31.     When answer = 4 then cmd = 'roght.rexx'
  32.     When answer = 5 then cmd = 'est.rexx'
  33.     When answer = 6 then cmd = 'nth.rexx'
  34.     When answer = 7 then cmd = 'shop.rexx'
  35.     When answer = 8 then cmd = 'laft.rexx'
  36.     When answer = 9 then cmd = 'Zero.rexx'
  37.     When answer = 10 then cmd = 'nth.rexx'
  38.     When answer = Shit then cmd = 'savini.rexx'
  39.     Otherwise cmd = 'outside.rexx'
  40.    End
  41.    Address command 'rx Dawn:bits/'cmd
  42.  
  43.