Jump to content

kamakwazee

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

kamakwazee's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I second this. Technically speaking, you can put the mod on your server and client and it should work (assuming you have correctly put all @SideOnly annotations as well to prevent the mod from referencing nonexistent classes.) If all your mod does is add simple blocks and items, it should work fine. In most cases, if your mod works in single player (since it actually runs an internal server), it'll work in multiplayer too. So if you want the question fully answered, you have to tell us what your mod does. I agree with this. If it is a more complicated mod, however, you may need to pass packets back and forth between client and server, and it would be easier to make separate mods for singleplayer and multiplayer.
  2. I second this. Technically speaking, you can put the mod on your server and client and it should work (assuming you have correctly put all @SideOnly annotations as well to prevent the mod from referencing nonexistent classes.) If all your mod does is add simple blocks and items, it should work fine. In most cases, if your mod works in single player (since it actually runs an internal server), it'll work in multiplayer too. So if you want the question fully answered, you have to tell us what your mod does. I agree with this. If it is a more complicated mod, however, you may need to pass packets back and forth between client and server, and it would be easier to make separate mods for singleplayer and multiplayer.
  3. It depends. What does your mod do?
  4. I am trying to learn how to create armor for minecraft using mc forge, but I ran into some difficulties. All tutorials I watch add .setIconCoord() and .setItemName() to the end of the new armor, but when I attempt this, it gives me an error. I am using mcforge version 7.7.0.605. For this test project, I am working on making gold-trimmed diamond armor. GoldTrimmed.java (Main Class) http://paste.minecraftforge.net/view/68afd075 gDiamondArmor.java (Armor Class) http://paste.minecraftforge.net/view/3384f9d0 CommonProxy.java (Server Proxy) http://paste.minecraftforge.net/view/67a8ed5f ClientProxy.java (Client Proxy) http://paste.minecraftforge.net/view/9c7a7b24 Thanks
×
×
  • Create New...

Important Information

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