Yeah. The simple way would be to install the hack a second time but change a the file name and template thats called.
Here's the start but I need to look over the php file itself to see what variables need to be changed.
* In step 2 change the name of gillog.txt to gillog2.txt
* In step 3 rename gilupdate.php to gilupdate2.php
* In step 5 add this instead:
PHP Code:
// ##### UserPoints Mod Options #####
if ($bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==7)
{
eval('$gilBox2 .= "' . fetch_template('postbit_gilbox2') . '";');
}
else
{
$gilBox2 = "";
}
// #### End of UserPoints Mod Hack ####
* step 7 name the new template postbit_gilbox2 and insert this:
PHP Code:
<br />
<form action="modcp/gilupdate2.php" method="post">
<input type="hidden" name="action" value="private204">
<input type="hidden" name="postid" value="$post[postid]">
<input type="hidden" name="userid" value="$post[userid]">
<input type="text" name="amount" size="3">
<input type="image" src="images/coin.gif" border="0" name="submit" alt="Give Points" onClick="javascript:alert('Points Paid!');">
</form>
<br />
<br />
Points Given: $post[gilpaid2]
step 9: use $gilBox2 instead of $gilBox
step 10:
ALTER TABLE `post` ADD `gilpaid2` TINYINT DEFAULT '0' NOT NULL ;