Che, muy copada la página

Voy a tener en cuenta los precios por si volvemos con un nuevo HDGames (?).
Para mostrar el cartelito del Steam, en HDGames usaba
SteamProfile con un plugin medio "a mano" que hice a las apuradas.
*
* Steam super cartelito copado plugin by Santiago Dimattia (?)
* http://www.teleportz.com.ar
*
*/
if(!defined("IN_MYBB"))
{
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}
$plugins->add_hook("postbit", "profilecard_post");
function profilecard_info()
{
/**
* Array of information about the plugin.
* name: The name of the plugin
* description: Description of what the plugin does
* website: The website the plugin is maintained at (Optional)
* author: The name of the author of the plugin
* authorsite: The URL to the website of the author (Optional)
* version: The version number of the plugin
* guid: Unique ID issued by the MyBB Mods site for version checking
* compatibility: A CSV list of MyBB versions supported. Ex, "121,123", "12*". Wildcards supported.
*/
return array(
"name" => "Steam Card",
"description" => "Agrega el SteamCard a los posts de los usuarios",
"website" => "",
"author" => "Santiago Dimattia",
"authorsite" => "http://www.teleportz.com.ar",
"version" => "0.1.0",
"guid" => "",
"compatibility" => "14*"
);
}
function profilecard_activate()
{
return TRUE;
}
function profilecard_deactivate()
{
return TRUE;
}
function profilecard_post($post) {
if(!empty($post['fid4']))
{
$post['steamcard'] = '<a href="http://www.steamcommunity.com/profile/' . $post['fid4'] . '" title="SteamCard"><img src="http://steamprofile.com/steam/profile/default/' . $post['fid4'] . '.png" alt="SteamCard" /></a>';
}
return $post;
}
?>
Lo que tenés que hacer es crear un campo personalizado en el perfil. Fijarte el ID que tiene y reemplazarlo en la linea 56 donde dice "fid
X"
Después usa
{$post['steamcard']} en el template
postbit,
postbit_classic, etc para mostrar la imágen.