TextDrawSetString 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:
Change le texte d'un textdraw.
(Text:text, string[])
text | L'ID du textdraw dont on va changer le texte. |
string[] | Le nouveau texte du textdraw. |
Retourne | Cette fonction ne retourne pas de valeur spécifique. |
Note | Il y a une limite pour la taille des textdraws, regardez ici pour plus d'informations. |
new Text:himessage; public OnGameModeInit() { himessage = TextDrawCreate(1.0, 5.6, "Salut, comment ça va ?"); return 1; } public OnPlayerConnect(playerid) { new newtext[41], name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, MAX_PLAYER_NAME); format(newtext, sizeof(newtext), "Salut %s, comment tu vas ?", name); TextDrawSetString(himessage, newtext); TextDrawShowForPlayer(playerid, himessage); return 1; }
Fonctions Relatives
Les fonctions suivantes peuvent être utiles car elles sont indirectement ou directement liées a cette fonction.
- TextDrawCreate: Crée un textdraw.
- TextDrawDestroy: Détruit un textdraw.
- TextDrawColor: Modifie la couleur d'un texte dans un textdraw.
- TextDrawBoxColor: Modifie la couleur d'une boite dans un textdraw.
- TextDrawBackgroundColor: Modifie la couleur du fond d'un textdraw.
- TextDrawAlignment: Modifie l'alignement d'un textdraw.
- TextDrawFont: Modifie la police de texte d'un textdraw.
- TextDrawLetterSize: Modifier la taille des lettres dans un textdraw.
- TextDrawTextSize: Modifier la taille de la boite d'un textdraw.
- TextDrawSetOutline: Choisi si le texte possède un contour ou pas.
- TextDrawSetShadow: Active/Désactive l'ombre sur un textdraw.
- TextDrawSetProportional: Faire en sorte que l'espace entre chaque lettre soit proportionnel à la taille du textdraw.
- TextDrawUseBox: Active/Désactive l'utilisation d'une boîte dans un textdraw.
- TextDrawShowForPlayer: Affiche le textdraw pour un certain joueur.
- TextDrawHideForPlayer: Cache un textdraw pour un certain joueur.
- TextDrawShowForAll: Affiche un textdraw pour tous les joueurs.
- TextDrawHideForAll: Cache un textdraw pour tous les joueurs.