Difference between revisions of "Lua:writeRegionToFile"
								
								Jump to navigation
				Jump to search
				
				
		
		|  (Created page with ''''function''' writeRegionToFile(''Filename'', ''Address'', ''Size'')  Writes a specified block of memory to a file. Useful for extracting specific files from memory. Like a deco…') | m (moved writeRegionToFile to Lua:writeRegionToFile) | ||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Lua]] | ||
| '''function''' writeRegionToFile(''Filename'', ''Address'', ''Size'') | '''function''' writeRegionToFile(''Filename'', ''Address'', ''Size'') | ||
| Line 24: | Line 25: | ||
| − | ==  | + | {{LuaSeeAlso}} | 
| − | + | ||
| + | === Related Functions === | ||
| * [[readRegionFromFile]] | * [[readRegionFromFile]] | ||
Latest revision as of 00:04, 25 January 2018
function writeRegionToFile(Filename, Address, Size)
Writes a specified block of memory to a file. Useful for extracting specific files from memory. Like a decoded .SWF, or a image, or whatever you might want to look up.
Function Parameters[edit]
| Parameter | Type | Description | 
|---|---|---|
| Filename | String | The filename to save the memoryblock to | 
| Address | Integer or CEAddressString | The address of the block to save | 
| Size | Integer | The number of bytes to save. | 

