WHO KNOW AMMO PROBLEM İN PVE SERVER
WHO HELP ME PLZ ?
WHO HELP ME PLZ ?
if you use DarkPlanets files.Quote:
WHO KNOW AMMO PROBLEM İN PVE SERVER
WHO HELP ME PLZ ?
public function battery($am, $id) {
$exploded = explode("_", $id);
$name = end($exploded);
if (self::checkExistence($id)) {
if (self::priceCal($id, $am)):
return self::itemReg($id, 'battery', $id, $name, $am, 0, 0, 0);
else:
$message = '{"result":"error","message":"You have not money enough!","userBalance":{"uridium":' . $this->uridium . ',"credits":' . $this->credits . '},"userShip":{"laserAmmunitionSpace":0,"rocketSpace":0},"isShipDumpEmpty":false,"itemId":"' . $id . '","category":"ship"}';
return $message;
endif;
}else {
if (self::priceCal($id, $am)):
return self::itemReg($id, 'battery', $id, $name, $am, 0, 0, 1);
else:
$message = '{"result":"error","message":"You have not money enough!","userBalance":{"uridium":' . $this->uridium . ',"credits":' . $this->credits . '},"userShip":{"laserAmmunitionSpace":0,"rocketSpace":0},"isShipDumpEmpty":false,"itemId":"' . $id . '","category":"ship"}';
return $message;
endif;
}
}