Jump to content
Sign in to follow this  
thefluffyraisin

Scripting Troubles

Recommended Posts

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

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 by maquez

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×