damonlake1979 0 Posted July 9, 2007 I want all units of my side visible on map during mission. how do it? Share this post Link to post Share on other sites
zaphod 0 Posted July 9, 2007 you need to create a local marker for each unit... best way by a little script, that creates these all on mission init.. after that you need another little script that runs in a loop interval... so each second you can move one of these markers to the position of a unit... so all you need to start is an array of all west and an array with all east units e.g. [w1,w2,w3,w4] ... [e1,e2,e3,e4] ... and the marker array ["p1","p2","p3","p4"]... now you can move the markers locally to the units positions ... select side before with if(playerside==west/east) to select the own team... thats it ... provide more information about your variables so i can help more.. regards, zap Share this post Link to post Share on other sites
damonlake1979 0 Posted July 10, 2007 thanx zap. u really help me.... Share this post Link to post Share on other sites