15.07.2013, 12:08
Hey,
Whats better for sending format messages (SendClientMessage) .
static or new ?
I understand that static value will forgotten after the code was done.
like :
Whats better for sending format messages (SendClientMessage) .
static or new ?
I understand that static value will forgotten after the code was done.
like :
Code:
if(dialogid == DIALOG_Login) { static string[MAX_PLAYER_NAME]; format(string, sizeof(string),"%s",GetName(playerid)); SendClientMessageToAll(-1,string); }