24 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
fx_version 'cerulean'
 | 
						|
game 'gta5'
 | 
						|
lua54 'yes'
 | 
						|
author 'Kakarot'
 | 
						|
description 'Allows players to create vehicle races to compete in for money'
 | 
						|
version '1.2.0'
 | 
						|
 | 
						|
ui_page 'html/index.html'
 | 
						|
 | 
						|
shared_script 'config.lua'
 | 
						|
 | 
						|
client_script 'client/main.lua'
 | 
						|
 | 
						|
server_scripts {
 | 
						|
    '@oxmysql/lib/MySQL.lua',
 | 
						|
    'server/main.lua'
 | 
						|
}
 | 
						|
 | 
						|
files {
 | 
						|
    'html/*.html',
 | 
						|
    'html/*.css',
 | 
						|
    'html/*.js',
 | 
						|
    'html/img/*'
 | 
						|
}
 |