Files
Qb-Core-vehicle-shared-lua/vehicles-lua.bat
Court-Room-Gaming 5e91afec46 Update vehicles-lua.bat
This update allows you to drop the batt file in your [Cars] folder and it will search though your sub folders making a easier and quicker output.lua
2024-07-03 00:35:31 -07:00

17 lines
371 B
Batchfile

@echo off
setlocal EnableDelayedExpansion
set LUA_FILE=output.lua
echo "return {" > %LUA_FILE%
for /R %%f in (*.ytd) do (
set name=%%~nf
set name=!name:_= !
echo " { model = '!name!', name = '!name!', brand = 'somebrand', price = 125000, category = 'compacts', type = 'automobile', shop = 'pdm' }," >> %LUA_FILE%
)
echo "}" >> %LUA_FILE%
echo "Done."