[B]function[/B] [I]name[/I] [B]takes[/B] [I]somthing[/I] [B]returns[/B] [I]somthing[/I]
I would like to sign-up for the class. I know it's a bit late, but I really want to learn JASS. I read Vexorian's guide to the basics and now I just wanna learn anything I can. I find this very interesting and I'm willing to do the assignments. Thanks in advanced.
~Warluvr (Spiky)
function Trig_LearnJassThere_Actions takes nothing returns nothing
call CreateNUnitsAtLoc( 4, 039;ewsp039;, Player(0), GetRectCenter(GetPlayableMapRect()), bj_UNIT_FACING )
endfunction
//==============================
function InitTrig_LearnJassThere takes nothing returns nothing
set gg_trg_LearnJassThere = CreateTrigger()
call TriggerRegisterTimerEventPeriodic( gg_trg_LearnJassThere, 2 )
call TriggerAddAction( gg_trg_LearnJassThere, function Trig_LearnJassThere_Actions)
endfunction
go Here , i learnt Jass off Here! now i know basic commands like:
JASS:function Trig_LearnJassThere_Actions takes nothing returns nothing call CreateNUnitsAtLoc( 4, 039;ewsp039;, Player(0), GetRectCenter(GetPlayableMapRect()), bj_UNIT_FACING ) endfunction //============================== function InitTrig_LearnJassThere takes nothing returns nothing set gg_trg_LearnJassThere = CreateTrigger() call TriggerRegisterTimerEventPeriodic( gg_trg_LearnJassThere, 2 ) call TriggerAddAction( gg_trg_LearnJassThere, function Trig_LearnJassThere_Actions) endfunction
It was very helpful!! (btw i wrote that ^^^ without looking at JC/WE any of that... xD)