Drakath Posted August 23, 2013 Share Posted August 23, 2013 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 ? Link to comment
0 Adde Posted August 23, 2013 Share Posted August 23, 2013 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. Link to comment
0 MTA Team ccw Posted August 25, 2013 MTA Team Share Posted August 25, 2013 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 Adde Posted August 25, 2013 Share Posted August 25, 2013 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
0 Drakath Posted August 26, 2013 Author Share Posted August 26, 2013 Yeah, seems like it worked. Thanks, ccw. Link to comment
Question
Drakath
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 ?
Link to comment
4 answers to this question
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