Right well I made an easy add-on for this. Okay what this add-on does is makes it to where you can set a different ammount for new threads than the ammount for replys, because we me I like to give the members more for threads. Anyways do the following:
First run this query:
ALTER TABLE forum ADD goldppt int(5) NOT NULL
Next open admin/forum.php and find:
makeinputcode("Gold recieved for posting? (forum gold must be enabled)","goldpp",0);
Replace that with:
makeinputcode("Gold recieved for posting a reply? (forum gold must be enabled)","goldpp",0);
makeinputcode("Gold recieved for posting a thread? (forum gold must be enabled)","goldppt",0);
Next find:
$DB_site->query("INSERT INTO forum
(forumid,styleid,title,description,active,displayo rder,parentid,
parentlist,allowposting,cancontainthreads,daysprun e,newpostemail,newthreademail,
moderatenew,allowhtml,allowbbcode,allowimages,allo wsmilies,allowicons,
styleoverride,allowratings,countposts,moderateatta ch,countgold,goldpp)
VALUES
(NULL,'$styleset','".addslashes($title)."','".adds lashes($description)."','$isac tive','$displayorder','$parentid',
'','$allowposting','$cancontainthreads','$daysprun e','".addslashes($newpostemail )."','".addslashes($newthreademail)."',
'$moderatenew','$aallowhtmlcode','$aallowbbcode',' $aallowimgcode','$aallowsmilie s','$aallowicons',
'$styleoverride','$allowratings','$countposts','$m oderateattach','$countgold','$ goldpp')");
Replace that with:
$DB_site->query("INSERT INTO forum
(forumid,styleid,title,description,active,displayo rder,parentid,
parentlist,allowposting,cancontainthreads,daysprun e,newpostemail,newthreademail,
moderatenew,allowhtml,allowbbcode,allowimages,allo wsmilies,allowicons,
styleoverride,allowratings,countposts,moderateatta ch,countgold,goldpp,goldppt)
VALUES
(NULL,'$styleset','".addslashes($title)."','".adds lashes($description)."','$isac tive','$displayorder','$parentid',
'','$allowposting','$cancontainthreads','$daysprun e','".addslashes($newpostemail )."','".addslashes($newthreademail)."',
'$moderatenew','$aallowhtmlcode','$aallowbbcode',' $aallowimgcode','$aallowsmilie s','$aallowicons',
'$styleoverride','$allowratings','$countposts','$m oderateattach','$countgold','$ goldpp','$goldppt')");
Next find:
makeinputcode("Gold recieved for posting? (forum gold must be enabled)","goldpp",$forum[goldpp]);
Replace that with:
makeinputcode("Gold recieved for posting a reply? (forum gold must be enabled)","goldpp",$forum[goldpp]);
makeinputcode("Gold recieved for posting a thread? (forum gold must be enabled)","goldppt",$forum[goldppt]);
Next find:
styleoverride='$styleoverride', allowratings='$allowratings', countposts='$countposts',
moderateattach='$moderateattach', countgold='$countgold', goldpp='$goldpp'
WHERE forumid='$forumid'");
Replace that with:
styleoverride='$styleoverride', allowratings='$allowratings', countposts='$countposts',
moderateattach='$moderateattach', countgold='$countgold', goldpp='$goldpp', goldppt='$goldppt'
WHERE forumid='$forumid'");
open newthread.php and find:
// +++++++ Gold Hack g-force2k2 +++++++
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' ".iif($foruminfo[countgold],",gold=gold+$foruminfo[goldpp]","")." WHERE userid='$bbuserinfo[userid]'");
}
// +++++++ Gold Hack g-force2k2 +++++++
Replace that with:
// +++++++ Gold Hack g-force2k2 +++++++
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' ".iif($foruminfo[countgold],",gold=gold+$foruminfo[goldppt]","")." WHERE userid='$bbuserinfo[userid]'");
}
// +++++++ Gold Hack g-force2k2 +++++++
And you're done I believe. Haven't tested it out yet though =\ I'm not actually installing this hack until tomorrow because I'm letting my memebrs write down how much gold they have(lol I use gold on FFL also).
BTW if you want to set a defualt one run this query:
UPDATE forum SET goldppt='[ Default Value Here ]' WHERE forumid != 0
and replace [ Default Value Here ] with the number.
|