OFPEC Forum
Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started 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:
<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:
"1" ObjStatus "HIDDEN"But the number "1" doesnt hide any objectives. What am I doing wrong?
-
Try the following...
?side player east: "WEST_1" ObjStatus "HIDDEN"
?side player west: "EAST_1" ObjStatus "HIDDEN"
-
Works exactly how I wanted, thanks you!
Can I ask how or where you found that information?
Again, thanks ...