20.10.2014, 21:39
Hola a todos, hoy les vengo a pedir su ayuda con este codigo, lo que pasa es que quiero convertir el modo de escribir con un signo a un cmd....aqui les dejo el codigo, espero y me ayuden jeje
SALUDOS Y BUEN DIA...
SALUDOS Y BUEN DIA...
Код:
new Nick[MAX_PLAYER_NAME],
texto[128];
if(text[0] == '!' && EnClan[playerid] == true)
{
GetPlayerName(playerid, Nick, sizeof Nick);
format(texto, sizeof texto, "%s: %s", Nick, text[1]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Clan_ID[i] == Clan_ID[playerid])
{
SendClientMessage(i, CELESTE, texto);
}
}
}
return 0;


