20.04.2014, 00:54
Quote:
pawn Код:
|
pawn Код:
CMD:cnn(playerid, params[])
{
new Texto[100];
new String[100];
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid,Nome,MAX_PLAYER_NAME)
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFF0000,"Erro: Vocк nгo tem permissгo para usar este comando.");//ERRO DE COMANDO PARA QUEM NAO ESTA LOGADO NA RCON
if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, 0xFF0000, "Use /texto [texto]"), SendClientMessage(playerid,0xFF0000, "Use o comando para mandar uma mensagem em forma de GameText aos jogadores");
format(String, sizeof(String), "~y~%s: ~w~%s", Nome, Texto);
GameTextForAll(String, 2000, 4);
return 1;
}
acho que ficaria assim