HACK ADDON:
JPilot IRC applet doesn't allow you to have spaces in your name. So if your VBulletin username is "Joe Blow", this hack will log you in to IRC as "Joe" because the JPilot IRC applet ignores everything after the space.
Here's a way to get this hack to substitute an underscore character "_" for a space so that you will log into IRC with your full username:
In your chatmain template, change:
<param name="NickName" value="$bbuserinfo[username]">
To:
<param name="NickName" value="$ircname">
In your phpinclude template, add:
$ircname = ereg_replace(" ", "_", $bbuserinfo[username]);
That's it! Hope this helps.
|