Help: Tag Scripts
Tag scripts allow you to batch together several tag changes. With a single script you can add tags, remove tags, conditionally add tags, conditionally remove tags, or any combination of the above. Simply create one, select it, and click on a post thumbnail to apply the tag script in the background. The best way to illustrate how they work is through examples.
You can combine commands, but you cannot nest them. For example, [if cat, dog] [if dog, cat]
works, but [if cat, [reset]]
does not.
Add
cat dog
would add thecat
anddog
tag.
Remove
-cat -dog
would remove thecat
anddog
tag.cat -dog
would add thecat
tag and remove thedog
tag.
Conditional
[if cat, dog]
would add thedog
tag if and only if the post had thecat
tag.[if -cat, dog]
would add thedog
tag if and only if the post did not have thecat
tag.[if cat, -dog]
would remove thedog
tag if and only if the post had thecat
tag.[if -cat, -dog]
would remove thedog
tag if and only if the post did not have thecat
tag.[if cat -animal, animal]
would add theanimal
tag if and only if the post had thecat
tag but did not have theanimal
tag.
Reset
[reset]
would remove every tag from the post.[reset] cat
would remove every tag from the post, then add thecat
tag.cat [reset]
would add thecat
tag, then remove every tag from the post (this is a pointless script).
Rating Changes
rating:e
would change the post's rating to explicit.[if sex, rating:e]
would change the post's rating to explicit if and only if it had thesex
tag.