Home   Help Search Login Register  

Author Topic: multiside briefing and objectives ...  (Read 1179 times)

0 Members and 1 Guest are viewing this topic.

popS

  • Guest
multiside briefing and objectives ...
« 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?

RAAH

  • Guest
Re:multiside briefing and objectives ...
« Reply #1 on: 10 Mar 2004, 13:26:23 »
Try the following...

?side player east: "WEST_1" ObjStatus "HIDDEN"
?side player west: "EAST_1" ObjStatus "HIDDEN"

popS

  • Guest
Re:multiside briefing and objectives ...
« Reply #2 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 ...