PDA

View Full Version : soldat problem


Gunocide
6th September 2004, 23:32
i tried tsearching soldat, but after a few seconds i get a memory acces violation...is there a way to get around this? or is it un tsearchable.

tweester2
6th September 2004, 23:48
there are always other ways if it's a multiplayer forget about tsearching or any memory editing u can try packet editing (only for multiplayer)
or u can try other memory editors (although it shouldn't really make a difference but u can try) like artmoney for instanse....

EnEsCe
26th September 2004, 08:42
http://www.anti-soldat.com

Gregsy
27th September 2004, 01:58
try dissassembling/debugging the program :x

DyslexicCheater
27th September 2004, 08:11
It's probably using the FindWindow() Win32 API Call to check for any open windows belonging to Cheat Software(I.E, Tsearch). There are plenty of less known memory searching utilities out there, and for a replacement of the TSearch Debugger, use SoftICE or OllyDebug.

This check is EXTREMELY easy to perform.'// Visual Basic
hWnd = FindWindow(vbNullString, "TSearch")

If hWnd <> 0 Then
RaiseException
End If

Of course, that's just pseudocode, it would require the declarations and all but you get the idea.

Otherwise, you could try stealthing TSearch by hooking it and changing the WindowName.