Try this
PHP Code:
#include < amxmodx >
#include < fakemeta >
public plugin_init( )
register_forward( FM_ClientUserInfoChanged, "@ClientUserInfoChanged" );
@ClientUserInfoChanged( id, const szBuffer[ ], const szKey[ ] )
{
if( equal( szKey, "model" ) )
set_user_info( id, "model", "" );
return FMRES_IGNORED;
}
Quote:
Originally Posted by D4rkSiD3Rs
First, you can't block a client-side command!
|
You can.
__________________