Titles logo

Titles

Set your character's titles with /prefix and /suffix

Allows you to set your titles with /prefix title and /suffix title.

You can leave title empty (or nil) to clear your prefix or suffix. The title is not case sensitive.

Examples:

  • /prefix counselor   Sets your prefix to Counselor.
  • /prefix  Clears your prefix title.
  • /suffix DEFENDER of the SEAS  Sets your suffix to Defender of the Seas.
  • /suffix nil Clears your suffix title.

To do this without an add-on, you can use the following method (this is what I did before writing the add-on):

  1. Add a macro named Get Title Details with the following line: script Command.CopyToClipboard(Utility.Serialize.Full(Inspect.Title.Detail(Inspect.Title.List()))) (the capitalisation here matters).
  2. Run the macro to copy the details of all your unlocked titles, then open a text editor (such as Notepad) and paste.
  3. Search for the title you want, such as Novice Miner.
  4. Copy the contents of the id field, including the quotation marks.
  5. Paste this in a macro (or wherever you want to change your title):
  • For a prefix title: script Command.Title.Prefix("YOUR_ID_HERE")
  • For a suffix title: script Command.Title.Suffix("YOUR_ID_HERE")
  • In our Novice Miner example, this would be script Command.Title.Suffix("t6BEF6E5082C0D493")

To clear a title, use the same command in point 5, replacing the ID with nil (without quotation marks).

The Titles Team

profile avatar
  • 1
    Projects
  • 57
    Downloads