lizard 0.0.6

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.0.9 2025-Jan-12
0.0.8 2024-Dec-31
0.0.7 2024-Dec-30
0.0.6 2024-Dec-30
0.0.5 2024-Dec-30
Show all 9 versions
Download Stats:
  • 1 downloads today

  • 1 downloads this week

  • 5 downloads this month

  • 5 downloads total

Score:
0.7
Short URL:
lizard.dub.pm