Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Comet] Adding new achievement groups

Newbie Spellweaver
Joined
Feb 2, 2016
Messages
94
Reaction score
22
So I've been trying to add my own achievements and cant figure out how to make a new category for them.

There's this inside what I've looked at but I tried to put "group_name" column to NULL for an entry but nothing happens.

Reservoir - [Comet] Adding new achievement groups - RaGEZONE Forums


(im noob at java pls help)
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Aug 9, 2016
Messages
83
Reaction score
11
I think you have to put it into AchievementType.java too for it to show up in client.
 
Upvote 0
Newbie Spellweaver
Joined
Feb 2, 2016
Messages
94
Reaction score
22
I think you have to put it into AchievementType.java too for it to show up in client.
Well, Ive already done that.
PHP:
package com.cometproject.server.game.achievements.types;

public enum AchievementCategory {
    IDENTITY,
    EXPLORE,
    MUSIC,
    SOCIAL,
    GAMES,
    ROOM_BUILDER,
    PETS,
    TOOLS
}
"TOOLS" is the one I am trying to add.
 
Upvote 0
Back
Top