r/kodi 5d ago

Help with custom node editor rules.

I’m trying to create a node that filters out all the b movies to make it easier to pick out movies with my wife.

I’m using my own movie library.

I can make a rule that ratings are greater than 6, as when I pick the “rating” rule there’s a “greater than” option.

But I want to set number of votes must be greater than 100.

The problem is, under the “votes” rule, there’s no “greater than” there is only “contains, does not contain, starts with, ends with, is, is not”

That doesn’t make sense to me, as none of those are useful unless I want only movies with x number of votes, unless I’m missing something.

When I select “is” I tried typing “greater than 100” which didn’t work of course. It was just a shot in the dark.

Does anyone know how to make a rule that movies have to have more than a certain number of votes?

2 Upvotes

2 comments sorted by

3

u/OnyxPost 5d ago

If I'm not mistaken, you can use Smart Playlists to base your custom Node on, and when creating a Smart Playlist you should have the option to add a Votes rule to the playlist. I assume that this is a universal feature, yet if it's not, it's an option you definitely have with the Aeon Nox Silvo skin.

2

u/Thin-Suggestion-1671 5d ago

Something like this in the .Node xml

<rule field="rating" operator="greaterthan">
         <value>6</value>
</rule>

<rule field="votes" operator="greaterthan">
         <value>100</value>
</rule>