Erm, I've heard people mention ability ID somewhere. For example, I want to use a trigger : Unit - Issue Order Targeting a Unit to cast the "Item Illusion" skill, but theres no such option in the trigger. So I have to use Custom script: call IssueTargetOrderById instead, but i need the ability ID to do so.
call IssueTargetOrderById( caster, '852274', target )
in GUI you actually do it whatever is under "Text - Order String - Use/Turn On", which is a changeable field
This is wrong, since orderIds can be integers OR raw codes, but not both in the same time.the order id for illusion is '852274'
JASS:call IssueTargetOrderById( caster, '852274', target )
call IssueTargetOrderById( caster, 852274, target )
call IssueTargetOrderById( caster, 'A000', target )
call IssueTargetOrderById( caster, '852274', target ) //Wrong!
call IssueTargetOrderById( caster, 852274, target ) //Right!