home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1997 #4
/
amigaacscoverdisc1997-041997.iso
/
w_acs_6'97
/
delitracker_ii
/
files
/
arexx.lzx
/
Arexx
/
dt_random.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2016-02-11
|
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