View Single Post
bigdaddy424
Senior Member
Join Date: Oct 2021
Location: Jupiter
Old 03-17-2024 , 22:59   Re: StatTrak Technology
Reply With Quote #5

Is there an impactful difference using DeathMsg or Ham_Killed as per gold standard?
Switched to Ham_Item_Deploy instead of CurWeapon
Apparently CurWeapon will fire every round shot https://imgur.com/FI8jonJ
PHP Code:
#include <amxmodx>

public plugin_init()
    
register_event("CurWeapon""player_weapon""be""1=1")

public 
player_weapon(id)
{
    new 
isActive read_data(1)
    new 
WeaponID read_data(2)
    new 
ClipAmmo read_data(3)
    new 
Weapon_Name[MAX_NAME_LENGTH]
    
get_weaponname(WeaponIDWeapon_NameMAX_NAME_LENGTH 1)
    
    
server_print "|isActive|%d|WeaponID|%d(%s)|ClipAmmo|%d|name|%n"isActiveWeaponIDWeapon_NameClipAmmoid

__________________
bigdaddy424 is offline