[JASS] Ability string

Status
Not open for further replies.
Level 26
Joined
Aug 18, 2009
Messages
4,095
The object editor objects are represented as integers and then a few others like terrain type or weather. The '' system is ascii (256), though the editor normally does not use all tokens. If you want to store something under an object and your ids do not get too high/or you have a pattern of what to leave out, you may also use array variables like AbilityData[id - 'A000'] = <value>. The Save Ability Handle action from GUI does not work because that one is referring to another type that is declared in Jass but GUI does not know it.
 
Level 1
Joined
Aug 23, 2011
Messages
1
The object editor objects are represented as integers and then a few others like terrain type or weather. The '' system is ascii (256), though the editor normally does not use all tokens. If you want to store something under an object and your ids do not get too high/or you have a pattern of what to leave out, you may also use array variables like AbilityData[id - 'A000'] = <value>. The Save Ability Handle action from GUI does not work because that one is referring to another type that is declared in Jass but GUI does not know it.
 
Status
Not open for further replies.
Top