The prefixer module allows you to add prefixes to people's names. This is useful for things such as ranks, IDs, or roles. Using the prefixer is extremely easy, but has a few steps before it works flawlessly in-game. This entails adding your usergroup to the prefix access tables.
1) Navigate to the following directory: lua/wos/charsys/config/sv_config.lua
2) Add an entry for your user group to ensure the functions work, the code is below:
--What user groups should be able to right click on players and edit their prefix?
wOS.CharSys.Config.PrefixGroups = {}
wOS.CharSys.Config.PrefixGroups[ "superadmin" ] = true
wOS.CharSys.Config.PrefixGroups[ "owner" ] = true
3) Go into your game and hold down your context menu button to enable the cursor.
4) Right click on a player and click the Change Prefix option
5) Their existing prefix should appear in the text box. If it is empty, it means they have no prefix. Enter the desired prefix and press the check mark to confirm.
That's all! Prefixes can be changed at any time by the people with the permission to do so.