22.06.2015, 00:01
Quote:
|
Код:
CMD:pm(playerid, params[])
{
new targetid,message[128],string[256];
if(sscanf(params,"us[256]", targetid, message)) return SendClientMessage(playerid,COLOR_YELLOW,"USAGE: /pm [playerid] [message]");
if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid,COLOR_RED,"Player is not online");
if(targetid == playerid) return SendClientMessage(playerid,COLOR_RED,"You Can'nt PM Your Self!");
if(AllowPM[targetid] == 1)
{
format(string, sizeof(string),"PM From %s Message: %s", GetPlayerName(playerid), message);
SendClientMessage(targetid, COLOR_RED, string);
format(string, sizeof(string),"PM send to %s Message: %s", GetPlayerName(targetid), message);
SendClientMessage(playerid, COLOR_RED, string);
}
else return SendClientMessage(playerid, COLOR_RED,"That player is not allowing PM's to send to him, sorry!");
return 1;
}
|
Quote:
|
Код:
new pname[MAX_PLAYER_NAME]; GetPlayerName(playerid,pname,sizeof(pname)); |
Quote:
|
For the rest you are not using GetPlayerName correctly. This is the correct way to use it:
pawn Код:
|

