Author Topic: Help needed with filters  (Read 713 times)

Swainy

  • Newbie
  • *
  • Posts: 5
    • View Profile
Help needed with filters
« on: May 16, 2023, 12:10:18 PM »
Guys, I only want to play horizontal arcade games on my arcade cab as I already have a vertical cab. Is there an easy to follow guide anywhere?

Thanks

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: Help needed with filters
« Reply #1 on: May 16, 2023, 01:42:02 PM »
Code: [Select]
                rule                 Rotation equals 0|180
https://github.com/mickelson/attract/wiki/Example-filters

Swainy

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Help needed with filters
« Reply #2 on: May 16, 2023, 11:13:08 PM »
Thanks. I did try that but it didn’t seem to do anything. Maybe I’ve got the CATVER.INI set up wrong.

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: Help needed with filters
« Reply #3 on: May 16, 2023, 11:39:54 PM »
catver.ini is only needed for genre information. You need to make sure that you call "mame.exe -listxml" when generating your romlists. This is what will get most of the game information.

Example of mame.cfg

Code: [Select]
# Generated by Attract-Mode v2.6.1
#
executable           \path\to\mame\mame64.exe
args                 [name]
rompath              \path\to\mame\roms
romext               .zip
system               Arcade
info_source          listxml
import_extras       \path\to\mame\catver.ini;\path\to\mame\nplayers.ini

or

Code: [Select]
# Generated by Attract-Mode v2.6.1
#
executable           \path\to\mame\mame64.exe
args                 [name]
rompath              \path\to\mame\roms
romext               .zip
system               Arcade
info_source          thegamesdb.net
import_extras        \path\to\mame\mame.xml;\path\to\mame\catver.ini;\path\to\mame\nplayers.ini

http://forum.attractmode.org/index.php?topic=2091.msg14323#msg14323
« Last Edit: May 16, 2023, 11:54:05 PM by progets »