Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<prereq onlyonce="yes" message="3 Metamagic or Item Creation feats required.">
<valid><![CDATA[
~ Start out invalid
@valid = 0
~ Count our metamagic and itemcreation feats - do we have at least 3?
if (tagcount[fCategory.Metamagic] + tagcount[fCategory.ItemCreate] >= 3) then
~ If so, we're valid.
@valid = 1
endif
]]></valid>
</prereq>
<prereq onlyonce="yes" message="One other Item Creation Feat required.">
<valid><![CDATA[
~ Start out invalid
@valid = 0
~ Count our item creation feats - do we have at least 1?
if (tagcount[fCategory.ItemCreate] >= 1) then
~ If so, we're valid.
@valid = 1
endif
]]></valid>
</prereq>
<prereq message="">
<validate><![CDATA[<prereq onlyonce="yes" message="One other Item Creation Feat required.">
<valid><![CDATA[
~ Start out invalid
@valid = 0
~ Count our item creation feats - do we have at least 1?
if (tagcount[fCategory.ItemCreate] >= 1) then
~ If so, we're valid.
@valid = 1
endif
]]></valid>
</prereq>]]></validate>
</prereq>
<![CDATA[
~ Start out invalid
@valid = 0
~ Count our item creation feats - do we have at least 1?
if (tagcount[fCategory.ItemCreate] >= 1) then
~ If so, we're valid.
@valid = 1
endif
]]>
tagcount[fCategory.ItemCreate] >= 1