Files
Qb-Core-vehicle-shared-lua/vehicles-lua.bat
Court-Room-Gaming 5d8dd55c4f Update vehicles-lua.bat
Updated For the new QB-core Format
2024-01-06 23:35:53 -07:00

17 lines
365 B
Batchfile

@echo off
setlocal EnableDelayedExpansion
set LUA_FILE=output.lua
echo "return {" > %LUA_FILE%
for %%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."