12 lines
		
	
	
		
			No EOL
		
	
	
		
			379 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			No EOL
		
	
	
		
			379 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local pluginData = {
 | 
						|
    name = "saltychat_plugin",
 | 
						|
    description = "Saltychat Plugin for Visn_ARE",
 | 
						|
    author = "Marcel135",
 | 
						|
    version = "1.0"
 | 
						|
}
 | 
						|
 | 
						|
RegisterClientPlugin(pluginData, function(print)
 | 
						|
    HookEventHandler(ENUM_HOOKABLE_EVENTS.UNCONSCIOUS_STATE_CHANGED, function(state)
 | 
						|
        TriggerServerEvent('saltychat_plugin:setDeathStatus', state)
 | 
						|
    end)
 | 
						|
end) |