JASS Help

GroupImmediateOrder

native GroupImmediateOrder takes [[[group|group.html]]] whichGroup, string orderName returns boolean

Отдаёт приказ сразу всей группе. Если приказ получил хоть один член группы, возвращает true, в остальных случаях false.

Рекомендуется использовать версию с числовыми приказами - GroupImmediateOrderById.

globals group g = [[[CreateGroup|creategroup.html]]]() endglobals function gameStart takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call GroupImmediateOrder([[[null|null.html]]], [[[null|null.html]]]) // Безопасна при работе с [[[null|null.html]]] loop exitwhen GroupGetCount(g) >= 20 call GroupAddUnit(g, CreateUnit(Player(0), 'hfoo', 0, 0, 0)) endloop if GroupImmediateOrder(g, "holdposition") then call ConsolePrint("1") else call ConsolePrint("0") endif 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