https://github.com/outercloudstudio/scribe
A utility library for simplifying common modding activities!
https://github.com/outercloudstudio/scribe
fabric minecraft modding
Last synced: 5 months ago
JSON representation
A utility library for simplifying common modding activities!
- Host: GitHub
- URL: https://github.com/outercloudstudio/scribe
- Owner: outercloudstudio
- License: mit
- Created: 2022-07-03T04:58:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-17T04:13:10.000Z (over 3 years ago)
- Last Synced: 2025-06-30T02:39:05.591Z (9 months ago)
- Topics: fabric, minecraft, modding
- Language: Java
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scribe
## What Is Scribe?
Scribe is a library meant to reduce code and simplify common things done in modding. At the moment this includes registering certain features and using a config.
## Where To Download?
[Download On Curseforge](https://www.curseforge.com/minecraft/mc-mods/scribe)
## Setup
To add Scribe to your mod add the following to your build.grade:
```
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
[...] //Existing Dependencies
modImplementation "com.github.outercloudstudio:Scribe:${scribe_version}"
}
```
Then in your gradle.properties add:
```
scribe_version= //The desired scribe version
```
## How To Use
Check the [Wiki](https://github.com/outercloudstudio/Scribe/wiki) for documentation and guides.
## License
This library is licensed under the MIT license.