well i went to hashtables which is faster anyways....heres what i got...but im tryin to delete the offline nick if its online for another server but its not /hdel the nick from the offline hashtable if its there....i pry have the code wrong but im not getting any errors tho
code:
alias list.notifys {
hfree -w offline
hfree -w *.com
hfree -w *.net
hmake offline
var %x = 1
while $scon(%x) {
scon %x
hmake $server
var %unotify = 1
while ($notify(%unotify)) {
if (!$notify(%unotify).ison) {
hadd -m offline $notify(%unotify)
echo -s Offline: $notify(%unotify)
}
inc %unotify
}
var %notify = 1
while ($notify(%notify)) {
if ($notify(%notify).ison) {
if ($hfind(offline,$notify(%notify),w) == 0) { hadd -m $server $notify(%notify) }
else { hdel -w offline $notify(%notify) }
echo -s $server Online: $notify(%notify)
}
inc %notify
}
inc %x
}
}

any help please?