lizard 0.0.5

Memory editing library for manipulating Windows processes


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

Lizard: Memory editing library

Much suited to gamehacking.

Example usage

This prints the players name in the game "Cube 2: Sauerbraten".

import std.stdio;
import lizard.memory;

void main()
{
    auto pm = ProcessMemory.fromWindowTitle("Cube 2: Sauerbraten");
    if (pm !is null)
    {
        string playerName;
        pm.readChainMemory("sauerbraten.exe", 0x2A5730, [0x274], playerName);
        writeln("Current player: ", playerName);
    }
}
Authors:
  • nm
Dependencies:
none
Versions:
0.1.1 2025-Jan-30
0.1.0 2025-Jan-30
0.0.9 2025-Jan-12
0.0.8 2024-Dec-31
0.0.7 2024-Dec-30
Show all 11 versions
Download Stats:
  • 0 downloads today

  • 9 downloads this week

  • 10 downloads this month

  • 14 downloads total

Score:
0.8
Short URL:
lizard.dub.pm