TextDrawHideForPlayer FR
From SA-MP Wiki
Page d'Accueil | Les Fonctions | Les Callbacks | Les bases du Scripting | Plugins de Serveur | Tutoriaux
Ne prenez pas en compte les FR dans les noms
Description:
Cache un TextDraw pour un joueur spécifique.
(playerid, Text:text)
playerid | L'ID du joueur à qui on va cacher le TextDraw. |
text | L'ID du TextDraw à cacher. |
Retourne | Cette fonction ne retourne pas de valeur spécifique. |
new Text:Textdraw[MAX_PLAYERS]; public OnPlayerConnect(playerid) { Textdraw[playerid] = TextDrawCreate( ... ); return 1; } public OnPlayerDisconnect(playerid, reason) { TextDrawDestroy(Textdraw[playerid]); return 1; } public OnPlayerSpawn(playerid) { TextDrawShowForPlayer(playerid, Textdraw[playerid]); return 1; } public OnPlayerDeath(playerid, reason) { TextDrawHideForPlayer(playerid, Textdraw[playerid]); return 1; }
Fonctions Relatives
Les fonctions suivantes peuvent être utiles car elles sont indirectement ou directement liées a cette fonction.
- TextDrawHideForAll: Cache un textdraw pour tous les joueurs.
- TextDrawShowForPlayer: Affiche le textdraw pour un certain joueur.
- TextDrawShowForAll: Affiche un textdraw pour tous les joueurs.