Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
it's possible that you're looking for game_text or env_hudhint and not point_message.
Here are a few excerpts from the valve_developer site:
https://developer.valvesoftware.com/wiki/Point_message
point_message is a point entity available in all Source Source games. It displays a text message in the world, at its origin.
https://developer.valvesoftware.com/wiki/Game_text
game_text is a point entity available in all Source Source games. It displays text on players' screens.
EDIT: There is a bug that causes the game_text to disappear for values > __KeyValue FromString("x", "0.7") @csgo
If you are creating a mod with its own files and scripts, it's recommended to use the aforementioned env_message entity, which uses the titles.txt script for text parameters instead of keyvalues, allowing the text to be changed without having to recompile any maps.
https://developer.valvesoftware.com/wiki/Env_message
env_message is a point entity available in all Source Source games. It draws a text message on player HUDs, predefined in the /scripts/titles.txt file.
https://developer.valvesoftware.com/wiki/Env_hudhint
env_hudhint is a point entity available in all Source Source games. It is used to control the display of HUD hints, which show the player what key is bound to a particular command.
I had to search for a bit: here are some useful videos:
https://www.youtube.com/watch?v=RzsQ4F-lJ98
https://www.youtube.com/watch?v=BZB5gY7u2nA
Sry for the unnecessary post and have a nice week :)