Quote:
Originally Posted by JeNkStAX
Quote:
Originally Posted by [K4L
Leopard ]
Quote:
Originally Posted by sk1llz
Quote:
Originally Posted by JeNkStAX
Post your code
|
Код:
public OnPlayerText(playerid, text[])
{
new string[128];
format(string, sizeof(string), "[%d] %s",playerid,text);
SendPlayerMessageToAll(playerid,string);
return 0;
}
|
Код:
public OnPlayerText(playerid, text[])
{
new string[128], pName[24];
GetPlayerName(playerid, pName, 24); //gets player name
format(string, sizeof(string), "%s [ID: %d]",pName, playerid); //formats name ("Leopard [ID: 0]")
SetPlayerName(playerid, string);
SendPlayerMessageToAll(playerid,text);
SetPlayerName(playerid, pName); //sets player name back to original
return 0;
}
brett7's and Jenksta's code will output: "Leopard: Leopard(ID: 0) <text>"
Mine will probably do what you want.
|
No it wont lol, If you return 0; then it will cancel out everything automaticlly, Use my code, It will work
|
Well, no it won't, afaik. It will only cancel the original text output (the text showing by sa-mp core) but it won't stop SendPlayerMessageToAll.