[Ajuda] Anticheater Amour e Heath. - 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] Anticheater Amour e Heath. (
/showthread.php?tid=624735)
Anticheater Amour e Heath. -
SukMathcuck - 21.12.2016
E aн, fiz um sistema que permite que o cheater й detectado, mais nгo manda nenhuma mensagem por que? o que eu fiz?
Mensagens erradas! -
RazorGuigo - 21.12.2016
vocк fez errado as mensagens:
SendClientMessage(playerid, Color, String[]);
troque
PHP код:
SendAdminMessage(COLOR_BROWN, strglobal, 1);
por:
PHP код:
SendAdminMessage(playerid,COLOR_BROWN, strglobal);
Re: Anticheater Amour e Heath. -
SukMathcuck - 21.12.2016
Essa ae tб certo, envia para os admins.
Respuesta: Anticheater Amour e Heath. -
RazorGuigo - 22.12.2016
mande o seu: "SendAdminMessage" entгo
Re: Anticheater Amour e Heath. -
SukMathcuck - 22.12.2016
PHP код:
static stock SendAdminMessage(cor, const string[], nivel)
{
foreach(new i: Player)
{
if(Account[i][pAdmin] >= nivel) SendClientMessage(i, cor, string);
}
printf("%s", string);
return 1;
}
Respuesta: Anticheater Amour e Heath. -
RazorGuigo - 22.12.2016
tenta assim:
PHP код:
stock SendAdminMessage(cor, const string[], nivel)
{
for(new i = 0; i < GetPlayerPoolSize()+1; i++)
{
if(Account[i][pAdmin] >= nivel) SendClientMessage(i, cor, string);
}
printf("%s", string);
return 1;
}
pergunta memi besta, mais precisa:ja verificou se a variбvel do adm, recebeu o valor correto?
Re: Anticheater Amour e Heath. -
SukMathcuck - 22.12.2016
Qual o motivo do +1? na GetPlayerPoolSize?
PHP код:
for(new i = 0; i < GetPlayerPoolSize()+1; i++)