Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25859 Location: The netherlands
|
Posted: Sat May 11, 2013 6:51 pm Post subject: |
|
|
When you have that window with the strings visible execute this lua code in the lua engine:
| Code: |
for i=0, getFormCount()-1 do
local f=getForm(i)
if control_getCaption(f)=='String map' then
local lv=component_findComponentByName(f, "Listview1")
local items=listview_getItems(lv)
result='';
for j=0, listitems_getCount(items)-1 do
local li=listitems_getItem(items, j)
local si=listitem_getSubItems(li)
local address=listitem_getCaption(li)
local str=strings_getString(si, 0)
result=result..address..' : '..str.."\n\r\n\r";
end
writeToClipboard(result)
end
end
|
after 30 minutes or longer depending on the number of strings (ce looks like it's frozen/crashed during that time) the clipboard will contain all the strings.
You can change the region of the copy by changing this line : for j=0, listitems_getCount(items)-1 do
_________________
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 |
|