FJSF Scripts
  • 👋Welcome
  • Scripts
    • 💂FJSF_BODYGUARD
      • Configuration File
      • Installation
      • Permissions
    • 🚙FJSF_VEHICLESHOP
      • Configuration File
      • Vehicles File
    • 🛡️FJSF_ARMOUR
      • Configuration File
      • Installation
Powered by GitBook
On this page
  1. Scripts
  2. FJSF_BODYGUARD

Permissions

PreviousInstallationNextFJSF_VEHICLESHOP

Last updated 6 days ago

DATABASE Permissions

To utilize DATABASE permissions, you need to set Config.PermissionType to 'database'. Then, change the permissions column for the specific player in the bodyguard_data database table.

Next, make sure that 'admin' is added to Config.AllowedGroups as follows:

Config.AllowedGroups = {'admin', ...}

ACE Permissions

To utilize ACE permissions, you need to set Config.PermissionType to 'ace'. Then, in your server.cfg, include the following command:

add_ace <principal_identifier> <ace_string> <allow|deny>

For example, you might use:

add_ace group.admin bodyguard allow

Next, make sure that 'bodyguard' is added to Config.AllowedGroups as follows:

Config.AllowedGroups = {'bodyguard', ...}
💂