Koni 3 Posted July 2, 2011 I'm trying to get a unit to move to a location of a hostage, but the hostage is going to be in a random location. I am sure I used to use something like unitname domove getpos hostage, but this isn't working. I've tried _Pos = position hostage; unitname domove getpos _Pos; How would I do this ? Share this post Link to post Share on other sites
twirly 11 Posted July 2, 2011 Try it like this... unitname [url="http://community.bistudio.com/wiki/doMove"]domove[/url] (getpos hostage); Share this post Link to post Share on other sites
roguetrooper 2 Posted July 2, 2011 _Pos already is a position (according to your script). You must use: unitname domove _Pos; or unitname domove position hostage; Share this post Link to post Share on other sites
Koni 3 Posted July 2, 2011 Ah, thanks to both of you :) Share this post Link to post Share on other sites