Przejdź do głównej zawartości

PlayerTextDrawFont

Description

Change the font of a player-textdraw.

NameDescription
playeridThe ID of the player whose player-textdraw to change the font of
PlayerText:textidThe ID of the player-textdraw to change the font of
TEXT_DRAW_FONT: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 Styles: Available Styles

Available Fonts: Available Fonts

Returns

This function does not return any specific values.

Examples

/*
TEXT_DRAW_FONT_0
TEXT_DRAW_FONT_1
TEXT_DRAW_FONT_2
TEXT_DRAW_FONT_3
TEXT_DRAW_FONT_SPRITE_DRAW
TEXT_DRAW_FONT_MODEL_PREVIEW
*/

new PlayerText:welcomeText[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
// First, create the textdraw
welcomeText[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Welcome to my server!");

// Set the font of player-textdraw 'welcomeText[playerid]' to 2.
PlayerTextDrawFont(playerid, welcomeText[playerid], TEXT_DRAW_FONT_2);

// Show 'welcomeText[playerid]' to player
PlayerTextDrawShow(playerid, welcomeText[playerid]);

return 1;
}