View Single Post
lazarev
Veteran Member
Join Date: Sep 2008
Old 04-14-2010 , 17:08   Re: Help needed to check players flash light
Reply With Quote #3

PHP Code:
/* Plugin generated by AMXX-Studio */

#include < amxmodx >
#include < fakemeta >

public plugin_init() 
{
    
register_forwardFM_PlayerPostThink"Fwd_PlayerPostThink");
}

public 
Fwd_PlayerPostThinkid )
{
    if( 
is_user_aliveid ) )
    {
        
client_printidprint_center"[FlashLight] is %s"HasUserFlashLightOnid ) ? "on" "off" );
    }
}

bool:HasUserFlashLightOnid 
{   
    if( 
pevidpev_effects ) & EF_DIMLIGHT 
    {
        return 
true;
    }
    return 
false;


Last edited by lazarev; 04-15-2010 at 02:36.
lazarev is offline