Note: I haven't got all images, so you should get it.
You can take the script and put in your website easily.
PS: For those guys that asked me the script for convert the fake values from the weapon,armors and accessory. You can find it in the file functions->characters.php
Code:
public function get_real_value($GameDB,$item,$magicID,$value){
$new_value = $value;
$query0 = "SELECT * FROM TITEMMAGICCHART WHERE bMagic = $magicID";
$query1 = odbc_exec($GameDB, $query0);
$values = odbc_fetch_object($query1);
$bRvType = $values->bRvType;
$wMaxValue = $values->wMaxValue;
$query2 = "SELECT * FROM TITEMCHART WHERE wItemID = $item";
$query3 = odbc_exec($GameDB, $query2);
$values2 = odbc_fetch_object($query3);
if($bRvType == 1){ $fRevision = $values2->fRevision;}
if($bRvType == 2){ $fRevision = $values2->fMRevision;}
if($bRvType == 3){ $fRevision = $values2->fAtRate;}
if($bRvType == 4){ $fRevision = $values2->fMAtRate;}
if($bRvType < 1 || $bRvType > 4){ $fRevision = 1.0; }
$real_value = floor($new_value / 100.0 * $wMaxValue * $fRevision);
return $real_value;
}







