Dota 2 Workshop Tools/Scripting/API/Global.UTIL MessageTextAll WithContext

From Valve Developer Community
Jump to: navigation, search
Dead End - Icon.png
This article has no links to other VDC articles. Please help improve this article by adding links that are relevant to the context within the existing text.
January 2024
Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

void UTIL_MessageTextAll_WithContext(string message, int r, int g, int b, int a, table context)

Sends a message to everyone in the message box with a context table

Example
UTIL_MessageTextAll_WithContext( "#ScoreboardRow", 255, 255, 255, 255, { team_name = "Team", value = 50 } )

--Where #ScoreboardRow is defined in the langauge files as
-- "ScoreboardRow"         "%value% %team_name%"

-- %value% would be replaced by the 'value' entry in the table, %team_name% would be replaced by team_name entry

Parameters

Type Name Description
string message Message to write
int r red color
int g green color
int b blue color
int a transparency
table context Table with context values