Need help with ban command
#1

pawn Код:
public OnPlayerConnect(playerid) {
{
if(PInfo[playerid][Banned] == 1){
SendClientMessage(playerid, 0xFF444499, "You are banned from this server if this is a mistake appeal at our forums");
Kick(playerid);
}
    }
    SendClientMessage(playerid,red,"Welcome to United Kingdom TDM! Dont forget to check /updates ! ");
    SendClientMessage(playerid,GREEN,"Remember to /buyrank to buy a rank ");
    new name[MAX_PLAYER_NAME], string[24+MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, sizeof(string), "** %s has joined United Kingdom TDM", name);
    IsOnAdminDuty[playerid] = false;
    PInfo[playerid][Money] = 0;
    PInfo[playerid][Score] = 0;
    PInfo[playerid][Kills] = 0;
    PInfo[playerid][Deaths] = 0;
    PInfo[playerid][Level] = 0;
    PInfo[playerid][Rank] = 0;
    SendClientMessageToAll(-1, string);
    PMEnabled[playerid] = 1;
    IsMuted[playerid] = 0;
    TogglePlayerSpectating(playerid, false);
   
    new file[64],PlayerName[25];//Creating a variable where we can store the file path, and the variable to store the player's name.
    GetPlayerName(playerid,PlayerName,sizeof PlayerName);//Storing the players name in the PlayerName variable.
    format(file,sizeof file,"Admin/%s.ini",PlayerName);//Storing the file path with the players name.
    if(fexist(file)) {
        ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT, "Login Below", "Enter Your Password To Login!", "Login", "Quit");
    } else {
        ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, "Register Below", "Enter A Password To Register And Play!", "Register", "Quit");
    }
    return 1;
}
I'm having trouble with the ban command when i use /ban it works fine it sets the variable to 1 and when i connect it says you are banned but then when i set the variable 0 in my charachter file and reconnect it still shows that message.
Reply


Messages In This Thread
Need help with ban command - by Biess - 01.02.2013, 17:38
Re: Need help with ban command - by Alternative112 - 01.02.2013, 19:08
Re: Need help with ban command - by Biess - 02.02.2013, 06:45
Re: Need help with ban command - by iDrEaMzZxo - 02.02.2013, 06:51
Re: Need help with ban command - by Biess - 02.02.2013, 16:52
Re: Need help with ban command - by T0pAz - 02.02.2013, 17:00
Re: Need help with ban command - by Biess - 02.02.2013, 17:05
Re: Need help with ban command - by Biess - 03.02.2013, 11:10
Re: Need help with ban command - by Biess - 04.02.2013, 05:16
Re: Need help with ban command - by Threshold - 04.02.2013, 07:18

Forum Jump:


Users browsing this thread: 1 Guest(s)