Jump to content

Aperre

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Aperre's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. but i want to make a 1.8 mod.
  2. I want to create a counter up right corner of your screen and idk where to start (i am very new to this) package aperre.slimetoy; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; @Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION) public class SlimeToy { @EventHandler public void preInit(FMLPreInitializationEvent event) { } @EventHandler public void init(FMLInitializationEvent event) { } @EventHandler public void postInit(FMLPostInitializationEvent event) { } } so idk help
  3. So i want to make a counter. I am very new to all of this so.... yeah. I want to make a text that appears up right of your screen and i only have this package aperre.slimetoy; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; @Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION) public class SlimeToy { @EventHandler public void preInit(FMLPreInitializationEvent event) { } @EventHandler public void init(FMLInitializationEvent event) { } @EventHandler public void postInit(FMLPostInitializationEvent event) { } } Sooo idk where to start could you help?
  4. I'm trying to make a mod but it doesnt seem to work all i do it doesnt let me ctrl+shift+o the @Mod and it says underlined in eclipse Why? package com.aperre.slimetoy; @Mod public class Broadcaster { }
×
×
  • Create New...

Important Information

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