Scoreboard Not Working

Report errors found in any assets.
Post Reply
User avatar
mikalburrows
Contributor
Contributor
Posts: 36
Joined: Tue Nov 05, 2019 4:10 pm

Scoreboards do not match up.
(see screenshot)

Image
User avatar
Lovatto
Admin
Admin
Posts: 1834
Joined: Sun Dec 07, 2014 3:18 pm
Contact:

After check this I found the error, the scoreboard doesn't update if a bot kill the local player, to fix it go to
bl_AIManager.cs -> public void SetBotKill(string killer) -> at the bottom of the function add this code:

Code: Select all

        if (GetGameMode == GameMode.TDM)
        {
            PhotonNetwork.CurrentRoom.SetTeamScore(BotsStatistics[index].Team);
        }
        
How to find your Invoice Number: Here
How to find your Order Number: Here
User avatar
mikalburrows
Contributor
Contributor
Posts: 36
Joined: Tue Nov 05, 2019 4:10 pm

Thanks worked perfect.
Post Reply