call SetUnitX(whichUnit, 0)
call SetUnitY(whichUnit, 0)
You can put these two lines into "Custom scrip", as I assume you use GUI.
It would move the unit to coordinates 0/0. Replace
whichunit with the unit you need.
If you are not sure by what you have to replace
whichunit, you can use a unit variable in GUI:
-
Set myUnit = Triggering Unit
-
Custom script: call SetUnitX(udg_myUnit, 0)
|
^This will move the unit that is stored in the variable "myUnit" to x-cooridante "0".