Good Job First of all ..
I am using ultimate chat color .. and ultimate chat tag ..
1 problem i am encountering is i am trying to hide '/' commands and its not working..
The same plugin used to work before .. but it isnt working now.. Dont know the issue..
I am not using any other chat hooking plugin..
Here ..
Quote:
Originally Posted by ConnorMcLeod
PHP Code:
#include < amxmodx >
public plugin_init( ) { register_plugin( "Hide Slash Commands", "1.0.0", "Kreation" ); register_clcmd( "say", "CmdSay" ); register_clcmd( "say_team", "CmdSay" ); }
public CmdSay( id ) { new szArg[4]; read_args( szArg, charsmax( szArg ) ); remove_quotes( szArg );
return szArg[0] == '/' ? PLUGIN_HANDLED_MAIN : PLUGIN_CONTINUE; }
|
__________________