mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-11 11:39:18 +02:00
- Changed project title and tagline in docusaurus.config.js to reflect the new branding. - Updated package.json and package-lock.json to rename the project to gregwiki-docs-site. - Adjusted sidebar and documentation files to align with the new project structure and naming conventions. - Enhanced documentation content for clarity and consistency across various sections. - Added Prettier as a development dependency for code formatting. This commit aligns the project with the new branding and improves overall documentation quality.
2.1 KiB
2.1 KiB
title, description, sidebar_position, tags
| title | description | sidebar_position | tags | |
|---|---|---|---|---|
| End-User (Release) EN | Installation, updates, troubleshooting, and uninstall guide for players using FrikaMF as a dependency. | 120 |
|
End-User (Release)
This page is for players who do not develop mods and only install FrikaMF because another mod depends on it.
For a complete overview of framework capabilities and setup flows, see Framework Features & Use Cases.
What you install
FrikaModdingFramework.dllis a runtime framework forData Center.- It provides stable runtime glue required by other mods.
- FrikaMF is unofficial and community-driven.
Quick install
- Install MelonLoader (IL2CPP, latest stable).
- Launch the game once, then close it.
- Put
FrikaModdingFramework.dllintoData Center/Mods. - Put your actual mod into
Data Center/Mods. - Start the game and verify
MelonLoader/Latest.log.
Troubleshooting
- Game crashes at startup: check
MelonLoader/Latest.logfor missing DLL/type errors. - Mod not loading: verify correct folder and unblock files in Windows file properties.
- After game update: check compatibility page and wait for updated releases if hooks changed.
Update
- Close game.
- Replace
FrikaModdingFramework.dll. - Start game and verify logs.
Uninstall
- Close game.
- Remove
FrikaModdingFramework.dllfromMods. - Remove dependent mods.
Related pages
- Home EN
- ModDevs EN
- Contributors EN
- FFI Bridge Reference
- Web UI Bridge EN (DC2WEB)
- Known Incompatibilities EN
Minimal context example (both language tracks)
🦀 Rust
#[no_mangle]
pub extern "C" fn mod_info() -> *const i8 {
b"example-rust\0".as_ptr() as *const i8
}
🔷 C#
using MelonLoader;
public sealed class ExampleMod : MelonMod
{
public override void OnInitializeMelon()
{
LoggerInstance.Msg("Example C# mod loaded");
}
}