GroupImmediateOrderById
native GroupImmediateOrderById takes [[[group|group.html]]] whichGroup, [[[integer|integer.html]]] orderId returns [[[boolean|boolean.html]]]
Отдаёт приказ сразу всей группе. Если приказ получил хоть один член группы, возвращает true, в остальных случаях false.
globals
group g = [[[CreateGroup|creategroup.html]]]()
endglobals
function gameStart takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]]
call GroupImmediateOrderById([[[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 GroupImmediateOrderById(g, 0xd0019) then // holdposition
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