Hello. Looking to collect thoughts from those with more experience.
I’m making a game with a lot of enemies and a lot of damage number popups. My idea was for a server authoritative game, but I was curious what you guys thought about this issue:
If a client casts an ability, I would assume it would be server-auth with client prediction/reconciliation. So the player experiences the ability being cast right away. Okay, but what about damage numbers? Should the client wait for the server to send those back before displaying? Or would that be too much delay for a fast paced game?
Note: Each client would only see their own dmg numbers.
So what are the options?
-
Server Authoritative: the server decides the damage numbers and client has to wait to present them (would the delay hurt the “Umphf” factor of ability presentation?)
-
Client simulates the dmg numbers> server trusts but verifies the results are not outside expected ranges.
-
Server generates pre-rolled damage numbers for each ability or some similar buffering technique? (not sure how to keep that in sync though)
Thoughts? Ideas? Am I overthinking this? I’ll work on this and try to update it with what I’ve found.