Hey ppl... how can i do a command to my script in whisper... and he does it???
Like:
!kick <nickname> <reason> in whisper... and it kicks <nickname> for <reason>
???
A TG007 community discussion started by axis.
Hey ppl... how can i do a command to my script in whisper... and he does it???
Like:
!kick <nickname> <reason> in whisper... and it kicks <nickname> for <reason>
???
Try this:
on admin:text:!kick*:?:{
if (!$comchan($ial($2).nick,1) { privmsg $nick Invalid nickname. }
if ($comchan($ial($2).nick,1).op != $true) { privmsg $nick Unable to comply; I am not a host. }
kick $ial($2).nick $comchan($ial($2).nick,1) $iif($3,$3,Requested by $nick)
}
That should kick the person from the first common channel that both you and the person are on. It should also work with wildcards (*).
Hope this helps
People are like slinkies; they're generally boring until you push them down stairs
I guess I'm too used to IRC
People are like slinkies; they're generally boring until you push them down stairs
Sign in to reply or start a new topic where your account has permission.