8000 GitHub - Creators-of-Create/Ponder
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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.

MultiLoader

Architectury MultiLoader 1.20.1/1.21.1

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Common-${minecraft_version}<
8000
/span>:${ponder_version}")
}

Jared's MultiLoader Template 1.20.1/1.21.1

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

Fabric 1.20.1/1.21.1

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Fabric-${minecraft_version}:${ponder_version}")
}
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
0