My zone control points for my multiplayer game mode will not replicate new transforms to clients. I could use some assistants figuring out why

I am currently working on a multiplayer zone control game mode in which three zones are set at 1 of 3 random positions around the map at the beginning of the game. Currently the zones are moved on the server side but not replicated to the client. I have provide the blueprints and event information bellow. If any one could help me figure out why this isn’t working it would be much appreciated.

Start of Blue Print:

191740-2017-07-07+10_41_49-event+graph.png

Server Setup Zone Control Information:

191741-2017-07-07+11_04_00-controlpoints_manager_.png

Setting which random Location will be used:

Setting Zone Control Locations: (Alpha, Bravo, and Charlie set up the same)

Transform event node location:

191744-2017-07-07+11_08_02-controlpoints_manager_.png

Can you show screen about your actor?

But i guess you missunderstod networking :slight_smile:
Your server always have authorative rights, so server can do everything and if actor are replicated server will replicate to all client…

Now what you do is simple…

Your transform events are NET MULTICAT events… which means event will run on every client and not on SERVER :slight_smile:
Basically you everyhing did right just two things not…

Bravo transform events dont need to be multicast events, close enough if they are normal events (because you call that events on server if i saw right)
Set Replicate and Replicate Movement true in actor which you moving or setting location :wink:

If replicate movement is false engine will not replicate transform changes :wink:

Thanks we had tried this first but unfortunately didn’t think of replicating movement. Once we did tried that we found that we had to replicate it on the actual zone control points not the manager.