View Single Post
Hawk552
AMX Mod X Moderator
Join Date: Aug 2005
Old 08-14-2009 , 18:38   Re: Custom Leave Messages by Jon
Reply With Quote #20

PHP Code:
if( strlen(g_Message[id]) ) 
It would be better to just check whether or not the first character is null.

PHP Code:
vformat(szMsg[len], 191 lenszText3); 
This should be 190.

PHP Code:
message_begin(id MSG_ONE MSG_BROADCASTg_MsgSayText_id); 
This should be either:

PHP Code:
message_begin(id MSG_ONE_UNRELIABLE MSG_BROADCASTg_MsgSayText_id); 
... or ...

PHP Code:
message_begin(id MSG_ONE MSG_ALLg_MsgSayText_id); 
The former is preferable.
__________________
Hawk552 is offline
Send a message via AIM to Hawk552