08.07.2010, 19:31
Black supposed to be white?
OnPlayerText is what your looking for
EDIT: Looks like hiddos where faster then me there
OnPlayerText is what your looking for
EDIT: Looks like hiddos where faster then me there
pawn Код:
public OnPlayerText(playerid,text[])
{
new string[128];
format(string,sizeof string,"%s:[%d] %s",GetName,playerid,text);
SendPlayerMessageToAll(playerid,string);
return 1;
}
stock GetName(playerid)
{
new pName[24];
GetPlayerName(playerid, pName, 24);
return pName;
}