← Back to context

Comment by bogwog

6 days ago

~~No, with a correct implementation, the server will only send positions of clients actually visible (taking occlusion and view frustum into account). It's complex, but so are modern engines. It's totally doable.~~

EDIT: sorry, I completely misread your comment. You're right about the latency issue, but that's also an issue with client-side prediction implementations, which provide a small window in which all client packets are trusted, rather than just the latest ones (eg to be able to rewind when computing collision detection in a fast paced shooter)

The real challenge to solve is botting, which includes things like aimbots, macros the negate recoil, etc. It's basically impossible to solve this, regardless of operating system or hardware (eg external cheat peripherals)

I see it as a moderation issue, which is unavoidable. Just focus on building tools to help users report cheaters rather than try to automate the whole thing via flawed anticheat spyware, and missing out on potentially the next big PC gaming platform in the process.

> aimbots, macros the negate recoil, etc. It's basically impossible to solve this

It's not. But it is much more expensive on the server-side, i.e. paid by the company, so the real solution of mainframe + thin clients is not one that companies want to implement. Instead, they rely on computing on the client model, which is what opens up the door to cheats.

E.g. Aimbots and Recoil suppressors are non existent if it's the server calculating trajectories and telling the clients "your bullet hit exactly here (X, Y, Z), go draw an impact texture in there". But as said, that means a lot of computing done on the server. Not cheap, but given the $millions invested so far in anticheat tech over the years, one has to wonder if it wouldn't really be cheaper, after all...