Simple status giver.

By T7Davey on Aug 23, 2007

It's a very simple bots remote script, which can give status to you or someone else status.

I also got help from a freind called Magix and a little help from napa182

on *:text:-voice*:#:{
  mode $chan +v $nick
  msg $chan $nick has been VOICED!!
}
on *:text:-devoice*:#:{
  mode $chan -v $nick
  msg $chan $nick has been DEVOICED!!
}
on *:text:-halfop*:#:{
  mode $chan +h $nick
  msg $chan $nick has been HALFOPED!!
}
on *:text:-dehalfop*:#:{
  mode $chan -h $nick
  msg $chan $nick has been DEHALFOPED!!
}
on *:text:-op*:#:{
  mode $chan +o $nick
  msg $chan $nick has been OPED!!
}
on *:text:-deop*:#:{
  mode $chan -o $nick
  msg $chan $nick has been DEOPED!!
}
on *:text:-protect*:#:{
  mode $chan +a $nick
  msg $chan $nick has been PROTECTED!!
}
on *:text:-deprotect*:#:{
  mode $chan -a $nick
  msg $chan $nick has been DEPROTECTED!!
}
alias botowner { set %botowner $1 | echo -a Bot Owner Is Now $1 }
on *:text:-owner*:#:{
  if ($nick == %botowner) {      
    mode $chan +q $nick
    msg $chan $nick has been lucky to get OWNER!!
  }
}
on *:text:-deowner*:#:{
  if ($nick == %botowner) {      
    mode $chan -q $nick
    msg $chan $nick was unlucky to lose their OWNER!!
  }
}

Comments

Sign in to comment.
T7Davey   -  Aug 23, 2007

Napa, I took your advice and added it into the snippet :)

 Respond  
napa182   -  Aug 23, 2007

You could set Ur self as Owner in Ur Bot\'s user Tab Then you You can do

on owner:text:-owner*:#:{
  mode $chan +q $nick
  msg $chan $nick has been lucky to get OWNER!!
}

Or You can add an alias and set Ur Self as bot Owner Like

alias botowner { set %botowner $1 | echo -a Bot Owner Is Now $1 }

Then You Can do

on *:text:-owner*:#:{
  if ($nick == %botowner) {      
    mode $chan +q $nick
    msg $chan $nick has been lucky to get OWNER!!
  }
}
 Respond  
guest598594   -  Aug 23, 2007

that means anyone could type -owner and theyre the owner :/

 Respond  
zad0909   -  Aug 23, 2007

+e is pretection from banning.

 Respond  
zad0909   -  Aug 23, 2007

+a is admin.

 Respond  
T7Davey   -  Aug 23, 2007

I hope you enjoy it, I might add in admin users soon.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.