[PEDIDO] Comando
#1

E ae pessoal tudo na boa?? Eu nгo sei se fiz esse tуpico, mais queria fazer outro, que quando a pessoa digita-se algo no chat, aparecia a ID da pessoa do lado, tipo RPG, aqueles que mostra, sу que queria um que nгo venha bug ou que o nome da pessoa fica invisнvel, de preferкncia, a cor da informaзгo da ID fosse branca tipo assim:

COR BRANCA = [ID: %d]

Tipo isso sacou?? Vlw quem me ajudar !!!
Reply
#2

Poste seu OnPlayerText.
Reply
#3

PHP код:
new nome[MAX_PLAYER_NAME],str[128];
GetPlayerName(playerid,nome,sizeof(nome));
format(str,sizeof(str),"{FF00FF}%s{FFFFFF} (%d): %s",nome,playerid,text);
SendClientMessageToAll(-1,str); 
Em OnPlayerText :B
Reply
#4

Vlw depois eu testo, Qualquer coisa do EDIT
Reply
#5

Fico tudo bagunзado, mostro a ID, e depois mais embaixo fico o nome normal, tem jeito de arrumar ai?
Reply
#6

public OnPlayerCommandText()

new nome[MAX_PLAYER_NAME],str[128];
GetPlayerName(playerid,nome,sizeof(nome));
format(str,sizeof(str),"{FF00FF}%s{FFFFFF} (%d): %s",nome,playerid,text);
SendClientMessageToAll(-1,str);
return 0x0;
}
Reply
#7

Quote:
Originally Posted by Ricop522
Посмотреть сообщение
public OnPlayerCommandText()

new nome[MAX_PLAYER_NAME],str[128];
GetPlayerName(playerid,nome,sizeof(nome));
format(str,sizeof(str),"{FF00FF}%s{FFFFFF} (%d): %s",nome,playerid,text);
SendClientMessageToAll(-1,str);
return 0x0;
}
lol

pawn Код:
public OnPlayerText(playerid, text[])
{
     new n[24], string[128];
     format(string, sizeof(string),"{FF00FF}%s{FFFFFF}(%i): %s",GetPlayerName(playerid, n, 24),playerid, text);
     SendClientMessageToAll(-1, string);
     return 0;
}
acho que o OnPlayerCommandText nгo existe o parвmetro text.
Reply
#8

Funciono, portanto eu queria que a cor sу fosse no ID, nгo nome inteiro.
Tipo sу o ID que tive-se uma cor sу.
Reply
#9

Sinceramente, eu ainda nгo entendi o que vocк falou ...

Tem alguma screenshot que vocк pode nos mostrar ? Facilitaria muito.
Reply
#10

Quote:
Originally Posted by TheGarfield
Посмотреть сообщение
lol

pawn Код:
public OnPlayerText(playerid, text[])
{
     new n[24], string[128];
     format(string, sizeof(string),"{FF00FF}%s{FFFFFF}(%i): %s",GetPlayerName(playerid, n, 24),playerid, text);
     SendClientMessageToAll(-1, string);
     return 0;
}
acho que o OnPlayerCommandText nгo existe o parвmetro text.
Viajei. Era Text.

PHP код:

     
new n[MAX_PLAYER_NAME], string[0x80]; GetPlayerName(playeridnsizeof(n));
     
format(stringsizeof(string),"%s[%i] entrou!",n,playerid);
     
SendClientMessageToAll(-1string); 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)