|
Auto List Generation
(V2.70+) |
Previous Top Next |
Auto List Generation
Previous Top Next
QuickList or ListMagic may be run by a mirc command line
/OS.Auto.Makelists
This will create all lists if multiple lists are defined
==========
These commands may be used with a timer, and added to MIRC's remotes
Example 1: Lists, made every day at 1 am
in MIRC Remotes:
on *:connect: {
.timermakelist -o 01:00 1 1 /OS.Auto.Makelists }
==========
Example 2: Lists, made only on Saturday morning at 3am
on *:connect: {
.timermakelist -o 03:00 1 1 /MakeLists
}
alias MakeLists {
if ( $day == Saturday ) { /OS.Auto.Makelists }
}
==========
Example 3: Lists, made twice a week, Saturday & Wednesday morning at 3am
on *:connect: {
.timermakelist -o 03:00 1 1 /MakeLists
}
alias MakeLists {
if (( $day == Saturday ) || ( $day == Wednesday )) { /OS.Auto.Makelists }
}