Configuration
Learn how to configure the resource.
Change framework
-
Navigate to
config.luainside the resource folder, and look for -
Change the
ESXto your desired framework. The supported frameworks are:ESXQBCoreStandalone
To add a custom framework, you can learn how to create a custom framework here.
-
Save the file and restart the resource.
Change translation
- Navigate to
config.luainside the resource folder, and look for - Change the
en-USto your desired language. You can find the list of supported languages inside thetranslationsfolder. To add a new language, you can copy theen-US.luafile and change theen-USto your desired language code. - Save the file and restart the resource.
Change bench options
- Navigate to
config.luainside the resource folder, and look for - Change the options as you like. The options are:
allowMultipleUsers- Allow multiple users to use the bench at the same time.isInvincible- Make the player invincible while using the bench (works only if allowMultipleUsers is false)
- Save the file and restart the resource.
More options
- Navigate the
client.luainside your framework, which is inside theframeworksfolder. - Look for this code:
/frameworks/[framework]/client.lua - Change the options as you like. The options are:
useCurrentWeapon- Use the current weapon in the player's hand to modify, or show all weapons the player has.showAllWeapons- Show all weapons in the bench menu, even if the player doesn't have them.manualApplyMods- Manually apply the modifications to the weapon.
- Save the file and restart the resource.
Change bench type
- Navigate the
server.luainside your framework, which is inside theframeworksfolder. - Look for this code:
/frameworks/[framework]/server.lua - Change the
typeto your desired bench type. The supported bench types are:BenchTypes.ITEM- Use items to modify weapons.BenchTypes.PURCHASE- Pay money to modify weapons.
- Save the file and restart the resource.