Annihiluz

Annihiluz

Joined
Jan 07, 2011

Activity Stream

Annihiluz commented on a Page, Zombies! v1.4  -  Jun 20, 2013

Evilmonkey we should get together again sometime, i loved working on some of the ideas in the last update with you back on GV
irc.gamereaper.net

~Anthrax

 Respond  
Annihiluz commented on a Page, Bad word kick/ban ( text , emote , notice )  -  Jul 18, 2012

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

ADDWORD Unknown command

got this first time i tried to do anything: here is my edit that still has a minor flaw and repeats the "word is already added"

on *:CONNECT: {
if (!%badwords) { set %badwords put,words,here,seperated,by,commas }
echo -a %badwords has been set {
else { echo -a The badwords have already been set. }
}
}

alias bdwd {
if (!%badwords) { set %badwords put,words,here,seperated,by,commas }
echo -a %badwords has been set {
else { echo -a The badwords have already been set. }
}
}
alias addword {
if (!$1) { echo Please specify something to be added. | halt }
var %i 1
while (%i <= $0) {
if ($istok(%badwords, $ [ $+ [ %i ] ] ,44)) { echo -a That word or words is already in the list | halt | inc %i }
set %badwords $replace($addtok(%badwords,$1-,32),$chr(32),$chr(44))
echo The new list is --> %badwords
}
}

alias delword {
if (!$1) { echo Please specify something to be removed. | halt }
if (!$istok(%badwords,$1,44)) { echo -a That word is not in the list. | halt }
else {
set %badwords $remtok(%badwords,$1,44)
echo The new list is --> %badwords
}
}

on @:text::#: {
var %i 1
while (%i <= $0) {
if ($istok(%badwords, $ [ $+ [ %i ] ] ,44)) { msg $chan Please do not use such language in $chan again. | timer 1 3 kick # $nick $nick $+ , To the curb with you gutter mouth! 30 Second ban. | timer 1 5 ban -u30 $chan $address($nick,2) | halt | inc %i }
else { halt }
}
}

on @:action::#: {
var %i 1
while (%i <= $0) {
if ($istok(%badwords, $ [ $+ [ %i ] ] ,44)) { msg $chan Please do not emote such language in $chan again. | timer 1 3 kick # $nick $nick $+ , To the curb with you gutter mouth! 30 Second ban. | timer 1 5 ban -u30 $chan $address($nick,2) | halt | inc %i }
else { halt }
}
}

on @:notice::#: {
var %i 1
while (%i <= $0) {
if ($istok(%badwords, $ [ $+ [ %i ] ] ,44)) { msg $chan Please do not notice such language in $chan again. | timer 1 3 kick # $nick $nick $+ , To the curb with you gutter mouth! 30 Second ban. | timer 1 5 ban -u30 $chan $address($nick,2) | halt | inc %i }
else { halt }
}
}

 Respond  
Annihiluz commented on a Page, Bad word kick/ban ( text , emote , notice )  -  Jul 18, 2012

this has absolutely horrible bracket matching
took me 2 mins to track down why it wasnt doing ANYTHING

 Respond  
Annihiluz commented on a Page, Mass Stuff  -  Feb 13, 2011

Definately needs lots of work, nothing works for me but the current channel modes which i can see in my title bar.

 Respond  
Annihiluz commented on a Page, Hyper's Poll Script  -  Jan 30, 2011

All you guys need to do is add an on *:text: that references the alias and change the echo: poll question etc to .msg $nick, this is a very useful script, kudos, saved me a lot of time to write one as i just came upon a use for it :)

 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.