Help Notification
Help Notifications are displayed in the top-left corner of the screen. They are specifically designed to manage job-related updates and other critical tasks.
Add
exports['ZSX_UIV2']:HelpNotification(data)-- Example with text as an object (it creates thing like tasks-list)
local data = {
icon = 'fas fa-warehouse',
header = 'Task Example',
text = {
{
name = 'point1', -- make sure to add name otherwise it won't be added!
active = true, -- make sure to set one as an active element!
complete = false,
text = 'Go to Point #1',
}, {
name = 'point2',
active = false,
complete = false,
text = 'Finish by going to Point #2',
}
}
}
-- Example with text as an string
local data = {
icon = 'fas fa-warehouse',
header = 'Task Example',
text = 'Do anything else!'
}Data layout
Key
Value
Optional
Text as object layout
Key
Value
Optional
Manually updating stage
Key
Value
Marking stage as active
Marking stage as complete
Remove
Last updated