• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] Ability string

Status
Not open for further replies.
Level 26
Joined
Aug 18, 2009
Messages
4,097
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