/* round number stored in this */new g_iRound/* first it's "first or second half" and second it's the team */new g_iScore[2][2]new pCvar_mp_maxroundspublic plugin_init(){ register_message(get_user_msgid("TeamScore"), "msg_TeamScore") pCvar_mp_maxrounds = get_pcvar_pointer("mp_maxrounds")}public msg_TeamScore(){ new iHalf new iTeam new szTeam[2] get_msg_arg_string(1, szTeam, charsmax(szTeam)) if(g_iRound > (get_pcvar_num(pCvar_mp_maxrounds) / 2)) iHalf = 1 if(szTeam[0] == 'C') iTeam = 1 set_msg_arg_int(2, ARG_SHORT, g_iScore[iHalf][iTeam])}