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!
you see this is red right? Its because its blizzards shitty jass called Jass2, this generates:
JASS:
call GroupClear(bj_lastCreatedGroup)
loop
set count = count - 1
exitwhen count < 0
call CreateUnitAtLocSaveLast(Player(0), 'hfoo', GetRectCenter(GetPlayableMapRect()), bj_UNIT_FACING) //Player 1 is Player 0 in Jass
call GroupAddUnit(bj_lastCreatedGroup, bj_lastCreatedUnit)
endloop
return bj_lastCreatedGroup
And red text again, this is changed to
JASS:
if (unitid == 'ugol') then
set bj_lastCreatedUnit = CreateBlightedGoldmine(id, GetLocationX(loc), GetLocationY(loc), face)
else
set bj_lastCreatedUnit = CreateUnitAtLoc(id, unitid, loc, face)
endif
return bj_lastCreatedUnit
Basically GUI is just a habitat for Jass, making it more easier for newcommers.
vJass is improved Jass made by Vexorian, bringing Object Orientated Programming to the Jass.
Also GUI is as you see quite slower then normal Jass but its not like your resource wont get approved.
1 last thing, if someone can create for me the save/load syste (credit will be given ofc) it could relly helped. if you do please tell me here and thanx for help !
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.