Jump to content

ElOsito123

Members
  • Posts

    58
  • Joined

  • Last visited

Everything posted by ElOsito123

  1. Ready, I have it updated @DaemonUmbra
  2. Okay, I'll update it
  3. Therefore, I mean that if they could do it in that way that I can not, but why do not I?
  4. That's why, those mods are made in the same way https://github.com/MCOfficer/Minecraft-RPC/blob/master/build.gradle
  5. But why? There are other mods that do the same thing that I'm trying to do now and they use shadow and they work and mine does not @DaemonUmbra
  6. Please, I would like to be able to solve this
  7. Then can you tell me what is my problem with shadow ?, I really think I like it better
  8. Really can not be with shadow?
  9. This "simple" system is complicated at least for me
  10. Another thing, said it was easier, but then you can with shadow? as? or what do I do wrong?, really that late in understanding it (shadow) I think it would be easier
  11. I found that, should it work? configurations { embed compile.extendsFrom embed } dependencies { embed 'club.minnced:java-discord-rpc:v2.0.1' } task generateMetaFiles { doLast { file("${buildDir}/dependencyMeta/").deleteDir() configurations.embed.resolvedConfiguration.resolvedArtifacts.each { def metaFile = file("${buildDir}/dependencyMeta/${it.file.name}.meta") metaFile.parentFile.mkdirs() def artifactRef = it.moduleVersion.toString() if (it.classifier != null) { artifactRef += ":${it.classifier}" } metaFile.text = "Maven-Artifact: $artifactRef" } } } jar { into('/') { from configurations.embed from "${buildDir}/dependencyMeta/" } manifest { attributes 'ContainedDeps': configurations.embed.collect { it.name }.join(' ') } dependsOn generateMetaFiles }
  12. This is still confusing for me, I can not understand how it is done
  13. but I'm confused about "META-INF" I do not know what it is and I do not have that folder for the location
  14. but I do not use maven, so I understood that is with maven
  15. Can you explain me how to use it or an example? English is not my native language so it's hard to understand
  16. Does anyone have any idea what the problem should be?
  17. This is the project, I do not know if it went up well is the first time I use github https://github.com/SrPandaStick/DiscordRPC
  18. Can not specify well what files?, to do the same thing to put them in pastebin forget it, I'll put it on github
  19. Main class: https://pastebin.com/KSdB8aTK DiscordRPC class: https://pastebin.com/LyJfxQXs
  20. I researched a little more and what I discovered is that in the reported cases it only happens in MacOs, but I use windows, besides that they have not found a solution, it does not have to do with another mod, I use it only and it does not work, either It's the version.
  21. Thank you very much, I will investigate and do some tests to see what could be
  22. Please, I'm not asking for help with anything related to the version, they really insist on that but what I'm asking has nothing to do with the minecraft version. I do not ask for help with code only with that error that I do not know.
  23. Then could someone help me please?
  24. I know, I use it in 1.8.9, but change that because they do not want to help ...
  25. I found the complete error: ---- Minecraft Crash Report ---- WARNING: coremods are present: ItemPatchingLoader (ItemPhysic Lite 1.3 mc1.13.jar) Main (OldAnimationsMod v2.4 FORGE MC1.13.jar) Contact their authors BEFORE contacting forge // But it works on my machine. Time: 3/09/18 11:11 PM Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderException: java.lang.UnsatisfiedLinkError: Unable to load library 'discord-rpc': No se puede encontrar el módulo especificado. at net.minecraftforge.fml.common.LoadController.transition(LoadController.java:162) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:739) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:310) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:495) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:329) at net.minecraft.client.main.Main.main(SourceFile:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) Caused by: java.lang.UnsatisfiedLinkError: Unable to load library 'discord-rpc': No se puede encontrar el módulo especificado. at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:169) at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:242) at com.sun.jna.Library$Handler.<init>(Library.java:140) at com.sun.jna.Native.loadLibrary(Native.java:368) at com.sun.jna.Native.loadLibrary(Native.java:353) at club.minnced.discord.rpc.DiscordRPC.<clinit>(DiscordRPC.java:42) at me.SrPandaStick.Discord.RichPresence.star(RichPresence.java:20) at me.SrPandaStick.Discord.Main.init(Main.java:32) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:560) at sun.reflect.GeneratedMethodAccessor16.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:211) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:189) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:737) ... 10 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.13 Operating System: Windows 10 (amd64) version 10.0 CPU: 4x Intel(R) Core(TM) i3-2350M CPU @ 2.30GHz Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 337752336 bytes (322 MB) / 603979776 bytes (576 MB) up to 1073741824 bytes (1024 MB) JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=16M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.19 Powered by Forge 11.15.1.1722 Optifine OptiFine_1.8.9_HD_U_H7 10 mods loaded, 10 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHI mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHI FML{8.0.99.99} [Forge Mod Loader] (forge-1.8.9-11.15.1.1722.jar) UCHI Forge{11.15.1.1722} [Minecraft Forge] (forge-1.8.9-11.15.1.1722.jar) UCHI itemphysic{1.3.0} [ItemPhysic] (minecraft.jar) UCHI oldanimations{2.4} [OldAnimationsMod] (minecraft.jar) UCHI blockoverlay{1.2} [BlockOverlay] ([1.8.9] BlockOverlay - 2.0.jar) UCHI wingsmod{1.2} [Wings Mod] ([1.8.9] Wings Mod-1.2.jar) UCHI Sk1er-Tayber50k{2.3} [Chroma HUD] (ChromaHUD-2.3.jar) UCHI keystrokesmod{4.1} [KeystrokesMod] (KeystrokesMod-4.1 [1.8.9].jar) UCHE DiscordRichPresence{1.0} [DiscordRichPresence] (modid-1.0-all.jar) Loaded coremods (and transformers): ItemPatchingLoader (ItemPhysic Lite 1.3 mc1.13.jar) com.creativemd.itemphysic.ItemTransformer Main (OldAnimationsMod v2.4 FORGE MC1.13.jar) com.spiderfrog.main.ClassTransformer GL info: ' Vendor: 'Intel' Version: '3.1.0 - Build 9.17.10.4459' Renderer: 'Intel(R) HD Graphics 3000'
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.