• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

how disable this keyboard ? please help

Elite Diviner
Joined
Jul 8, 2015
Messages
489
Reaction score
27
thewinner3 - how  disable this keyboard ? please help - RaGEZONE Forums



I SET nUI_KEYBOARD 0 // SET THIS TO 0 READY BUT STILL SHOWING UI ON LOGIN
 
Master Summoner
Joined
Feb 6, 2019
Messages
575
Reaction score
159
try this .
open your outerinterface.cpp the look for this

{
m_pPassKeyboard = new CPassKeyboard;
m_pPassKeyboard->Create( PASS_KEYBOARD, "PASS_KEYBOARD", UI_FLAG_CENTER_X );
m_pPassKeyboard->CreateSubControl();
RegisterControl( m_pPassKeyboard );
ShowGroupFocus( PASS_KEYBOARD );

}


then replay with this :

{
m_pPassKeyboard = new CPassKeyboard;
m_pPassKeyboard->Create( PASS_KEYBOARD, "PASS_KEYBOARD", UI_FLAG_CENTER_X );
m_pPassKeyboard->CreateSubControl();
//RegisterControl( m_pPassKeyboard );
ShowGroupFocus( PASS_KEYBOARD );

}

or this

/*{
m_pPassKeyboard = new CPassKeyboard;
m_pPassKeyboard->Create( PASS_KEYBOARD, "PASS_KEYBOARD", UI_FLAG_CENTER_X );
m_pPassKeyboard->CreateSubControl();
RegisterControl( m_pPassKeyboard );
ShowGroupFocus( PASS_KEYBOARD );

}*/
 
Upvote 0
Back
Top