Jump to content
  • 0

Binds


Drakath

Question

Posted

Why sometimes when you write something in memo such as in Admin panel chat binds are still active ? It is really annoying when you try to write something and when your write "t" the chat opens. Is this a MTA bug or can it be fixed by scripting ?

4 answers to this question

Recommended Posts

  • 0
Posted

I have this problem to. It is really, really annoying. I think that it´s a bug in mta, because I didn´t have that problem in older verisions of mta.

  • 0
  • MTA Team
Posted

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 
) 

  • 0
Posted
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.

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