View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old January 20th, 2017, 10:53 AM
Quote:
Originally Posted by Illyahr View Post
Ok, not getting syntax errors anymore, but now it's saying that there is an invalid use of a reserved word on line 11.
probably this line:

Code:
index = hero.child[cHelpKol].assign[ClassSkill.target]
you can't use a variable like this. try:

Code:
target = "ClassSkill." & target
index = hero.child[cHelpKol].assignstr[target]
Sendric is offline   #4 Reply With Quote