[hlcoders] Sending a regular text message

2004-12-06 Thread Josh
This is a multi-part message in MIME format. -- [ Picked text/plain from multipart/alternative ] How do I print a regular text message on a player's screen? Not any of the DIALOG stuff, just a message like if a user typed something in chat? Thanks, Josh -- ___

RE: [hlcoders] Sending a regular text message

2004-12-06 Thread Matt Boone
CTED] [mailto:[EMAIL PROTECTED] On Behalf Of Josh Sent: Monday, December 06, 2004 8:27 AM To: [EMAIL PROTECTED] Subject: [hlcoders] Sending a regular text message This is a multi-part message in MIME format. -- [ Picked text/plain from multipart/alternative ] How do I print a regular text message

RE: [hlcoders] Sending a regular text message

2004-12-06 Thread Josh
: Monday, December 06, 2004 6:27 PM To: [EMAIL PROTECTED] Subject: RE: [hlcoders] Sending a regular text message // to one player ClientPrint( pPlayer, HUD_PRINTTALK, "Hello World\n" ); // to all players UTIL_ClientPrintAll( HUD_PRINTTALK, "Hello World\n" ); Use HUD_PR