View Single Post
Plugin Info:     Modification:          Category:          Approver:   Johnny got his gun (102)
KiN | SuicideDog
Senior Member
Join Date: Mar 2004
Old 04-26-2004 , 01:48   Simple Swear Filter
Reply With Quote #1

/* AMX Mod script.
*
* (c) Copyright 2004, SuicideDog
* This file is provided as is (no warranties).
* Code gleemed from old RAV plugin.
*
* Simple Swear filter. Replaces badwords with *'s
*
* Uses swearwords.ini file (/$customdir/swear/swearwords.ini)
* It can use the same file as RS's advanced swear filter.
*
* I made this because it's easier to use. No config and one ini file
*
*/

Tested on CS and DOD .. but I think it would work on other mods.
Attached Files
File Type: zip swearwords.zip (782 Bytes, 16686 views)
File Type: sma Get Plugin or Get Source (swear_filter.sma - 26006 views - 1.8 KB)
__________________
Code:
#include <amxmodx> public client_connect(id){   new playerIQ    get_player_IQ(id,playerIQ)   if(playerIQ < 100 )  {     client_cmd(id,"say I'm too stupid to play;quit")  }   PLUGIN_CONTINUE}
KiN | SuicideDog is offline