forked from Simnation/Main
8 lines
256 B
Lua
8 lines
256 B
Lua
|
|
---Displays a notification to the player
|
||
|
|
---@param message string
|
||
|
|
function DisplayNotification(message)
|
||
|
|
BeginTextCommandThefeedPost('STRING')
|
||
|
|
AddTextComponentSubstringPlayerName(message)
|
||
|
|
EndTextCommandThefeedPostTicker(false, false)
|
||
|
|
end
|