Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • ArcaneFractal

ArcaneFractal

Members
 View Profile  See their activity
  • Content Count

    13
  • Joined

    July 8, 2014
  • Last visited

    July 11, 2014

Community Reputation

1 Neutral

About ArcaneFractal

  • Rank
    Tree Puncher

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!
  1. ArcaneFractal

    [1.7.2]legacy.json file not found

    ArcaneFractal posted a topic in ForgeGradle

    [13:20:51] [main/INFO] [GradleStart]: No arguments specified, assuming client. [13:20:52] [main/INFO] [GradleStart]: Extra: [] Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: C:\Users\t\.gradle\caches\minecraft\assets\virtual\legacy\indexes\legacy.json at com.google.common.base.Throwables.propagate(Throwables.java:160) at GradleStart.setupAssets(GradleStart.java:260) at GradleStart.startClient(GradleStart.java:82) at GradleStart.main(GradleStart.java:56) 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:483) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134) Caused by: java.io.FileNotFoundException: C:\Users\t\.gradle\caches\minecraft\assets\virtual\legacy\indexes\legacy.json at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:131) at java.io.FileReader.<init>(FileReader.java:72) at GradleStart.loadAssetsIndex(GradleStart.java:266) at GradleStart.setupAssets(GradleStart.java:204) ... 7 more For some reason the 1.7.10-Latest(10.13.0.1179) version works fine but Forge 10.12.1.1112 gives me this exception. I tried running gradlew setupDecompWorkspace but that doesn't work.
    • July 10, 2014
    • 2 replies
  2. ArcaneFractal

    [1.7.2]How to change block texture based on height

    ArcaneFractal replied to LogicTechCorp's topic in Modder Support

    Disable the world gen/recipe for that vanilla block and make a identical copy of it.
    • July 10, 2014
    • 3 replies
  3. ArcaneFractal

    [1.7.2] No errors during setup, but client will not run in Idea.

    ArcaneFractal replied to Morgrimm's topic in ForgeGradle

    Try gradlew getAssets It worked for me.
    • July 10, 2014
    • 5 replies
  4. ArcaneFractal

    [1.7.2]How to change block texture based on height

    ArcaneFractal replied to LogicTechCorp's topic in Modder Support

    The class Block has 2 methods that determine a block's icon. getIcon(IBlockAccess world, int x, int y, int z, int side); getIcon(int side, int meta); The first method gets called in the world, and the second method gets called in inventories. In the world you can just get the y level and return the texture you want, but you still have to implement the second method or let setTextureName(String) do it for you. By default when the first method is called it automatically calls the second method, but in this case you have to override it.
    • July 10, 2014
    • 3 replies
  5. ArcaneFractal

    [1.7.2] No errors during setup, but client will not run in Idea.

    ArcaneFractal replied to Morgrimm's topic in ForgeGradle

    Run gradlew setupDecompWorkspace again until you have solved the problem.
    • July 10, 2014
    • 5 replies
  6. ArcaneFractal

    Unable to read a class file correctly in Intellij IDEA

    ArcaneFractal replied to ArcaneFractal's topic in Modder Support

    Thank you, that works!
    • July 9, 2014
    • 2 replies
  7. ArcaneFractal

    SLOVED[1.7.10]Forge model loader problem

    ArcaneFractal replied to FLUFFY2's topic in Modder Support

    Just delete that line in your obj file.
    • July 9, 2014
    • 2 replies
  8. ArcaneFractal

    [1.7.2] Custom block Spread Help Please

    ArcaneFractal replied to Electrobob99's topic in Modder Support

    That piece of code world.getBlockLightOpacity(z, y + 1, z) <= 2 shouldn't it be (x, y + 1, z) ?
    • July 9, 2014
    • 2 replies
  9. ArcaneFractal

    How to move items towards the player?

    ArcaneFractal replied to Toastrackenigma's topic in Modder Support

    You should probably use the MathHelper class.
    • July 9, 2014
    • 11 replies
  10. ArcaneFractal

    Cooldown for a Rightclick-Action

    ArcaneFractal replied to MikeZ's topic in Modder Support

    You can save the cooldown in NBT data.
    • July 9, 2014
    • 5 replies
  11. ArcaneFractal

    How to move items towards the player?

    ArcaneFractal replied to Toastrackenigma's topic in Modder Support

    The method World.getEntitiesWithinAABBExcludingEntity returns a List. You have to save it in a variable. List<Entity> = world.getEntitiesWithinAABBExcludingEntity(EntityItem.class, player.boundingBox.expand(8D, 8D, 8D)); and set its velocity to the difference between its position and the player's (I'm not writing the for loop) double factor = 0.02d; entity.motionX += (player.posX - entity.posX) * factor; entity.motionY += (player.posY - entity.posY) * factor; entity.motionZ += (player.posZ - entity.posZ) * factor;
    • July 9, 2014
    • 11 replies
  12. ArcaneFractal

    How to move items towards the player?

    ArcaneFractal replied to Toastrackenigma's topic in Modder Support

    Once you have found a way to get the item entities, you can set their velocity so they fly toward the player.
    • July 9, 2014
    • 11 replies
  13. ArcaneFractal

    Unable to read a class file correctly in Intellij IDEA

    ArcaneFractal posted a topic in Modder Support

    I tried http://www.minecraftforge.net/forum/index.php?topic=6379.5 but there are 2 identical JRE paths in my Run configurations and neither of them works. Just remove the classpaths give me a java internal compiler error. I have also tried removing all classpaths and add libs manually, but that has the same effect as do nothing. I have also tried different forge versions, from 1.7.2 to 1.7.10. That didn't work either. Thanks
    • July 9, 2014
    • 2 replies
  • All Activity
  • Home
  • ArcaneFractal
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community