SA-MP Forums Archive
[PEDIDO] ID do player ao falar no chat - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [PEDIDO] ID do player ao falar no chat (/showthread.php?tid=180063)



[PEDIDO] ID do player ao falar no chat - [RoxX]Ygor - 29.09.2010

Eu ja fis um tуpico sobre isto mais ninguem me ajudou corretamente, eu estou editando um LVDM, e eu queria que alguem me ensinasse a por para aparecer o ID do player ao falar no chat, ja atй peguei o code mais toda vez que eu tento por nгo funfa ou da um monte de erro, agreзo quem fazer isso


Re: [PEDIDO] ID do player ao falar no chat - Dr_Pawno - 29.09.2010

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[256], pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, sizeof(pname));
    format(string, sizeof(string), "%s(%d) diz: %s", pname, playerid, text);
    SendClientMessageToAll(playerid, COR, string);
    return 0;
}



Re: [PEDIDO] ID do player ao falar no chat - [RoxX]Ygor - 29.09.2010

Eu puis lб no GM, olha ai o erro que deu.

Код:
.pwn(2258) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664              Copyright © 1997-2006, ITB CompuPhase


1 Error.



Re: [PEDIDO] ID do player ao falar no chat - Dr_Pawno - 29.09.2010

manda qual foi a linha do erro


Re: [PEDIDO] ID do player ao falar no chat - [RoxX]Ygor - 29.09.2010

ai

pawn Код:
SendClientMessageToAll(playerid, 0xFFFFFFAA, string);
    return 0;
}



Re: [PEDIDO] ID do player ao falar no chat - Dr_Pawno - 29.09.2010

malz!! errei
Код:
SendClientMessageToAll(0xFFFFFFAA, string);
malz 2, malz 3, malz 4... e assim vai


Re: [PEDIDO] ID do player ao falar no chat - [RoxX]Ygor - 29.09.2010

Quote:
Originally Posted by Dr_Pawno
Посмотреть сообщение
malz!! errei
Код:
SendClientMessageToAll(0xFFFFFFAA, string);
malz 2, malz 3, malz 4... e assim vai
Errar й humano cara, mesmo errando vocк me ajudou, valeuuuuuuuuuu mesmo cara deu certinho vocк й o cara!!


Re: [PEDIDO] ID do player ao falar no chat - Dr_Pawno - 29.09.2010

Quote:
Originally Posted by [RoxX]Ygor
Посмотреть сообщение
Errar й humano cara, mesmo errando vocк me ajudou, valeuuuuuuuuuu mesmo cara deu certinho vocк й o cara!!
eu sei, so d +!!


Re: [PEDIDO] ID do player ao falar no chat - [RoxX]Ygor - 29.09.2010

Ou cara uma simples coisa, eu puis assim para aparecer a cor do nick do player

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[256], pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, sizeof(pname));
    format(string, sizeof(string), "%s: (%d) %s", pname, playerid, text);
    SendClientMessageToAll(playerid,string);
    return 0;
}
mudei so essa linha aqui

Код:
SendClientMessageToAll(playerid,string);
mais quando fala no chat o nikc fica preto muito estranho sabe oque й ?


Re: [PEDIDO] ID do player ao falar no chat - SuB_ZeRo0_ - 29.09.2010

Quote:
Originally Posted by [RoxX]Ygor
Посмотреть сообщение
Ou cara uma simples coisa, eu puis assim para aparecer a cor do nick do player

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[256], pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, sizeof(pname));
    format(string, sizeof(string), "%s: (%d) %s", pname, playerid, text);
    SendClientMessageToAll(playerid,string);
    return 0;
}
mudei so essa linha aqui

Код:
SendClientMessageToAll(playerid,string);
mais quando fala no chat o nikc fica preto muito estranho sabe oque й ?
Muda de:
SendClientMessageToAll();


Para:
SendPlayerMessageToAll(playerid,text);