30 lines
		
	
	
		
			No EOL
		
	
	
		
			592 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			No EOL
		
	
	
		
			592 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
function Notification(title, text, type)
 | 
						|
	lib.notify({
 | 
						|
		title = title,
 | 
						|
		description = text,
 | 
						|
		type = type,
 | 
						|
		position = 'top',
 | 
						|
	})
 | 
						|
end
 | 
						|
 | 
						|
function TextUI(value, text)
 | 
						|
	if value then
 | 
						|
		lib.showTextUI(text, {
 | 
						|
		position = "top-center",
 | 
						|
		icon = 'hand',
 | 
						|
		style = {
 | 
						|
			borderRadius = 0,
 | 
						|
			backgroundColor = '#48BB78',
 | 
						|
			color = 'white'
 | 
						|
			}
 | 
						|
		})
 | 
						|
	else
 | 
						|
		lib.hideTextUI()
 | 
						|
	end
 | 
						|
end
 | 
						|
 | 
						|
---------------------------- NetEvents
 | 
						|
RegisterNetEvent('mh_jobgarage:notify')
 | 
						|
AddEventHandler('mh_jobgarage:notify', function(title, text, type)
 | 
						|
	Notification(title, text, type)
 | 
						|
end) |