Config.TriggerKey = 47 -- for remote bombs
Config.TriggerKeyLabel = 'G' -- label for textUIfunction CNotify(type,message) -- can change to any if you want
if type == 1 then -- 3 types, (1,2,3)
lib.notify({
title = 'Car Bomb', -- title for notifications
description = message, -- Message comes from locals file
type = 'success' -- type goes with type
})
elseif type == 2 then
lib.notify({
title = 'Car Bomb',
description = message,
type = 'inform'
})
elseif type == 3 then
lib.notify({
title = 'Car Bomb',
description = message,
type = 'error'
})
end
end