Jump to content

calclavia

Forge Modder
  • Posts

    2281
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • URL
    http://calclavia.com/
  • Personal Text
    ICBM Mod: http://calclavia.com/icbm/

Recent Profile Visitors

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

calclavia's Achievements

World Shaper

World Shaper (7/8)

81

Reputation

  1. How can I get the directory of the world save folder to save my custom xxx.dat files? I can't find a variable that holds this information. NEI did it properly.
  2. Thanks! That's what I was looking for...
  3. That's not what I mean. I want to set up something like a language file which I can switch my mod to using. Like this: https://github.com/CovertJaguar/Railcraft-Localization How would I, from that file apply all those language settings into my blocks and items?
  4. My Manager Pack can do this. I just have to put the source up. I'm looking for a native way to do it with just Forge. Railcraft seems to be able to achieve this.
  5. How would I create language files and use them so my mod can be used in multiple languages?
  6. I recently saw that Forge added awesome chunk loading functions, though I am not sure how to use it. I saw the commit CPW did to BC for its quarry, but my purpose is slightly different. I'm trying to make a specific entity that will always load the chunk it is in. How would I do that?
  7. I just discovered world.addBlockEvent and it seems to be a neat and simple way of transferring packets without sending too much data (in comparison to Forge's packet managers). However, I keep getting these weird unsolvable errors... 2012-09-19 22:36:51 [iNFO] [sTDERR] java.util.ConcurrentModificationException 2012-09-19 22:36:51 [iNFO] [sTDERR] at java.util.ArrayList$Itr.checkForComodification(Unknown Source) 2012-09-19 22:36:51 [iNFO] [sTDERR] at java.util.ArrayList$Itr.next(Unknown Source) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.src.WorldServer.sendAndApplyBlockEvents(WorldServer.java:880) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.src.WorldServer.tick(WorldServer.java:122) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:607) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:547) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.src.IntegratedServer.tick(IntegratedServer.java:105) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:453) 2012-09-19 22:36:51 [iNFO] [sTDERR] at net.minecraft.src.ThreadServerApplication.run(ThreadServerApplication.java:17)
  8. My entities travels extremely far. Is there a way I can make Forge load some chunks it passes through? The new Forge got rid of the chunk loading hooks I think...
  9. CPW told me it's something to do with my mod not packaging properly. It says in the Forge log my zip file is ignored. EDIT: It's all because of the mcmod.info file. Azanor try copying the new format of the mcmod.info file because if the info file is wrong, the mod won't be loaded. My mod is working nicely now!
  10. I think it has moved in to Forge's new annotation system via events and the Event_BUS. Use @ForgeSubscribe above your function and with the event... I think there's a tutorial in the tutorial section about this.
  11. When the log says "mod.zip failed to load properly" does it mean the packaging is bad or the code inside is bad? Or does it mean it can't identify the mod in the zip hence it ignored the zip?
  12. I don't understand why my mod, Universal Electricity with Forge properly installed (tested with IronChest mod) doesn't load up when I put my mod zip file in the mods folder. Iron chest loads no problem, I did it as a test but my mod doesn't load and doesn't even show up in the mod list (in the Minecraft menu). I included a mcmod.info file for it. The mod works perfectly in MCP with no bugs and tested to be working pretty good. The only problem is that in the "real Minecraft" it doesn't get loaded up... No logs and error reports show up since the mod isn't even loaded yet.
  13. Anyone know how the new Forge handles custom sound effects? If so would anyone care to give a quick example or some pointers? Thanks.
  14. i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings. I'll look into it and tell you if I got any insight on it.
×
×
  • Create New...

Important Information

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