• 🏆 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!

[JASS] Calling a function from a different trigger?

Status
Not open for further replies.
Level 1
Joined
Jun 23, 2009
Messages
4
im trying to run a function from a different trigger.
this is my function to nudge a unit
JASS:
function Nudge takes unit SlideUnit, real Distance returns nothing
    local real Facing = GetUnitFacing(SlideUnit)
    local location UnitPos = GetUnitLoc(SlideUnit)
    local location NewPos = PolarProjectionBJ(UnitPos, Distance, Facing)
    call SetUnitPositionLoc( SlideUnit, NewPos )
    call RemoveLocation(UnitPos)
    call RemoveLocation(NewPos)
endfunction
//===========================================================================
function InitTrig_Slide takes nothing returns nothing
    set gg_trg_Slide = CreateTrigger(  )
    call TriggerAddAction( gg_trg_Slide, function Nudge )
endfunction
and this is the trigger im trying to get to run the function
  • Slide Init
    • Events
      • Player - Player 1 (Red) types a chat message containing nudge as An exact match
    • Conditions
    • Actions
      • Custom script: call Nudge(gg_unit_hfoo_0000,10.00)
when i enable the trigger it says "Expected a function name". is there a way to get this function to run from this trigger?
please help me if you can.
 
Last edited:
Status
Not open for further replies.
Top