Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App
Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Mod Credits

Mod Credits

Adds a credit screen for the installed mods in the style of the game credits, but with improved functionality and a custom poem.

73
3
Utility
AboutGalleryChangelogVersions

Mod Credits screen

With custom poem!

This mod adds a screen in the style of the vanilla credits/win screen, but for the currently installed mods and with expanded functionality as well as a small custom poem.

Customization options (for mod devs)

Custom FMJ property (simple)

Example:

{
  /*...*/
  "custom": {
    "moehreag-modcredits:description": "Your custom text!"
  }
}

Note: This property does not support localization.

Example (using translation keys):

{
  /*...*/
  "custom": {
    "moehreag-modcredits:description-keys": "modid.modcredits.description"
  }
}

Note: For both options, the line length is limited to a width of 256 and will be wrapped.

Custom Entrypoint (more powerful, but also more manual work and likely to break with version updates)
{
  /*...*/
  entrypoints: {
    "moehreag-modcredits": [
      "com.example.modid.modcredits.ModCreditsImpl"
    ]
  },
  /*...*/
}
package com.example.modid.modcredits;

import io.github.moehreag.modcredits.ModCreditsApi;
import io.github.moehreag.modcredits.entries.Entry;

import net.fabricmc.loader.api.ModContainer;

public class ModCreditsImpl implements ModCreditsApi { 
	
	@Override 
	public Entry createEntry(ModContainer self, boolean rightText) {
		/* Your code! */
	}
}

Maven coordinates

This mod can be found on https://moehreag.duckdns.org/maven. Alternatively, the modrinth maven can be used.

build.gradle.kts

repositories {
    maven("https://moehreag.duckdns.org/maven/releases")
}

dependencies {
    
    modImplementation("io.github.moehreag:modcredits:$VERSION")
}


build.gradle

repositories {
    maven { url = "https://moehreag.duckdns.org/maven/releases" }
}

dependencies {
    
    modImplementation("io.github.moehreag:modcredits:$VERSION")
}



You want to use this mod in a modpack but it doesn't offer the correct options? Head to the issue tracker and let us know!

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Compatibility

Minecraft: Java Edition

Platforms

Fabric
Quilt

Links

Report issues View source Join Discord server
Donate

Creators

moehreag
moehreag Member

Details

Licensed LGPL-3.0-or-later
Published 3 months ago
Updated 2 months ago

Modrinth is open source.

new-project-page@ac78952

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.