mIRC Home    About    Download    Register    News    Help

Print Thread
#127196 10/08/05 08:26 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
its most proberlly been asked before

but could someone make a script where once someones been idled for 30 minutes i kick them but at 25 minutes i notice them saying talk now or be kicked


and thats the way the scout leader burns
#127197 10/08/05 08:51 AM
Joined: Nov 2003
Posts: 2,327
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Nov 2003
Posts: 2,327
Code:
on @*:text:*:#:{ 
  .timer $+ $cid $+ $chan $+ $nick $+ warn 1 1500 msg $nick Talk on $chan now or be kicked.
  .timer $+ $cid $+ $chan $+ $nick $+ kick 1 1800 kick $chan $nick Idled too long.
}
on @*:join:#:{
  .timer $+ $cid $+ $chan $+ $nick $+ warn 1 1500 msg $nick Talk on $chan now or be kicked.
  .timer $+ $cid $+ $chan $+ $nick $+ kick 1 1800 kick $chan $nick Idled too long.
}
on *:kick:#:{
  if ($timer($+($cid,$chan,$nick,warn))) { .timer $+ $cid $+ $chan $+ $nick $+ warn off }
  if ($timer($+($cid,$chan,$nick,kick))) { .timer $+ $cid $+ $chan $+ $nick $+ kick off }
}
on *:part:#:{
  if ($timer($+($cid,$chan,$nick,warn))) { .timer $+ $cid $+ $chan $+ $nick $+ warn off }
  if ($timer($+($cid,$chan,$nick,kick))) { .timer $+ $cid $+ $chan $+ $nick $+ kick off }
}


New username: hixxy
#127198 10/08/05 08:53 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
ok its good BUT could ya make it work only on a server i.e. irc.snm.co.nz or webtastix.no-ip.org


and thats the way the scout leader burns
#127199 10/08/05 08:55 AM
Joined: Nov 2003
Posts: 2,327
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Nov 2003
Posts: 2,327
Code:
on @*:text:*:#:{ 
  if ($istok(irc.snm.co.nz webtastix.no-ip.org,$server,32)) {
    .timer $+ $cid $+ $chan $+ $nick $+ warn 1 1500 msg $nick Talk on $chan now or be kicked.
    .timer $+ $cid $+ $chan $+ $nick $+ kick 1 1800 kick $chan $nick Idled too long.
  }
}
on @*:join:#:{
  if ($istok(irc.snm.co.nz webtastix.no-ip.org,$server,32)) {
    .timer $+ $cid $+ $chan $+ $nick $+ warn 1 1500 msg $nick Talk on $chan now or be kicked.
    .timer $+ $cid $+ $chan $+ $nick $+ kick 1 1800 kick $chan $nick Idled too long.
  }
}
on *:kick:#:{
  if ($istok(irc.snm.co.nz webtastix.no-ip.org,$server,32)) {
    if ($timer($+($cid,$chan,$nick,warn))) { .timer $+ $cid $+ $chan $+ $nick $+ warn off }
    if ($timer($+($cid,$chan,$nick,kick))) { .timer $+ $cid $+ $chan $+ $nick $+ kick off }
  }
}
on *:part:#:{
  if ($istok(irc.snm.co.nz webtastix.no-ip.org,$server,32)) {
    if ($timer($+($cid,$chan,$nick,warn))) { .timer $+ $cid $+ $chan $+ $nick $+ warn off }
    if ($timer($+($cid,$chan,$nick,kick))) { .timer $+ $cid $+ $chan $+ $nick $+ kick off }
  }
}


New username: hixxy
#127200 10/08/05 09:13 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
thnxs for that

and btw if anyone goes on that server the main channel is #Lobby

the owners are Shane & Nigel

so don't muck with them

so just enjoy yourself on there


and thats the way the scout leader burns

Link Copied to Clipboard