I have found, if you call a script in the perform section and do it there, it works fine.. here is a brief example (in my perform section for ALL nets i do: /dopass )
ALIAS dopass {
#set some variables for testing
set %passdone 0
set %operdone 0
set %modedone 0
set %sudone 0
# do for network xxxxxx
IF ($network == xxxxx) {
timerentr1 1 03 /ns identify xxxxxx
timerentr2 1 03 /join -n #help
timerentr3 1 03 /join -n #mIRC
timerentr4 1 03 /join -n #another_channel
}
# do for network yyyyy
IF ($network == yyyyy) {
timers and commands for this net...
}
# add more nets here if needed
..... etc...
# close the dopass command
}
#all done!
Last edited by HorseC; 28/04/12 03:01 AM.