Код
if(strcmp(cmd,"/offdonate",true)==0)
{
if(PlayerInfo[playerid][pAdmin]!=6) return true;
new string[128];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SCM(playerid, RIFA_COLOR, "» Введите: /donate [сумму] [Nick_Name]");
moneys = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SCM(playerid, RIFA_COLOR, "» Введите: /donate [сумму] [Nick_Name]");
format(string, sizeof(string), "/users/%s.ini", tmp);
if(!fexist(string)) return SendClientMessage(playerid, COLOR_GRAD1, "Такого аккаунта не существует!");
new Donatee, File = ini_openFile(string);
ini_getInteger(File,"Donate",Donatee);
ini_setInteger(File,"Donate",Donatee+moneys);
ini_closeFile(File);
format(string, sizeof(string), "Администратор {F0EFD8}%s{FFFEBF} пополнил донат счет %s на {F0EFD8}%d рублей. У него %d рублей", GN(playerid), tmp, moneys, Donatee+moneys);
ABroadCast(COLOR_LIGHTRED,string,1);
}
Выложено по просьбе одного из пользователей =)