james (J) 0 Posted March 9, 2010 hi im trying to write a single player description.ext but im stuck and need hellp. when i try to load my mission it crashes to desktop with the error mesage bellow this is my description.ext so far. if anyone could hellp me solve this i would be thankful (i have looked on the wiki, the arma editing guid and i serched the fourms but i could not find anything hellpful) // ====================== Description.ext =====================> Debriefing = 1; OnloadIntro = 1; OnLoadIntroTime = 1; OnLoadMissionTime = 1; Saving = 0; // === Titlecut ==============================================> OnLoadIntro="YourMessage";// onLoadMission= A R M E D A S S A U L T // End Of File thank you james Share this post Link to post Share on other sites
loyalguard 15 Posted March 9, 2010 I suspect it is because you have two instances of OnLoadIntro. Remove the first one: OnloadIntro = 1; and see what happens. Share this post Link to post Share on other sites
W0lle 1052 Posted March 9, 2010 Well the error message already tells you what the problem is: Line #6, onloadIntro is already defined. // ====================== Description.ext =====================> Debriefing = 1; OnloadIntro = 1; OnLoadIntroTime = 1; OnLoadMissionTime = 1; Saving = 0; // === Titlecut ==============================================> OnLoadIntro="YourMessage";// onLoadMission= A R M E D A S S A U L T // End Of File Lines in red are the problem. Onloadintro must be text. And each line must end with a semicolon. Fixed description.ext: OnLoadIntro=" "; OnLoadIntroTime = 1; onLoadMission="A R M E D A S S A U L T"; OnLoadMissionTime = 1; Saving = 0; Debriefing = 1; Share this post Link to post Share on other sites
james (J) 0 Posted March 10, 2010 thank you both veary much i didnt think of that and I didnt understand the error ether but anyway thank you Share this post Link to post Share on other sites