Jump to content

Achievement gui not appearing for custom pages


Recommended Posts

I've looked around a bit and can't find an answer to this, so I'll try here.

 

How do you get the achievement gui to show up in custom pages?

 

cFICe.png

 

Do I have to add anything other than what I have below?

 

MinecraftForge.registerAchievementPage(new ModTestAchievementPage());

package net.minecraft.src;

import net.minecraft.src.forge.AchievementPage;

public class ModTestAchievementPage extends AchievementPage
{
public static Achievement achievTest= (new Achievement(4920, "achievTest", 0, 0, mod_ModName.blockName, (Achievement)null)).setIndependent().setSpecial().registerAchievement();

    public ModTestAchievementPage()
    {
        super("Mod Name", new Achievement[] {achievTest});
        ModLoader.addLocalization("achievement.achievTest", "Test an Achievement");
    }
}

 

Thank you.

Link to comment
Share on other sites

Yes, add a 2nd chiev.

MC has issues with the list if its only 1.

Also, there is no reason really to have your class in there, you can use AchievementPage directly.

Also, no need to do new Achievement[]{} thats stupid.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

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.

Announcements



×
×
  • Create New...

Important Information

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