| Dark Byte Site Admin
 
  Reputation: 470 
 Joined: 09 May 2003
 Posts: 25807
 Location: The netherlands
 
 | 
			
				|  Posted: Sat Feb 19, 2022 3:12 pm    Post subject: String scans show whole string |   |  
				| 
 |  
				| This lua code will make string scans show most of the string after what you've  scanned for.  Handy for scans like "https://" and you wish to see the url without having to check the string manually 
 
 
  	  | Code: |  	  | if originalflod then
 MainForm.Foundlist3.OnData=originalflod
 end
 
 originalflod=MainForm.Foundlist3.OnData
 MainForm.Foundlist3.OnData=function(sender, item)
 local ms=getCurrentMemscan()
 if originalflod then
 originalflod(sender, item)
 
 if ms.VarType=='vtString' then
 local a=tonumber(ms.FoundList.getAddress(item.index),16)
 item.SubItems[0]=readString(a,200,ms.Unicode)
 end
 end
 end
 
 | 
 _________________
 
 Do not ask me about online cheats. I don't know any and wont help finding them.
 Like my help? Join me on Patreon so i can keep helping
 |  |