This works for new Fireboard threads and replies (however it does not count for a certain number of characters in a post, only for new threads and for replies to threads). Also, I achieved this result on the latest version of Fireboard (1.0.5 RC2), but it should work on older versions as well as I had previously tried it on the last stable release.
1. -Open yourjoomladirectory/mambots/system/botpoints.php
-Delete lines 84-122.
-Save.
2. Open yourjoomladirectory/components/fireboard/template/default/post.php
Add the following on line 282 (should end on line 285):
| Code: : |
global $mainframe,$my;
require_once( $mainframe->getCfg('absolute_path') . '/components/com_karma/karma.class.php');
$points = CLASS_karma::getConfig("Custom1");
CLASS_karma::addPoints($my->id, 5, "Forum Post");
|
(Change the number of points and the de_script_ion to your liking)
That's it. Adds points for new threads and replies. Contact me if you need help setting it up or if you run into any problems.