scan_structure
Scan memory at a given address to find float values within a specified range, useful for discovering wheel visual offsets in pointer chains.
Instructions
Scan a memory structure for float values in a specified range.
Useful for exploring discovered pointer chains to find wheel visual offsets.
Args: address: Hex address to scan from size: Number of bytes to scan (default 512) min_val: Minimum float value to include (default 0.0) max_val: Maximum float value to include (default 10.0)
Returns: List of offsets and values within the range
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | ||
| size | No | ||
| min_val | No | ||
| max_val | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |