Пређи на главни садржај

TextDrawSetString

Description

Changes the text on a textdraw.

NameDescription
Text:textidThe TextDraw to change
const format[]The new string for the TextDraw
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

This function does not return any specific values.

Examples

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(1.0, 5.6, "Hi, how are you?");
return 1;
}

public OnPlayerConnect(playerid)
{
new
string[64],
playerName[MAX_PLAYER_NAME];

GetPlayerName(playerid, playerName, sizeof playerName);

format(string, sizeof(string), "Welcome %s!", playerName);
TextDrawSetString(gMyTextdraw, string);

// PRO TIP: You don't need `format` in open.mp
TextDrawSetString(gMyTextdraw, "Welcome %s!", playerName);

TextDrawShowForPlayer(playerid, gMyTextdraw);
return 1;
}

Notes

warning

There are limits to the length of textdraw strings - see here for more info.