Author Topic: catver.ini and compatibilit list website  (Read 2045 times)

Offline leonv32

  • New Member
  • *
  • Posts: 1
  • Karma: +0/-0
catver.ini and compatibilit list website
« on: September 13, 2023, 12:06:13 AM »
made this website to showcase games from emulator using the datafile
it list only parents but clones are listed
http://leonv32.epizy.com/

I also made a complete catver.ini file for this emulator, the file its not supported in fbneo but can be used to cleanup game collection from mature, casino, mahjong...ect
I also made other similar files sourcefile.ini can be used to separate neogeo, cps1, cps2...
and flags.ini was extracted from the source files, can be used to look for not working, hardware, players, category...

made this simple batch script that can be used with those files, just drag and drop and will build another .bat files to move matched games to another folder
Code: [Select]

@echo off
set "_file=%~1"
if "%_file%"=="" echo ONLY DRAG AND DROP&pause&exit
cd /d "%~dp0"
title %~nx1
echo md MOVED_GAMES>%~n1.bat
:loop
set /p "_search=Type search terms: "
for /f "delims==" %%g in ('findstr /il /c:"%_search%" "%_file%"') do (
echo %%g
echo move %%g.zip MOVED_GAMES>>%~n1.bat
)
pause
cls
goto loop