GitHub - beeequeue/remsg: A library for parsing and serializing MSG files for the RE Engine

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

remsg

Open on npmx.dev Open on npmx.dev Open on npmx.dev npm bundle size

A library for parsing and serializing MSG files for the RE Engine, more specifically for Monster Hunter: Rise.

This library pretty much a port of REMSG_Converter which is based on the work in mhrice.

Usage

import { readFileSync } from "fs"
import { encodeMsg, decodeMsg } from "remsg"

const data = readFileSync("./somefile.msg.23")
const json = decodeMsg(data)
const msg = encodeMsg(json)