Search found 5 matches
- Mon Oct 02, 2006 8:41 pm
- Forum: GamingTools Members::Inner Space
- Topic: Intercepting directx DrawText calls
- Replies: 6
- Views: 6503
That is the call used by ID3DXFont::DrawTextA. ID3DXFont::DrawTextW uses ExtTextOutW, which you should try instead of A since it didnt work for the game you're trying. There are two versions of every text-related function in Windows, one uses ANSI encoding (A is for ANSI) and the other uses unicode...
- Mon Oct 02, 2006 7:00 pm
- Forum: GamingTools Members::Inner Space
- Topic: Intercepting directx DrawText calls
- Replies: 6
- Views: 6503
Well, I didn't want to do all the work for you ;) Thx a lot Lax. It worked. As i am struggling to learn c++ every bit of working code helps a lot. As you expected my game does not use this call for rendering its ingame text. I know that interception worked because i got echo of some inner space tex...
- Sun Oct 01, 2006 7:28 pm
- Forum: GamingTools Members::Inner Space
- Topic: Intercepting directx DrawText calls
- Replies: 6
- Views: 6503
There actually isnt a Direct3D DrawText function. Assuming the game uses D3DX, it would use the gdi32 ExtTextOutA/ExtTextOutW, but there's no guarantee of that. A lot of games use their own routines, some even use maps of textures for fonts. But, you can certainly try using a detour of ExtTextOutA ...
- Sun Oct 01, 2006 4:23 pm
- Forum: GamingTools Members::Inner Space
- Topic: Intercepting directx DrawText calls
- Replies: 6
- Views: 6503
Intercepting directx DrawText calls
Hello,
I would like to intercept DrawText calls in my game. Is it something that inner space can help me with or should I find another way ?
I would like to intercept DrawText calls in my game. Is it something that inner space can help me with or should I find another way ?
- Sun Oct 01, 2006 12:30 pm
- Forum: GamingTools Members::Inner Space
- Topic: Graphical oddity with new Eve client
- Replies: 30
- Views: 31794
I'll try disabling one of my cards, see if the lag issue disapears. If you dont hear anything, then asume its not fixed ;) Nasty thing about Eve hacking, most of the freaking client is written in Python. So to hack it you either have to write a script in Python (which I figured would be too easy fo...