Clients rarely just replicate to the server or other clients, since that would allow easy cheating.
What happens is that clients ask the server to “behave” in a certain way, then the server calculates the behaviour and replicates the outcome back to all clients (including the one that asks for the behaviour).
So in order for your server to know the status of your pawn, you have to simulate the behaviour on it using server functions or function replication.
In case you haven’t checked this out yet, then do it, since it pretty much covers everything.
Ah right. Following the tutorials, it seems to indicate that just clicking the “Replicated” and “Replicate Movement” is enough. Clearly its not. In my case, I don’t need any sort of validation, I literally want the client to be able to just say “This is where I am”.
I guess I best look in to how the hell to do that, cos the tutorials don’t appear to cover client -> server movement replication
Wolfsblut, I agree, the listen server test is a massive distraction - doesn’t function in a “reality” way.
Been reading the docs and makes much more sense now. I got the wrong end of the stick by just following tutorials which seem to massively gloss over client => server movement replication. I have a good idea on how to sort it out now, thanks