<python> class CTeam:
int GetRoundScore() None SetRoundScore( int score ) None IncrementRoundScore( int amount ) int GetMatchScore() None SetMatchScore( int score ) None IncrementMatchScore( int amount ) None ResetMatchScore() int GetNumPlayers() int GetTeamNumber() string GetName()
</python>
<python> GEMPGameRules.GetTeam( GEGlobal.TEAM_JANUS ).IncrementRoundScore( 10 )
teamJ = GEMPGameRules.GetTeam( GEGlobal.TEAM_JANUS ) scoreJ = teamJ.GetRoundScore() + teamJ.GetMatchScore() </python>