JASS Help

SetUnitSelectable

native SetUnitSelectable takes [[[unit|unit.html]]] whichUnit, boolean selectable returns nothing

Делает юнита невыделяемым. Не влияет на возможность указать в качестве цели.

function gameStart takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call SetUnitSelectable([[[null|null.html]]], true) // Безопасна при работе с [[[null|null.html]]] call SetUnitSelectable(CreateUnit(Player(0), 'hfoo', 0, 0, 0), false) 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