βΉοΈSLEEK PAUSE MENU
Here check the installation guide
INSTALLATION GUIDE
Download from KEYMASTER and Unzip the
forge-pausemenu.pack.zip
and place this folder in your server's resource folder.Add the resource to your server start config:
ensure forge-pausemenu
,the name of the folder must not be changed or the resource will not function correctly.Clear the cache of your server and also of your own FiveM.
Reboot the entire server with the forge script well ensured in your server.cfg.
This script does not have any SQL to install.
Do not rename this script, this may cause it to fail when opening the interface.
CONFIG
The following will explain all the settings, one of the most important things that I recommend you spend a few minutes to understand in order to offer your users the best possible experience.
The translation of the interface, you can do it through the index.html file, which is located inside the html folder.
Fill all the CONFIG very carefully. Here you can also translate all the texts of the Pause Menu.
Config = {}
-- _____ _____ _ _ ______ _____ _____ _ _______ ___ _____ _____ _____ _ _
-- / __ \ _ | \ | || ___|_ _| __ \ | | | ___ \/ _ \_ _|_ _| _ | \ | |
-- | / \/ | | | \| || |_ | | | | \/ | | | |_/ / /_\ \| | | | | | | | \| |
-- | | | | | | . ` || _| | | | | __| | | | /| _ || | | | | | | | . ` |
-- | \__/\ \_/ / |\ || | _| |_| |_\ \ |_| | |\ \| | | || | _| |_\ \_/ / |\ |
-- \____/\___/\_| \_/\_| \___/ \____/\___/\_| \_\_| |_/\_/ \___/ \___/\_| \_/
Config.Framework = 'esx' -- esx, qbcore
Config.trigger = 'es_extended' -- qb-core or es_extended
Config.UI = { -- Everything related to Interface texts
lowPerformanceMode = true,
commands = { -- You can add as many as you want, just by copying and pasting the previous one.
{
command = 'help',
description = 'Show Help Menu'
},
{
command = 'revive',
description = 'Revives a player'
}
},
keys = { -- You can add as many as you want, just by copying and pasting the previous one.
{
key = 'F5',
description = 'Open Menu (Default)'
}
}
}
-- REPORT BUTTON: Here you will add the export of the Report System you use to be opened when the button is clicked. You can also modify the button to open whatever you want!
Config.ExportReport = function()
ExecuteCommand("report")
end
If you want to edit the aesthetics or design. You have the HTML open so you can modify the style and everything as you want.
The script is RESPONSIVE for all resolutions as well.
Last updated