24.03.2013, 15:52
pawn Код:
CMD:kick(playerid, params [])
{
new
Nome_S[25], Motivo[125],
Str_E [125], Nome_E[25]
;
if (sscanf(params, "us[125]", Id_Kick, Motivo))
{
SendClientMessage(playerid, -1, "Use: /Kick [Id] [Motivo]");
}
else
{
if(!IsPlayerConnected(Id_Kick)) return
SendClientMessage(playerid, Branco, "Jogador Nгo Conectado");
GetPlayerName(playerid, Nome_E, 25);
GetPlayerName(Id_Kick, Nome_S, 25);
format(Str_E, sizeof(Str_E), "O Administrador {00FFFF}%s {FFFFFF}Kickou o Jogador {00FFFF}%s {FFFFFF}Pelo Motivo {00FFFF}%s", Nome_E, Nome_S, Motivo);
SendClientMessageToAll( Branco, Str_E);
SetTimer("Kick_Player", 10, false);
}
return 1;
}
Fica assim : .... Pelo motivo : Fazendo dm n
A string ta no seu valor mбximo, 125 . por que a msg n aparece toda ?