Salvia wrote:
it is not an auto voice script!!!!!!!!!!!!!!!!
it is a auto VIP script
our IRCd server has this mode it is +V
as we all know voice is +v
I set the user flag to +fV on the bot for my channel and when he joins nothing happens
________________________________________________________
bind join V|V * join:mbti_autovip
bind join - * join:mbti_cautovip
proc join:mbti_autovip {nick host hand chan} {
pushmode $chan +V $nick
}
proc join:mbti_cautovip {nick host hand chan} {
if {[matchchanattr $hand V $chan]} {pushmode $chan +V $nick}
}
Salvia wrote:Salvia wrote:
it is not an auto voice script!!!!!!!!!!!!!!!!
it is a auto VIP script
our IRCd server has this mode it is +V
as we all know voice is +v
I set the user flag to +fV on the bot for my channel and when he joins nothing happens
________________________________________________________
bind join V|V * join:mbti_autovip
bind join - * join:mbti_cautovip
proc join:mbti_autovip {nick host hand chan} {
pushmode $chan +V $nick
}
proc join:mbti_cautovip {nick host hand chan} {
if {[matchchanattr $hand V $chan]} {pushmode $chan +V $nick}
}
Code: Select all
bind join S * join_auto_op
proc join_auto_op {nick host hand chan} {
putserv "mode $chan +V $nick"
}