Jump to content

LexManos

Forge Code God
  • Posts

    9273
  • Joined

  • Last visited

  • Days Won

    68

Everything posted by LexManos

  1. No, we're not gunna special case scala. Stop using stupid code. You can do normal java along with scala just deal with it.
  2. Temporarly disable your antivirus/firewall or try running the installer as admin. Something is blocking your internet connection.
  3. Try it without pixelmon, your log isnt telling us anything.
  4. I've finished the MCP 1.10 update it's now just sitting there waiting of Searge/Bspkrs to take a look at it. Once they push that out i'll start working on 1.10 Forge.
  5. Start removing mods and see what happens. One of the mods you've added has registered a recipe class incorrectly.
  6. Settings the number to something really high as described in the config will not show the nag. As for the other stuff associated with it, there is no way to turn it off. Update your java.
  7. That is exactly the case. We just use the version number as the branch name because it just makes sense to call it that.
  8. We are not Sponge, go to their forums for support with it.
  9. Whatever/wherever you got forge you've messed it up. Go to files.minecraftforge.net and download the win installer and run it.
  10. Loot tables are exposed enough where you can create and manage your own as well as modify vanillas. If there is something you can't do it's most likely because you haven't tried/looked. And this isn't a support issue...
  11. If you dont like the ads dont use the ad links. ALL ad sites have horrible ratings because nobody likes ads. Anything that is actually malicious or inappropriate in the ads that are displayed I take care of as soon as they are reported. Just use the ad site correctly and reaslize that it is ads. And you'll be fine. Each page has exact instructions and details on the top. It's very clear what is happening and what you should be doing. The download page lists all links with direct and ad links. So just look for yourself. Unless you're willing to personally pay the bills for the server you're just gunna have to deal with ads.
  12. Yes, it does a Forge->mc->Forge->mc->Forge->*** jump a lot in Forge, that's how programming works. The position isnt there to keep compatibility with vanilla and OTHER MODs that call this function without location information. We're not the only loader out there we still have to maintain compatibility with people who do dumb things.
  13. This topic has been moved to Minecraft General. [iurl]http://www.minecraftforge.net/forum/index.php?topic=39502.0[/iurl]
  14. Due to modders abusing it and fucking up everyone elses' recipies the mechanic for automatically replacing ordict recipes is no longer in place for modders to use. You have to manually duplicate all vanilla recipes that you want to convert to oredicts.
  15. Not able to reproduce... They all work fine for me. Only issue is if you open both at the same time seince it has a small folding animation it plays.
  16. That's because it is, it was a miss-merge of a PR. I've killed the download.
  17. Do not make coremods.
  18. static items in prinit is not static -.- However methods like setUnlocalizedName, setRegistryName, etc.. follow a programming design called chaining. Its when a method returns the object it's working on. So you can do something like: Item my_item = new MyItem().setUnlocalizeName().setRegistryName(); Side note, you shouldnt start your fields with upper case names, that's typically reserved for Class names.
  19. Registry name is the internal 'code' name that the item can be pulled from the registry with. And should be the name used for all internal references to the item. Unlocalized name is the key in the language files for looking up the localized information. NOTHING MORE. There is a big stupid population of modders who copy paste old crappy tutorials from 4 years ago that hack around and try to use the unloacalized name for internal stuff, this is wrong and if you do it you should be ashamed.
  20. Do not make a coremod. If you do, or anyone here helps you. You will be banned from the forums. There is ALWAYS a way to do things without a coremod.
  21. There we go, an actual error. "Unable to unmap shared space." A quick google tells me that its usually a corrupt java install. So I'd advise Uninstalling java, rebooting, and reinstalling java.
  22. Seriously it's not hard -.- Type this exactly java -jar forge-1.9.4-12.17.0.1937-installer-win.exe Or, download the 'installer' download and run java -jar forge-1.9.4-12.17.0.1937-installer.jar
  23. It doesn't matter. The lists are small so it's fast enough. We're not in the business of re-writing stupid things like this. So Why does this matter and what do you expect us to do about it? You can find a lot of issues and inefficiencies in MC code base, welcome to Minecraft....
×
×
  • Create New...

Important Information

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