Description.ext: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Formating text)
m (made some changes in formating & added text)
Line 1: Line 1:
[[Category:Editing: Flashpoint]]
[[Category:Editing: Flashpoint]]


<b>Features of the Description.ext</b>
===Introduction===
The '''description.ext''' is a text file located in the root of the mission folder which will allow you to define many things in your mission. Each entry must be given a new line in the '''description.ext'''. It has even been said that a ''';''' is required after each line but this isn't true of the '''1.97''' version and maybe required in the future. Certainly adding the semi colon won't hurt or effect your mission.


The Description.ext is a text file which will allow you to define many things in your mission. This is a list of definitions with description of what they do. Each example must be given a new line in the Description.ext.


===Features===
'''OnLoadMission''' '''''et al'''''


<b>OnLoadMission <i>et al</i></b>
This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.
This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.


'''Example:'''<br>
'''Example:'''
OnLoadMission = "YourMessage"<br>
OnLoadMission = "YourMessage";
OnLoadIntro = "YourMessage"<br>
OnLoadIntro = "YourMessage";


'''OnLoadIntroTime''' '''''et al'''''


<b>OnLoadIntroTime <i>et al</i></b>
This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False.
This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False.


'''Example:'''<br>
'''Example:'''  
OnLoadIntroTime = False<br>
OnLoadIntroTime = False;
OnLoadMissionTime = False;
OnLoadMissionTime = False;




<b>Score</b>
'''Score'''
 
This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen.
This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen.



Revision as of 21:47, 30 May 2006


Introduction

The description.ext is a text file located in the root of the mission folder which will allow you to define many things in your mission. Each entry must be given a new line in the description.ext. It has even been said that a ; is required after each line but this isn't true of the 1.97 version and maybe required in the future. Certainly adding the semi colon won't hurt or effect your mission.


Features

OnLoadMission et al

This displays a message whilst the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.

Example:

OnLoadMission = "YourMessage";
OnLoadIntro = "YourMessage";

OnLoadIntroTime et al

This allows you to define whether you will see the time and date displayed whilst the mission loads. Variables are True or False.

Example:

OnLoadIntroTime = False;
OnLoadMissionTime = False;


Score

This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen.

Example:
MinScore = 0;
AvgScore = 1800;
MaxScore = 7500;
ShowGPS = 0