Hello, and I'm getting unsuccessful results with this code (to try to send a mod-specific HUD message)
Code:
message_begin( MSG_ONE, 13, {0,0,0}, 1 );
write_byte( 0 ); //InfoMsg
write_string( "Test" ); //Title of HUDMessage
write_string( "Testing" ); //Content of HUDMessage
message_end();
Where 13 is g_netmsg[NETMSG_HUDMSG]
And 1 is me (when I'm alone on my own server)
Anyone know what I'm doing wrong?