Skip to content
MSN Addons

Whisper kick

A TG007 community discussion started by sugarboy.

Discussion 2 posts
Page 1 of 1
Open
Topic #4826 · 2 published posts · 487 views

this seems not to work whats wrong?

 

#nowhisper off on *:TEXT:*:?: { if ($nick == %whispered) { access $comchan($nick,1) add DENY *! $+ $$ial($nick $+ *,1).addr 15 kick $comchan($nick,1) $nick flowering, Quit whispering me, Jude. unset %whispered closemsg $nick } else { kick $comchan($nick,1) $nick flowering, Quit whispering me, Jude. set -u30 %whispered $nick closemsg $nick } } #nowhisper end

*Insert interesting signature here*

your missing all the enters

 

the code should be like this

 

#nowhisper off

on *:TEXT:*:?: {
 if ($nick == %whispered) {
   access $comchan($nick,1) add DENY *! $+ $$ial($nick).addr 15
   kick $comchan($nick,1) $nick flowering, Quit whispering me, Jude. 
   unset %whispered closemsg $nick
 }
 else {
   kick $comchan($nick,1) $nick flowering, Quit whispering me, Jude. 
   set -u30 %whispered $nick closemsg $nick
 }
}
#nowhisper end

 

Make sure you put the enters and that in the correct places otherwise your code is useless.