11.08.2011, 16:52
Quote:
It isn't but you aren't helping , therefore it will take longer.
Unless you supply some code. How do we know which exact script you are using ? Give us the code which has the kick/ban thing. or at least some information. |
PHP код:
}
else
{
SendClientMessage(playerid, COLOR_RED, "SERVER: Password does not match your name. you have been kicked as a result.");
Kick(playerid);
return 1;
}
if(PlayerInfo[playerid][pPermBand] == 1)
{
new banstring[256];
format(banstring,sizeof(banstring),"AdmCmd: %s has been banned, reason: Attempting to log into a perma-banned account.",PlayerName(playerid));
SendClientMessageToAll(COLOR_LIGHTRED,banstring);
Ban(playerid);
}
if(PlayerInfo[playerid][pBand] == 3)
{
new banstring[256];
format(banstring,sizeof(banstring),"AdmCmd: %s has been banned, reason: Attempting to log into a banned account.",PlayerName(playerid));
SendClientMessageToAll(COLOR_LIGHTRED,banstring);
Ban(playerid);
}