Rexxenexx 0 Posted August 1, 2007 I remember some OFP missions had the ability to turn the intro on and off in MP. I have one sqs file (intro.sqs) that I execute with init.sqs to play all the intro cam and music etc. I guess my question is how do I make a checkbox labeled "turn off intro" that sets introOff = true. Then I could put "?introOff:exit" at the top of the intro.sqs? Sound right? Share this post Link to post Share on other sites
ColonelSandersLite 0 Posted August 1, 2007 There's a 6 player coop mission called for his majesty's service that does that. I would suggest unpacking that to see how it was done. Also, it's a pretty fun mission, so give it a shot . Share this post Link to post Share on other sites
Rexxenexx 0 Posted August 1, 2007 http://www.armaholic.com/page.php?id=633 DLing now. I'll post how its done when I figure it out. Thx CSL Share this post Link to post Share on other sites
Rexxenexx 0 Posted August 1, 2007 easy enough. Just put: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> titleParam1 = "Intro?"; valuesParam1[] = {1, 2}; defValueParam1 = 1; textsParam1[] = {"Yes","No"}; into the description.ext and then put a trigger that executes the intro.sqs file with the condition "Param1 == 1". Thats it! Share this post Link to post Share on other sites