Kodi Community Forum

Full Version: How to make a playlist show multiple shows?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys I want to make a smart playlist that contains multiple tv shows How do I do it?

I tried,
<rule field="tvshow" operator="contains">The Walking dead</rule>
<rule field="tvshow" operator="contains">Weeds</rule> but that didn't work, I assume it probably just appends the other name and makes it like "the waking dead weeds" lol

How would I do it? Is it possible?

This is what I sort of want to do?
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>epics</name>
    <rule field="tvshow" operator="contains">Las Vegas</rule>
    <rule field="tvshow" operator="contains">Dexter</rule>
    <rule field="tvshow" operator="contains">Lost</rule>
    <rule field="tvshow" operator="contains">Chuck</rule>
    <rule field="tvshow" operator="contains">The Walking dead</rule>
    <rule field="tvshow" operator="contains">Weeds</rule>
</smartplaylist>
Add <match>one</match> to the list.

...Or just create the list inside XBMC rather than doing it manually, then you'd see the "Items must match one or more of the rules" option.
Ahhh thank you Smile