Thread: Remove C4
View Single Post
killer999
Senior Member
Join Date: Dec 2013
Location: India
Old 04-18-2021 , 01:16   Re: Remove C4
Reply With Quote #3

PHP Code:
#include <amxmodx>
#include <fakemeta>

public plugin_init()
{
    
register_plugin("Can't Plant C4""0.1""Exolent");
    
register_forward(FM_CmdStart"FwdCmdStart"0);
    
    return 
PLUGIN_CONTINUE;
}

public 
FwdCmdStart(plruc_handleseed)
{
    static 
clipammo;
    if( !
is_user_alive(plr)
    || 
get_user_weapon(plrclipammo) != CSW_C4 )
    {
        return 
FMRES_IGNORED;
    }
    
    new 
buttons get_uc(uc_handleUC_Buttons);
    if( 
buttons&IN_ATTACK )
    {
        
buttons &= ~IN_ATTACK;
        
set_uc(uc_handleUC_Buttonsbuttons);
        
        return 
FMRES_SUPERCEDE;
    }
    
    return 
FMRES_IGNORED;

__________________
killer999 is offline
Send a message via Skype™ to killer999