31.01.2011, 11:29
This code is better optimized and won't waste almost 100 character long string
in your servers memory. You can make It 18 characters longer without problems now,
but If you want a longer string just change the "+48" to a higher number.
in your servers memory. You can make It 18 characters longer without problems now,
but If you want a longer string just change the "+48" to a higher number.
pawn Код:
new str[MAX_PLAYER_NAME+48],pname[MAX_PLAYER_NAME];
GetPlayerName(playerid,pname,sizeof(pname));
format(str,sizeof(str),"%s has entered the Dildo DM area",pname);
SendClientMessageToAll(playerid,-1,str);