| View previous topic :: View next topic |
| Author |
Message |
Lazarus How do I cheat?
Reputation: 0
Joined: 17 Feb 2013 Posts: 2
|
Posted: Sun Feb 17, 2013 1:14 pm Post subject: Extract images from SWF |
|
|
Hi!
I would like to get all the image urls used by a flash file.
I successfully found the memory addresses (384pcs) and added them into the address list, i would like to copy all of the values (visible on the above picture) for further regexp peeling. But if i select everything and copy them the values do not copied into the clipboard, just these:
| Code: | <?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>0</ID>
<Description>"No description"</Description>
<Color>80000008</Color>
<VariableType>String</VariableType>
<Length>255</Length>
<Unicode>0</Unicode>
<ZeroTerminate>1</ZeroTerminate>
<Address>0329ECF3</Address>
</CheatEntry>
<CheatEntry>
<ID>1</ID>
<Description>"No description"</Description>
<Color>80000008</Color>
<VariableType>String</VariableType>
<Length>255</Length>
<Unicode>0</Unicode>
<ZeroTerminate>1</ZeroTerminate>
<Address>0329ED6D</Address>
</CheatEntry>
.....
.....
.....
|
How can I export the values?
Thanks!
| Description: |
|
| Filesize: |
398.78 KB |
| Viewed: |
5267 Time(s) |

|
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25840 Location: The netherlands
|
Posted: Sun Feb 17, 2013 2:13 pm Post subject: |
|
|
It looks like a xml file you're looking at.
Go into memory view, find the start of the file and hold down the left mouse button on the first character.
Now use the scroller while the mouse is down to scroll and scroll down to the end, then release the mouse and press ctrl+c and paste into the addresslist
alternatively, you could use the lua command: writeRegionToFile()
e.g:
| Code: |
writeRegionToFile([[c:\data.txt]], "03e3f000", 0x1000)
|
_________________
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 |
|
 |
Lazarus How do I cheat?
Reputation: 0
Joined: 17 Feb 2013 Posts: 2
|
Posted: Sun Feb 17, 2013 2:14 pm Post subject: |
|
|
Thanks
|
|
| Back to top |
|
 |
|