Jump to content

Deeper exampleMod


jokekid

Recommended Posts

i have no idea where to post this, since it's a download, but it's not a functionnal mod, it's just a blank mod i wrote for myself with a bit more standard classes than the exampleMod packed with the forge source download.

basically this covers how i make the blank mod before i start doing any specifics, which is:

 

-Proxy package with both common and client proxy classes, both setup in the main mod file.

-Events package with an empty event handler class which is registered in the main mod file.

-Reference class where i store constants for mod ID, version, and proxy class locations.

-Main mod class with everything stated above registered, mod instance declared as "instance", all 3 init handlers (pre, init and post) and  comments telling what you should register where.

 

I hope this is for use to anyone who feels kinda lazy and doesnt wanna spend 20 or so minutes setting up the very basics of a mod package.

 

Link: https://www.dropbox.com/s/m5eepq1t98pt4cl/better%20exampleMod.rar?dl=0

 

Note to people not knowing IDEs: refactor stuff, if you dont know what it is, look it up and do it.

Link to comment
Share on other sites

In reference there is this code:

public static final String CLIENT_PROXY = "com.jokekid.proxy.ClientProxy";
public static final String COMMON_PROXY = "com.jokekid.proxy.CommonProxy";

 

which should be

 

public static final String CLIENT_PROXY = "com.jokekid.examplemod.proxy.ClientProxy";
public static final String COMMON_PROXY = "com.jokekid.examplemod.proxy.CommonProxy";

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

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