- Katılım
- 2 yıl 6 ay 4 gün
- Mesajlar
- 532
- Discord
- knoes
Github :
Preview :
qb-core>config bunu içine atın
Sonra ise qb-core>client>functions girin ve böyle değiştirin
Linkleri,görmek için
Giriş yap veya üye ol.
Preview :
Linkleri,görmek için
Giriş yap veya üye ol.
qb-core>config bunu içine atın
QBConfig.KnoesNotify = true
Sonra ise qb-core>client>functions girin ve böyle değiştirin
if QBCore.Config.KnoesNotify == true then
function QBCore.Functions.Notify(text, textype, length)
if type(text) == "table" then
local ttext = text.text or 'Placeholder'
local caption = text.caption or 'Placeholder'
local ttype = textype or 'info'
local length = length or 8500
exports['KnoesNotify']:Alert(ttext, caption, length, ttype)
else
local ttype = textype or 'info'
local length = length or 8500
exports['KnoesNotify']:Alert(text, "", length, ttype)
end
end
else
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
SendNUIMessage({
action = 'notify',
type = texttype,
length = length,
text = ttext,
caption = caption
})
else
texttype = texttype or 'primary'
length = length or 5000
SendNUIMessage({
action = 'notify',
type = texttype,
length = length,
text = text
})
end
end
end
Son düzenleme: