Jump to content

LexManos

Forge Code God
  • Posts

    9264
  • Joined

  • Last visited

  • Days Won

    66

Everything posted by LexManos

  1. Due to Optifine being closed source, it will have to become compatible with us. Its not hard, hes done it before, hes doing it wrong just because he probably hasn't looked into the restructure we have done in 1.3 So go talk to him
  2. Ah I must of read your old post and misunderstood. Anyways, you have 32000 items, you dont really need to worry about things like this. As was stated in the first reply, the metadata and damage values are the same thing to Minecraft. It's either used for one, or the other, not both. If you want a tool with different usages, you're gunna have to use different ids.
  3. Why dont you just use the god damn item destroy event like a good little boy?
  4. They arnt getting loaded because "DayZ_ClientProxy" != "net.minecraft.src.DayZ_ClientProxy" Why the fuck are you int he minecraft package?
  5. Ya, how many god damn times do I have to say it? Move your crap out of the mods folder. If you refuse to do that i'm locking this thread and writing you off as a moron. Aside from that, update your forge, check the jenkins for dev builds. Also there are many other things out there besides MCPatcher to do what you want, Give MultiMC a try. MCPatcher, even though you turn everything off, will STILL edit your jar with its own crap. Which breaks easily if you're installing mod classes. Also, why are you typing out everything? It's a simple command, dir /B /S
  6. Yes, it does,, isRemote just tells you what side you're on. Only spawn things on the server side...
  7. Haha mcpatcher.. reliable, you high? Also you're just using it as a archive tool as you said. So just use 7zip. Define latest build... Because yes we actually did update within the last 25 mins, but this issue should not be in any of them from like, last night. Aside from that, give us a mods list, and we'll see if we can track it down.
  8. Either update your mod to one that has a valid mcmod.info Or update Forge to the latest build. And it IS supposed to load everything in sub folders as There are such things as folder mods, they are retarded, but hey, people make them. So, I state once again, just move the shit you dont want, out of the folder.
  9. You missed the steps of you setting up a new project, however, kinda need the errors to guess what they are. However, the Minecraft project seems to be fine so it seems to me you did something wrong setting up your project.
  10. Forge is supposed to load everything in the mods folder How can you claim that its doing things its not supposed to as it clearly isnt. If you dont want a mod to load move it out of the mods folder.
  11. wow.. just fucking wow... http://www.minecraftforum.net/topic/1419836-131-forge-4x-events-howto/
  12. I assume you're installing this: http://www.minecraftforum.net/topic/1027351-131-smp-ssp-minecraft-f-key-mod-fog-key-optifine-compatibility/ Wait untill it updates to 1.3.2, the issue is that it's still on 1.3.1
  13. As ML for 1.3.2 just came out today, you need to wait a little bit until we fix the compatibility layer between FML and ML.
  14. MC's lighting engine doesnt support true colors.
  15. at net.minecraft.src.World.getCollidingBoundingBoxes(World.java:1466) You'll see a collection on this line, that is being itterated over. Somewhere inside of that loop, you are modifying the thing that's being itterated over. You're gunna have to figure out what your in code is called, that edit that collection.
  16. Yes, when playing on a local game, it will switch form true to false constantly. Because you are actually getting called from two different threads. With two different worlds. One locally on the client, the other is the server's world.
  17. Not quite, we're squashing bugs and dealing with ModLoader.
  18. https://github.com/MinecraftForge/MinecraftForge/commit/7f40671ad8841be99ce45ef00eb9fd35c12e1dc4 MC Bugs, client side not respecting the format of there own packets.
  19. Thats caused by it not being able to find mcp/forge/common/forge_at.cfg Make sure you've extracted forge to the proper directly and you're running it from the /forge/ directory.
  20. You annotate a field with it, when the class is loaded that field will be populated with a instance of the class for the specific side you're running. Is that to hard to get?
  21. //Load the sound(s) in ClientProxy. DayZ_ClientProxy.loadDayzSounds(); //Load the renderer(s) in ClientProxy. DayZ_ClientProxy.registerRenderInformation(); You have hard references to client proxy. Thats bad, take a look at SideProxy
×
×
  • Create New...

Important Information

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