0.6.7 • Published 3 months ago

dolphin-memory-reader v0.6.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Dolphin Memory Reader

Initialize

import DolphinMemory from "dolphin-memory-reader";
import { ByteSize } from 'dolphin-memory-reader/dist/types/enum';
import os from "os"

async readFromMemory() {
    if (os.platform() !== "win32") return;

    const memory = new DolphinMemory();

    // Looks for a running process once every second
    await memory.init();

    // Current stage Id address
    const address = 0x8049e6c8 + 0x88 + 0x03;

    // Throws error if not able to read memory address or dolphin is no longer active when called
    const byte = memory.read(address, ByteSize.U8);

    console.log("Byte from memory", byte);
}

Info

Package is written in rust and is currently only supported for windows and tested on Super Smash Bros Melee

Contribute

To be able to run this project locally you will need to have Rust installed on your computer with Nightly

0.6.7

3 months ago

0.6.6

4 months ago

0.6.3

4 months ago

0.6.2

4 months ago

0.6.5

4 months ago

0.6.4

4 months ago

0.6.1

4 months ago

0.6.0

6 months ago

0.5.0

6 months ago

0.4.1

6 months ago

0.4.0

6 months ago

0.3.0

6 months ago

0.2.4

6 months ago

0.2.3

7 months ago

0.2.2

7 months ago

0.2.1

7 months ago

0.2.0

7 months ago

0.1.5

7 months ago

0.1.4

7 months ago

0.1.3

7 months ago

0.1.2

7 months ago

0.1.1

7 months ago