Thread: Anti-Spam Lite
View Single Post
mlibre
Veteran Member
Join Date: Nov 2015
Location: return PLUGIN_CONTINUE
Old 09-21-2023 , 11:24   Re: Anti-Spam Lite
Reply With Quote #39

Quote:
Originally Posted by giogio91 View Post
dosen't work at all...
maybe worked long time ago , when hacker's weren't soooo advanced...
maybe somebody can make one that works ^_^ would be very nice of him'
IMAGE...
basic filter

PHP Code:
public plugin_init() {
    
//...
    
    
register_clcmd("say""get_say")
}

new const 
g_filter[][] =
{
    
"fuck",
    
"gay"
}

public 
get_say(id)
{
    new 
msg[192]
    
    
read_args(msgcharsmax(msg))
    
    
remove_quotes(msg)
    
    for(new 
isizeof g_filteri++)
    {
        if(
containi(msgg_filter[i]) != -1)
        {
            
client_print(idprint_notify"blocked word")
            
            return 
PLUGIN_HANDLED
        
}
    }
    
    return 
PLUGIN_CONTINUE

__________________
mlibre is offline