home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 8 / amigaformatcd08.iso / screenplay / shareware / mancala / arexx / vermittler.rexx
OS/2 REXX Batch file  |  1996-09-30  |  369b  |  22 lines

  1. /* Synchron-Skript für 2 Mancala's auf einem Rechner */
  2.  
  3. parse arg aufruf kommando spieler feld
  4.  
  5. if aufruf=1 then
  6.  address 'Mancala.2'
  7. else
  8.  address 'Mancala.1'
  9.  
  10. options results
  11.  
  12. callpause 0 3 0
  13.  
  14. select
  15. when kommando='Undo' then callundo
  16. when kommando='Neu' then callneu
  17. when kommando='Spielende' then callspielende
  18. when kommando='Zug' then callzug feld
  19. otherwise
  20. end
  21.  
  22.