Skip to content
MSN Addons

How do they do that?

A TG007 community discussion started by sugarboy.

Discussion 4 posts
Page 1 of 1
Open
Topic #4308 · 4 published posts · 617 views

I was in a room, and they were messing around and would type -silence <nickname> and when the did that if that nickname spoke or actioned it would kick them, and continue to until they typed -speak <nickname> How do they do that?

*Insert interesting signature here*

Add this to popups nicklist.

Silence List
.Add $msn.decode($$1) to silence list:auser quiet $address($$1,1) $1 | privmsg $chan  $$1 You have been added to my silence list if you talk in the room you will be kicked :|
.Remove $msn.decode($$1) from silence list:ruser quiet $address($$1,1) $1 | privmsg $chan  $$1 You have been removed from my silence list. You may now talk :)

 

Add the following to a new remote.

on admin:TEXT:*:*: { 
 if (-silence isin $1) auser quiet $address($2,1) $2 
 if (-speak isin $1) ruser quiet $address($2,1) $2
}
on quiet:TEXT:*:*: { kick $chan $nick Shhhhhhh i said NO TALKING :@ }

Edited Aug 3, 2005 1:00 AM by Mail

 

"Diplomacy is the art of saying 'Nice doggie' until you can find a rock".-Will Rogers

Hey thanks for that, I was just expecting someone to explain it, but That helps even more.

*Insert interesting signature here*

You are welcome and I also edited the above to include the particular commands.

 

"Diplomacy is the art of saying 'Nice doggie' until you can find a rock".-Will Rogers