Покупка SHOP кредитов

softer

Участник
Сообщения
1
Реакции
0
Не работает модуль на сайте , как пофиксить?
// Покупка SHOP кредитов
protected function buyShopCredits($id, $amount, $steam)
{
$steam[6] = 1;
$response = $this->Rcons($id, 'sm_shop_givecredits "' . $steam . '" ' . $amount);
if ($response == 'error') {
return array(
"type" => 'error',
"result" => $this->Translate->get_translate_module_phrase('module_page_shop', '_errorBuyAmount')
);
} else {
return array(
"type" => 'success',
"result" => $this->Translate->get_translate_module_phrase('module_page_shop', '_successShopCred') . $amount . " " . $this->Translate->get_translate_module_phrase('module_page_shop', '_credits_name')
);
}
}
 
Сверху Снизу