Quote:
Originally Posted by JamesCotton
Hello!
I would love to know how to fetch a message from in-game chat.
|
Do you mean ctrl+c and ctrl+v in game? This should work:
SourceClient - Eterlib/IME.cpp
Search:
m_bEnablePaste = false;
and replaces with:
m_bEnablePaste = true;
Search and delete:
if (!__IsWritable(c))
return;
And search in ui.py / root:
def OnKeyDown(self, key):
and add it below:
if app.DIK_V == key:
if app.IsPressed(app.DIK_LCONTROL):
ime.PasteTextFromClipBoard()
I took it from another forum, credits go to Vegas