Skip to content

Creators-of-Create/Ponder

Repository files navigation

Logo

Ponder
Patreon License Discord

Ponder is a library for creating interactive, in-game guides to help players understand content added by your mod. Ponder allows you to craft detailed and engaging tutorials that showcase mod mechanics in a way that makes it easier for players to learn how to use your mod.

Project Setup

Add the Create maven to your repositories block in your build script

repositories {
    maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" }
    maven { url = "https://maven.createmod.net" }
}

Add a property in your gradle.properties with the latest ponder version which can be found here, it should look like the following with the x replaced with the version you got from the link:

...
ponder_version = x
...

Then add ponder to your project based on the loader and minecraft version you are using.

Notice

Fabric (and multiloader) support are in progress, but not yet functional. Instructions will be added when Ponder is ready for use in those environments.

Forge

Forge 1.20.1 \w ForgeGradle

dependencies {
    implementation(fg.deobf("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}"))
}

Forge 1.20.1 \w ModDevGradle

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}")
}
NeoForge

NeoForge 1.21.1

dependencies {
    implementation("net.createmod.ponder:Ponder-NeoForge-${minecraft_version}:${ponder_version}")
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages