RegisterCommand('success', function()
exports['Klb_Notify']:Alert("β
SUCCESS", "System calibrated β all functions operational.", 5000, 'success')
end)
RegisterCommand('info', function()
exports['Klb_Notify']:Alert("π‘ INFORMATION", "Delivery #427 confirmed and stored in your logs.", 5000, 'info')
end)
RegisterCommand('warning', function()
exports['Klb_Notify']:Alert("β οΈ WARNING", "Temperature rising β <span style='color:#ffc107'>performance may be affected.</span>", 5000, 'warning')
end)
RegisterCommand('error', function()
exports['Klb_Notify']:Alert("π₯ ERROR", "Critical failure detected! <span style='color:#ff5757'>Immediate action required.</span>", 5000, 'error')
end)
RegisterCommand('sms', function()
exports['Klb_Notify']:Alert("π± SMS", "<span style='color:#f38847'>Lester:</span> βGot another job for you. Check the laptop.β", 5500, 'phonemessage')
end)
RegisterCommand('notice', function()
exports['Klb_Notify']:Alert("π° NOTICE", "Update: A new shipment is now <span style='color:#47cf73'>available for pickup</span> downtown.", 6000, 'neutral')
end)
RegisterCommand('allnotify', function()
exports['Klb_Notify']:Alert("β
SUCCESS", "System calibrated β all functions operational.", 5000, 'success')
exports['Klb_Notify']:Alert("π‘ INFORMATION", "Delivery #427 confirmed and stored in your logs.", 5000, 'info')
exports['Klb_Notify']:Alert("β οΈ WARNING", "Temperature rising β <span style='color:#ffc107'>performance may be affected.</span>", 5000, 'warning')
exports['Klb_Notify']:Alert("π₯ ERROR", "Critical failure detected! <span style='color:#ff5757'>Immediate action required.</span>", 5000, 'error')
exports['Klb_Notify']:Alert("π± SMS", "<span style='color:#f38847'>Lester:</span> βGot another job for you. Check the laptop.β", 5500, 'phonemessage')
exports['Klb_Notify']:Alert("π° NOTICE", "Update: A new shipment is now <span style='color:#47cf73'>available for pickup</span> downtown.", 6000, 'neutral')
end)