[Ajuda] Chat das Orgs - 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] Chat das Orgs (
/showthread.php?tid=632002)
Chat das Orgs -
WILK3R - 08.04.2017
PHP код:
public OnPlayerText(playerid, text[])
{
if(text[0] == '!')
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
format(String, sizeof(String), "%s[%i]: %s",Nome(playerid), playerid, text);
if(PlayerOrgInfo[i][PMilitar] == true)
{
SendClientMessage(i, -1, String);
}
}
}
return 1;
}
Mano eu fiz esse cуdigo e ta funcionando mais quando vou usar, tipo quando digito !Hello Word. Aparece a mensagem para as pessoas da gang e aparece mais uma mensagem abaixo, veja a imagem a baixo.
Imagem: Aqui...
Re: Chat das Orgs -
HoodScript - 08.04.2017
Quote:
Originally Posted by WILK3R
PHP код:
public OnPlayerText(playerid, text[])
{
if(text[0] == '!')
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
format(String, sizeof(String), "%s[%i]: %s",Nome(playerid), playerid, text);
if(PlayerOrgInfo[i][PMilitar] == true)
{
SendClientMessage(i, -1, String);
}
}
}
return 1;
}
Mano eu fiz esse cуdigo e ta funcionando mais quando vou usar, tipo quando digito !Hello Word. Aparece a mensagem para as pessoas da gang e aparece mais uma mensagem abaixo, veja a imagem a baixo.
Imagem: Aqui...
|
deixe assim:
PHP код:
public OnPlayerText(playerid, text[])
{
if(text[0] == '!')
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
format(String, sizeof(String), "%s[%i]: %s",Nome(playerid), playerid, text);
if(PlayerOrgInfo[i][PMilitar] == true)
{
SendClientMessage(i, -1, String);
}
}
}
return 0;
}
Re: Chat das Orgs -
WILK3R - 08.04.2017
KKK mano pode ate parecer coisa de doido mais eu nгo vir que isso aн tava 1 serio mesmo!
Resolvido Vlw cara.