-
Content Count
113 -
Joined
-
Last visited
Community Reputation
4 NeutralAbout BlockyPenguin
-
Rank
Creeper Killer
Converted
-
URL
https://pixelorangedev.github.io
-
Location
United Kingdom
-
Personal Text
https://www.discord.gg/XmSZGjn
Recent Profile Visitors
1794 profile views
-
[Solved] Is it possible to use JitPack with ForgeGradle?
BlockyPenguin replied to BlockyPenguin's topic in ForgeGradle
aha! thank you! -
I thought I'd seen some CF mods that said do not put them in a modpack... they're few and far between, anyway. Also, I've made several private modpacks for me and some friends to play, and they worked a-ok, without much conflicting. Any that did occur was usually fixable with a mod such as crafttweaker
-
I would suggest using the CurseForge desktop app. It's still in development, but you can create a new "profile", and when you add mods, it'll automatically install all it's dependencies, and when there's an update available it'll tell you. When you're ready, you can export the profile as a .zip file and upload it to curseforge. ModPack done! Do beware though that some mod developers don't allow their mods to be in a modpack. Hope that helps!
-
[Solved] Is it possible to use JitPack with ForgeGradle?
BlockyPenguin posted a topic in ForgeGradle
I've added jitpack.io to my build.gradle repositories, like so: buildscript { repositories { maven { url = 'https://files.minecraftforge.net/maven' } jcenter() mavenCentral() maven { url 'https://jitpack.io' } } dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true } } and I've added a mod to my dependecies: dependencies { minecraft 'net.minecraftforge:forge:1.16.4-35.1.4' compile fg.deobf('com.github.ThatBlockyPenguin:LabKore:v1.0.0-SNAPSHOT') } However, it only seems to check files.minecraftforge.net/maven/, as this came up in the log: Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.github.ThatBlockyPenguin:LabKore:v1.0.0-SNAPSHOT. Searched in the following locations: - https://files.minecraftforge.net/maven/com/github/ThatBlockyPenguin/LabKore/v1.0.0-SNAPSHOT/maven-metadata.xml - https://files.minecraftforge.net/maven/com/github/ThatBlockyPenguin/LabKore/v1.0.0-SNAPSHOT/LabKore-v1.0.0-SNAPSHOT.pom - https://files.minecraftforge.net/maven/com/github/ThatBlockyPenguin/LabKore/v1.0.0-SNAPSHOT/LabKore-v1.0.0-SNAPSHOT.jar How do I fix this? Thanks, ~BlockyPenguin -
Ah ok, thank you!
-
Oh thanks! I'm assuming fg.deobf() would be somewhere in my build.gradle? I know very little about gradle, any pointers are appreciated, thanks!
-
Hi! I'd like to consolidate most of my "Util" code into a separate library mod, so that other mods I make can depend on it and use it, without me having to write it twice. How would I go about doing this?
-
Ok, thank you very much!
-
So, I've found Minecraft.getInstance().getResourceManager(), which returns resourceManager which is an IReloadableResourceManager. However,it returns it as an IResourceManager, which does not have the addReloadListener method. I've also found MinecraftServer.getResourceManager(), which does return an IReloadableResourceManager. I can get it using Minecraft.getInstance().getIntegratedServer().getResourceManager(). Would this work on singleplayer though?
-
That class doesn't exist... The closest I found is IReloadableResourceManager, which eclipse can't seem to see any methods in. IReloadableResourceManager is an interface, so that would be why. What do I do? EDIT: About the shortcuts, I'll have a look at mine
-
Sorry if it's obvious, but what class does addReloadListener belong to?
-
-
Haha, thanks vemerion
-
Ah, shame. Glad it brought you a laugh though! Also, back to OP's post, not sure how relevant it is, but any LivingEntity has two methods: isPartying and setPartying. It's what parrots use for jukebox detection. Hope it helps!
-
Isn't there a thing where they stand on their hind legs and shimmy? Or was that scrapped...