Arrow Movement help

Status
Not open for further replies.
Level 4
Joined
Aug 26, 2012
Messages
85
You have to also copy the StartSetup to your map.

JASS:
function Trig_StartSetup_Actions takes nothing returns nothing
    call TriggerExecute( gg_trg_PressSetup )
endfunction

//===========================================================================
function InitTrig_StartSetup takes nothing returns nothing
    set gg_trg_StartSetup = CreateTrigger(  )
    call TriggerAddAction( gg_trg_StartSetup, function Trig_StartSetup_Actions )
endfunction
 
Status
Not open for further replies.
Top