ShadowChemosh
Well-known member
I have to say I am a little confused. I am trying to delete a single tag off the Hero but instead perform delete removed them all.
From the Wiki: "Deletes all tags from the container that match the tag template tmpl. The template must use the standard "group.id" syntax and may contain a wildcard. If the template employs a wildcard, all tags matching the template are deleted. If the template specifies an explicit tag, and the tag has been assigned to the container multiple times, the tag is deleted only once, thereby providing detailed control to authors when needed. Always returns a value of zero."
I am doing:
But both Hero.EqpWaist tags get deleted instead of just one. How do I delete just one tag?
Do I have to count the number of tags, delete them all, and then add back one less tag then I counted. It seems like it should not be that complicated.
From the Wiki: "Deletes all tags from the container that match the tag template tmpl. The template must use the standard "group.id" syntax and may contain a wildcard. If the template employs a wildcard, all tags matching the template are deleted. If the template specifies an explicit tag, and the tag has been assigned to the container multiple times, the tag is deleted only once, thereby providing detailed control to authors when needed. Always returns a value of zero."
I am doing:
Code:
perform hero.childfound[cEidolon].minion.delete[Hero.EqpWaist]
Do I have to count the number of tags, delete them all, and then add back one less tag then I counted. It seems like it should not be that complicated.