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

Negative HP Values

Status
Not open for further replies.
Level 9
Joined
Apr 23, 2011
Messages
460
So the only way to make it invulnerable would be to do something like
JASS:
function Is_Invul takes nothing returns nothing
    if GetDestructableTypeId(GetEnumDestructable()) == 'B000' or GetDestructableTypeId(GetEnumDestructable()) == 'B001' then
        call SetDestructableInvulnerable(GetEnumDestructable(), true)
    endif
endfunction

function Destructable_Attacked takes nothing returns nothing
    local rect r = gg_rct_Fray
    
    call EnumDestructablesInRectAll(r, function Is_Invul)
    set r = null
endfunction

function InitTrig_InvulDestructs takes nothing returns nothing
    local trigger t = CreateTrigger()
    
    call TriggerRegisterTimerEvent(t, 0.5, false)
    set t = null
endfunction
 
Last edited:
Status
Not open for further replies.
Top