View Single Post
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 09-17-2014 , 09:41   Re: Colorful Admin Message v1.0
Reply With Quote #6

The better way is this:
Code:
new g_MsgText public plugin init() {     g_MsgText = get_user_msgid("SayText") } stock print_colored ( const index, const input [ ], const any:... ) {     new id     for ( i = 0; i < count; i ++ )     {         id = players[ i ]         if ( is_user_connected ( id  ) )         {             message_begin ( MSG_ONE_UNRELIABLE, g_MsgText, _, id )             write_byte ( id )             write_string ( message )             message_end ( )         }     } }
__________________

Last edited by HamletEagle; 09-17-2014 at 09:43.
HamletEagle is offline