use tries it will make your life much easiers than dynamic arrays for this kind purpose since you're seeking using strings.
also if you're using an array for a limited size such as max players you can make a 3d array it will be better.
PHP Code:
enum _:PlayerStats
{
AttackerName[MAX_NAME_LENGTH],
DamageGiven,
DamageReceived
}
new g_victim_stats[33][33][PlayerStats]
g_victim_stats[ VICTIM_ID ] [ ATTACKER_ID ] [ PlayerStats ]
__________________