home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games 1995 January
/
amigagames-1995-01.iso
/
arexx
/
dt_random.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-04-15
|
221b
|
19 lines
/* DeliTracker - toggles random module */
address 'DELITRACKER'
options results
status G rmo
if result == "no" then do
randmod yes
say "Random is now on..."
end
else do
randmod no
say "Random is now off..."
end