/unban command help
#1

This is my /unban command:
PHP код:
dcmd_unban(playeridparams[])
{
    new 
pName[128], string[128];
    if(
PlayerInfo[playerid][pAdmin] == 0) return SendClientMessage(playeridCOLOR_WHITE,"Server: Unrecognized command, type /commands to see the commands available for you.");
    if(
PlayerInfo[playerid][pAdmin]<4) return SendClientMessage(playeridCOLOR_ADMINBLUE"ERROR: This command is unavailable for your admin rank.");
    if(
admduty[playerid]==0) return SendClientMessage(playeridCOLOR_ADMINBLUE"ERROR: You must be on duty to use this command.");
    if(
sscanf(params"s"pName)) return SendClientMessage(playeridCOLOR_ADMINBLUE"Correct usage: /unban [username]");
     
format(pNamesizeof(pName), "/Users/%s.ini"pName);
    if(!
fexist(string)) return SendClientMessage(playeridCOLOR_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(playeridCOLOR_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(stringsizeof(string), "User %s has been unbanned."pName);
    
SendClientMessage(playeridCOLOR_ADMINBLUEstring);
    return 
1;
}
forward LoadBan_data(playeridname[], value[]);
public 
LoadBan_data(playeridname[], value[])
{
    new var = 
0;
    
INI_Int("Banned", var);
    
SetPVarInt(playerid"BanCheck", var);
    return 
1;

But, when I use this command, it gives me the error 'User does not exist'.
How to fix this? Please help me.
Reply


Messages In This Thread
/unban command help - by ATGOggy - 10.01.2015, 11:51
Re: /unban command help - by Gammix - 10.01.2015, 11:55
Re: /unban command help - by ATGOggy - 10.01.2015, 12:03
Re: /unban command help - by Gammix - 10.01.2015, 12:08
Re: /unban command help - by ATGOggy - 10.01.2015, 12:08

Forum Jump:


Users browsing this thread: 2 Guest(s)