18.03.2012, 08:05
he doesn't copy it look we have the same time post
he is just little seconds late
EDIT:
You didn't see this line from his code?
i use isnull and he use strlen
or you can just use if(isnull(params))
Код:
8:02 AM
EDIT:
You didn't see this line from his code?
pawn Код:
if(!strlen(params)) return SendClientMessage(playerid,COLOR_RED,"USAGE: /me <text>");
Quote:
Код:
CMD:me(playerid, params[]) { new string[128],pname[MAX_PLAYER_NAME]; GetPlayerName(playerid,pname,sizeof(pname)); if(!strlen(params)) return SendClientMessage(playerid,COLOR_RED,"USAGE: /me <text>"); format(string,sizeof(string),"*%s %s",pname,params); SendClientMessageToAll(COLOR_GREY,string); return 1; } |