Jump to content
Sign in to follow this  
james (J)

i need help with my broken description.ext

Recommended Posts

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

armaa.jpg

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

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×