ReGameDLL_CS
ReGameDLL_CS copied to clipboard
problem with changing scoreboard teams score
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!