• 0

    posted a message on [1.7 & 1.8] TheXFactor117's Forge Modding Tutorials | 20+ Tutorials | Actually Learn How to Make Mods!
    Hello...Love your tutorials and they are very clear, but......I am getting errors with the @Mod Annotation



    I have created the Reference.Help class...



    Have all the names and caps the same in both files ( MODID, NAME, VERSION)



    Imported the reference.Help using the Shift+Control+O



    But the Main file is telling me that MODID, NAME and VERSION "can not be resolved or is not a field"


    Reference.Help file....



    public class Reference {
    public static final String MODID = "tielkdarkmoon_MyPersonalMod";
    public static final String NAME = "MyPersonalMod";
    public static final String VERSION = "v1.0.0";

    }



    The Main File...



    package com.yahoo.tielkdarkmoon.MypersonalMod;



    import com.sun.org.apache.xml.internal.security.encryption.Reference;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.event.FMLPostInitializationEvent;
    import cpw.mods.fml.common.event.FMLPreInitializationEvent;



    @Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION)



    public class MyPersonalMod {

    @Mod.EventHandler

    public void preInit(FMLPreInitializationEvent event)
    {

    }

    @Mod.EventHandler
    public void Init(FMLInitializationEvent event)
    {

    }

    @Mod.EventHandler
    public void postInit(FMLPostInitializationEvent event)
    {

    }

    }



    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on Tired of "Connection Timed out" errors...
    Quote from Matt_Damon

    Just to be 100% sure you port forwarded correctly, check out this website.


    Thank you..but that is the FIRST site I went to because just about everyone on her says it's "god" then tried 4 others.

    My port is forwarded correctly.
    Posted in: Server Support and Administration
  • 0

    posted a message on Tired of "Connection Timed out" errors...
    I am trying to run a 1.7.2 server for me and a couple friends.

    I have all my ports forwarded....
    I have the firewall setup to let the connection through....
    I have setup my anti-virus to ignore minecraft connections....
    I have tried 5 different port checking sites to make sure the port i open and forwarded properly...

    and still nothing....

    I have searched the web for answers...
    I have searched this forum for answers...

    Everyone always says the cause is the same thing..."port forwarding" and/or firewall/antivirus

    I see everyone telling me that the correct port forwarding fixed their problem...

    I have tried 35...yes...35 different free ports on my system....all give the same error...

    "Connection timed out"

    Please...SOMEONE tell me how to get my server to stop timing out and let people in.
    Posted in: Server Support and Administration
  • To post a comment, please .