longxx How do I cheat?
  Reputation: 0
  Joined: 24 Oct 2010 Posts: 7
 
  | 
		
			
				 Posted: Tue Aug 28, 2012 7:39 am    Post subject: [Tool] Longs Offset Finder | 
				       | 
			 
			
				
  | 
			 
			
				So when game is patching more frequently during some days, pattern search to patch your program becomes a tedious task for developers, huge thanks to dark_byte made all this possible   
 
 
After searching for multiple byte pattern at each patch for thousands of times, I finally wrote this CheatEngine Lua script to simplify the process, this is what the interface look like:
 
 
 
 
http://img6.imagebanana.com/img/vbu1tvjb/OffsetFinder.png
 
 
What it does is
 
1. open SC2.exe process (of course you can easily modify the EXE name and make this tool work for any other program)
 
2. search&list the results of the byte patterns you specify (only at EXECUTABLE and NOT-WRITABLE regions)
 
3. you have the option to print the results into a textfield for easier Copy&Paste the result into your own space
 
 
You can simply open the script file with CE (Ctrl+Alt+L in CE) and run it (Suggest use CE 6.2 and above)
 
 
If everything goes right, the only setup you need to do is input the Name and Pattern of interest:
 
 
 	  | Code: | 	 		  
 
----------------------setup patterns here------------------
 
--------First argument, description of the pattern---------
 
--------Second argument:  byte pattern in x64, supports wildcard input
 
-----------------------------------------------------------
 
ScanAndLog("Maphack","e2 ff 11 00")
 
ScanAndLog("obs panels","33 44")
 
ScanAndLog("Camera Lock","55 66")
 
 | 	  
 
 
 
the script .LUA file is attached
 | 
			 
		  |