View Single Post
Markiez
Junior Member
Join Date: Mar 2018
Location: somewhere over the rainbow
Old 05-07-2018 , 06:52   Re: Everyone please help me
Reply With Quote #6

Quote:
Originally Posted by alexwilliamw28 View Post
I need a plugin which is called White chat user kick

In this plugin if any simple admin use say @ i mean if he or she use white chat so he will be kicked automatically from server

Please help me i need it most
If I get this right, it should look something like this? I guess, havin hard time understanding actually wat u mean.

Code:
#include <sourcemod>

#pragma semicolon 1

public Action:OnClientSayCommand(client)
{
    decl String:text[99];
    GetCmdArgString(text, sizeof(text));
    
    if (StrContains(text, "@"))
    {
    	//do smth here
    }
}
__________________
bool am_I_retarded = true;

Last edited by Markiez; 05-07-2018 at 06:53.
Markiez is offline