k what im trying to do is when i join channel it saves it to a %var but after 5 channels it pushes the first one off and saves the newest one to 5 spot....
kinda like this:
%resentchannels #1 #2 #3 #4 #5
and then after
%resentchannels #2 #3 #4 #5 #
i hope i made tihs clear =/
alias join {
if ($numtok(%resentchannels,32) >= 5) {
set %resentchannels $stip(%resentchannels,2) $stip(%resentchannels,3) $stip(%resentchannels,4) $stip(%resentchannels,5) $1-
join $1-
}
else {
set %resentchannels %resentchannels $1-
join $1-
}
}