JASS Help

GroupGetUnitByIndex

native GroupGetUnitByIndex takes [[[group|group.html]]] whichGroup, [[[integer|integer.html]]] index returns [[[unit|unit.html]]]

Возвращает юнита под определённым индексом из группы. Индексация начинается с нуля.

globals group g = [[[CreateGroup|creategroup.html]]]() endglobals function gameStart takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call ConsolePrint(GetUnitName(GroupGetUnitByIndex([[[null|null.html]]], [[[null|null.html]]]))) // Безопасна при работе с [[[null|null.html]]] call [[[GroupAddUnit|groupaddunit.html]]](g, CreateUnit(Player(0), '[[[uloc|aloc.html]]]', 0, 0, 0)) call [[[GroupAddUnit|groupaddunit.html]]](g, CreateUnit(Player(0), 'hfoo', 0, 0, 0)) call ConsolePrint(GetUnitName(GroupGetUnitByIndex(g, 1))) // Footman endfunction function [[[main|main.html]]] takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call TimerStart(CreateTimer(), 0, false, function gameStart) endfunction
Last modified: 22 October 2024