> But, I want the peer's changes to be transferred to the host as well so that the "sync" is both ways rather than one.
>
The plugin doesn't work that way, the host should always be authoritative over changes. In your case when you want the peer to summon an object, what you can do is to have the peer to [action: send message] to the host, then at host, on peer message, you spawn the object on peer behalf. That way the object will be automatically sync over all peers.
Thanks for your Reply. After thinking about what you've said, Here's my new logic:
1. Peer creates object.
2. The object's created coordinates are stored in two global variables, objectX, and object Y.
3. Then send two messages to the host each containing the global variables, objectX and objectY
4. Then I want to sync the sent messages to the same global variables, except on the Host's side.
5. Then from the host side, I can do action, create object at the locations of the global variables.
I want to do the above, but I'm having trouble at step 4, figuring out how to set my Host's global variables to the sent messages of the Peer's equivalent global variables, objectX and objectY.