Przejdź do głównej zawartości

PlayerTextDrawIsProportional

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Checks if a player-textdraw is proportional.

Parameters

NameDescription
playeridThe ID of the player.
PlayerText:textidThe ID of the player-textdraw to check.

Return Values

Returns true if the player-textdraw is proportional, otherwise false.

Example Usage

new PlayerText:welcomeText[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
welcomeText[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Welcome to my OPEN.MP server");
PlayerTextDrawSetProportional(playerid, welcomeText[playerid], true);
PlayerTextDrawShow(playerid, welcomeText[playerid]);

if (PlayerTextDrawIsProportional(playerid, welcomeText[playerid]))
{
// Player-Textdraw is proportional
}
else
{
// Player-Textdraw is not proportional
}
return 1;
}