아이템 int->string 반영

This commit is contained in:
2019-06-10 02:20:48 +09:00
parent bb7e93ac2d
commit d4b7cdc97c
6 changed files with 120 additions and 135 deletions
+12
View File
@@ -77,6 +77,18 @@ echo "
<td width=100 align=center>아이템 지급</td>
<td width=504>
<select name=weap size=1 style='color:white;background-color:black;font-size:13px'>";
foreach(GameConst::$allItems as $itemCategories){
foreach($itemCategories as $item=>$cnt){
if($cnt == 0){
continue;
}
$itemObj = buildItemClass($item);
if($itemObj->isBuyable()){
continue;
}
}
}
for($i=0; $i < 27; $i++) {
echo "
<option value={$i}>{$i}</option>";