03.03.2010, 14:42
pawn Код:
dcmd_ban(playerid,params[])
{
if(PlayerInfo[playerid][pNivel] >= 5)
{
if(!strlen(params)) return SendClientMessage(playerid, Amarillo,"Usa: /Ban <IdJugador> <Razуn>");
new tmp[256],Index; tmp = strtok(params,Index);
new id; if(!IsNumeric(tmp)) id = ReturnPlayerID(tmp); else id = strval(tmp);
if(IsPlayerConnected(id) && id != INVALID_PLAYER_ID && id != playerid)
{
new string[256],Nombre[24],ANombre[24]; GetPlayerName(playerid,Nombre,24); GetPlayerName(id,ActionName,24);
if(!strlen(params[strlen(tmp)+1])) format(string,256,"%s ha sido baneado por el administrador %s.",ANombre,Nombre);
else format(string,256,"%s ha sido baneado por el administrador %s por %s",ANombre,Nombre,params[strlen(tmp)+1]);
SendClientMessageToAll(Rojo,string); return Ban(id);
} else return SendClientMessage(playerid, Rojo,"**ERROR: Este jugador no estб conectado o eres tъ mismo.");
} else return SendClientMessage(playerid, Rojo,"**ERROR: Tu nivel no es lo suficientemente alto como para usar este comando.");
}
їNadie?