Jump to content

Chibill

Forge Modder
  • Posts

    584
  • Joined

  • Last visited

Everything posted by Chibill

  1. That does not change anything Is there another place to look for a tutural? The one on the wiki errors out.
  2. Does not work eqlipes puts red lines under the varables at the top ans the void in the functuion.
  3. I will try that.
  4. You forgot to give your items and block unasocated names (can't spell but look on the block and item ttiral.)
  5. Bump
  6. Look at how redstone does it copy that and recode it so it won't interfer with redstone
  7. Update to 1.5.2
  8. Your code is looking for a class in net.minecraft.client the log says the server can't find it because IT IS ON THE CLIENT SIDE ONLY NOT THE SERVER SIDE!
  9. This is the only code that is relay could cause it. @Mod.PreInit public void preInit(FMLPreInitializationEvent event) { System.out.println("Starting confifuration of Additional Crafting!"); Configuration config = new Configuration(event.getSuggestedConfigurationFile()); config.load(); boolean wasRead = true; Property Blocks_Start_ID = config.getBlock("StartBlockID", 1225); Blocks_Start_ID.comment = "The Starting ID for Blocks, Will have up to 10 added to this."; int B_Start_ID = Blocks_Start_ID.getInt(); this.IronStairs = B_Start_ID; this.GlassStairs = (B_Start_ID + 1); this.GoldStairs = (B_Start_ID + 2); this.LapisStairs = (B_Start_ID + 3); if (!wasRead) { config.save(); } System.out.println("Finish reading and prossesing the config for Additional Crafting!"); }
  10. No help I can post src if needed.
  11. Logs please or nothing happened.
  12. I little suggestion look on the wiki at the tutorials.
  13. Look in net.minecraft.block.material for the materials.
  14. If you can save them you can read them in theory.
  15. Look at computer crafts Src how they save the files in the computer.
  16. New itemstack(name of item)
  17. Mark a point as the center and the do setblock so many x y and z from it to make what you want.
  18. In your block class you are also passing your block a mete rial you only pasted it an I'd in your main class.
  19. Yes it does that's the base class of my whole mod and it sees my mod before it crashs.
  20. I am trying to add a config to my mod Additional Crafting but Even if I use then same code from the tutorial I get this error and I know my class is there so I can't figure out whats the matter.
  21. I think the log is saying that when the on packet data method is ran it can find the class for player on the server side in SP it works because the server can see the client files.
  22. You could make it see if the pistions variable to extant is true and then make you block move it self.
  23. I am working on a mod that will let people black list mods on there server bu I have not even started the dev of it yet only the thrifty.
  24. Don modify the class use ASM
  25. Still no help and you all think I want the code when I just want some help all I need are the snippets that do the spawning stuff because I have my block and or item. And I know how to code java with out learning it from reading the code so don't bug me on that.
×
×
  • Create New...

Important Information

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