thefluffyraisin 10 Posted March 19, 2014 Hey guys. I've been working on a simple mission for Arma 3 and when I add a mission name to the description.ext I get an error and the game crashes. Can you guys help me correct my script? author="TheFluffyRaisin"; OnLoadName = "Proving Grounds"; OnLoadMission = "A group of NATO soldiers is tasked with sabotaging a defense."; loadScreen = "images\loadScreen.paa"; }; class CfgIdentities { class Spectre { name="Spectre"; face="Collins"; glasses="None"; speaker="Male04_F"; pitch=1; }; class Jester { name="Jester"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; class Killjoy { name="Killjoy"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; class Simple { name="Simple"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; }; Share this post Link to post Share on other sites
maquez 141 Posted March 19, 2014 (edited) try this it should work author="TheFluffyRaisin"; OnLoadName = "Proving Grounds"; OnLoadMission = "A group of NATO soldiers is tasked with sabotaging a defense."; loadScreen = "images\loadScreen.paa"; class CfgIdentities { class Spectre { name="Spectre"; face="Collins"; glasses="None"; speaker="Male04_F"; pitch=1; }; class Jester { name="Jester"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; class Killjoy { name="Killjoy"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; class Simple { name="Simple"; face="Collins"; glasses="None"; speaker="Type3"; pitch=1; }; }; and next time please use http://forums.bistudio.com/forumdisplay.php?162-ARMA-3-MISSION-EDITING-amp-SCRIPTING wrong section of forum Edited March 19, 2014 by maquez Share this post Link to post Share on other sites