3 #include "command/common.qh"
4 #include "mutators/all.qh"
5 #include "../common/playerstats.qh"
6 #include "../common/teams.qh"
9 entity teamscorekeepers[16];
10 string scores_label[MAX_SCORE];
11 float scores_flags[MAX_SCORE];
12 string teamscores_label[MAX_TEAMSCORE];
13 float teamscores_flags[MAX_TEAMSCORE];
14 float teamscores_entities_count;
15 var .float scores_primary;
16 var .float teamscores_primary;
17 float scores_flags_primary;
18 float teamscores_flags_primary;
20 vector ScoreField_Compare(entity t1, entity t2, .float field, float fieldflags, vector previous, float strict) // returns: cmp value, best prio
22 if(!strict && !(fieldflags & SFL_SORT_PRIO_MASK)) // column does not sort
24 if((fieldflags & SFL_SORT_PRIO_MASK) < previous.y)
26 if (t1.(field) == t2.(field))
29 previous.y = fieldflags & SFL_SORT_PRIO_MASK;
31 if(fieldflags & SFL_ZERO_IS_WORST)
38 else if (t2.(field) == 0)
45 if (fieldflags & SFL_LOWER_IS_BETTER)
46 previous.x = (t2.(field) - t1.(field));
48 previous.x = (t1.(field) - t2.(field));
57 bool TeamScore_SendEntity(entity this, entity to, float sendflags)
59 float i, p, longflags;
61 WriteHeader(MSG_ENTITY, ENT_CLIENT_TEAMSCORES);
62 int t = this.team - 1;
63 assert(t, eprint(this));
64 WriteByte(MSG_ENTITY, t);
67 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
68 if(self.(teamscores[i]) > 127 || self.(teamscores[i]) <= -128)
71 #if MAX_TEAMSCORE <= 8
72 WriteByte(MSG_ENTITY, sendflags);
73 WriteByte(MSG_ENTITY, longflags);
75 WriteShort(MSG_ENTITY, sendflags);
76 WriteShort(MSG_ENTITY, longflags);
78 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
82 WriteInt24_t(MSG_ENTITY, self.(teamscores[i]));
84 WriteChar(MSG_ENTITY, self.(teamscores[i]));
90 void TeamScore_Spawn(float t, string name)
92 entity ts = new(csqc_score_team);
94 ts.netname = name; // not used yet, FIXME
96 Net_LinkEntity(ts, false, 0, TeamScore_SendEntity);
97 teamscorekeepers[t - 1] = ts;
98 ++teamscores_entities_count;
99 PlayerStats_GameReport_AddTeam(t);
102 float TeamScore_AddToTeam(float t, float scorefield, float score)
109 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
110 if(t <= 0 || t >= 16)
114 error("Adding score to invalid team!");
116 s = teamscorekeepers[t - 1];
121 error("Adding score to unknown team!");
124 if(teamscores_label[scorefield] != "")
125 s.SendFlags |= pow(2, scorefield);
126 return (s.(teamscores[scorefield]) += score);
129 float TeamScore_Add(entity player, float scorefield, float score)
131 return TeamScore_AddToTeam(player.team, scorefield, score);
134 float TeamScore_Compare(entity t1, entity t2, float strict)
136 if(!t1 || !t2) return (!t2) - !t1;
138 vector result = '0 0 0';
140 for(i = 0; i < MAX_TEAMSCORE; ++i)
144 result = ScoreField_Compare(t1, t2, f, teamscores_flags[i], result, strict);
147 if (result.x == 0 && strict)
148 result.x = t1.team - t2.team;
154 * the scoreinfo entity
157 void ScoreInfo_SetLabel_PlayerScore(float i, string label, float scoreflags)
159 scores_label[i] = label;
160 scores_flags[i] = scoreflags;
161 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
163 scores_primary = scores[i];
164 scores_flags_primary = scoreflags;
168 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
169 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
173 void ScoreInfo_SetLabel_TeamScore(float i, string label, float scoreflags)
175 teamscores_label[i] = label;
176 teamscores_flags[i] = scoreflags;
177 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
179 teamscores_primary = teamscores[i];
180 teamscores_flags_primary = scoreflags;
184 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
185 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
189 bool ScoreInfo_SendEntity(entity this, entity to, int sf)
192 WriteHeader(MSG_ENTITY, ENT_CLIENT_SCORES_INFO);
193 WriteInt24_t(MSG_ENTITY, MapInfo_LoadedGametype);
194 for(i = 0; i < MAX_SCORE; ++i)
196 WriteString(MSG_ENTITY, scores_label[i]);
197 WriteByte(MSG_ENTITY, scores_flags[i]);
199 for(i = 0; i < MAX_TEAMSCORE; ++i)
201 WriteString(MSG_ENTITY, teamscores_label[i]);
202 WriteByte(MSG_ENTITY, teamscores_flags[i]);
207 void ScoreInfo_Init(float teams)
209 if(scores_initialized)
211 scores_initialized.SendFlags |= 1; // force a resend
215 scores_initialized = new(ent_client_scoreinfo);
216 make_pure(scores_initialized);
217 Net_LinkEntity(scores_initialized, false, 0, ScoreInfo_SendEntity);
220 TeamScore_Spawn(NUM_TEAM_1, "Red");
222 TeamScore_Spawn(NUM_TEAM_2, "Blue");
224 TeamScore_Spawn(NUM_TEAM_3, "Yellow");
226 TeamScore_Spawn(NUM_TEAM_4, "Pink");
230 * per-player score entities
233 bool PlayerScore_SendEntity(entity this, entity to, float sendflags)
235 float i, p, longflags;
237 WriteHeader(MSG_ENTITY, ENT_CLIENT_SCORES);
238 WriteByte(MSG_ENTITY, etof(self.owner));
241 for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
242 if(self.(scores[i]) > 127 || self.(scores[i]) <= -128)
246 WriteByte(MSG_ENTITY, sendflags);
247 WriteByte(MSG_ENTITY, longflags);
249 WriteShort(MSG_ENTITY, sendflags);
250 WriteShort(MSG_ENTITY, longflags);
252 for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
256 WriteInt24_t(MSG_ENTITY, self.(scores[i]));
258 WriteChar(MSG_ENTITY, self.(scores[i]));
264 float PlayerScore_Clear(entity player)
269 if(teamscores_entities_count)
272 if(MUTATOR_CALLHOOK(ForbidPlayerScore_Clear)) return 0;
274 sk = player.scorekeeper;
275 for(i = 0; i < MAX_SCORE; ++i)
277 if(sk.(scores[i]) != 0)
278 if(scores_label[i] != "")
279 sk.SendFlags |= pow(2, i);
286 void Score_ClearAll()
290 FOR_EACH_CLIENTSLOT(p)
295 for(i = 0; i < MAX_SCORE; ++i)
297 if(sk.(scores[i]) != 0)
298 if(scores_label[i] != "")
299 sk.SendFlags |= pow(2, i);
303 for(t = 0; t < 16; ++t)
305 sk = teamscorekeepers[t];
308 for(i = 0; i < MAX_TEAMSCORE; ++i)
310 if(sk.(teamscores[i]) != 0)
311 if(teamscores_label[i] != "")
312 sk.SendFlags |= pow(2, i);
313 sk.(teamscores[i]) = 0;
318 void PlayerScore_Attach(entity player)
320 if(player.scorekeeper)
321 error("player already has a scorekeeper");
322 entity sk = new(scorekeeper);
325 Net_LinkEntity(sk, false, 0, PlayerScore_SendEntity);
326 player.scorekeeper = sk;
329 void PlayerScore_Detach(entity player)
331 if(!player.scorekeeper)
332 error("player has no scorekeeper");
333 remove(player.scorekeeper);
334 player.scorekeeper = world;
337 float PlayerScore_Add(entity player, float scorefield, float score)
339 bool mutator_returnvalue = MUTATOR_CALLHOOK(AddPlayerScore, scorefield, score);
343 if(!mutator_returnvalue)
346 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
347 entity s = player.scorekeeper;
352 backtrace("Adding score to unknown player!");
356 if(scores_label[scorefield] != "")
357 s.SendFlags |= pow(2, scorefield);
359 PS_GR_P_ADDVAL(s.owner, strcat(PLAYERSTATS_TOTAL, scores_label[scorefield]), score);
360 return (s.(scores[scorefield]) += score);
363 float PlayerTeamScore_Add(entity player, float pscorefield, float tscorefield, float score)
366 r = PlayerScore_Add(player, pscorefield, score);
367 if(teamscores_entities_count) // only for teamplay
368 r = TeamScore_Add(player, tscorefield, score);
372 float PlayerScore_Compare(entity t1, entity t2, float strict)
374 if(!t1 || !t2) return (!t2) - !t1;
376 vector result = '0 0 0';
378 for(i = 0; i < MAX_SCORE; ++i)
382 result = ScoreField_Compare(t1, t2, f, scores_flags[i], result, strict);
385 if (result.x == 0 && strict)
386 result.x = etof(t1.owner) - etof(t2.owner);
391 void WinningConditionHelper()
397 entity winnerscorekeeper;
398 entity secondscorekeeper;
402 // gametype:P<pure>:S<slots>::plabel,plabel:tlabel,tlabel:teamid:tscore,tscore:teamid:tscore,tscore
403 // score labels always start with a symbol or with lower case
404 // so to match pure, match for :P0:
405 // to match full, match for :S0:
407 fullstatus = autocvar_g_full_getstatus_responses;
410 s = strcat(s, ":", autocvar_g_xonoticversion);
411 s = strcat(s, ":P", ftos(cvar_purechanges_count));
412 s = strcat(s, ":S", ftos(nJoinAllowed(self, world)));
413 s = strcat(s, ":F", ftos(serverflags));
414 s = strcat(s, ":M", modname);
415 s = strcat(s, "::", GetPlayerScoreString(world, (fullstatus ? 1 : 2)));
417 if(teamscores_entities_count)
421 s = strcat(s, ":", GetTeamScoreString(0, 1));
422 for(t = 0; t < 16; ++t)
423 if(teamscorekeepers[t])
424 s = strcat(s, ":", ftos(t+1), ":", GetTeamScoreString(t+1, 1));
426 WinningConditionHelper_winnerteam = -1;
427 WinningConditionHelper_secondteam = -1;
428 winnerscorekeeper = world;
429 secondscorekeeper = world;
430 for(t = 0; t < 16; ++t)
432 sk = teamscorekeepers[t];
433 c = TeamScore_Compare(winnerscorekeeper, sk, 1);
436 WinningConditionHelper_secondteam = WinningConditionHelper_winnerteam;
437 WinningConditionHelper_winnerteam = t + 1;
438 secondscorekeeper = winnerscorekeeper;
439 winnerscorekeeper = sk;
443 c = TeamScore_Compare(secondscorekeeper, sk, 1);
446 WinningConditionHelper_secondteam = t + 1;
447 secondscorekeeper = sk;
452 WinningConditionHelper_equality = (TeamScore_Compare(winnerscorekeeper, secondscorekeeper, 0) == 0);
453 if(WinningConditionHelper_equality)
454 WinningConditionHelper_winnerteam = WinningConditionHelper_secondteam = -1;
456 WinningConditionHelper_topscore = winnerscorekeeper.teamscores_primary;
457 WinningConditionHelper_secondscore = secondscorekeeper.teamscores_primary;
458 WinningConditionHelper_lowerisbetter = (teamscores_flags_primary & SFL_LOWER_IS_BETTER);
459 WinningConditionHelper_zeroisworst = (teamscores_flags_primary & SFL_ZERO_IS_WORST);
461 WinningConditionHelper_winner = world; // not supported in teamplay
462 WinningConditionHelper_second = world; // not supported in teamplay
466 WinningConditionHelper_winner = world;
467 WinningConditionHelper_second = world;
468 winnerscorekeeper = world;
469 secondscorekeeper = world;
473 c = PlayerScore_Compare(winnerscorekeeper, sk, 1);
476 WinningConditionHelper_second = WinningConditionHelper_winner;
477 WinningConditionHelper_winner = p;
478 secondscorekeeper = winnerscorekeeper;
479 winnerscorekeeper = sk;
483 c = PlayerScore_Compare(secondscorekeeper, sk, 1);
486 WinningConditionHelper_second = p;
487 secondscorekeeper = sk;
492 WinningConditionHelper_equality = (PlayerScore_Compare(winnerscorekeeper, secondscorekeeper, 0) == 0);
493 if(WinningConditionHelper_equality)
494 WinningConditionHelper_winner = WinningConditionHelper_second = world;
496 WinningConditionHelper_topscore = winnerscorekeeper.scores_primary;
497 WinningConditionHelper_secondscore = secondscorekeeper.scores_primary;
498 WinningConditionHelper_lowerisbetter = (scores_flags_primary & SFL_LOWER_IS_BETTER);
499 WinningConditionHelper_zeroisworst = (scores_flags_primary & SFL_ZERO_IS_WORST);
501 WinningConditionHelper_winnerteam = -1; // no teamplay
502 WinningConditionHelper_secondteam = -1; // no teamplay
505 if(WinningConditionHelper_topscore == 0)
507 if(scores_flags_primary & SFL_ZERO_IS_WORST)
509 if(WinningConditionHelper_lowerisbetter)
510 WinningConditionHelper_topscore = 999999999;
512 WinningConditionHelper_topscore = -999999999;
514 WinningConditionHelper_equality = 0;
517 if(WinningConditionHelper_secondscore == 0)
519 if(scores_flags_primary & SFL_ZERO_IS_WORST)
521 if(WinningConditionHelper_lowerisbetter)
522 WinningConditionHelper_secondscore = 999999999;
524 WinningConditionHelper_secondscore = -999999999;
529 strunzone(worldstatus);
530 worldstatus = strzone(s);
537 s = GetPlayerScoreString(p, 1);
538 s = strcat(s, IS_REAL_CLIENT(p) ? ":human" : ":bot");
539 ret_string = string_null;
540 if(!IS_PLAYER(p) && !MUTATOR_CALLHOOK(GetPlayerStatus, p, s))
541 s = strcat(s, ":spectator");
542 if (ret_string) s = strcat(s, ret_string);
546 ret_string = string_null;
547 if (IS_PLAYER(p) || MUTATOR_CALLHOOK(GetPlayerStatus, p, s))
548 s = GetPlayerScoreString(p, 2);
551 if (ret_string) s = strcat(s, ret_string);
555 strunzone(p.clientstatus);
556 p.clientstatus = strzone(s);
560 string GetScoreLogLabel(string label, float fl)
562 if(fl & SFL_LOWER_IS_BETTER)
563 label = strcat(label, "<");
564 if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
565 label = strcat(label, "!!");
566 else if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
567 label = strcat(label, "!");
571 string GetPlayerScoreString(entity pl, float shortString)
582 for(i = 0; i < MAX_SCORE; ++i)
583 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
587 out = strcat(out, GetScoreLogLabel(l, f), ",");
590 for(i = 0; i < MAX_SCORE; ++i)
591 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
595 out = strcat(out, GetScoreLogLabel(l, f), ",");
598 for(i = 0; i < MAX_SCORE; ++i)
599 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
600 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
604 out = strcat(out, GetScoreLogLabel(l, f), ",");
606 out = substring(out, 0, strlen(out) - 1);
608 else if((sk = pl.scorekeeper))
610 for(i = 0; i < MAX_SCORE; ++i)
611 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
612 out = strcat(out, ftos(sk.(scores[i])), ",");
614 for(i = 0; i < MAX_SCORE; ++i)
615 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
616 out = strcat(out, ftos(sk.(scores[i])), ",");
618 for(i = 0; i < MAX_SCORE; ++i)
619 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
620 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
621 out = strcat(out, ftos(sk.(scores[i])), ",");
622 out = substring(out, 0, strlen(out) - 1);
627 string GetTeamScoreString(float tm, float shortString)
638 for(i = 0; i < MAX_TEAMSCORE; ++i)
639 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
641 f = teamscores_flags[i];
642 l = teamscores_label[i];
643 out = strcat(out, GetScoreLogLabel(l, f), ",");
646 for(i = 0; i < MAX_TEAMSCORE; ++i)
647 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
649 f = teamscores_flags[i];
650 l = teamscores_label[i];
651 out = strcat(out, GetScoreLogLabel(l, f), ",");
654 for(i = 0; i < MAX_TEAMSCORE; ++i)
655 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
656 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
658 f = teamscores_flags[i];
659 l = teamscores_label[i];
660 out = strcat(out, GetScoreLogLabel(l, f), ",");
662 out = substring(out, 0, strlen(out) - 1);
664 else if((sk = teamscorekeepers[tm - 1]))
666 for(i = 0; i < MAX_TEAMSCORE; ++i)
667 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
668 out = strcat(out, ftos(sk.(teamscores[i])), ",");
670 for(i = 0; i < MAX_TEAMSCORE; ++i)
671 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
672 out = strcat(out, ftos(sk.(teamscores[i])), ",");
674 for(i = 0; i < MAX_TEAMSCORE; ++i)
675 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
676 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
677 out = strcat(out, ftos(sk.(teamscores[i])), ",");
678 out = substring(out, 0, strlen(out) - 1);
683 float PlayerTeamScore_Compare(entity p1, entity p2, float teams, float strict)
685 if(teams && teamscores_entities_count)
687 if(p1.team != p2.team)
691 t1 = teamscorekeepers[p1.team - 1];
692 t2 = teamscorekeepers[p2.team - 1];
693 r = TeamScore_Compare(t1, t2, ((teams >= 0) ? 1 : strict));
700 return PlayerScore_Compare(p1.scorekeeper, p2.scorekeeper, strict);
703 entity PlayerScore_Sort(.float field, float teams, float strict, float nospectators)
705 entity p, plist, pprev, pbest, pbestprev, pfirst, plast;
713 FOR_EACH_CLIENT(p) if(p.scorekeeper)
716 if(p.frags == FRAGS_SPECTATOR)
722 // Now plist points to the whole list.
724 pfirst = plast = world;
729 pprev = pbestprev = world;
731 for(p = plist; (pprev = p), (p = p.chain); )
733 if(PlayerTeamScore_Compare(p, pbest, teams, strict) > 0)
740 // remove pbest out of the chain
741 if(pbestprev == world)
744 pbestprev.chain = pbest.chain;
748 if(!plast || PlayerTeamScore_Compare(plast, pbest, teams, 0))
763 float TeamScore_GetCompareValue(float t)
768 if(t <= 0 || t >= 16)
772 error("Reading score of invalid team!");
775 sk = teamscorekeepers[t - 1];
778 s = sk.teamscores_primary;
779 if(teamscores_flags_primary & SFL_ZERO_IS_WORST)
782 if(teamscores_flags_primary & SFL_LOWER_IS_BETTER)
787 const float NAMEWIDTH = 22;
788 const float SCORESWIDTH = 58;
789 // TODO put this somewhere in common?
790 string Score_NicePrint_ItemColor(float vflags)
792 if(vflags & SFL_SORT_PRIO_PRIMARY)
794 else if(vflags & SFL_SORT_PRIO_SECONDARY)
800 void Score_NicePrint_Team(entity to, float t, float w)
808 sk = teamscorekeepers[t - 1];
811 s = strcat(s, Team_ColoredFullName(t));
812 for(i = 0; i < MAX_TEAMSCORE; ++i)
813 if(teamscores_label[i] != "")
815 fl = teamscores_flags[i];
816 sc = sk.(teamscores[i]);
817 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), ScoreString(fl, sc));
823 s = strcat(s, strpad(max(0, NAMEWIDTH - strlennocol(s)), ""));
825 for(i = 0; i < MAX_SCORE; ++i)
826 if(scores_label[i] != "")
828 fl = scores_flags[i];
829 s2 = scores_label[i];
830 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, substring(s2, 0, w)));
836 void Score_NicePrint_Player(entity to, entity p, float w)
846 s = strcat(s, p.netname);
849 i = strlennocol(s) - NAMEWIDTH;
851 s = substring(s, 0, strlen(s) - i);
854 s = strcat(s, strpad(i, ""));
859 for(i = 0; i < MAX_SCORE; ++i)
860 if(scores_label[i] != "")
862 fl = scores_flags[i];
864 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, ScoreString(fl, sc)));
870 void Score_NicePrint_Spectators(entity to)
872 print_to(to, "Spectators:");
875 void Score_NicePrint_Spectator(entity to, entity p)
877 print_to(to, strcat(" ", p.netname));
880 .float score_dummyfield;
881 void Score_NicePrint(entity to)
888 for(i = 0; i < MAX_SCORE; ++i)
889 if(scores_label[i] != "")
891 w = bound(6, floor(SCORESWIDTH / t - 1), 9);
893 p = PlayerScore_Sort(score_dummyfield, 1, 1, 0);
896 if(!teamscores_entities_count)
897 Score_NicePrint_Team(to, t, w);
900 if(teamscores_entities_count)
902 Score_NicePrint_Team(to, p.team, w);
903 Score_NicePrint_Player(to, p, w);
913 Score_NicePrint_Spectators(to);
914 Score_NicePrint_Spectator(to, p);
919 void PlayerScore_PlayerStats(entity p)
925 for(i = 0; i < MAX_SCORE; ++i)
926 if(s.(scores[i]) != 0)
927 if(scores_label[i] != "")
928 PS_GR_P_ADDVAL(s.owner, strcat(PLAYERSTATS_SCOREBOARD, scores_label[i]), s.(scores[i]));
931 void PlayerScore_TeamStats()
935 for(t = 0; t < 16; ++t)
937 sk = teamscorekeepers[t];
940 for(i = 0; i < MAX_TEAMSCORE; ++i)
941 if(sk.(teamscores[i]) != 0)
942 if(teamscores_label[i] != "")
943 // the +1 is important here!
944 PS_GR_T_ADDVAL(t+1, strcat(PLAYERSTATS_SCOREBOARD, teamscores_label[i]), sk.(teamscores[i]));