mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
SC submit v3
This commit is contained in:
parent
b7d039e5d5
commit
bcc099583b
@ -253,6 +253,7 @@ DMS_SpawnMissions_Scheduled = false; // Whether or not to spawn missions in a sc
|
||||
|
||||
/* AI Settings */
|
||||
DMS_AI_Classname = "O_recon_F"; // Since some of you wanted this...
|
||||
DMS_AI_UseRealNames = true; // true if you want Arma assigned real names, false if you want random DMS assigned unit numbers
|
||||
|
||||
DMS_Show_Kill_Poptabs_Notification = true; // Whether or not to show the poptabs gained/lost message on the player's screen when killing an AI. (It will still change the player's money, it just won't show the "Money Received" notification)
|
||||
DMS_Show_Kill_Respect_Notification = true; // Whether or not to show the "Frag Message" on the player's screen when killing an AI. (It will still change the player's respect, it just won't show the "AI Killed" frag message)
|
||||
|
@ -128,8 +128,11 @@ else
|
||||
};
|
||||
};
|
||||
|
||||
// Unit name
|
||||
//_unit setName format["[DMS %1 %2 %3]",toUpper _side,_class,floor(random 1000)];
|
||||
// Set random DMS unit names if you don't want Arma assigned (real names)
|
||||
if !(DMS_AI_UseRealNames) then
|
||||
{
|
||||
_unit setName format["[DMS %1 %2 %3]",toUpper _side,_class,floor(random 1000)];
|
||||
};
|
||||
|
||||
if (_customGearSet isEqualTo []) then
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user