Author Message
123iamking
PostPosted: 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.
Guest?
PostPosted: Sat Feb 23, 2013 9:50 pm    Post subject: Thanks

Awesome, works perfectly, thanks again.
Dark Byte
PostPosted: 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
Guest?
PostPosted: 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.

Powered by phpBB © 2001, 2005 phpBB Group