Optional +v -v for ChatSpace
Platform: mIRC
Published Jan 23, 2012
Updated Mar 15, 2013
Here's another snippet that I put together, While being on my server, I got tired of giving people Strict Moderation Voice and them not wanting it and having to remove it. so i came up with this. Pretty self-explanatory , basically, if a chatter wants their mode on Strict Moderation Voice can type !green, and the bot with issue them strict moderation voice, if they later decide they don't want it, because they are bipolar or something, all they have to do is type !ungreen. the bot will then take their Strict Moderation Voice status.
Changed the Green stuff to + or - V
On ^*:Text:*:#:{
if ($strip($1) == !+v) {
mode $chan +v $nick
msg $chan Here ya go, $nick
}
if ($strip($1) == !-v) {
mode $chan -v $nick
msg $chan There ya go, $nick
}
}