AgentFIB Posted June 7, 2025 Posted June 7, 2025 I'm trying to use the outgoing sync disable function, but nothing happens/works. Maybe I'm missing something? function - https://wiki.rage.mp/wiki/Player::disableOutgoingSync my code - mp.events.addCommand("disoc", (player) => { if (!player || !mp.players.exists(player)) return; player.disableOutgoingSync = !player.disableOutgoingSync; if (player.disableOutgoingSync) { player.outputChatBox("Outgoing sync has been disabled."); } else { player.outputChatBox("Outgoing sync has been enabled."); } });
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now