• 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 Tags Bug

Status
Not open for further replies.
Level 17
Joined
Jun 17, 2007
Messages
1,433
It seems that arrays inside JASS tags are completely bugged. This is an example of two scripts that should appear the same.

Code:
globals
    integer array Test[10]
endglobals
JASS:
globals
    integer array Test[10]
endglobals
 
Last edited by a moderator:
Level 40
Joined
Dec 14, 2005
Messages
10,532
JASS:
[]

Neat. I'll see what I can do.

--

I think I've found the problem.

You convert & to & and then convert [ to [ and ] to ], while in reality you have already converted [ to [ (etc). Thus, you should convert &#91 to [ (etc), or just convert brackets back before &
 
Last edited by a moderator:
Status
Not open for further replies.
Top