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 counselorSets your prefix to Counselor./prefixClears your prefix title./suffix DEFENDER of the SEASSets your suffix to Defender of the Seas./suffix nilClears 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):
- 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). - Run the macro to copy the details of all your unlocked titles, then open a text editor (such as Notepad) and paste.
- Search for the title you want, such as Novice Miner.
- Copy the contents of the
idfield, including the quotation marks. - 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).