| 08-16-2003, 09:13 AM | #1 |
So that I can use the string in 'issued order = stringX' ? can this conversion be done through blizz's TFTWE ? |
| 08-16-2003, 11:48 AM | #2 |
The orders are already strings, so you can use string variables but not through the GUI, only in custom text (JASS). This function works: Code:
function Trig_Untitled_Trigger_001_Actions takes nothing returns nothing
local string x
call IssueTargetOrderBJ( GetLastCreatedUnit(), x, GetLastCreatedUnit() )
endfunction[Where x is the order] |
