Author Topic: Tool that would read and recognise chat messages.  (Read 1552 times)

Tool that would read and recognise chat messages.
« on: June 09, 2015, 11:09:55 am »
Basically what is says in topic. I have searched whole of this section and some more and found no help.

I want a bot that would recognize certain words(or keys more like) from the conversations it hears/sees.

Does anyone of you have any idea how to do it?

Pretty pretty please.

Edit: I know i could give this tool ability to create logs from chat and then search them for keys. But just nah...
« Last Edit: June 09, 2015, 11:12:25 am by Rhex »

Re: Tool that would read and recognise chat messages.
« Reply #1 on: July 08, 2015, 05:01:13 am »
Any image detection software or AutoIT ?

Offline Ghosthack

  • Rotator
  • Bytecruncher
Re: Tool that would read and recognise chat messages.
« Reply #2 on: July 29, 2015, 04:26:01 pm »
More technical solutions are ReadProcessMemory from Kernel32 or DLL injection.

Either hook/detour the WriteGameLog function (best method and very reliable) or scan the memory space until you find where log text is stored and search for your keyword, this is unreliable since text chars can begin and end anywhere and the offsets tend to change based on memory allocation. And only way to detect where they end is by '\0' which can be junk also...