<?php
class headers {
function startheaders() {
global $ir;
echo <<<EOF
<html>
<head>
<title>Rage-Mafia</title>
<style>
body { font-family:helvetica, arial, geneva, sans-serif;font-size:12;color: #666000;
scrollbar-base-color: #666000;
scrollbar-arrow-color: #666000;
scrollbar-DarkShadow-Color: #666000; }
a:visited,a:active,a:hover,a:link { color: #666000;text-decoration: none; }
table,tr,td { font-family:helvetica, arial, geneva, sans-serif;font-size: 12; }
img { border:none; }
textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:12;color:#666000; }
</style>
</head>
EOF;
}
function userdata($ir,$lv,$fm,$cm,$dosessh=1)
{
global $c,$userid;
$ip = ($_SERVER['HTTP_X_FORWARDED_FOR'])
? $_SERVER['HTTP_X_FORWARDED_FOR']
: $_SERVER['REMOTE_ADDR'];
mysql_query("UPDATE users SET laston=unix_timestamp(),lastip='$ip' WHERE userid=$userid",$c);
if(!$ir['email'])
{
die ("<body>Your account may be broken. Please mail [email]
[email protected][/email] stating your username and player ID.");
}
if($dosessh && $_SESSION['attacking'])
{
print "You lost all your EXP for running from the fight.";
mysql_query("UPDATE users SET exp=0 WHERE userid=$userid",$c);
$_SESSION['attacking']=0;
}
$enperc=(int) ($ir['energy']/$ir['maxenergy']*100);
$wiperc=(int) ($ir['will']/$ir['maxwill']*100);
$experc=(int) ( $ir['exp']/$ir['exp_needed']*100);
$brperc=(int) ($ir['brave']/$ir['maxbrave']*100);
$hpperc=(int) ($ir['hp']/$ir['maxhp']*100);
$enopp=100-$enperc;
$wiopp=100-$wiperc;
$exopp=100-$experc;
$bropp=100-$brperc;
$hpopp=100-$hpperc;
$d="";
$u=$ir['username'];
if($ir['donatordays']) { $u = "<font color=red>{$ir['username']}</font>";$d="[img=donator.gif]"; }
if($ir['gang']) {
$qg=mysql_query("SELECT * FROM gangs WHERE gangID={$ir['gang']}",$c);
$rr=mysql_fetch_array($qg);
$gn=$rr['gangPREF']."";
}
else { $gn=""; }
print "<body bgcolor='black'>
<table width=100%><tr><td>[img=logo.png]</td>
<td>[b]Name:[/b] $gn{$u} [{$ir['userid']}] $d
[b]Money:[/b] {$fm}
[b]Level:[/b] {$ir['level']}
[b]ReWard points:[/b] {$ir['crystals']}
[[url='logout.php']Logout[/url]]</td><td>
[b]Energy:[/b] {$enperc}%
<img src=bargreen.gif width=$enperc height=10><img src=barred.gif width=$enopp height=10>
[b]Will:[/b] {$wiperc}%
<img src=bargreen.gif width=$wiperc height=10><img src=barred.gif width=$wiopp height=10>
[b]Rage:[/b] {$ir['brave']}/{$ir['maxbrave']}
<img src=bargreen.gif width=$brperc height=10><img src=barred.gif width=$bropp height=10>
[b]EXP:[/b] {$experc}%
<img src=bargreen.gif width=$experc height=10><img src=barred.gif width=$exopp height=10>
[b]Health:[/b] {$hpperc}%
<img src=bargreen.gif width=$hpperc height=10><img src=barred.gif width=$hpopp height=10></td></tr></table></div>[url='voting.php'][b]<center><u>Vote for Rage-Mafia on various gaming sites and be rewarded!</u></center>[/b][/url]
[url='donator.php'][b]<center><u>Donate to Rage-Mafia, it's only \$3-30 and gets you a lot of benefits!</u></center>[/b][/url]
";
$q=mysql_query("SELECT * FROM ads ORDER BY rand() LIMIT 1",$c);
if(mysql_num_rows($q))
{
}
print "<table width=100%><tr><td width=20% valign='top'>
";
if($ir['fedjail'])
{
$q=mysql_query("SELECT * FROM fedjail WHERE fed_userid=$userid",$c);
$r=mysql_fetch_array($q);
die("[b]<font color=red size=+1>You have been put in the Rage-Mafia Federal Jail for {$r['fed_days']} day(s).
Reason: {$r['fed_reason']}</font>[/b]</body></html>");
}
if(file_exists('ipbans/'.$ip))
{
die("[b]<font color=red size=+1>Your IP has been banned, there is no way around this.</font>[/b]</body></html>");
}
}
function menuarea()
{
include "mainmenu.php";
global $ir,$c;
print "</td><td valign='top'>
";
}
function endpage()
{
print "</td></tr></table></body>
</html>";
}
}
?>