-- title: string
-- content: string
-- type: string - success,warning,error,info,question
-- time: number - showing time in ms
exports.Justhud:Notify(title,content,type)
AddProgress
Shows progress bar on user hud. see for icon docs.
-- text: string - Progress bar description
-- icon: string - Progress bar icon
-- time: number - Progress bar showing time in ms
-- options: tabel - extra objects
exports.JustHud:AddProgress(text,icon,time, options)
exports.JustHud:AddProgress("Eating","internal:BurgerIcon", 5000, {
freeze = true, -- freeze player during the progress
onFinish = function ()
end
})