fauxrs 0 Posted March 30, 2002 I am having some problems with a MP mission with all 4 sides (west,east,resistance and civilian). I have markers and objectives for each side and they need to be hidden from the opposing sides. Basically my init.sqs file looks like this. ;-------init.sqs--multi-------" ;-----------------------------" goto format["%1", side player]" #West" goto "end" #East goto end #Guerrila goto end #Civilian #end ;-----end init.sqs-------------- with the hidden marker code and objective codes between the side names and the goto end line. MY PROBLEM: This seems to work only for East and West - both markers and objectives for the resistance (guerrila) and civilians will not hide. Any ideas? cheers Share this post Link to post Share on other sites
suma 8 Posted March 31, 2002 If you would check results of format["%1", side player], you would see for civilian it is "CIV" and for resistance it is "GUER". To fix your problem change you labels to #CIV and #GUER. Share this post Link to post Share on other sites
fauxrs 0 Posted March 31, 2002 Suma, You are the man Thanks loads Share this post Link to post Share on other sites