Jump to content
  • 0

Binds


Drakath

Question

4 answers to this question

Recommended Posts

  • 0
  • MTA Team

Problem is caused by guiSetInputEnabled, which shouldn't be used really (but the editor does).

This will fix it until the next guiSetInputEnabled:

guiSetInputMode( "no_binds_when_editing" ) 

acpanel resource does this to 'fix' the problem:

addEventHandler( "onClientRender", root, 
    function () 
        guiSetInputMode( "no_binds_when_editing" ) 
    end 
) 

Link to comment
  • 0
Problem is caused by guiSetInputEnabled, which shouldn't be used really (but the editor does).

This will fix it until the next guiSetInputEnabled:

guiSetInputMode( "no_binds_when_editing" ) 

acpanel resource does this to 'fix' the problem:

addEventHandler( "onClientRender", root, 
    function () 
        guiSetInputMode( "no_binds_when_editing" ) 
    end 
) 

Thx, it works for me. So it should also work for Drakath.

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...