#Search for multiple specific episodes?

1 messages · Page 1 of 1 (latest)

chrome steeple
#

What is the correct way to make a builder with multiple specific episodes? For example:

any:
  all:
    title.is: SHOW
    episode_title.is: EPISODE
  all:
    title.is: SHOW
    episode_title.is: EPISODE
  all:
    title.is: SHOW
    episode_title.is: EPISODE
  all:
    title.is: SHOW
    episode_title.is: EPISODE
formal hatchBOT
#

Welcome!

Someone from <@&938443185347244033> will assist when they're available.

Including the meta.log from the beginning is a huge help, type !logs for more information.

#

You can press the "Close Post" button above or type !close at any time to close this post.

toxic minnow
#

Sorry for the delayed response @chrome steeple

#

I think it should be:

any:
  - all:
    title.is: SHOW
    episode_title.is: EPISODE
  - all:
    title.is: SHOW
    episode_title.is: EPISODE
  - all:
    title.is: SHOW
    episode_title.is: EPISODE
  - all:
    title.is: SHOW
    episode_title.is: EPISODE
chrome steeple
#

@toxic minnow That didn't work :\

toxic minnow
#

@jade spear to review because I suck

jade spear
#

@chrome steeple you have to make the attribute a list and pmm will understand that its all for each one

any:
  all:
    - title.is: SHOW
      episode_title.is: EPISODE
    - title.is: SHOW
      episode_title.is: EPISODE
    - title.is: SHOW
      episode_title.is: EPISODE
    - title.is: SHOW
      episode_title.is: EPISODE