17.02.2011, 21:51
this is what i have
for my anti server advertise this is for normal chat but when the player says the ip it still shows how would i replace what he says with something like "*" or "#" something to block out what they said?
Код:
public OnPlayerText(playerid, text[])
{
new ip[15];
if(ipmatch(text, ip))
{
SendClientMessage(playerid, COLOR_RED, "Server Advertiseing is not allowed!");
return 1;
}

