SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997 |
|
12-13-22, 03:36 AM | #1 |
Watch
Join Date: Mar 2014
Location: Taranto, Italy
Posts: 22
Downloads: 218
Uploads: 0
|
Destroyer Command Medal of Honor and other medals
Hi everybody,
Anyone being able to obtain the Medal of Honor and the Navy Distinguished Service Medal? Because the game seems to award only the Navy Cross as top award. Even when playing on 100% realism settings and completing missions in a single session with every secondary objective completed and replaying campaigns multiple times. Is this a bug or a feature? Are they hardly coded or you can mod them by yourself? In the Campaign DSF files there are also the Purple Heart and the Navy Achievement Medal complete of their respective description and images, but also them never awarded as the manual states that CMHO is the highest medal. There are also the Gold and Silver Lifesaving Medals, also them complete but never awarded. In the reference manual in the game folder those are the medal supposed to be awarded: -Bronze Star (got it) -Silver Star (got it) -Navy & Marine Corp Medal (got it) -Navy Commendation Medal (got it) -Navy Cross (got it) -Navy Distinguished Service Medal (never) -Medal of Honor (never) In game DSF complete with image, description and file entry but unobtainable: -Purple Heart -Navy Achievement Medal -Gold Lifesaving Medal -Silver Lifesaving Medal Thank’s for reading and feedback. |
12-13-22, 01:14 PM | #2 | |
Sparky
|
Quote:
IIRC the formula used to determine awards are hardcoded. The manual hints that the Difficulty setting are involved and winning campaign objectives. I know that the Scenario definition files (.sdf) define campaign mission objective scores. Each mission has an [OBJECTIVE] block that defines the objectives ( Type, Primary, Secondary etc ). Each objective can have a “Score”. These scores are presumably used by the game to determine campaign awards. |
|
12-15-22, 02:19 PM | #3 |
Watch
Join Date: Mar 2014
Location: Taranto, Italy
Posts: 22
Downloads: 218
Uploads: 0
|
That’s correct, but as I said even if you play with 100% difficulty and complete all the primary and secondary objectives, the game awards you the Navy Cross as best medal. Altering score in DSF scenarios files does nothing. Even if you put higher values the game still awards you the Navy cross. I think CMHO and DistServiceMedal were left out from the final release.
|
12-17-22, 05:50 PM | #4 |
CTD - it's not just a job
|
There are not many CMOH awarded in real life, and for a reason. The few awarded to anyone on a destroyer, are for the most part, posthumous. I could not find but a few mentions of DD/DE craft at
https://www.history.navy.mil/browse-...ecipients.html You will notice that Pharmacist Mates (medics) have a high-percentage of representation. For the most part, they were attached to US Marines units. For a bit of comparison, read "The Last Stand of the Tin Can Sailors" for an idea of what it takes for a CMOH. |
05-29-23, 01:36 AM | #5 |
Swabbie
Join Date: May 2001
Location: Californey
Posts: 5
Downloads: 1
Uploads: 0
|
So, kind of old thread, and this isn't an definitive answer, but a clue, i have a snippet old old source code from the game and here is the only part where the DMOH might get awarded:
Code:
if (nScoreMax >= 200) // High-difficulty missions { if (m_aAwards[AWARD_SILVER_STAR] == 0) IssueAward(AWARD_SILVER_STAR); else if (rPercent >= 0.99f && m_aAwards[AWARD_NAVY_CROSS] != 0) IssueAward( AWARD_MEDAL_OF_HONOR ); else { if (rPercent >= 0.9f) IssueAward( AWARD_NAVY_CROSS ); else IssueAward( AWARD_SILVER_STAR ); } } I can't guarantee there isn't a bug somewhere preventing the DMOH anyway, even if not, this could lead to bonkers situations where you have to singlehandedly sink the Scharnhorst or Yamato multiple times to get enough medals. |
05-29-23, 11:24 AM | #6 |
CTD - it's not just a job
|
Do better than USS Johnston (DD-557) but survive, eh?
|
|
|