ed
This commit is contained in:
		
							parent
							
								
									510e3ffcf2
								
							
						
					
					
						commit
						f43cf424cf
					
				
					 305 changed files with 34683 additions and 0 deletions
				
			
		|  | @ -0,0 +1,29 @@ | |||
| ---@diagnostic disable: duplicate-set-field | ||||
| Notify = Notify or {} | ||||
| local resourceName = "FL-Notify" | ||||
| local configValue = BridgeSharedConfig.Notify | ||||
| if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end | ||||
|  | ||||
|  | ||||
| Notify.GetResourceName = function() | ||||
|     return resourceName | ||||
| end | ||||
|  | ||||
| ---This will send a notify message of the type and time passed | ||||
| ---@param message string | ||||
| ---@param _type string | ||||
| ---@param time number | ||||
| ---@return nil | ||||
| Notify.SendNotify = function(message, _type, time) | ||||
|     time = time or 3000 | ||||
|     if _type == "error" or _type == "info" then | ||||
|         _type = tostring(1) | ||||
|     elseif _type == "success" then | ||||
|         _type = tostring(2) | ||||
|     elseif _type == "warning" or _type == "warn" then | ||||
|         _type = tostring(3) | ||||
|     end | ||||
|     return exports['FL-Notify']:Notify("Notification", "", message, 5000, tonumber(_type), 0) | ||||
| end | ||||
|  | ||||
| return Notify | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Nordi98
						Nordi98