LCD - i can't really imagine, what you wanna do in your
mission, but i can try to understand. Everyday i learn some
new things, so why shouldn't i, however;
You need that, to remember positions of deleted units.
So why don't you create a gamelogic at this position, before
deleting the unit. Or deleting the gamelogic, if creating a
unit.
Or, if i'm totally wrong now and you mean:
you delete a unit, let's say 5 meters north of the player, and
you want to create this unit later again 5 meters north of
the player, regardeless to where the player is now,
then there would be a way to:
example:
acoor = (getpos unit select 0) - (getpos player select 0);
bcoor = (getpos unit select 1) - (getpos player select 1)
:note - don't take the syntax to serious now, because i'm
not sure, if the "()" are placed correctly. You'll find out, or
already know it.
then when you need to create it again, you can use
createunit ...blablabla [(getpos player select 0) + accor,(getpos player select 1) + bcoor]
hope, there's something for yer help here
:edit - huh - again i've learned something new,
i need to type faster ;D
~S~ CD