Remove the "" and what is the unit variable in which the unit is that you want to do the order ? I assume it is udg_my_unit now. And the target unit be udg_my_target.
Then it would be:
call IssueTargetOrder(udg_my_unit, udg_order, udg_my_target)
I am currently not 100% sure what WE uses to store the order as there is the possibility of a string and of an integer. Should it be the order id (the integer), then the code is:
call IssueTargetOrderById(udg_my_unit, udg_order, udg_my_target) |