ID:273270
 
Ok not sure if this belongs here or in code problems. But the issue i'm having is that winset(usr,"Info.label","text=[usr.Class]") is doing what it's supposed to be doing its setting the label to the mob class but its not putting "Spell Sword" is just putting "Spell". How would i make it display the full string?
Instead of [usr.class], use '[usr.class]' or \"[usr.class\", or instead of "text=[usr.class]" you can put {"text="[usr.class]""}.
In response to Jeff8500
Ok thank you, I thought about all the above but didnt try them. Anyways thank you.