Sorry for being a newbie but how exactly do I edit newthread.php and new reply.php
The PHP part is this:
PHP Code:
// Itemshop code by Mewtwo and Battle Code by Bitsys
if($foruminfo[countposts]) {
$options=$DB_site->query_first("SELECT padd,pointfield,lesanestore FROM items_options");
if(!$options[2]) {
$pointfield="$options[pointfield]";
if($pointfield) {
$points = $DB_site->query_first("SELECT $pointfield FROM userfield WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE userfield SET $pointfield=$points[0]+$options[padd] WHERE userid=$bbuserinfo[userid]");
}
}
$battleopt = $DB_site->query_first("SELECT givepostexp, expperpost FROM battle_options");
If($battleopt[givepostexp] == 1 && $battleopt[expperpost] > 0)
$DB_site->query("UPDATE user SET xp=xp+$battleopt[expperpost] WHERE userid='$bbuserinfo[userid]'");
}
// End Itemshop code by Mewtwo and Battle Code by Bitsys