Edward123 Posted August 24 Share Posted August 24 hi In Mta The Server Makes Auto Bind keys right ? Like T Bind key and y bind key and u bind key and b so now i want to know how to change the auto bind key command from teamsay to radio ? Link to comment
iNawaF Posted August 26 Share Posted August 26 The default keys like T, Y, U, and B are auto-bound by the MTA client for chat commands You can change them using a clientside script first unbind the key then bind it to your radio command For example : -- Unbind the default team chat key unbindKey("t", "down") -- Bind T key to run your radio command bindKey("t", "down", function() executeCommandHandler("radio") end) You can do the same for Y, U, B, etc. This will override the default chat binds on your server while players are connected Link to comment
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