30 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
fx_version 'cerulean'
 | 
						|
game 'gta5'
 | 
						|
 | 
						|
name 'QB-VendingMachines'
 | 
						|
author 'Nordi'
 | 
						|
description 'Advanced Vending Machine System for QB-Core'
 | 
						|
version '1.0.0'
 | 
						|
 | 
						|
shared_scripts {
 | 
						|
    'shared/config.lua',
 | 
						|
    '@qb-core/shared/locale.lua',
 | 
						|
    'locales/en.lua' -- add other locales as needed
 | 
						|
}
 | 
						|
 | 
						|
client_scripts {
 | 
						|
    '@qb-target/client.lua',
 | 
						|
    'client/main.lua'
 | 
						|
}
 | 
						|
 | 
						|
server_scripts {
 | 
						|
    '@oxmysql/lib/MySQL.lua',
 | 
						|
    'server/main.lua'
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    'qb-core',
 | 
						|
    'qb-target',
 | 
						|
    'qs-inventory',
 | 
						|
    'ox_lib' -- or 'ox_lib' if using newer version
 | 
						|
}
 |