note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
HideGameTextForAll
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Descrição
Interrompe a exibição de um estilo de gametext para todos os jogadores.
Nome | Descrição |
---|---|
style | O estilo de texto a esconder. |
Retornos
Essa função não retorna nenhum valor específico.
Exemplos
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/hidegametext3", true))
{
if (!IsPlayerAdmin(playerid))
{
return 1;
}
HideGameTextForAll(3);
return 1;
}
return 0;
}
Funções Relacionadas
- HideGameTextForPlayer: Esconder um estilo de gametext para um jogador.
- GameTextForPlayer: Exibir um gametext para um jogador.
- GameTextForAll: Exibir um gametext para todos os jogadores.
- TextDrawHideForAll: Esconder um textdraw para todos os jogadores.