mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
Updated.
You can have sideChatRequest enabled but it's gonna mess up with the formatted text from the HINT. Added the new missions to spawn list. The number after the mission name regulates the spawn chance.
This commit is contained in:
parent
49cb1d3e09
commit
b6aa7d27b7
@ -53,18 +53,26 @@ DMS_DEBUG = false;
|
|||||||
DMS_PlayerNotificationTypes = [ // Notification types. Supported values are: ["dynamicTextRequest", "standardHintRequest", "systemChatRequest"]
|
DMS_PlayerNotificationTypes = [ // Notification types. Supported values are: ["dynamicTextRequest", "standardHintRequest", "systemChatRequest"]
|
||||||
//"dynamicTextRequest", <--- Won't work in Exile v0.9.19
|
//"dynamicTextRequest", <--- Won't work in Exile v0.9.19
|
||||||
"standardHintRequest",
|
"standardHintRequest",
|
||||||
"systemChatRequest"
|
//"systemChatRequest"
|
||||||
];
|
];
|
||||||
DMS_dynamicText_Size = "0.65"; // Dynamic Text size for "dynamicTextRequest" notification type.
|
DMS_dynamicText_Size = "0.65"; // Dynamic Text size for "dynamicTextRequest" notification type.
|
||||||
DMS_dynamicText_Color = "#FFCC00"; // Dynamic Text color for "dynamicTextRequest" notification type.
|
DMS_dynamicText_Color = "#FFCC00"; // Dynamic Text color for "dynamicTextRequest" notification type.
|
||||||
|
|
||||||
DMS_MissionTypes = [ // List of missions with spawn chances. If they add up to 100%, they represent the percentage chance each one will spawn
|
DMS_MissionTypes = [ // List of missions with spawn chances. If they add up to 100%, they represent the percentage chance each one will spawn
|
||||||
["mission1",25],
|
["bandits",25],
|
||||||
["mission2",25],
|
["bauhaus",25],
|
||||||
["mission3",15],
|
["beertransport",15],
|
||||||
["mission4",10],
|
["behindenemylines",10],
|
||||||
["bauhaus",45],
|
["blackhawkdown",45],
|
||||||
["lost_battalion",30],
|
["cardealer",25],
|
||||||
|
["constructionsite",35],
|
||||||
|
["donthasslethehoff",30],
|
||||||
|
["foodtransport",25],
|
||||||
|
["guntransport",20],
|
||||||
|
["humanitarian",25],
|
||||||
|
["lost_battalion",10],
|
||||||
|
["mercenaries",20],
|
||||||
|
["roguenavyseals",15],
|
||||||
["walmart",20]
|
["walmart",20]
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -525,4 +533,4 @@ if(DMS_DEBUG) then {
|
|||||||
DMS_TimeBetweenMissions = [30,60];
|
DMS_TimeBetweenMissions = [30,60];
|
||||||
DMS_MissionTimeOut = [60,90];
|
DMS_MissionTimeOut = [60,90];
|
||||||
diag_log format ["DMS_DEBUG CONFIG :: Overriding DMS_TimeBetweenMissions (%1) and DMS_MissionTimeOut (%2)",DMS_TimeBetweenMissions,DMS_MissionTimeOut];
|
diag_log format ["DMS_DEBUG CONFIG :: Overriding DMS_TimeBetweenMissions (%1) and DMS_MissionTimeOut (%2)",DMS_TimeBetweenMissions,DMS_MissionTimeOut];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user