SA-MP Forums Archive
Requesting a /clearchat [With ZCMD] - 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)
+--- Thread: Requesting a /clearchat [With ZCMD] (/showthread.php?tid=469004)



Requesting a /clearchat [With ZCMD] - thomaswilliams - 11.10.2013

Hey i need a /clearchat command for my server because these server advertisers keep coming on advertising servers, Thanks i need it with ZCMD [CMD:cc]


Re: Requesting a /clearchat [With ZCMD] - Konstantinos - 11.10.2013

You could search before. I can ****** it and find 50 results.
pawn Код:
CMD:cc( playerid, params[ ] )
{
    if( !IsPlayerAdmin( playerid ) ) return SendClientMessage( playerid, -1, "Not an admin!" );
    for( new i; i != 100; i++ ) SendClientMessageToAll( -1, " " );
    return 1;
}



Re: Requesting a /clearchat [With ZCMD] - xVIP3Rx - 11.10.2013

pawn Код:
CMD:clearchat(playerid, params[])
{
    if(IsPlayerAdmin(playerid))
    {
        for(new i = 0; i < 100; i++)
        SendClientMessageToAll(-1," ");
    }
    return 1;
}