Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

gabe_oz

Members
  • Joined

  • Last visited

Everything posted by gabe_oz

  1. huh, that did not work, my modid is ncrafting. = my files in my zip are. to package it i use recompile then reobfuscate. gabe-ne1-(classfiles) assests-ncrafting-textures-blocks/items
  2. I bet there is one somewhere on here, and there are plenty of tutorials on youtube. Go find some
  3. Hello, i've been trying to make a mod, but when I try it outside of eclipse, the textures of items or blocks will not work Here is a copy of my main class file package gabe.ne1; import gabe.ne1.blocks.enderblock; import gabe.ne1.items.mrod; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid=BasicInfo.ID, name=BasicInfo.NAME, version=BasicInfo.VERS) @NetworkMod(clientSideRequired=true, serverSideRequired=false) public class main { // The instance of your mod that Forge uses. @Instance("Main") public static main instance; public static Block enderblock; public static Item mrod; public static Item orthoswand; public static Item diantwand; public static Item invisialwand; // Says where the client and server 'proxy' code is loaded. @SidedProxy(clientSide=BasicInfo.CLIENTPROXY + "ClientProxy", serverSide=BasicInfo.COMMONPROXY + "CommonProxy") public static CommonProxy proxy; @EventHandler public void preInit(FMLPreInitializationEvent event) { // Stub Method } @EventHandler public void load(FMLInitializationEvent event) { proxy.registerRenderers(); enderblock = new enderblock(2500, Material.rock).setUnlocalizedName("enderblock"); GameRegistry.registerBlock(enderblock, BasicInfo.ID + enderblock.getUnlocalizedName().substring(5)); LanguageRegistry.addName(enderblock, "Block of Ender"); mrod = new gabe.ne1.items.mrod(5500).setUnlocalizedName("mrod"); LanguageRegistry.addName(mrod, "Magic Rod"); orthoswand = new gabe.ne1.items.orthoswand(5501).setUnlocalizedName("orthoswand"); LanguageRegistry.addName(orthoswand, "Wand Of Orthos"); diantwand = new gabe.ne1.items.diantwand(5502).setUnlocalizedName("diantwand"); LanguageRegistry.addName(diantwand, "Wand Of Diant"); invisialwand = new gabe.ne1.items.invisialwand(5503).setUnlocalizedName("invisialwand"); LanguageRegistry.addName(invisialwand, "Wand Of Invisial"); } @EventHandler public void postInit(FMLPostInitializationEvent event) { // Stub Method } } And one of my item class files package gabe.ne1.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; public class diantwand extends Item{ public diantwand(int id) { super(id); this.setCreativeTab(CreativeTabs.tabTools); this.setTextureName("ncrafting:diantwand"); } } Will someone please help me

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.