mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2003
Posts: 13
T
Pikka bird
OP Offline
Pikka bird
T
Joined: May 2003
Posts: 13
I want to make my script automatically kick people if I check their version, and their version reply is Vincula.

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on @*:JOIN:#: {
  .enable #Vincula
  .ctcp $nick version
}

#vincula on
on *:CTCPREPLY:Version*: {
  if (Vincula isin $1-) { kick $comchan($nick,1) $nick Message }
}
#Vincula end


Link Copied to Clipboard