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.

3N_Hero_Of_Time

Members
  • Joined

  • Last visited

  1. I am watching a tutorial series on modding minecraft, does that count?
  2. this is the script for just the mod in general: package net.CraftsofTime.mod; import net.CraftsofTime.mod.blocks.StoneofTime; import net.CraftsofTime.mod.items.CTItems; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.Item; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; 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.registry.GameRegistry; @Mod(modid = CraftsofTime.modid, version = CraftsofTime.version) public class CraftsofTime { public static final String modid = "CraftsofTime"; public static final String version = "Alpha v0.1"; public static Item itemSteelIngot; public static Block blockStoneofTime; @EventHandler public void PreInit(FMLPreInitializationEvent preEvent){ itemSteelIngot = new CTItems().setUnlocalizedName("Steel Ingot"); GameRegistry.registerItem(itemSteelIngot, "Steel Ingot"); blockStoneofTime = new StoneofTime(Material.rock).setBlockName("Stone of Time"); GameRegistry.registerBlock(blockStoneofTime, "Stone of Time"); } @EventHandler public void Init(FMLInitializationEvent event){ } @EventHandler public void PostInit(FMLPostInitializationEvent postEvent){ } }
  3. I know, i plan to.... just sort of messing around and seeing if it is really something I wanna try doing first. This is what I have: package net.CraftsofTime.mod.blocks; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.CraftsofTime.mod.CraftsofTime; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; public class StoneofTime extends Block { public StoneofTime(Material material) { super(material); this.setHardness(-1F); this.setResistance(-1F); this.setStepSound(soundTypeGlass); this.setCreativeTab(getCreativeTabToDisplayOn().tabBlock); } @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister iconRegister) { this.blockIcon = iconRegister.registerIcon(CraftsofTime.modid + ":" + this.getUnlocalizedName().substring(5)); } }
  4. Errr. Was hoping to save face lol. Truth is I have just started modding and the main problem is I type: this.onBlockClick Then I have no clue what to put after haha. It doesn't make sense
  5. I have made a custom block. The block is unbreakable. I want to choose a certain item that when left clicking the block causes it to teleport. So I guess you have the item (let's say a diamond sword) and you hit this block
  6. So I am trying to make a block teleport a certain distance when hit with a certain item. (Examp) So you walk up to a stone, smack it with a stick, it teleports 5 block behind you. How would one perform such wizardry? It would sort of be like the dragon egg but only for a specific item/tool and a precise teleportation path. I have tried using the onBlockClicked line but can't figure it out ;(

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.