Jump to content

Nakkuchan

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Nakkuchan's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. OK, problem SOLVED I compiled it and tried it ingame and it works fine. Eclipse might be the guilty here. I leave the post in case someone finds himself in this situation
  2. Any idea? Anyone has experienced this kind of problems? Do you know somewhere else I could go for advice? Since "AchievementPage" is a forge class, I though this was the right place to ask, but I might be wrong!
  3. Well, I've been playing for a while in my own Minecraft world with 1.5.2 mods and I'm happy with it! This is a mod for myself, to help me with some stuff. And by the way, the way you program achievements in 1.5 is not very different as you would do in 1.7 if you look at it. And about the rendering bug, I don't know. I've followed minecraft 1.5 forge tutorials and they have no problem with the code I'm using. And I'm sure I'm using the last forge version for 1.5.2 minecraft. The only thing they say I have to do is to add a couple code lines, and they work perfectly for them: public class Beechievements{ [...] public static AchievementPage BeePage; [...] @Init public void load(FMLInitializationEvent fml) { [...] BeePage = new AchievementPage("Beechievements",MeadowBee, MeadowBee_2, ForestBee, ForestBee_2, CommonBee); AchievementPage.registerAchievementPage(BeePage); [...] } } You can check it here, for example: http://www.minecraftforge.net/wiki/How_to_add_an_AchievementPage
  4. Hello everyone!!! I'm having problems with achievement pages. What I want to make is a new achievement page with some custom achievements. I'm using forge for minecraft 1.5.2. I'm able to make the achievements and the new page, and I can connect and trigger them, but my problem is that all the achievements (both vanilla and my custom ones) appear in both pages. - Minecraft vanilla achievements page: http://gyazo.com/6dd01cfcd1815e8bfd20bc2e32eb3741 - My custom achievements page: http://gyazo.com/3e1a2a7322da0e11277cc8e288cffa46 As you can see, all the achievements are in both pages, the only change is the conexions between them. I've followed lots of tutorials and no one shows a solution for this. Do you have any idea about what is going on? The funny thing is that thew actually work, but I don't want to see all the achievements in all pages... I'm pasting my code in case it can help out. I've deleted repetitive stuff so you don't have to read so much. Thank you!!!!
×
×
  • Create New...

Important Information

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