SA-MP Forums Archive
[Ajuda] SenClientMessageToAll - 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: [Ajuda] SenClientMessageToAll (/showthread.php?tid=559545)



SenClientMessageToAll - Misael - 23.01.2015

Quote:

CMDounoob(playerid, params[])
{
SendClientMessageToAll(playerid,COR_AMARELO,"Eu admito, Sou noob");
return 1;

eu fiz esse comando pra testar mais nгo consegui usar o SenClientMessageToAll

alguem me explicar por favor ?

oq tem de errado?


Re: SenClientMessageToAll - Gii - 23.01.2015

pawn Код:
SendClientMessageToAll(playerid,COR_AMARELO,"Eu admito, Sou noob");
Sй й uma mensagem para todos (ToAll), nгo й necessбrio especificar o ID do jogador (playerid).

https://sampwiki.blast.hk/wiki/SendClientMessage_PT
https://sampwiki.blast.hk/wiki/SendClientMessageToAll_PT


Re: SenClientMessageToAll - NexNix - 23.01.2015

PHP код:
CMD:exemplo(playeridparams[])
{
new 
str[144];
format(str144"Exemplo de mensagem para todos.");
SendClientMessageToAll(-1str);
return 
1;




Re: SenClientMessageToAll - Misael - 23.01.2015

vlw ajudou.