Best way to handle realtime melee AI in authoritative network environment

Posted by PrimeDerektive on Game Development See other posts from Game Development or by PrimeDerektive
Published on 2012-02-17T20:51:40Z Indexed on 2012/03/19 2:17 UTC
Read the original article Hit count: 254

Filed under:
|

So i've been working on a multiplayer game for a bit; it's a co-op action RPG with real-time combat. If you've seen or played TERA, I'd say it's comparable to that, but not an MMO, heh. I'm currently handling the AI units authoritatively, the server calculates their pathing, movement, and pursue/attack logic, and syncs the movement to the clients 15x per second, and the state changes when they happen.

When I emulate 200ms ping, though, the client can perceive being out of range to an AI's attack, but still take the hit, because on the server he hadn't moved that far yet. This also plays hell with my real-time blocking.

I don't really want to allow the clients to be allowed to say "that was out of range" or "I blocked that", but I'm not really sure how else to handle it.

© Game Development or respective owner

Related posts about networking

Related posts about multiplayer