04.12.2012, 08:58
I tried to script a offline set cash for player but it seems does not works.Can anyone help me solve this and tell me exactly what to do?
pawn Код:
CMD:osetcash(playerid,params[])
{
new string[124],string2[128], output[128];
if(!(PlayerInfo[playerid][pAdmin] >= 4)) return SCM(playerid, COLOR_LIGHTRED,"You are not authorized to use this command");
format(string,sizeof(string),"Users/%s.ini",params,output);
if(fexist(string))
{
new INI:File = INI_Open(string);
INI_SetTag(File,"data");
INI_WriteInt(File,"Cash", PlayerInfo[playerid][pCash]);
INI_Close(File);
format(string2, sizeof(string2), "{FFFF33}[Admin-Warning]{FF0000}: {FFFFFF}%s has Offline give cash to %s.", GetPlayerNameEx(playerid), params,output);
AdminBroadCast(COLOR_LIGHTRED, string2);
}
else SendClientMessage(playerid,COLOR_YELLOW,"{FF0000}..::{FF6347}[Database]:Account not found{FF0000}::..");
return 1;
}