Advertisement
xt3z0ne

Info.php

Dec 13th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <?php
  2.     include("/includes/datebase.php");
  3.     //*****************************************
  4.     $ip       =       $aInformation['Players'];
  5.     $passowrd =       $aInformation['Password'];
  6.     $max      =       $aInformation['MaxPlayers'];
  7.     //*****************************************    
  8.     header('Content-Type: image/png;');
  9.     $im1 = @imagecreatefrompng('svs.png') or die("Server Offline");
  10.     //*****************************************
  11.     $text_color1 = imagecolorallocate($im1, 0,191,255); // blue
  12.     $text_color2 = imagecolorallocate($im1, 50,205,20); //  green
  13.     $font = 'SWANSEBI.ttf';
  14.     //*****************************************
  15.     imagettftext($im1, 12, 0, 215, 25, $text_color2, $font, "Players:");
  16.     imagettftext($im1, 12, 0, 265, 25, $text_color1, $font, $max);
  17.     //*****************************************
  18.     imagepng($im1);
  19.     imagedestroy($im1);
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement