Файл: sumerki.mobi/sumerki.mobi/hp.php
Строк: 18
<?
//////////////////////////////////////////////////////////////
//////////////////////Онлайн "Сумерки"///////////////////
//////////////////////Основатель: Mc Laren////////////////////
///////////////////Контакты: ICQ - 597687549//////////////////
/////////////////////Пример: Sumerki.Mobi/////////////////////
///////////Если ты это читаешь, значит скрипт слили :D////////
//////////////////////////////////////////////////////////////
define('PROTECTOR', 1);
@include('files/path.php');
@include($path.'files/db.php');
@include($path.'files/auth.php');
@include($path.'files/func.php');
@include($path.'files/core.php');
$max = $udata[hpall];
$now = $udata[hp];
$health = 100 / ($max / $now);
$img="pic/hp.gif";
$pic = ImageCreateFromgif($img);
header('Content-Type: image/gif');
$black = imagecolorallocate($pic, 255, 255, 255);
$white = imagecolorallocate($pic, 0, 0, 0);
imagefilledpolygon($pic, array(255,0, 0,22, $health,22, $health,0), 4, $black);
imagestring($pic, 3, 0, -1, ' '.($now).'/'.($max).'', $white);
ob_end_clean();
imagegif($pic);
?>