• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

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