Quote:
Originally posted by Shadow_NL
When I'm editing my files I also need to edit this:
root/newthread.php
Step 2 of 2 find:
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
I couldn't find it, till I noticed that I already changed it with Zajako's RPG hack to:
// Zajako's Rpg hack pay per post
$DB_site->query("UPDATE user SET ".iif ($foruminfo[countposts],"posts=posts+1,","")." $dotitle"."lastpost='".time()."',rpgmoney=rpgmoney +'$moneynewthread' WHERE userid='$bbuserinfo[userid]'");
}
// end zajako's rpg hack pay per post
How can I edit this to the right code which is needed to install this stars hack? I don't want to drop Zajako's RPG hack ofcourse.
Thanks in advance.
|
Ok well the only thing that you added with Zajako's hack is:
PHP Code:
rpgmoney=rpgmoney+'$moneynewthread'
If you could post the change you have to make I can give you something to replace with because it is just a matter of finding the differences and makeing it that way.