Skip to content

A simple Rust library for interacting with Spuckwaffel's Dumpspace website.

Notifications You must be signed in to change notification settings

B1Fr0st/dumpspace-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dumpspace-api

Codecov GitHub Actions Workflow Status GitHub Actions Workflow Status GitHub Actions Workflow Status Crates.io Total Downloads Crates.io Version

Crate that allows you to have static, always up to date offsets for any game supported on Dumpspace.

Usage

use dumpspace_api::*;

setup!("6b77eceb"); // must be called at the top of the crate root with the dumpspace game hash

fn main() {
    let off = offset!("UWorld", "OwningGameInstance"); // literal 0x228
    let size = class_size!("AActor");
    let gworld = global_offset!("OFFSET_GWORLD");
    let name = enum_name!("EFortRarity", 1); // "EFortRarity__Uncommon"
}

Features

  • Automatic caching and cache invalidation on offset update
  • Zero cost at runtime; all offsets are generated at compile time
  • Fully threadsafe and no memory requirement

Docs

Project based on Spuckwaffel's original C++ API.

About

A simple Rust library for interacting with Spuckwaffel's Dumpspace website.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages