Coders-IRC


IRC for Coders

Andaris


image
Andaris is a Script/Addon for the IRC client "KVIrc".This allows you to optimize and customize your favorite IRC client.DutiesNick previous, clone detector,, mass action.Colorization of nicknames following gender, Anti-Pv, away system, anti-idle, auto-limit, quiz, Antispam Pv.Impact of the banns laid, HL window, moderator, slaps, quoteur, writing colors.Operators notices - voices, amsg, soul.Averto - Kick - kickban preconfigure with various reasons, improved whois, LagBar, autovoice,...

Read More

Beta v7.68.3621


image
Beta v7.68.3621 changes:1.Item 9, echo-message is now disabled by default. Seehttps://forums.mirc.com/ubbthreads.php/topics/270495/#Post270495for an explanation.2.Item 37, made a number of improvements.

Read More

Access control in Chat, how to keep an eye on JOIN and PART


image

Being part of the user support of the ircIRCgate.it network and being simultaneously present in many chan, I often happen to "not" notice when some user enters the support channel #IRChelp, to overcome this inconvenience I used two simple but effective stratagems, the first consists of a script that, when a user joins in the support chan, it says me in echo (so I read it only me, in any channel or pvt I find ..) " IRChelp records a JOIN by TIZIO and the second, if I am not physically in front of the PC, and then there was the possibility that deto message escapes me, brings me back in a separate @ window, all the JOIN on the support channel with a lot of nick time and user address .. (also useful as "access statistics".. but let's come to the code:

on *:JOIN:#irchelp: {
window @irchelp
/echo @irchelp [ 9 $asctime(HH:nn:ss) ] [ 9 #IRChelp ] Register a [ 9 JOIN ] by [ 9 $nick - $address($nick,2) ]
}

on *:P ART:#irchelp: {
window @irchelp
/echo @irchelp [ 9 $asctime(HH:nn:ss) ] [ 4 #IRChelp ] Record a [ 4 PART ] by [ 4 $nick - $address($nick,2) }

on *:JOIN:#IRChelp: {
/echo -a [ 9 $asctime(HH:nn:ss) ] [ 9 #IRChelp ] Register a [ 9 JOIN ] by [ 9 $nick - $address($nick,2) ]
}
on *:P ART:#IRCHelp: {
/echo -a [ 9 $asctime(HH:nn:ss) ] [ 4 #IRChelp ] Records a [ 4 PART ] by [ 4 $nick - $address($nick,2) ]
}

Expand


Read More