ReGameDLL_CS icon indicating copy to clipboard operation
ReGameDLL_CS copied to clipboard

problem with changing scoreboard teams score

Open stefanofabi opened this issue 4 years ago • 0 comments

Hello! I have problems when I change the scoreboard when the mp_scoreboard variables are activated, my only solution for now is to deactivate them.

The way I change the teams score is this:

` stock UpdateTeamScore() { /* Made by me to update the score in scoreboard */

/* Counter-Terrorist */
message_begin(MSG_ALL,gTeamScore);
write_string("CT");
write_short(gScoreCT);
message_end();

/* Terrorist */
message_begin(MSG_ALL,gTeamScore);
write_string("TERRORIST");
write_short(gScoreTT);
message_end();

}

`

Is this a ReGameDLL problem or is there another way to do it now?

Note: Without ReGameDLL this works wonderfully.

Cheers!

stefanofabi avatar Jun 09 '20 06:06 stefanofabi