setup
Remove
esx_notifyresource.Replace
es_extended/client/functions.luaESX.ShowNotification function with the code below;
function ESX.ShowNotification(message, notifyType, length, title)
exports['izzy-uikit']:sendNotification(notifyType, title, message, length)
endRemove
qb-menuresource.Remove
progressbarresourceReplace
qb-core/client/functions.luaQBCore.Functions.Progressbar function with the code below;
function QBCore.Functions.Progressbar(name, label, duration, useWhileDead, canCancel, disableControls, animation, prop, propTwo, onFinish, onCancel)
exports['izzy-uikit']:Progress({
name = name:lower(),
duration = duration,
label = label,
useWhileDead = useWhileDead,
canCancel = canCancel,
controlDisables = disableControls,
animation = animation,
prop = prop,
propTwo = propTwo,
}, function(cancelled)
if not cancelled then
if onFinish then
onFinish()
end
else
if onCancel then
onCancel()
end
end
end)
endReplace
qb-core/client/functions.luaQBCore.Functions.Notify function with the code below;
Move
izzy-uikitfolder to yourresourcesfolder.Make sure you have started the resource in server.cfg.
Last updated