Hi,
I have a table that matches the tag of a job with the tag of a skill.
There are 7 different combinations possible.
What i’ve come op with so far is;
The general Skills that can be learned are:
<style>
table, th, td {border: 3px solid; color: blue; text-align: center;
}
</style>
<div style= "overflow-x: auto;">
<table>
<tr>
<th>Skill Name</th>
</tr>
<$list filter= "[tag[Skills]!tag[Exclusive]tag[Divine]] [tag[Skills]!tag[Exclusive]tag[Arcane]]">
<tr>
<td><$link><$text text={{{ [{!!title}removeprefix[Z-]] }}}/></$link></td>
</tr>
</$list>
</table>
</div>
this would have up to 7 steps, each for a different tag. Currently I have 2 of them, for Arcane and Divine.
If the skill is Exclusive it shouldn’t be listed, and it should have the Skills tag.
This works, as far as it goes. But if I change the tag on the skill or the job it doesn’t work without changing the table.
As both the job and the skill have the same tag, it should be possible to get a match, ideally with a procedure that is the same for any job.
I looked at the forum and saw a promising Enlist option, however that matched the tags with the title, not the other tags.
Any idea how i could do this? Thanks in advance for any help.