Posts: 2,605
Threads: 412
Joined: Nov 2021
Reputation:
0
At the moment, Im very into making optimization tutorials..
.. so maybe you guys know anything that needs to be improved? Maybe you tryed something before that didn't work. so just post if you have any ideas what the optimization should be for.
Dragoons Master
Unregistered
Well, I think MS need's a bit improvement with the Walk/Run system. It's realy a bad way to do it. MS's Vanila Sub CanMove is client based! It need to be server based to prevent bug abusing and "hackers". I've done this, but I'll realy like to know how you would do it ^^
General rule of thumb for making an online game is you only check client-side to prevent needless packet sending (flooding) to the server and to help sustain visuals. You always want to double-check everything server-side. If a player moves, check client-side if they can move, then server side if the client says yes, they can move. The client should only lower the server's load, not remove it.