View Single Post
Aaron
Senior Member
 
Join Date: Oct 2011
Posts: 6,793

Old December 30th, 2017, 10:01 AM
When you close the qoutation, the ampersand is only joining the first part of the tag expression to the second part, rather than being interpreted within the expression.

"SpellType.cHelpArn" & "CasterType.MemBook"

is interpretted as

"SpellType.cHelpArnCasterType.MemBook"

Which is gobbledygook to the program. You want the "and" inside the expression, like so:

"SpellType.cHelpArn & CasterType.MemBook"
Aaron is offline   #12 Reply With Quote