A fabric / forge citizens like NPC mod.
-> Documentation <-
showcase.mp4
- SGUI mod by Patbox (<- make sure to give this a star!)
- Fork the repository
- Add language file (make sure to follow the Minecraft language codes) as json.
- Name it e.g.
en_us.json
for American English - Translate the messages
- Name it e.g.
- Commit the file and submit a PR 😉
Warning!
Taterzens mod uses official mojang mappings. If you're a Yarn contributor, you might not want to see the source!
Add jitpack.io
maven repository.
repositories {
maven { url 'https://jitpack.io' } // Taterzens itself
maven { url 'https://maven.nucleoid.xyz' } // Nucleoid (good stuff)
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } // Permission API
}
Depending on the modloader, add Taterzens as a dependency. Replace the [LATEST_VERSION]
with the one found here.
dependencies {
// Architectury (common module)
modImplementation 'com.github.samolego.Taterzens:taterzens:[LATEST_VERSION]'
// Fabric
modImplementation 'com.github.samolego.Taterzens:taterzens-fabric:[LATEST_VERSION]'
// Forge
implementation fg.deobf 'com.github.samolego.Taterzens:taterzens-forge:[LATEST_VERSION]'
}