1508AD 10 Posted August 1, 2009 Guys ive searched and cant find an answer. My mission objectives are met and i move to an extraction point where there is an end1 trigger. When i continue back to the scenarios screen the green light for mission completed is absent. How do i get the green light to fill the square after a mission? Thanks in advance Matt Share this post Link to post Share on other sites
kylania 568 Posted August 1, 2009 That has something to do with keys I think? Never used them before, but here's the wiki: http://community.bistudio.com/wiki/Description.ext#Keys Share this post Link to post Share on other sites
1508AD 10 Posted August 2, 2009 Thanks, but i still dont excatly understand how to implement it. Someone must have experience in doing this or maybe there is an idiots how to guide? Share this post Link to post Share on other sites
PuH 0 Posted August 2, 2009 In your description.ext file you place doneKeys[] = {myKey1}; and in the end trigger you place activateKey "myKey1" havent tried it but it should work (i think ;)) Share this post Link to post Share on other sites
kylania 568 Posted August 2, 2009 Did you read the link I gave you? It includes the phrase "To create a green mark tick two operations are needed"... Then two clear examples, repeated above by PuH. Did you try that? Share this post Link to post Share on other sites
JDog 11 Posted August 2, 2009 PuH is dead-on, but you also need to define the keys before "doneKeys". Straight from my mission's description.ext: keys[] = {"Mission01Key"}; keysLimit = 0; doneKeys[] = {Mission01Key}; However I'm not sure if mission keys can put the green box next to other missions if they have the same names for their keys, havent tried yet. Might want to add something to the beginning of your keys, like your name, to make it work for only your missions. Not like anyone will see the keynames anyway. If you want to see it or anything else, this is included in my mission files here: http://forums.bistudio.com/showthread.php?t=82128 Share this post Link to post Share on other sites