Jass:IsUnitGroupDeadBJ
Aus Mappedia
| Funktion: IsUnitGroupDeadBJ | |
|---|---|
| Parameter: | group |
| Rückgabewert: | boolean |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function IsUnitGroupDeadBJ takes group g returns boolean // If the user wants the group destroyed, remember that fact and clear // the flag, in case it is used again in the callback. local boolean wantDestroy = bj_wantDestroyGroup set bj_wantDestroyGroup = false set bj_isUnitGroupDeadResult = true call ForGroup(g, function IsUnitGroupDeadBJEnum) // If the user wants the group destroyed, do so now. if (wantDestroy) then call DestroyGroup(g) endif return bj_isUnitGroupDeadResult endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| group | g |
