23 lines
		
	
	
	
		
			512 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			512 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
--[[
 | 
						|
    Welcome webhooks setup!
 | 
						|
    Here you will have the link to configure the admin webhooks,
 | 
						|
    you can modify them from server/custom/misc/SetInventoryData.lua.
 | 
						|
]]
 | 
						|
 | 
						|
Webhooks = Webhooks or {}
 | 
						|
 | 
						|
Webhooks = {
 | 
						|
    ['admin'] = '',
 | 
						|
    ['bought'] = '',
 | 
						|
    ['sell'] = '',
 | 
						|
    ['swap'] = '',
 | 
						|
    ['drop'] = '',
 | 
						|
    ['stash'] = '',
 | 
						|
    ['trunk'] = '',
 | 
						|
    ['garbage'] = '',
 | 
						|
    ['robbery'] = '',
 | 
						|
    ['glovebox'] = '',
 | 
						|
    ['giveitem'] = '',
 | 
						|
    ['crafting'] = '',
 | 
						|
    ['traphouse'] = '',
 | 
						|
}
 |