Jump to content

Legoboy0109

Forge Modder
  • Posts

    30
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Oregon
  • Personal Text
    Hey What's Up Guys It's Scarce Here

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Legoboy0109's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. I am making a block integrated with the RF api, but I want to make it so it can only connect from a certain side, but since it is a block with the directional blockstate, I need to check what direction it's facing before setting the side it can connect from. If I try to reference the FACING variable it says incompatible operand types. How would I do this? Thanks, Legoboy0109
  2. Well then explain why almost every time I run that one command you say is the easiest thing ever it says "Build Failed" and I have to go find a way to fix it.
  3. Sorry, I wasn't trying to be stupid, I just had a legitimate question. Maybe you just do this so much that it all seems easy to you, but not all of us are "Forge Code Gods". If you're going to be so salty maybe I should just stick to playing with mods or vanilla. Maybe it would be better if someone just made a new mod loader that could run all forge mods and was easier to use.
  4. I've used IDEA before and it's not bad, but the problem I have is that I can't just import an eclipse project from git to develop mods on a school computer for my programming classes or when I'm on my friends computer at the school. I understand that they can't just distribute jars, but would it be possible to have an eclipse project that just has all those patches already imported that I can clone through git?
  5. It seems like an issue with your connection to the minecraftforge website. Could it be that it still wants to go through adfocus maybe?
  6. I was just wondering because gradle can be a pain to setup and doesn't work on all computers and wi-fi networks. It also doesn't always integrate into ide's well and it would just work better if there was some sort of eclipse project package that had all the libs and jar files you needed as well as the files and setup to run the mod in a forge environment.
  7. No I don't need to reference specific audio files, I want to be able to put any audio file in a folder in the .minecraft folder and reference that with the block in game.
  8. I'm working on a mod that adds a block that can play audio files, but I need to know how to reference the .minecraft folder to find those sounds. Thanks, Legoboy0109
  9. I'm making a small mod right now that let's you change the way dual wielding works. Basically you can dual wield certain weapons together and it's really cool. But how would I go about changing the dual wielding system so that you can swing the sword in your off-hand with right click, and the main-hand with left click. Thanks, Legoboy0109
  10. I'm working on a mod that lets you "upgrade" yourself, and I was trying to figure out how I would override the EntityPlayer, but only add stuff to it, like shapeshifting, and adding textures to the player that arent't armor. If anyone knows how to do this I would love to learn, it's just a little complicated to try and do it on my own. Thanks, Legoboy0109
  11. I'm trying to compile my mod for 1.9.4, but I keep getting this error. I tried deleting some buggy, unused code from my mod files and it still won't work. This is the error message. Microsoft Windows [Version 10.0.10586] © 2015 Microsoft Corporation. All rights reserved. C:\Users\#######>cd "C:\Users\#######\Desktop\Forge 1.9.4" C:\Users\#######\Desktop\Forge 1.9.4>gradlew build ################################################# ForgeGradle 2.2-SNAPSHOT-c438b06 https://github.com/MinecraftForge/ForgeGradle ################################################# Powered by MCP unknown http://modcoderpack.com by: Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn, bspkrs ################################################# :deobfCompileDummyTask :getVersionJson :extractUserdev UP-TO-DATE :downloadClient SKIPPED :downloadServer SKIPPED :splitServerJar SKIPPED :mergeJars SKIPPED :applyBinaryPatches SKIPPED :deobfProvidedDummyTask :extractDependencyATs SKIPPED :extractMcpData SKIPPED :extractMcpMappings SKIPPED :genSrgs SKIPPED :deobfMcMCP SKIPPED :sourceApiJava UP-TO-DATE :compileApiJava UP-TO-DATE :processApiResources UP-TO-DATE :apiClasses UP-TO-DATE :sourceMainJava :compileJava warning: [options] bootstrap class path not set in conjunction with -source 1.6 C:\Users\#######\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\containers\ContainerSteamEngine.java:4: error: package com.sun.istack.internal does not exist import com.sun.istack.internal.Nullable; ^ C:\Users\#######\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\containers\ContainerSteamEngine.java:66: error: cannot find symbol @Nullable ^ symbol: class Nullable location: class ContainerSteamEngine Note: C:\Users\brandon\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\blocks\BlockSteamEngine.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 2 errors 1 warning :compileJava FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Compilation failed; see the compiler error output for details. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 20.344 secs C:\Users\#######\Desktop\Forge 1.9.4>gradlew build --stacktrace ################################################# ForgeGradle 2.2-SNAPSHOT-c438b06 https://github.com/MinecraftForge/ForgeGradle ################################################# Powered by MCP unknown http://modcoderpack.com by: Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn, bspkrs ################################################# :deobfCompileDummyTask :getVersionJson :extractUserdev UP-TO-DATE :downloadClient SKIPPED :downloadServer SKIPPED :splitServerJar SKIPPED :mergeJars SKIPPED :applyBinaryPatches SKIPPED :deobfProvidedDummyTask :extractDependencyATs SKIPPED :extractMcpData SKIPPED :extractMcpMappings SKIPPED :genSrgs SKIPPED :deobfMcMCP SKIPPED :sourceApiJava UP-TO-DATE :compileApiJava UP-TO-DATE :processApiResources UP-TO-DATE :apiClasses UP-TO-DATE :sourceMainJava UP-TO-DATE :compileJava warning: [options] bootstrap class path not set in conjunction with -source 1.6 C:\Users\#######\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\containers\ContainerSteamEngine.java:4: error: package com.sun.istack.internal does not exist import com.sun.istack.internal.Nullable; ^ C:\Users\#######\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\containers\ContainerSteamEngine.java:66: error: cannot find symbol @Nullable ^ symbol: class Nullable location: class ContainerSteamEngine Note: C:\Users\#######\Desktop\Forge 1.9.4\build\sources\main\java\com\Legoboy0109\CousinCore\blocks\BlockSteamEngine.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 2 errors 1 warning :compileJava FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Compilation failed; see the compiler error output for details. * Try: Run with --info or --debug option to get more log output. * Exception is: org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':compileJava'. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:69) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.PostExecutionAnalysisTaskExecuter.execute(PostExecutionAnalysisTaskExecuter.java:35) at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:64) at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58) at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:52) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:53) at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43) at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:203) at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:185) at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.processTask(AbstractTaskPlanExecutor.java:62) at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.run(AbstractTaskPlanExecutor.java:50) at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor.process(DefaultTaskPlanExecutor.java:25) at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter.execute(DefaultTaskGraphExecuter.java:110) at org.gradle.execution.SelectedTaskExecutionAction.execute(SelectedTaskExecutionAction.java:37) at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:37) at org.gradle.execution.DefaultBuildExecuter.access$000(DefaultBuildExecuter.java:23) at org.gradle.execution.DefaultBuildExecuter$1.proceed(DefaultBuildExecuter.java:43) at org.gradle.execution.DryRunBuildExecutionAction.execute(DryRunBuildExecutionAction.java:32) at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:37) at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:30) at org.gradle.initialization.DefaultGradleLauncher$4.run(DefaultGradleLauncher.java:155) at org.gradle.internal.Factories$1.create(Factories.java:22) at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:90) at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:52) at org.gradle.initialization.DefaultGradleLauncher.doBuildStages(DefaultGradleLauncher.java:152) at org.gradle.initialization.DefaultGradleLauncher.access$200(DefaultGradleLauncher.java:33) at org.gradle.initialization.DefaultGradleLauncher$1.create(DefaultGradleLauncher.java:100) at org.gradle.initialization.DefaultGradleLauncher$1.create(DefaultGradleLauncher.java:94) at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:90) at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:62) at org.gradle.initialization.DefaultGradleLauncher.doBuild(DefaultGradleLauncher.java:94) at org.gradle.initialization.DefaultGradleLauncher.run(DefaultGradleLauncher.java:83) at org.gradle.launcher.exec.InProcessBuildActionExecuter$DefaultBuildController.run(InProcessBuildActionExecuter.java:94) at org.gradle.tooling.internal.provider.ExecuteBuildActionRunner.run(ExecuteBuildActionRunner.java:28) at org.gradle.launcher.exec.ChainingBuildActionRunner.run(ChainingBuildActionRunner.java:35) at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:43) at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:28) at org.gradle.launcher.exec.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:77) at org.gradle.launcher.exec.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:47) at org.gradle.launcher.exec.DaemonUsageSuggestingBuildActionExecuter.execute(DaemonUsageSuggestingBuildActionExecuter.java:51) at org.gradle.launcher.exec.DaemonUsageSuggestingBuildActionExecuter.execute(DaemonUsageSuggestingBuildActionExecuter.java:28) at org.gradle.launcher.cli.RunBuildAction.run(RunBuildAction.java:43) at org.gradle.internal.Actions$RunnableActionAdapter.execute(Actions.java:170) at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:237) at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:210) at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:35) at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:24) at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:206) at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:169) at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:33) at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:22) at org.gradle.launcher.Main.doAction(Main.java:33) at org.gradle.launcher.bootstrap.EntryPoint.run(EntryPoint.java:45) at org.gradle.launcher.bootstrap.ProcessBootstrap.runNoExit(ProcessBootstrap.java:54) at org.gradle.launcher.bootstrap.ProcessBootstrap.run(ProcessBootstrap.java:35) at org.gradle.launcher.GradleMain.main(GradleMain.java:23) at org.gradle.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:30) at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:127) at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:61) Caused by: org.gradle.api.internal.tasks.compile.CompilationFailedException: Compilation failed; see the compiler error output for details. at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:47) at org.gradle.api.internal.tasks.compile.JdkJavaCompiler.execute(JdkJavaCompiler.java:33) at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.delegateAndHandleErrors(NormalizingJavaCompiler.java:101) at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:50) at org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler.execute(NormalizingJavaCompiler.java:36) at org.gradle.api.internal.tasks.compile.CleaningJavaCompilerSupport.execute(CleaningJavaCompilerSupport.java:34) at org.gradle.api.internal.tasks.compile.CleaningJavaCompilerSupport.execute(CleaningJavaCompilerSupport.java:25) at org.gradle.api.tasks.compile.JavaCompile.performCompilation(JavaCompile.java:157) at org.gradle.api.tasks.compile.JavaCompile.compile(JavaCompile.java:139) at org.gradle.api.tasks.compile.JavaCompile.compile(JavaCompile.java:93) at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:75) at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$IncrementalTaskAction.doExecute(AnnotationProcessingTaskFactory.java:243) at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$StandardTaskAction.execute(AnnotationProcessingTaskFactory.java:219) at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$IncrementalTaskAction.execute(AnnotationProcessingTaskFactory.java:230) at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$StandardTaskAction.execute(AnnotationProcessingTaskFactory.java:208) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:80) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:61) ... 60 more BUILD FAILED Total time: 12.951 secs Thanks if anyone can help me.
  12. Which class? If I'm trying to add it to the gui, why would I add it to the items class?
  13. I've been working on making a mod that adds in its own energy system called Redston Energy, and I was trying to figure out how to add a tooltip that show how much energy is stored like in Thermal Expansion, when your mouse is hovered over the energy storage bar. Thanks, Legoboy0109
  14. This mod adds in all items and resources, as well as OreDictionary names for all my mods. TCCMachines will add in machines that use RF and generators. I am almost ready to post a full release of this mod! If you want beta access, ask and I may send you a build to test. Ore Generation- Tin - A basic material you should all recognize. It is refined in the same method as iron. Copper - Easier to find than tin and used for power conductance. You should all recognize this as well. Silver - Similar to the silver in other mods. Spawns like gold and is used for certain recipes. Tungsten - Found at mining level 10 and below. As rare as diamond but spawns in groups of 1 or 2. Metal equivalent of diamond. Sapphire - A gemstone found in the earth. Used for a few recipes as well as tools. This, and other gemstones will be used mostly in GemTech. Ruby - Another basic gemstone. You can make tools with high mining speed and attack speed out of it. Amethyst - Like the other gemstones, you can make tools out of it. Peridot - Same as the other gemstones, but a bit rarer. Topaz - Rarer than the other gems, but same concept. Japser - A little more common than Topaz, but same as the other gems in use. Quartz - Same rarity as diamond, very similar as well. It's just not as hard. Can be crafted with a diamond and 8 nether quartz. Abzantanium - A VERY rare gem that is 10 times stronger than diamond. can be found in the end as well. I will be adding more soon, but I still have to finish the other stuff for the mod before I post them.
×
×
  • Create New...

Important Information

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