good afternoon I am trying to program the dmg of pug like esea, I want to than to execute the command. dmg when you start a round can view during 15 or 20 seconds the dmg of round last like esea! currently not know much do it please help!

I'll leave my code dmg here, and complete sma code...
PHP Code:
public cmd_dmg(id)
{
if(is_user_alive(id) && id != 0) pug_msg_tmp_empty(id,"PUG_CMD_NOTALLOWED");
else
{
static Players[32], name[32]
new playerCount, i, player
get_players(Players, playerCount, "ch")
new tmp_hits, tmp_dmg, tmp_rhits, tmp_rdmg, check
for (i=0; i<playerCount; i++)
{
player = Players[i]
tmp_hits = pug_hits[id][player]
tmp_rhits = pug_hits[player][id]
if( tmp_hits || tmp_rhits )
{
check = 1
tmp_dmg = pug_dmg[id][player]
tmp_rdmg = pug_dmg[player][id]
if(player == id) client_print(id,print_chat,"%s %L",pug_header,id,"PUG_AUX_DMG_SELF",tmp_dmg,tmp_hits)
else
{
get_user_name(player,name, 31)
client_print(id,print_chat,"%s %L",pug_header,id,"PUG_AUX_DMG",tmp_dmg,tmp_hits,tmp_rdmg,tmp_rhits, name)
}
}
}
tmp_hits = pug_hits[id][0]
tmp_rhits = pug_hits[0][id]
if( tmp_hits || tmp_rhits )
{
tmp_dmg = pug_dmg[id][0]
tmp_rdmg = pug_dmg[0][id]
client_print(id,print_chat,"%s %L",pug_header,id,"PUG_AUX_DMG","WorldSpawn",tmp_hits,tmp_dmg)
}
else if(!check) client_print(id,print_chat,"%s %L",pug_header,id,"PUG_AUX_NODMG")
}
return PLUGIN_HANDLED
}