PDA

View Full Version : making checkmarks by completed objectives



revenicus
Jun 15 2007, 20:01
I downloaded the BAS framework for making mission briefings, as I was told its all I need. The only thing I can't figure out how to do is make it so when the mission ends the person can see what objectives were completed, and which ones werent.

smoke52
Jun 15 2007, 22:46
say you have 3 objectives defined in your briefing.html, 2 that you see off the start of the mission and one hidden until something happens.

the first two objectives you would put this in your init.sqs

"1" objstatus "active"
"2" objstatus "active"

the hidden one you would put
"3" objstatus "hidden"

now in your mission editor you use a trigger to make them completed or failed. check this out -> http://community.bistudio.com/wiki/objStatus

for example you kill the tank, in the on act field of the trigger you would put

"1" objstatus "done"

same for objective 2. if you had the 3rd objective hidden you need a trigger to make it "active".

revenicus
Jun 16 2007, 03:54
thanks much. i think my first mission is almost done http://forums.bistudio.com/oldsmileys/yay.gif