10.01.2015, 11:51
This is my /unban command:
But, when I use this command, it gives me the error 'User does not exist'.
How to fix this? Please help me.
PHP код:
dcmd_unban(playerid, params[])
{
new pName[128], string[128];
if(PlayerInfo[playerid][pAdmin] == 0) return SendClientMessage(playerid, COLOR_WHITE,"Server: Unrecognized command, type /commands to see the commands available for you.");
if(PlayerInfo[playerid][pAdmin]<4) return SendClientMessage(playerid, COLOR_ADMINBLUE, "ERROR: This command is unavailable for your admin rank.");
if(admduty[playerid]==0) return SendClientMessage(playerid, COLOR_ADMINBLUE, "ERROR: You must be on duty to use this command.");
if(sscanf(params, "s", pName)) return SendClientMessage(playerid, COLOR_ADMINBLUE, "Correct usage: /unban [username]");
format(pName, sizeof(pName), "/Users/%s.ini", pName);
if(!fexist(string)) return SendClientMessage(playerid, COLOR_ADMINBLUE, "ERROR: This user does not exists.");
SetPVarString(playerid, "UnbanName", pName);
SetPVarInt(playerid, "BanCheck", 0);
INI_ParseFile(string, "LoadBan_%s", .bExtra = true, .extra = playerid);
if(GetPVarInt(playerid, "BanCheck")==0) return SendClientMessage(playerid, COLOR_ADMINBLUE, "ERROR: This user is not banned.");
new INI:File = INI_Open(string);
INI_SetTag(File, "data");
INI_WriteInt(File, "Banned", 0);
INI_Close(File);
format(string, sizeof(string), "User %s has been unbanned.", pName);
SendClientMessage(playerid, COLOR_ADMINBLUE, string);
return 1;
}
forward LoadBan_data(playerid, name[], value[]);
public LoadBan_data(playerid, name[], value[])
{
new var = 0;
INI_Int("Banned", var);
SetPVarInt(playerid, "BanCheck", var);
return 1;
}
How to fix this? Please help me.