• 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.

How to apply unit ID to vjass?

Status
Not open for further replies.

Chaosy

Tutorial Reviewer
Level 41
Joined
Jun 9, 2011
Messages
13,239
Create a new trigger, create a new action and find the "Kill unit" select the unit of your choice and confirm. Then convert the trigger to custom text and there you go.

  • Actions
    • Unit - Kill Paladin 0000 <gen>
>>
JASS:
function Trig_Untitled_Trigger_001_Actions takes nothing returns nothing
    call KillUnit(/*this right here */ gg_unit_Hpal_0000 )
endfunction

//===========================================================================
function InitTrig_Untitled_Trigger_001 takes nothing returns nothing
    set gg_trg_Untitled_Trigger_001 = CreateTrigger(  )
    call TriggerAddAction( gg_trg_Untitled_Trigger_001, function Trig_Untitled_Trigger_001_Actions )
endfunction

So "gg_unit_Hpal_0000" in my case.
 
Status
Not open for further replies.
Top