Jump to content

How to do


FuriouZ

Recommended Posts

  • 3 months later...
I' Don't think thats possible. but you can disable the F11 menu.

How ?

To disable the F11 map use this:

toggleControl("radar", false) 

And if you want to add an information about why is this disabled:

toggleControl("radar", false) 
bindKey("F11", "down", 
       function() 
             outputChatBox("Your text here", thePlayer, 255, 0, 0, true) 
       end 
) 

OR if you use this notifications system: https://community.multitheftauto.com/in ... ls&id=5812 then it's:

toggleControl("radar", false) 
bindKey("F11", "down", 
       function() 
             exports.notifications:showBox('info', "Your text here") 
       end 
) 

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...