OFPEC Forum

Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started by: popS on 07 Mar 2004, 23:17:16

Title: multiside briefing and objectives ...
Post by: popS on 07 Mar 2004, 23:17:16
Hi
Im having this problem with objectives.

In my briefing.html I have objective written in the following way:
Code: [Select]
<a name="OBJ_WEST_1"></a>
<a name="OBJ_EAST_1"></a>
THis way I can have objectives showing up only for east or west. But when I try to hide the objectives in fx. init.sqs, I'm not sure how to pass which obj is to be hidden. I tried with:
Code: [Select]
"1" ObjStatus "HIDDEN"But the number "1" doesnt hide any objectives. What am I doing wrong?
Title: Re:multiside briefing and objectives ...
Post by: RAAH on 10 Mar 2004, 13:26:23
Try the following...

?side player east: "WEST_1" ObjStatus "HIDDEN"
?side player west: "EAST_1" ObjStatus "HIDDEN"
Title: Re:multiside briefing and objectives ...
Post by: popS on 10 Mar 2004, 13:41:19
Works exactly how I wanted, thanks you!
Can I ask how or where you found that information?
Again, thanks ...