Rob
Rob
@xetrics ah good point I should’ve read the main issue again. We could offer 2 new functions: one that freezes via a loop (just because it’s handy) and one that...
Currently this library only really supports UTF-8 (well, ASCII). You could take a look at the code if you want to give it a go yourself. Basically right now the...
What does the memory at that address look like in Cheat Engine? In the hex display is there a null terminator after the name of the location?
Can you show me the next line of memory too?
Replace all the code from [L440](https://github.com/Rob--/memoryjs/blob/master/lib/memoryjs.cc#L440) to [L473](https://github.com/Rob--/memoryjs/blob/master/lib/memoryjs.cc#L473) with this: ```c++ char value[1000000]; ReadProcessMemory(handle, (LPVOID) address, value, 1000000, NULL); if (args.Length() == 4) argv[1] = String::NewFromUtf8(isolate, str.c_str()); else args.GetReturnValue().Set(String::NewFromUtf8(isolate, str.c_str()));...
You aren't compiling it correctly, in the module directory run `npm run build32` or `npm run build64`.
Oops it's because the code I gave you was wrong, sorry it's because I just typed it out without testing: ```cpp char value[1000000]; ReadProcessMemory(handle, (LPVOID) address, value, 1000000, NULL); if...
Why use Bluebird? Why not use native promises? This would also remove all the `async.waterfall` and `async.parallel` code which not only (in my opinion) looks ugly but also makes the...
Created a PR ( #74 )
Closing the issue as it's probable the problems here with reading buffers were caused by a memory leak that has now been fixed. Please re-open or create a new issue...