Hi,
I was doing a little work on an hotel a few weeks ago and converted the RocCF Index Page into RevCMS and made some small edits. I've just compressed all the files I think are required here, however if something is missing just tell me and I'll provide it.
Screenshot:

Download:
http://www.mediafire.com/download/df...mds6/Index.zip
You will need to create this head.php and put it in your main RevCMS directory. Just for the heads on the Most Respected section.
PHP Code:
<?php
// Authors: Joopie, PEJump, Dominic Gunn
$base = 'http://www.habbo.com.tr/habbo-imaging/avatarimage?action=crr=667&direction=2&head_direction=2&figure=';
$figure = $_GET['figure'];
// Create image instances
$src = imagecreatefrompng($base.$figure);
imagealphablending($src, true); // setting alpha blending on
imagesavealpha($src, true); // save alphablending setting (important)
$dest = imagecreate(54, 65);
// Copy
imagecopy($dest, $src, 0, 0, 6, 8, 54, 51);
imagealphablending($dest, true); // setting alpha blending on
imagesavealpha($dest, true); // save alphablending setting (important)
// Output and free from memory
header('Content-Type: image/png');
$outputString = imagepng($dest);
$outputString .= "(c) sulake!"; // copyright shit, should work![/B]
echo $outputString;
imagedestroy($dest);
imagedestroy($src);
?>
Cheers! :)
Credits
Me,
Nominal,
RocCF developers?