16.08.2010, 23:29
Okay i get it now
as example
Really usefull to know , its like 3 times as small as my regular pm with strcmp
pawn Код:
dcmd_pm(playerid,params[]) {
new id,message;
sscanf(params,"is",id,message);
new pName[32];
new string[128];
GetPlayerName(playerid,pName,32);
format(string,sizeof string,"PM From %s(%i): %s",pName,playerid,message);
SendClientMessage(id,COLOR_ORANGE,string);
}
return 1;
}
Really usefull to know , its like 3 times as small as my regular pm with strcmp