• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!

Writing integer inside custom script

Status
Not open for further replies.
Level 19
Joined
Jan 22, 2011
Messages
3,968
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,202
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