what about this sort of thing...
Code:
register_event("TeamScore", "team_score", "a")
// Code....
new ctscore = 0 // Round score for CTs
new tscore = 0 // Round score for Ts
// Code...
public team_score()
{
new team[32]
read_data(1,team,32)
if (equal(team,"CT"))
ctscore = read_data(2)
else if (equal(team,"TERRORIST"))
tscore = read_data(2)
return PLUGIN_CONTINUE
}