Attract-Mode Support Forum
Attract-Mode Support => General => Topic started by: edfick18 on March 06, 2017, 05:47:02 AM
-
I am having some trouble setting up filters for my NES games. For example, I am trying to filter out "Super Mario Bros. (Japan, USA)"
I used
filter All
rule Title not_equals Super Mario Bros. (Japan, USA)
Should't this filter out that game? or am I doing something wrong?
I am on windows.
Thanks
-
Untested but you may want to try:
filter All
rule Title not_equals "Super Mario Bros. (Japan, USA)"
-
I tried that but it didnt work. I've also tried
filter All
rule Title not_contains "Super Mario Bros. (Japan, USA)"
With and with out quotes, but that didnt work either.
What I did find is, if I shorten the game rom name to "Test" (and update the rom list), it filters that out fine. So maybe it has something to with the length of the rom name or the special characters that are preventing it from being filtered out?
edit:
Looks to be the parentheses causing the problem. Simply removing them fixes the issue.
-
@edfick18
I'm not sure, why it doesn't work.
an another problem is the point (.), because its a wildcard. so you'll filter all Super Mario Brosxyz games too
try this:
set your file as a favorite > then add this filter:
filter All
rule Favourite not_equals 1
or edit your romlist.txt > add an entry in 'Category' : DontWantIt > set filter:
filter All
rule Category not_equals DontWantIt
-
I'm pretty sure the quotes are needed, as the other poster mentioned AM uses regex for these filters and the dot means any character, the parenthesis might also through the regex off.
Maybe you would you have more luck with this:
filter All
rule Title not_equals "Super Mario Bros. \(Japan, USA\)"
or
filter All
rule Title not_equals "Super Mario Bros\. \(Japan, USA\)"
Sorry I can't test this ATM.
-
I'm pretty sure the quotes are needed, as the other poster mentioned AM uses regex for these filters and the dot means any character, the parenthesis might also through the regex off.
Maybe you would you have more luck with this:
filter All
rule Title not_equals "Super Mario Bros. \(Japan, USA\)"
or
filter All
rule Title not_equals "Super Mario Bros\. \(Japan, USA\)"
Sorry I can't test this ATM.
These both worked! Just had to remove the quotes. For some reason, with the quotes, it doesn't work. I used the first one to filter this and a few other titles (they also contained parenthesis) and it worked perfectly.
Thanks to everyone for their suggestions.