Skip to content
MSN Addons

time kick

A TG007 community discussion started by ShadowGbg.

Discussion 4 posts
Page 1 of 1
Open
Topic #4678 · 4 published posts · 761 views

hi all ...I need a simple code 4 time kick ..some1 who can help me whit that? Tnx very much

ctcp 1:TIME:*: { access $comchan($nick,1) add deny $ial($nick).addr 1 :Time Check | kick $comchan($nick,1) $nick Time Check Kick }

hi all ...I need a simple code 4 time kick ..some1 who can help me whit that? Tnx very much

sorry GK I din`t explain it right what i`m looking 4 I´m lokking 4 a countdown kicker ...very sorry GK ....Vould u help me anyway ?

and I´m waiting 4 Guard Dog 5 any ideas when it will be released? Tnx

from Kenobi

on admin:TEXT:@boom*:#: if ( $2 isowner # ) halt | amsg sets a bomb under $2 's bum and sets the countdown going | .timer1m 1 1 amsg (n)10(n) | .timerb2m 1 2 amsg (n)9(n) | .timer3m 1 3 amsg (n)8(n) | .timer4m 1 4 amsg (n)7(n) | .timer5m 1 5 amsg (n)6(n) | .timer6m 1 5 amsg (n)5(n) | .timer7m 1 6 amsg (n)4(n) | .timer8m 1 8 amsg (n)3(n) | .timer9m 1 9 amsg (n)2(n) |  .timer10m 1 10 amsg (n)1(n) | .timer11m 1 11 $lf kick $!msn.get($cid,fullroom) $2 

(*)(*)\\BOOM//(*)(*)


 

 

or you can try this one

 

alias bnick {
 set %bnick.chan $chan
 set %bnick.nick $1
 set %bnick.secs $2
 msg %bnick.chan ^o)-=[(H)] $+ %bnick.nick $+ 8-) You have %bnick.secs seconds to leave the room before I kick you out [(H)]=-^o)«
 timer 1 $calc((%bnick.secs)/2) bnick.halfway
}
alias bnick.halfway {
 if (%bnick.nick ison %bnick.chan) {
   msg %bnick.chan ^o)-=[(H)] $+ %bnick.nick $+ 8-) You now have $calc((%bnick.secs)/2) seconds left to leave the room :@ [(H)]=-^o)«
   timer 1 $calc((%bnick.secs)/2) bnick.kick
 }
 else { unset %bnick* | halt }
}
alias bnick.kick {
 if (%bnick.nick ison %bnick.chan) {
   kick %bnick.chan %bnick.nick Did you really think :P you wouldn't get kicked (al) :@
   ban %bnick.chan %bnick.nick 3 
 }
 unset %bnick*
}
menu nicklist {
 Â» Timed Kick «:/bnick $$1 $$?="Time Limit"
}