Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Tue Feb 27, 2024 3:54 pm Post subject: |
|
|
I think you mean it needs a memory block, not a table
you'll have to allocate that memory in the target process first, fill it with data, and then pass that address as parameter to the function you're calling
you can use lua command allocateMemory() , or autoAssembler alloc() and then fill it in accordingly
but you can also use C inside AA if you prefer:
Code: |
{$c}
struct
{
int x;
int y;
int z;
} mystruct={1,2,3};
{$asm}
|
which will then register a symbol called "mystruct" with x=1, y=2, z=3
_________________
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 |
|