Well the only thing that doesn't seem right straight away would be that it instructs me to find;
// ###################### Start getreputationimage #######################
and Add this Above it;
Code:
if ($arcadegeneral['awardson']==1) {
// declares the arcade image directory
$stylevar['imgdir_arcade'] = "images/arcade";
$arcade_result = $DB_site->query("SELECT shortname,title,gamesettings,highscorerid,highscore,miniimage,gameid FROM " . TABLE_PREFIX . "games ");
while ($arcade = $DB_site->fetch_array($arcade_result)){
if (($arcade[gamesettings] & $_GAMESCHECK['showaward'])){
$awards[$arcade[shortname]]['userid'] = $arcade['highscorerid'];
$awards[$arcade[shortname]]['gametitle'] = $arcade['title'];
$awards[$arcade[shortname]]['icon'] = $arcade['miniimage'];
$awards[$arcade[shortname]]['highscore'] = $arcade['highscore'];
$awards[$arcade[shortname]]['gameid'] = $arcade['gameid'];
}
}
}
----------------------------
Though, there is no get reputation image line, but - there is something i thought was similar, which made me add it before that part instead.
Code:
// get reputation
if ($vboptions['reputationenable'])
{
fetch_reputation_image($post, $checkperms["$post[userid]"]);
$show['reputation'] = true;
}
else
{
$show['reputation'] = false;
}
-----------------------------
This part did not exist in functions_showthread either:
Code:
// sorts through all the stuff to return the postbit template
Where you should place this below it:
Code:
// arcade
global $awards,$arcadegeneral;
So i ended up placing it "here" instead:
Code:
// arcade
global $awards,$arcadegeneral;
// do alternate postbit types