13.10.2012, 04:25
Thanks but i got 2nd Error
it keep saying
even if i typed the name correctly
and i even copy the data name
and here is the updated command
it keep saying
pawn Код:
[ Error ]: Player Unknown to the Database
and i even copy the data name
and here is the updated command
PHP код:
CMD:unban(playerid,params[])
{
new name[MAX_PLAYER_NAME],path[128];
if(pData[playerid][pAdmin] < 6 && !IsPlayerAdmin(playerid)) return Errorcmd(playerid);
if(sscanf(params,"u",name)) return SendClientMessage(playerid,C_USAGE,"[ Usage ]:"CWHITE" /unban [ Name ]");
format(path,sizeof(path),P_DATA,name);
if(!fexist(path)) return SendClientMessage(playerid,C_RED,"[ Error ]:"CWHITE" Player Unknown to the Database ");
else{
new INI:Data = INI_Open(path);
INI_WriteInt(Data,"Banned",0);
INI_Close(Data);}
return 1;
}