Auto List Generation
Previous Top Next
QuickList or ListMagic may be run by a mirc command line
Example: list name: 'default' mirc command:
/os.make.list default auto
Example: list name: 'books' mirc command:
/os.make.list books auto
These commands may be used with a timer, and added to MIRC's perform
WARNING ! Only ONE list may be made at a time, be sure the timers have enough time between each list to finish before next list is started, or list making WILL fail
==========
Example 1: 4 lists, made every day at 1 am, with 5 minutes for each list
in MIRC Remotes:
on *:connect: {
.timermakelist -o 01:00 1 1 /MakeLists
}
alias MakeLists {
os.make.list techbooks auto
.timerlistb 1 300 /os.make.list books auto
.timerlistc 1 600 /os.make.list cdcovers auto
.timerlistd 1 900 /os.make.list default auto
}
==========
Example 2: 4 lists, made only on Saturday morning at 3am, with 10 minutes for each list
on *:connect: {
.timermakelist -o 03:00 1 1 /MakeLists
}
alias MakeLists {
if ( $day == Saturday ) {
os.make.list techbooks auto
.timerlistb 1 600 /os.make.list books auto
.timerlistc 1 1200 /os.make.list cdcovers auto
.timerlistd 1 1800 /os.make.list default auto
}
}
==========
Example 3: 4 lists, made twice a week, Saturday & Wednesday morning at 3am, with 10 minutes for each list
on *:connect: {
.timermakelist -o 03:00 1 1 /MakeLists
}
alias MakeLists {
if (( $day == Saturday ) || ( $day == Wednesday )) {
os.make.list techbooks auto
.timerlistb 1 600 /os.make.list books auto
.timerlistc 1 1200 /os.make.list cdcovers auto
.timerlistd 1 1800 /os.make.list default auto
}
}