Home   Help Search Login Register  

Author Topic: changing objective status  (Read 537 times)

0 Members and 1 Guest are viewing this topic.

Safari

  • Guest
changing objective status
« on: 12 Apr 2004, 19:33:43 »
Can someone point out what is wrong in the following briefing.html? I can't change object status even if everything seems to be in order.

Triggers has "obj_1" objStatus "DONE"; and "obj_2" objStatus "DONE"; at their on activation fields.




<html>

<! ******************************************************************* >
<! **** Briefing file for Operation Flashpoint >
<! **** Generated by Chris's OFP Script Editor >
<! **** Create Briefing Wizard >
<! ******************************************************************* >

<head>
<title>Briefing</title>
</head>

<body bgcolor="#FFFFFF">

<! ****************************************** >
<! **** Notes section in handwriting >
<! ****************************************** >
<h2><a name="Main"></a></h2><h6>

</h6><hr>

<! ****************************************** >
<! **** Plan section >
<! ****************************************** >
<p><a name="Plan"></a>

<! **** Mission plan text **** >
run to the next trigger
</p><hr>

<! **** Objective 1 **** >
<p><a name="OBJ_1"></a>
obj_1
</p><hr>

<! **** Objective 2 **** >
<p><a name="OBJ_2"></a>
obj_2
</p><hr>

<! ****************************************** >
<! **** Debriefing >
<! ****************************************** >

</body>
</html>

Offline DarkAngel

  • Members
  • *
  • The night is my friend.
    • DarkAngels Missions
Re:changing objective status
« Reply #1 on: 12 Apr 2004, 19:37:27 »
Try just doing "1" ObjStatus "DONE", "2" ObjStatus "DONE" etc. I don't know why exactly but that seems to work.
"Moondark" in Beta Testing

Loup-Garou

  • Guest
Re:changing objective status
« Reply #2 on: 15 Apr 2004, 20:01:44 »
Try just doing "1" ObjStatus "DONE", "2" ObjStatus "DONE" etc. I don't know why exactly but that seems to work.

It works because it's simply the correct way to write it  ;D ; you must put "1" ObjStatus "DONE", and not : "obj_1" ObjStatus "DONE".