Quote:
Thanks you a lot!
I have putted that this way:
ON ME:*:JOIN:#A:join #B
ON ME:*:JOIN:#B:join #C
ON ME:*:JOIN:#C:join #D
ON ME:*:JOIN:#D:join #E
Now i don't have to type again and again the /join command when i start mirc laugh


Actually seperate ON JOIN events are not needed you can do

ON ME:*:JOIN:#:{
if (#A = #) { join #B }
elseif (#B = #) { join #C }
elseif (#C = #) { join #D }
elseif (#D = #) { join #E }
}

or you can simply do this script since really your jumping from A to B to C etc.. which is not neccessary

On *:CONNECT:join #A,#B,#C,#D,#E

this script will join #A-#E when you connect to any server now if you want to be specific about the servers do

ON *:CONNECT:if $server == yourserver join #A,#B,#C,#D,#E

You might need a timer but most likely not.