Przejdź do głównej zawartości

HideGameTextForAll

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Stop showing a gametext style for all players.

NameDescription
styleThe style of text to hide.

Returns

This function does not return any specific value.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/hidegametext3", true))
{
if (!IsPlayerAdmin(playerid))
{
return 1;
}

HideGameTextForAll(3);
return 1;
}
return 0;
}