SA-MP Forums Archive
Help Again. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help Again. (/showthread.php?tid=92218)



Help Again. - Googles - 19.08.2009

How do I Disable My servers Main Chat?
Thx



Re: Help Again. - snoob - 19.08.2009

Quote:
Originally Posted by ******s
How do I Disable My servers Main Chat?
Thx
hi again
basicly, just return 0;
pawn Код:
public OnPlayerText(playerid, text[])
{
    //IF YOU RETURN 0 THE TEXT WONT SHOW
    return 1;
}



Re: Help Again. - Googles - 19.08.2009

Thx.