30.03.2013, 12:37
Hi everyone. I have a FilterScript Administration server, and it is bugar me the chat server. The commands appear all but the speeches of the players, no. And filterscript is because if the disconnect, is normally.*
Things I've tried:*
In gamemode put:
If I do this, it is exactly the same. I have also tried this by the end of FilterScript, but when I write something on the server, it crashes.* I've tried just putting:
And it's exactly as above. I need help fast. Thank You.
FilterScript
PasteBin
Things I've tried:*
In gamemode put:
PHP код:
public OnPlayerText(playerid, text[])
{
new textv2[128], name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof (name));
format(textv2, sizeof (textv2), "%d >> %s: %s", playerid, name, text);
SendPlayerMessageToAll(playerid, textv2);
return 0; // ignore the default text and send the custom one
}
PHP код:
public OnPlayerText(playerid, text[])
{
return 1;
}
FilterScript
PasteBin