kdk11 1 Posted July 1, 2013 I have put a ending for my mission if anyone kills a civilian yet only I can see it. What have I done wrong with it? Share this post Link to post Share on other sites
becario 1 Posted July 1, 2013 Have you synchronized it correctly? Sync it with every player. Share this post Link to post Share on other sites
kdk11 1 Posted July 1, 2013 (edited) what do i put in the on act part of the trigger? nevermind. I will test it and let you know. thanks. Edited July 1, 2013 by KDK11 Share this post Link to post Share on other sites
LoonyWarrior 10 Posted July 1, 2013 how do u call the end ? endMission is local thing.. and u have to execute that on each client.. try this: [[_end, true, 2], "BIS_fnc_endMission", true, true] spawn BIS_fnc_MP; change or define _end... Share this post Link to post Share on other sites
kdk11 1 Posted July 1, 2013 I have endMission "End1" in the trigger and thr trigger syncd to all playable players. would that work? Share this post Link to post Share on other sites
LoonyWarrior 10 Posted July 1, 2013 I have endMission "End1" in the trigger and thr trigger syncd to all playable players. would that work? im not an "editor guy".. :o ....i have no idea... but that code... thats like magic... execute that on one machine and game ends for all... :) and u can also define your own end... http://community.bistudio.com/wiki/Debriefing Share this post Link to post Share on other sites
kylania 568 Posted July 1, 2013 I have endMission "End1" in the trigger and thr trigger syncd to all playable players. would that work? Not for the new stuff. You need to use the function for the fancy endings. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 Not for the new stuff. You need to use the function for the fancy endings. How do i do that? Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 View the mission I made for you? :) It has it. Or the one from this post shows both a fail and win ending. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 I copied your ending, but it doesnt show for the other players. class CfgDebriefing { class End1 { title = "Mission failed"; subtitle = "><"; description = "><"; backgroundPicture = "oppt2.paa"; picture = ""; pictureColor[] = {}; }; }; Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 how are you calling it? Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 endMission "End1" in the trigger and thr trigger syncd to all playable players Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 (edited) That's old school, put this in the trigger instead: 0 = [["end1", true, true], "BIS_fnc_endMission", true, true] spawn BIS_fnc_MP; Edited July 2, 2013 by kylania Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 no... just have a normal no special type trigger with whatever condition you're winning the game with and have that in it's OnAct. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 I get type script, expect nothing. Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 Doh, sorry, copied that from my script not in game. In game you need a script handler, just add 0 = to the beginning. I edited the post above to reflect that. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 You are a star. someone give this man a medal ^^ Share this post Link to post Share on other sites
HKFlash 9 Posted July 2, 2013 KDK Always remember: the mentor of my mentor is my mentor. And yes im at work and i just wrote this from my mobile phone. What a pain in the arse it is to type with touchpads. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 KDKAlways remember: the mentor of my mentor is my mentor. And yes im at work and i just wrote this from my mobile phone. What a pain in the arse it is to type with touchpads. haha :) I chose to use the in editor modules instead of FSM because I got stuck 2 minutes after you went offline :o Share this post Link to post Share on other sites
HKFlash 9 Posted July 2, 2013 haha :) I chose to use the in editor modules instead of FSM because I got stuck 2 minutes after you went offline :o Its cool, as long as you dont have many tasks and they dont branch and unbranch. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 Its cool, as long as you dont have many tasks and they dont branch and unbranch. I have been taking a break tonight from my mission. So I guess tomorrow I will find out how far I can with the mission just using the modules. Share this post Link to post Share on other sites
kdk11 1 Posted July 2, 2013 That's old school, put this in the trigger instead: 0 = [["end1", true, true], "BIS_fnc_endMission", true, true] spawn BIS_fnc_MP; For some reason it still does not show for other players :S I thought it did but it does not. I dont understand why it wont show for them when it shows for me. ---------- Post added at 23:12 ---------- Previous post was at 22:46 ---------- do you think syncing the trigger witth all players would do the job/. Share this post Link to post Share on other sites
LoonyWarrior 10 Posted July 2, 2013 (edited) no no no no no... :rolleyes: look.. u re doing it bad and the editor makes it even worse.. use triggers for "area based activation" Edited July 3, 2013 by LoonyWarrior Share this post Link to post Share on other sites
kylania 568 Posted July 2, 2013 ["end1", true, 2] Aww, that 2 there means a boring fade to black instead of the awesome ArmA3 fuzzy TV camera awesome deal! Set that 2 to true! :) Share this post Link to post Share on other sites