Config
Here you can find description of all available settings in config.lua
.
Debug
Config.Debug
- Enable debug mode.
If you encounter anything weird happening in the script, please turn on debug mode and screenshot F8 and server console logs and send it to us on our Discord.
If you want to show only certain debug logs in your console, comment out the ones you don't want to see in DebugLevel
like this:
Framework
Framework = 0
you can leave this as 0 for automatic framework detection
if you want to force the framework, set it to
1 = ESX
2 = QBCore
3 = Other
Language
Locale = 'en'
If you want to change a language:
go to
rcore_guidebook_v2\locales
copy en.lua, paste it and rename it to your language code (example:
de.lua
)translate everything inside the file
change
Locale
inconfig.lua
to your language code (example:Locale = 'de'
)
Commands
These are all the defauls commands you can use in the guidebook.
If you want to change them, just change the value to your desired command name like this: Help = 'serverguide',
Keys
You can also open guidebook with a key, we are using RegisterCommand so every player can rebind the key in the GTA settings (key bindings > fivem)
If you leave Config.RegisterOpenKey = false script will not register any key command.
Here you can find all available key binds: https://docs.fivem.net/docs/game-references/controls/ ๐ If you can't find your desired key at the link above, it is unfortunately not possible to use it.
Example:
Turned off
DisablePageContentCopy
DisablePageContentCopy = false
This value disables text highlight using players mouse and Ctrl+C of page content.
DisableDataPermissions
DisableDataPermissions = false
This value disables (job) restrictions for categories, pages and help points (if disabled, all previously restricted data will be visible to everyone)
UseFrameworkNotify
UseFrameworkNotify = false
If true, default framework notification system will be used instead of guidebook notifications.
Framework triggers
Do not change these unless you know what you are doing. These are only used if your framework/load event/notify event are renamed from the default ones.
If left blank, everything is automatically done for you.
๐งช Experimental
โโ NO SUPPORT WILL BE PROVIDED, USE AT YOUR OWN RISK - All experimental features may not work as expected
IFrameInsertIntoPage
IFrameInsertIntoPage = false
If true, you will be able to add iframe (embed website) to guidebook pages
Last updated