UTIL SayText: Difference between revisions
Jump to navigation
Jump to search

GamerDude27 (talk | contribs) m (Cleanup) |
No edit summary |
||
Line 1: | Line 1: | ||
[[UTIL]] | {{lang|UTIL SayText|title=<code>UTIL_SayText</code>}} | ||
{{ent|UTIL_SayText}} is a wrapper [[UTIL]] function for {{ent|UTIL_SayTextFilter}} that sends a message to a player. | |||
==Usage== | ==Usage== | ||
Line 8: | Line 9: | ||
==Examples== | ==Examples== | ||
<source lang=cpp> | <source lang=cpp> | ||
/* Sent message to the player that executed `say_self`. */ | |||
CON_COMMAND( say_self, "Sends message to self in chat" ) | |||
{ | |||
UTIL_SayText( args, ToBasePlayer( UTIL_GetCommandClientIndex() ) ); | |||
} | |||
</source> | </source> | ||
[[Category:Programming]] | |||
[[Category:UTIL]] | [[Category:UTIL]] |
Revision as of 22:31, 2 November 2021


UTIL_SayText is a wrapper UTIL function for UTIL_SayTextFilter that sends a message to a player.
Usage
void UTIL_SayText( const char *pText, CBasePlayer *pToPlayer )
Examples
/* Sent message to the player that executed `say_self`. */
CON_COMMAND( say_self, "Sends message to self in chat" )
{
UTIL_SayText( args, ToBasePlayer( UTIL_GetCommandClientIndex() ) );
}