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

Code:
for ( i = 0; i < count; i ++ )     {         if ( is_user_connected ( players [ i ] ) )         {             message_begin ( MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players [ i ] )             write_byte ( players [ i ] )             write_string ( message )             message_end ( )         }     }

Cache get_user_msgid("SayText").
Don't re-index an array.
__________________

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