🛠️Installation
Follow the steps below to install and set up the FT Scripts system on your FiveM server.
1️⃣ Download & Extract
Download the script from Keymaster/assets page.
Extract it into your server's
resources
folder.Suggested folder structure:
resources/[ft-scripts]/ft_notification
2️⃣ Default ESX Notify Override Optional
Open
es_extended/client/function.lua
Near line 60 search
ESX.ShowNotification
Carefully change the notification export, or completely replace the entire function using the code below:
Export:
exports.ft_notifcation:ShowNotify(message, notifyType, length)
Complete function:
function ESX.ShowNotification(message, notifyType, length)
if GetResourceState("ft_notifcation") ~= "missing" then
return exports.ft_notifcation:ShowNotify(message, notifyType, length)
end
print("[^1ERROR^7] ^5 Notify Script ^7 is Missing!")
end
Find more exports and events in 📥Expots Section
3️ Ensure the script in your server.cfg
file.
server.cfg
file.ensure es_extended
ensure ft_notification
6️⃣ Done
✅ Restart your server 🎉 Enjoy the script!
Last updated