[AJUDA] Ocultar Nick - 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] Ocultar Nick (
/showthread.php?tid=280189)
[AJUDA] Ocultar Nick -
EduardoDj - 30.08.2011
Quero ocultar o nick dos players, e quando digito o comando que coloquei no GM:
pawn Код:
if (strcmp("/nickoff", cmdtext, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, false);
GameTextForPlayer(playerid, "~W~Nicks Desativos ~R~off", 5000, 5);
return 1;
}
o nick do player desaparece e reaparece rapidamente, alguem faz ideia em que parte do GM pode estб causando o conflito? agradeзo.
Re: [AJUDA] Ocultar Nick -
Shadoww5 - 30.08.2011
new bool:Nick;
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/nickoff", cmdtext, true) == 0)
{
if(!Nick)
{
Nick = true;
ShowNameTags( 1 );
GameTextForPlayer(playerid, "~W~Nicks ativados ~g~ON", 5000, 5);
}
else
{
Nick = false;
ShowNameTags( 0 );
GameTextForPlayer(playerid, "~W~Nicks Desativos ~R~off", 5000, 5);
}
return 1;
}
return 0;
}
Re: [AJUDA] Ocultar Nick -
EduardoDj - 30.08.2011
Nгo funcionou..
Re: [AJUDA] Ocultar Nick -
StrondA_ - 31.08.2011
pawn Код:
if (strcmp("/nickoff", cmdtext, true) == 0)
{
ShowPlayerNameTagForPlayer(playerid, false);//so vai desativar no jogador, o loop iria apagar todos..
GameTextForPlayer(playerid, "~W~Nicks Desativos ~R~off", 5000, 5);
return true;
}