02.10.2012, 14:39
Hi all, thanks to help me.
Well, i have a /ban command, and the problem its simple.
When i use /ban , send the message to all:
Player %s, has been banned (reason:%s), But just show the name of the player, dont show the reason. Help me please![Roll Eyes (Sarcastic)](images/smilies/rolleyes.png)
The tmp:
Well, i have a /ban command, and the problem its simple.
When i use /ban , send the message to all:
Player %s, has been banned (reason:%s), But just show the name of the player, dont show the reason. Help me please
![Roll Eyes (Sarcastic)](images/smilies/rolleyes.png)
Код:
//Banear a un jugador if(strcmp(cmd,"/banear", true) == 0) { if(Informacion[playerid][Administrador] == 1) { tmp = strtok(cmdtext,idx); tmp2 = strtok(cmdtext,idx); new razon = strval(tmp2); new player = strval(tmp); if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRIS, "Use /banear [id] + [razуn]"); if(!strlen(tmp2)) return SendClientMessage(playerid, COLOR_GRIS, "Use /banear [id] + [razуn]"); if(!IsPlayerConnected(player)) return SendClientMessage(playerid, -1, "Jugador desconectado"); GetPlayerName(player, nombre, sizeof(nombre)); format(string, sizeof(string), "El jugador %s fue baneado del servidor %s", nombre, razon); SendClientMessageToAll(COLOR_NARANJA, string); Ban(player); } else{SendClientMessage(playerid, COLOR_GRIS,"No eres administrador");} return 1; }
Код:
new tmp[128]; new tmp2[128];