• 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.

Writing integer inside custom script

Status
Not open for further replies.
Level 19
Joined
Jan 22, 2011
Messages
3,980
So I know I asked this before, but apparently my last thread about this doesn't exists anymore.
So, how did you write integer inside custom script? Like for example:

call RemoveLocation(udg_A_Point[Integer A])

I know you don't write Integer A, I just don't remember what it was.
Thanks in advance :)
 

Dr Super Good

Spell Reviewer
Level 64
Joined
Jan 18, 2005
Messages
27,287
Not sure what you are asking... JASS integer constants are simply an integer number, eg...
JASS:
local integer i = 1337
There is a special case used for type constants for readability. In this case the integer is derived from the ASCII values of the type. eg...
JASS:
local integer i = '1337'
local integer i = 'H000'
 
Status
Not open for further replies.
Top