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.

Featured Replies

Posted

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.

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";

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...

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.