Hello, guys. Here I'm sharing you the Brutal Notify that I Bought and I'll leave proofs that it's open source, so you don't waste your 3 credits. Enjoy!
-=Stripped Content=-
Notify Installation QBCore:
1.Go to qb-core/client/functions/lua
2.Find: QBCore.Functions.Notify(text, texttype, length)
3.Replace it with this:
function QBCore.Functions.Notify(text, texttype, length)
if type(text) == "table" then
local ttext = text.text or 'Placeholder'
local caption = text.caption or 'Placeholder'
texttype = texttype or 'primary'
length = length or 5000
exports['brutal_notify']:SendAlert('Brutal Notify', message, length, type)
else
texttype = texttype or 'primary'
length = length or 5000
exports['brutal_notify']:SendAlert('Brutal Notify', message, length, type)
end
end
Notify Installation ESX:
1.Go to es-extended/client/functions.lua
2.Find ESX.ShowNotification
3.Replace with this:
function ESX.ShowNotification(message, type, length)
exports['brutal_notify']:SendAlert('Brutal Notify', message, length, type)
end
Preview
View attachment 11602
Proof:
View attachment 11601