I really am thankful that you have made this wonderful plugin.

I have been using it for a few weeks now and I have already made quite a few pages that benefit my forum greatly.
IRC Chat Page
Using the
php.xml file as a template it was easy to add a column for instructions and load the qwebirc extension into an iframe.
To use it for your own IRC channel just edit the iframe's src property to point to the correct channel. It will automatically enter the username of the current user as the channel nick. (If you don't want a prompt just delete
prompt=1 from the iframe's src property.
Also applying a rewrite rule in
.htacces will make the chat page a lot easier to find:
RewriteRule ^Chat.*$ misc.php?page=chat [L,QSA,NC]
This rule would make the chat link:
www.myforum.com/chat
Rules Page
I had used a global announcement as my rules link for some time, but having the rules on an separate page was much better for several reasons, not the least being that moderators can no longer edit the rules.
Another bonus was that I could use an easier rewrite rule to make the rules link
www.myforum.com/rules
RewriteRule ^Rules.*$ misc.php?page=rules [L,QSA,NC]
I just use set the "Use MyBB Template?" to Yes and entered the HTML for my rule as an ordered list.
Full Member Info and IP Search Page
My Super Moderators get frustrated with the IP Search page MyBB provides. I have coded a simple page that displays the users email(which they previously couldn't see at all), regIP and lastIP- and automatically searches for puppets (users with matching IP addresses).
Once the page was installed, I inserted a link to the page into the template Member-->member_profile_modoptions to provide a link for mods to the page on every profile page in the Moderator Options section:
<li><a href="{$mybb->settings['bburl']}/misc.php?page=mod&uid={$uid}">Full User Info and IP Search</a></li>
The page's permissions are set to only allow admins and smods to access it, but the link will show up for mods as well. If someone knows how to fix that I would listen
So thanks again for this great plugin!
