- Timestamp:
- 06/23/09 17:45:47 (14 years ago)
- Location:
- dev/mods
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/mods
-
Property
svn:ignore set
to
db_check
-
Property
svn:ignore set
to
-
dev/mods/signature_generator/signatures/zealot/zealot.php.safe
r208 r390 60 60 61 61 // ship 62 $sid = $kill-> victimshipexternalid_;62 $sid = $kill->getVictimShipExternalID(); 63 63 $img = imagecreatefrompng("img/ships/64_64/".$sid.".png"); 64 imagecopyres ized($im, $img, 354, 6, 0, 0, 40, 40, 64, 64);64 imagecopyresampled($im, $img, 354, 6, 0, 0, 40, 40, 64, 64); 65 65 66 66 bevel(354, 6, 40); 67 67 68 68 // player portrait 69 $pid = $pilot->row_['plt_externalid']; 70 if (!$pid) 71 { 72 $pid = 0; 73 } 74 $img = imagecreatefromjpeg("cache/portraits/".$pid."_128.jpg"); 69 $img = imagecreatefromjpeg("cache/portraits/".$pid."_256.jpg"); 75 70 //imagefilledrectangle($im, 318, 18, 392, 92, $greyred_trans); 76 imagecopyres ized($im, $img, 6, 6, 0, 0, 63, 63, 128, 128);71 imagecopyresampled($im, $img, 6, 6, 0, 0, 63, 63, 256,256); 77 72 imagedestroy($img); 78 73