• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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