If aome one can add a check system .. really appreciated
Thanks in advance
Code: Select all
set chanserv "chanserv@services.dal.net"
setudef flag chanserv
###Chanserv Add Akick
proc accessakick {nick host handle channel testes} {
global nxg chanserv
if {[channel get $channel chanserv]} {
set who [lindex $testes 0]
set reason [lrange $testes 1 end]
if {$reason == ""} {set reason "\0032In \00312compliance \0032with the aDministration of \00312$channel\017 \002\037\0037(\017\00312\u00bb\0031\002j\002a\0034\002D\002u\0031\u00ae\00312\u00ab\0037\002\037)\017"
}
putserv "PRIVMSG $chanserv :akick $channel add $who $reason"
putserv "NOTICE $nick :$who added to $channel Akick list."
putlog "$nick added $who to the Akick list in $channel"
}
}
###End Of Chanserv Add Akick
###Chanserv Remove Akick
proc accessremoveakick {nick host handle channel testes} {
global nxg chanserv
if {[channel get $channel chanserv]} {
set who [lindex $testes 0]
putserv "PRIVMSG $chanserv :akick $channel del $who"
putserv "NOTICE $nick :$who deleted from $channel Akick list."
putlog "$nick removed $who from the Akick list in $channel"
}
}
###End Of Chanserv Remove Akick