• 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] Convert?

Status
Not open for further replies.
Level 6
Joined
Sep 5, 2007
Messages
264
In order to convert to 20,000 lines GUI, there is a fair task at hand... On top of that, there is just some things that GUI can't do like JASS does...
EG:
JASS:
local integer index = 0
local location loc = GetSpellTargetLoc()
local real x = GetLocationX(loc)
local real y = GetLocationY(loc)

call DestroyLocation(loc)

loop
    exitwhen (index > 10)
    call IssuePointOrder(u[index], "blizzard", x, y)
    set index = index + 1
endloop

Do that in GUI within the same function.
Why do you need to convert it to GUI anyways?
 
Level 20
Joined
Apr 22, 2007
Messages
1,960
(btw it was gui just cheap conversion to jass with convert to custom text)
Epic failure.

When you open a map's file, there are a few files that correspond to the script. Some of them are totally useless. If the map was protected, the only one that will matter is the .j file. Oh that happens to be in Jass script. Yes, even if your script was in GUI. There is no Convert to Custom Text done at all. lrn2mpq

Also, no talking about this poo. Reported.
 
Status
Not open for further replies.
Top