Skip to main content

GameTextForPlayer

คำอธิบาย

Shows 'game text' (on-screen text) for a certain length of time for a specific player.

NameDescription
playeridThe ID of the player to show the gametext for.
const string[]The text to be displayed.
timeThe duration of the text being shown in milliseconds.
styleThe style of text to be displayed.

ส่งคืน

1: The function executed successfully. Success is reported when the style and/or time is invalid. Nothing will happen though (no text displayed). May also cause game crashes.

0: The function failed to execute. This means either the string is null or the player is not connected.

ตัวอย่าง

public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
GameTextForPlayer(playerid, "Wasted", 5000, 2);
return 1;
}

ฟังก์ชั่นที่เกี่ยวข้องกัน