Файл: l2ps_v5/files/mp.php
Строк: 26
<?php
##########################################
## Автор: Bopo6eu aka 7up # ## Сайт: http://l2pirates.ru # ## ICQ : 44-67-47-41 # ## Версия Лицензионная #
## Данная версия скрипта является ПЛАТНОЙ, #
## вы НЕ ИМЕЕТЕ ПРАВА распрострянять данный #
## скрипт или какие-либо части его кода... #
#########################################
// Подключаемся к БД
$dbhost="localhost";
$dbname="l2pir460_l2pirates";
$dbuser="l2pir460_l2pirat";
$dbpass="2298741z";
$lin=mysql_connect($dbhost,$dbuser,$dbpass) or die("Не могу подключиться к серверу БД");
mysql_select_db($dbname,$lin) or die("Не могу подключиться к БД");
mysql_query("SET NAMES utf8");
mysql_query("set character_set_client='utf8'");
mysql_query("set character_set_results='utf8'");
mysql_query("set collation_connection='utf8'");
$as = mysql_query("SELECT * FROM `users` WHERE `login`='".$login."'");
$pers = mysql_fetch_array($as);
$max = $pers[maxmp];
$now = $pers[mmp];
$health = 150 / ($max / $now);
header('Content-Type: image/gif');
$img = imagecreatetruecolor(150, 10);
imagecolorallocate($img, 0, 0, 0);
$blue = imagecolorallocate($img, 0, 0, 255);
$white = imagecolorallocate($img, 205, 133, 63);
imagefilledpolygon($img, array(0,0, 0,10, $health,10, $health,0), 4, $blue);
$fon = imagecolorallocate($img, 0, 0, 255);
imagestring($img, 1, 40, 2, "MP: ".number_format($now)." | ".number_format($max)."", $white);
imagepolygon($img, array(0,0, 0,12, 149,12, 149,0), 4, $fon);
imagegif($img);
?>