BeginTextCommandThefeedPost
DocsBeginTextCommandThefeedPost(text)Description
Declares the entry type of a notification, for example "STRING".
int ShowNotification(char \*text)
{
BEGIN_TEXT_COMMAND_THEFEED_POST("STRING");
ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text);
return \_DRAW_NOTIFICATION(1, 1);
}
Parameters
| Name | Type | Description |
|---|---|---|
text | char* | The text label to use. |
Returns
voidThis native does not return a value.
Examples
Official
BeginTextCommandThefeedPost("STRING")
AddTextComponentSubstringPlayerName("Hello " .. GetPlayerName(PlayerId()) .. ".")
EndTextCommandThefeedPostTicker(true, true)