View Single Post
Teamkiller324
Senior Member
Join Date: Feb 2014
Location: Earth
Old 03-23-2021 , 10:35   Re: AWP -X hp on every shot
Reply With Quote #6

PHP Code:

public Action weapon_fire(Handle event, const char[] namebool dontBroadcast)
{
    
int client GetClientOfUserId(GetEventInt(event"userid"));
    
char weapon[32];
    
GetEventString(event"weapon"weaponsizeof(weapon));
    
    if(
StrEqual(weapon"weapon_awp"))
    {
        
SDKHooks_TakeDamage(clientclientclientDamagePlayer);
    }

could be in newer syntax although :

PHP Code:

Action weapon_fire
(Event event, const char[] namebool dontBroadcast)
{
    
int client GetClientOfUserId(event.GetInt("userid"));
    
char weapon[32];
    
event.GetString("weapon"weaponsizeof(weapon));
    
    if(
StrEqual(weapon"weapon_awp"))
    {
        
SDKHooks_TakeDamage(clientclientclientDamagePlayer);
    }

__________________
Teamkiller324 is offline