Hi! I just a have a simple question: is there a more direct way to save/retrieve the Point/Location of a unit or this is the only way?
Any hint is appreciated since Im a total newbie
Thanks in advance.
-
Unit Group - Pick every unit in AOEGroup and do (Actions)
-

Loop - Actions
-

Hashtable - Save (X of (Position of (Picked unit))) as (Key (Picked unit)) of 0 in MyHashtable
-

Hashtable - Save (Y of (Position of (Picked unit))) as (Key (Picked unit)) of 1 in MyHashtable
-

Unit - Move (Picked unit) instantly to (Center of (Playable map area))
-
-
Unit Group - Pick every unit in AOEGroup and do (Actions)
-

Loop - Actions
-


Set X = (Load (Key (Picked unit)) of 0 from MyHashtable)
-


Set Y = (Load (Key (Picked unit)) of 1 from MyHashtable)
-


Set Point = (Point(X, Y))
-


Unit - Move (Picked unit) instantly to Point
-
-
Any hint is appreciated since Im a total newbie
Thanks in advance.
