UTIL SayText: Difference between revisions
Jump to navigation
Jump to search
(Created page.) |
m (This function is a wrapper.) |
||
Line 1: | Line 1: | ||
[[UTIL]] function that sends a message to a player. | [[UTIL]] wrapper function for [[UTIL_SayTextFilter]] that sends a message to a player. | ||
==Usage== | ==Usage== |
Revision as of 20:35, 22 July 2021
UTIL wrapper function for UTIL_SayTextFilter that sends a message to a player.
Usage
void UTIL_SayText(const char *pText, CBasePlayer *pToPlayer)
Examples
CON_COMMAND( say_self, "Sends message to self in chat") { UTIL_SayText(args, ToBasePlayer(UTIL_GetCommandClientIndex())); }