I don`t konw if I misread you, this code can save the teamscore into g_TeamScore[ CsTeams ]
Code:
new g_TeamScore[ CsTeams ]
public plugin_init()
{
register_event("TeamScore", "fw_EvTeamScore", "a")
}
public fw_EvTeamScore()
{
new szTeam[2];
read_data(1, szTeam, 1);
g_TeamScore[ ( szTeam[0] == 'T' ) ? CS_TEAM_T : CS_TEAM_CT ] = read_data(2);
}
__________________