Jump to content

Parker8283

Forge Modder
  • Posts

    164
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • URL
    https://github.com/Parker8283
  • Location
    Over There, United States
  • Personal Text
    zzZZzz...huh?

Parker8283's Achievements

Creeper Killer

Creeper Killer (4/8)

10

Reputation

  1. Re-download and try again.
  2. gradlew clean setupDecompWorkspace That will clean up the gunk from 1.7.2.
  3. I expected that, but the thing is, I didn't originally write this, so the guy that did somehow got it to compile (I believe without FG), so I was kinda wondering how... but yea, totally expected that.
  4. Post your build.gradle so we can actually SEE what you did.
  5. Depends on where you want to generate it, and what you want to generate it with.
  6. I am working on a mod that compiles against two versions of the BuildCraft API, mostly because they changed a lot between 5.x and 6.0.x. However, I am having problems making Gradle work to do this. I can't get it to download both APIs from the Forge Maven (it just downloads the newest one), and after putting one of the APIs in src/api/java and keeping the other one in the dependencies block in my build.gradle, my IDE said that all was good, but Gradle failed on recompile. The API in src/api/java compiled correctly, but Gradle still used the API defined in the dependencies block to compile against. Is there any way that I can accomplish this, or should I just drop the 5.x API support?
  7. What happened to the decompress method in the CompressionStreamTools class between 1.7.2 and 1.7.10? Was it replaced by func_152457_a? If so, what the heck do I do with the NBTSizeTracker?
  8. Does anyone know what happened to the ChatClickData between 1.6 and 1.7? I can't seem to find it out, and I wasn't getting any answers on IRC.
  9. Well, I hope that the IExtendedEntityProperties solves the need to figure out how to use the entityDataMap. What I meant was that I'm manipulating "How often the speed of entities are calculated (in ticks)."
  10. Ok, so now I'm really confused. I need to manipulate the tick rate, so I would use RenderTickEvent, but that needs to manipulate the entityDataMap, so I would use what?... Also, so I just create a class that implements the IExtendedEntityProperties, add the function to the methods that I need, then attach them how in the EntityConstructing event?
  11. You aren't giving enough information. Are you having problems with it? What EXACTLY are you trying to do? Giving us an extremely broad score to try and decipher what your asking and how we should give you help, well, doesn't help.
  12. Well, in 1.6.4 (when it was ITickHandler and not events), it had this: https://github.com/iguanaman/IguanaTweaks/blob/master/src/iguanaman/iguanatweaks/IguanaTickHandler.java#L83-L86 Which I assume means that this tick handler is for client side only(?) I guess I've got to being rewriting the entity data collection and storage using the interface you talked about earlier. However, does it do what I need it to do? I need it to store data about each individual entity in the world, and it appears that this needs to be attached to an entity class. Also, I needed RenderTickUpdate because I'm manipulating the tick rate with a config setting (https://github.com/Parker8283/IguanaTweaks/blob/master/src/main/java/iguanaman/iguanatweaks/IguanaTickHandler.java#L45)
  13. Hey, I didn't write this. I just updated it to 1.7 so that it didn't die. I'll definitely look into that Interface. I'm still getting acquainted with how all the code works. Does it have to do with my Tick Handler maybe?
  14. https://github.com/Parker8283/IguanaTweaks/blob/master/src/main/java/iguanaman/iguanatweaks/IguanaEventHook.java#L379-L438 It could just be my code, but the text added here flickers. I don't know why. It seems that it should just be added to the ArrayLists, unless I'm missing something. EDIT: As reference, here's a video:
  15. It's saying it can't find all of this stuff. As it appears that you aren't using the src/main/java folders, make sure your build.gradle is pointed to the folders that you are using for sources and resources.
×
×
  • Create New...

Important Information

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