I've found a few bugs.
vboptions.ezircvb4_templatefriendlychan
Does not exist. It's on line 67, 204, 217, 284, 328.
Bug #1
Manual connection rules, displays .. instead of the channel.
Find: (Line 67)
Code:
To connect to IRC manually, open your favorite irc client and type: <strong>/server {vb:raw vboptions.ezircvb4_server}</strong> .. and once that's completed, type <strong>/join {vb:raw vboptions.ezircvb4_templatefriendlychan}</strong> .. or click <a href='irc://{vb:raw vboptions.ezircvb4_server}/{vb:raw vboptions.ezircvb4_chan}'>here</a>. </div><br />
REPLACE:
Code:
To connect to IRC manually, open your favorite irc client and type: <strong>/server {vb:raw vboptions.ezircvb4_server}</strong> .. and once that's completed, type <strong>/join {vb:raw vboptions.ezircvb4_chan}</strong> .. or click <a href='irc://{vb:raw vboptions.ezircvb4_server}/{vb:raw vboptions.ezircvb4_chan}'>here</a>. </div><br />
Bug #2
When you try and join a channel via PJIRC you get "JOIN not enough parameters".
FIND: (Line 217)
Code:
<param name="command1" value="join {vb:raw vboptions.ezircvb4_templatefriendlychan}">
REPLACE:
Code:
<param name="command1" value="join {vb:raw vboptions.ezircvb4_chan}">
Bug #3
Username isn't forum username when using PJIRC.
FIND: (Line 211)
Code:
<param name="nick" value="{vb:raw bbuserinfo.ezircvb4_username}">
REPLACE:
Code:
<param name="nick" value="{vb:raw bbuserinfo.username}">
REMOVE LINE 212:
Code:
<param name="alternatenick" value="{vb:raw bbuserinfo.ezircvb4_username}???">
Feature #1
Unable to select own codebase path.
FIND: (Line 209)
Code:
<applet codebase="./pjirc/" code="IRCApplet.class" archive="irc.jar,pixx.jar" width=640 height=400>
REPLACE:
Code:
<applet codebase="{vb:raw vboptions.ezircvb4_pjirccodebase}" code="IRCApplet.class" archive="irc.jar,pixx.jar" width=640 height=400>
FIND Line 462 add after </setting>
Code:
<setting varname="ezircvb4_pjirccodebase" displayorder="20">
<datatype>free</datatype>
<defaultvalue>./pjirc</defaultvalue>
</setting>
FIND Line 392, ADD After
Code:
<phrase name="setting_ezircvb4_pjirccodebase_desc" date="1262982807" username="William E." version="2.0.1"><![CDATA[Where are your PJIRC files located? Use: http://www.yourdomain.com/path/to/pjirc]]></phrase>
<phrase name="setting_ezircvb4_pjirccodebase_title" date="1262982807" username="William E." version="2.0.1"><![CDATA[PJIRC Codebase Path]]></phrase>