How did you make your item icons? You have some missing now.
Announcement
Collapse
No announcement yet.
Missing item icons
Collapse
X
-
PHP Code:set_time_limit(0);
function make_icon ($infile, $outfile, $x, $y) {
echo "convert $infile -crop 40x40+". ($x * 40) ."+". ($y * 40) ." +repage $outfile\r\n";
system("convert $infile -crop 40x40+". ($x * 40) ."+". ($y * 40) ." +repage $outfile");
}
$outnumber = 500;
for ($file=1; $file<=248; $file++) {
$infile = "dragitem". $file .".dds";
//print "Processing $infile";
for ($x=0; $x<=5; $x++) {
for ($y=0; $y<=5; $y++) {
$pngfile = "eqicons/item_$outnumber.png";
$giffile = "eqicons/item_$outnumber.gif";
make_icon($infile, $giffile, $x, $y);
make_icon($infile, $pngfile, $x, $y);
$outnumber++;
}
}
print "\n";
}
Comment
Comment