07
апр 2025 |
[ZP] [Extra Item] Лимит на покупкуКатегория: CS 1.6: Статьи, Автор: sossisuka, Просмотров: 19
|
public client_authorized(pPlayer) iLastTimeBuy[pPlayer] = 0;
new iSysTime = get_systime();
if (iLastTimeBuy[pPlayer] > iSysTime) {
new iTime = iLastTimeBuy[pPlayer] - iSysTime;
new iMin, iSec; get_minutes(iTime, iMin, iSec);
ChatColor(pPlayer, "Ожидай ещё !team%i!y мин | !team%i!y сек", iMin, iSec);
return ZP_PLUGIN_HANDLED;
}
iLastTimeBuy[pPlayer] = get_systime(iNexUse);
set_user_health(pPlayer, get_user_health(pPlayer) + get_pcvar_num(hpamount));
get_minutes(const iInSecond, &iOutMin, &iOutSec)
{
iOutMin = iInSecond / 60;
iOutSec = iInSecond % 60;
}
|