| View previous topic :: View next topic | 
	
	
		| Author | Message | 
	
		| Guest? Guest
 
 
 
 
 
 
 | 
			
				|  Posted: Sat Feb 23, 2013 8:41 pm    Post subject: Save a list of addresses and values |   |  
				| 
 |  
				| If I performed a searched and found postimage.org/image/jm31bvpiv/
 Is there a way to save that in a text file? The save and copy functions only copy the address without the values.
 
 I need to end up with a text version of that, so it looks like
 0013195B 27 00
 0013205B 27 00
 0013269D 27 13
 001326A9 27 13
 0013273D 27 13
 00135B66 27 20
 etc.
 is there a way to do it? Thanks.
 
 If there isn't one, then is there at least a way to only save the list of values? so it is like
 27 00
 27 00
 27 13
 27 13
 27 13
 27 20
 etc.
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Dark Byte Site Admin
 
  Reputation: 470 
 Joined: 09 May 2003
 Posts: 25807
 Location: The netherlands
 
 | 
			
				|  Posted: Sat Feb 23, 2013 9:19 pm    Post subject: |   |  
				| 
 |  
				| press ctrl+alt+L (or manually open the lua engine window inside ce) and then execute this code
 
  	  | Code: |  	  | ms=getCurrentMemscan()
 fl=memscan_getAttachedFoundlist(ms)
 
 count=foundlist_getCount(fl)
 
 result=""
 for i=0,count-1 do
 result=result..foundlist_getAddress(fl, i).." - "..foundlist_getValue(fl,i).."\n\r\n\r"
 end
 
 writeToClipboard(result)
 
 | 
 
 Then just paste in a texteditor you like
 _________________
 
 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
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Guest? Guest
 
 
 
 
 
 
 | 
			
				|  Posted: Sat Feb 23, 2013 9:50 pm    Post subject: Thanks |   |  
				| 
 |  
				| Awesome, works perfectly, thanks again. |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| 123iamking Newbie cheater
 
 ![]() Reputation: 0 
 Joined: 06 Sep 2015
 Posts: 12
 
 
 | 
			
				|  Posted: Tue Nov 12, 2019 9:55 pm    Post subject: |   |  
				| 
 |  
				|  	  | Dark Byte wrote: |  	  | "..foundlist_getValue(fl,i).."\n\r\n\r"
 
 | 
 Hi, I'm trying to get the Previous Value instead of Value, Is there a function can help my with that? I have googled but found none.
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		|  |