• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

[Solved] Slide Trigger

Status
Not open for further replies.
Hello,

I'm trying to do a slide trigger, but i have 2names problem on the lines "setunitx" and "setunity".

JASS:
function Trig_slide_j0_Actions takes nothing returns nothing

local integer i = 0
local unit slider = udg_hero_j[i]
local real angle = Deg2Rad(GetUnitFacing(slider))
call SetUnitX( slider, GetUnitX(slider) + udg_slide_speed*Cos(angle) )
call SetUnitY( slider, GetUnitY(slider) + udg_slide_speed*Sin(angle) )
set slider = null

endfunction

//===========================================================================
function InitTrig_slide_j0 takes nothing returns nothing
    set gg_trg_slide_j0 = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_slide_j0, 0.01 )
    call TriggerAddAction( gg_trg_slide_j0, function Trig_slide_j0_Actions )
endfunction[/HIDDEN]
I found error, i forgot the "udg"
 
Status
Not open for further replies.
Top