PlayerTextDrawFont

From SA-MP Wiki

Jump to: navigation, search


PlayerTextDrawFont was added in SA-MP 0.3e This feature (player-textdraws) was added in SA-MP 0.3e and will not work in earlier versions!


Description:

Change the font of a player-textdraw.


Parameters:
(playerid, PlayerText:text, font)
playeridThe ID of the player whose player-textdraw to change the font of
textThe ID of the player-textdraw to change the font of
fontThere are four font styles as shown below. A font value greater than 3 does not display, and anything greater than 16 crashes the client.

Available Fonts:

Image:Textdraw_font_styles.png

Image:Textdraw_Fonts.png}}

Return Values:

This function does not return any specific values.


Example Usage:

new PlayerText:welcomeText[MAX_PLAYERS];
 
public OnPlayerConnect(playerid)
{
    // First, create the textdraw
    welcomeText[playerid] = CreatePlayerTextDraw(playerid, 240.0, 580.0, "Welcome to my SA-MP server");
    // Set the font of player-textdraw 'welcomeText' to 2.
    PlayerTextDrawFont(playerid, welcomeText[playerid], 2);

Related Functions

The following functions may be useful, as they are related to this function in one way or another.


Personal tools
Navigation
Toolbox