Skip to content

Latest commit

 

History

History
74 lines (68 loc) · 2.42 KB

README_old.md

File metadata and controls

74 lines (68 loc) · 2.42 KB

Minecraft mod to add emotes to the game like in Bedrock Edition... Just it's open emoteFormat and free unlike that :D

Minecraft emotes

User manual
Mod code documentation

Set-up dev environment and compile

git clone https://github.com/KosmX/emotes.git

You should set it up as a Fabric mod

Emotecraft dependencies:
Note: some dependencies are from jcenter jcenter()
Fabric-api

modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

Mod Menu

modImplementation "io.github.prospector:modmenu:${project.modmenu_version}"
include "io.github.prospector:modmenu:${project.modmenu_version}"

Cloth Config

modImplementation "me.shedaniel.cloth:config-2:${project.cloth_version}"
include "me.shedaniel.cloth:config-2:${project.cloth_version}"

bendy-lib

modImplementation "com.kosmx.bendylib:bendy-lib:${project.bendylib_version}"
include "com.kosmx.bendylib:bendy-lib:${project.bendylib_version}"

Perspective Mod Redux

modImplementation "pm.c7.perspective:PerspectiveModRedux:0.0.5"

Perpective Mod Redux is not in any maven repo, you need to publish it to your local repo

mavenLocal()

To do it, you need to git it
git clone https://github.com/BackportProjectMC/PerspectiveModRedux.git
edit the build.gradle with the following

@@ -77,6 +77,9 @@
 			artifact(jar) {
 				builtBy remapJar
 			}
+			artifact(remapJar){
+				builtBy remapJar
+			}
 			artifact(sourcesJar) {
 				builtBy remapSourcesJar
 			}
@@ -86,6 +89,6 @@
 	// select the repositories you want to publish to
 	repositories {
 		// uncomment to publish to the local maven
-		// mavenLocal()
+		mavenLocal()
 	}
 }

If you want to implement the mod, you won't need Perspective Mod Redux to build your mod