[Question] How to fetch a messsage from chat?

03/15/2019 00:24 JamesCotton#1
Hello!
I would love to know how to fetch a message from in-game chat.
03/19/2019 12:58 [GF]Froslass#2
Quote:
Originally Posted by JamesCotton View Post
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