I have a problem when i test my game in multiplayer the progress bars in my UMG hud does not update on the client.
Only the server gets it.
I have Progress bars that displays Stamina and Health and the Percent is binded to MyCharacter.Health Value
as i said before works fine on Singleplayer/Server but not for Clients.
**To simplify my problem and to find the solution i made a new project with only the vital parts **
Same problem in this simple set up, the clients wont get the hud to display the value. Works fine on server/singleplayer
Ok, why are you limiting this to the Server? With the Switch, you prevent the client from updating the variable. It will just stay at its default value. At least if you don’t modify the value somewhere else too.
If you want to calculate this on the server and replicate it to the client, you need to set the variable to replicate. Then the client will get the correct value.
I would also not work with a delay in the tick. Better use a timer and seperated function for this.
For my purpose i don’t need it to replicate on the server, i would just have it set to client, but cant get it to work on other places than on the server/singelplayer
I know that this is a few months old by now, but did you (or anyone else) find a solution? If yes, I would appreciate if you’d let me know. I’m sitting on the exact same problem right now.