hello .. i am trying to make a black-list script over a week and i dont know what is the problem ... it should normally work
Here is it :

on 10:TEXT:!blist *:#: { //mode $chan -o $2 //mode $chan +b $address($2,3) | //kick $chan $2 0,4! 0,2Blacklisted 0,4! | //write blist\blist.txt $address($2,3) }
on *:JOIN:#kappa:{
var %blist = $read(blist\blist.txt, s, $address($nick,3))
if (%blist == $null) { notice $nick 0,4Welcome to  $chan  }
else { //mode $chan -o $nick | //mode $chan +b $address($nick,3) | //kick $chan $nick 0,4! 0,2Blacklisted 0,4! }
}


Does anyone have any ideea why doesnt it work ? confused