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.
HideGameTextForPlayer
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Stop showing a gametext style to a player.
Name | Description |
---|---|
playerid | The ID of the player to hide the gametext for. |
style | The style of text to hide. |
Returns
This function does not return any specific value.
Examples
public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
HideGameTextForPlayer(playerid, 3);
return 1;
}
Related Functions
- HideGameTextForAll: Stop showing a gametext style for all players.
- GameTextForPlayer: Display gametext to a player.
- GameTextForAll: Display gametext to all players.
- GetGameText: Gets all the information on the given game text style.
- HasGameText: Does the player currently have text in the given gametext style displayed?
- TextDrawHideForAll: Hide a textdraw for all players.