######################## # # This script for jircii adds support for # connecting to psyBNC irc proxies. This # script will make sure to properly # open channel windows when you connect. # # Version 1.0, tested with psyBNC 2.3.1 # Author oracel aka Andreas Ravnestad, oracel@start.no # ############## # Flag $hasPsyBNC = 0; # Listen for notice events on notice { # This is a psyBNC connection if ($nick eq "Welcome" && "psyBNC*" iswm $1 && $hasPsyBNC == 0) { # Set flag $hasPsyBNC = 1; # Fire a 001 event to inform jircii of its nickname fireEvent(":lam3rz.de 001 " . getProperty("user.nick") . " :Welcome to a bounced IRC session, " . getProperty("user.nick")); # Simple fix to halt displaying the event twice halt; } }