On our server we're using the official title menu and we're looking for a way to add a custom title when you complete all the achievements in a section, but until now without any fortune.

There's a way to grant to an user a custom title, or are them only from the cliloc?
 
What do you mean by title?
The title in the paperdoll? Overhead text?
Is that title menu a custom script? Got the source?
 
Looking at the way the code is structured, it is sectioned off into different title types (categories).

Most of the logic used to display each section uses strings, like the Fame/Karma titles.

With that in mind, you could add a new section by copy/pasting all the logical code for the Fame/Karma section, and adapt it to use your Achievement's titles. Add a new TitleType for your section too.

You will likely need to modify the gump's layout to accommodate the extra section too.
 
You can add to the collection (community collections) title which, per EA, acts as the "reward title" in the title menu. You can add using this:

Code:
pm.AddCollectionTitle(loc);

of course, pm is an instance of PlayerMobile. It supports a cliloc, or a string.
 
Back