How do I edit someone's prefix?

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.

 

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How do I use the Cinematic Camera Tool?

To use the Cinematic Camera Tool to place and edit camera locations or create scenes, there are...

What are the console commands?

There is currently only one console command: wos_charsys_toggleconfig It allows you to use the...

How do I use MySQL saving?

Using MySQL saving is fairly simple, but you will need a module before hand. 1) If your host...

Couldn't include file 'includes/modules/mysqloo.lua'

If you are using MySQL data saving and seeing this error, it means your server is missing...

How do I create a custom character?

Creating a character is extremely easy and modular, thanks to our typical formatting. There are...