Jump to content
Sign in to follow this  
fauxrs

Mp init.sqs questions

Recommended Posts

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×