Bug Reports: SEDB32F, MP4 v4.710, SEDCS v3.2.15
Moderator: SEOW Developers
-
- Posts: 32
- Joined: Sun 14 Jan 2007 3:32 pm
- Location: North Atlantic
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Great Mike!
I guess that you have no more work, so I give you a new subject
Could you take a look to our last Bagration mission statistics?
- Lost Red Units:
means that only one wagon was lost, correct?
- Event #85:
means that the whole train is destroyed by itself... On MP map, it appears as completly destroyed...
EVENTLOG
I guess that you have no more work, so I give you a new subject
Could you take a look to our last Bagration mission statistics?
- Lost Red Units:
Code: Select all
Rail Car Equipment A Train AA 1 91 91
- Event #85:
Code: Select all
85. 15:01:38 Rail Car : Equipment A Train AA KfSSSR Dept. 1, Train 4 Détruit Rail Car : Equipment A Train AA KfSSSR Dept. 1, Train 4
EVENTLOG
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Hi Dore,
About the train destruction: there is no such thing as a damaged train in SEOW (see Rail Operations at the SEOW Wiki).
In your eventlog, that train shot itself, destroying a wagon and therefore rendering the whole train useless. I guess the only problem with the statistics is that one wagon is added to the points tally, when the whole train should be added.
Cheers,
4Shades
About the train destruction: there is no such thing as a damaged train in SEOW (see Rail Operations at the SEOW Wiki).
In your eventlog, that train shot itself, destroying a wagon and therefore rendering the whole train useless. I guess the only problem with the statistics is that one wagon is added to the points tally, when the whole train should be added.
Cheers,
4Shades
IV/JG7_4Shades
SEOW Developer
SEOW Developer
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
I noticed that there were some inconsistencies in the latest Midway stats for the Pacific campaign at HQ. Individual pilot kill listings did not match the chronological events, especially where pilots scored damage hits against laden carriers. I found the bug and fixed it. I hope I have not introduced any new bugs in doing so!
Another thing I fixed was the flight time data. Now, with the new SEDB32F database, SEOW logs the times of pilot disposition events (capture, death, bailing, landing), so the flight time data for pilots is much more accurate. No longer does the system assume that you flew the entire mission duration if you weren't shot down.
MP Statistics v1.145
Cheers,
4Shades
Another thing I fixed was the flight time data. Now, with the new SEDB32F database, SEOW logs the times of pilot disposition events (capture, death, bailing, landing), so the flight time data for pilots is much more accurate. No longer does the system assume that you flew the entire mission duration if you weren't shot down.
MP Statistics v1.145
Cheers,
4Shades
IV/JG7_4Shades
SEOW Developer
SEOW Developer
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Hawk_5 brought the following bug to my attention. Apparently in SEDB32F, airbase 2005 (a seaplane base) is accidentally defined three times in the Airbase_Layouts table.
In sector-specific databases, this airbase is often not used, but it is used in the following sectors:
Aleutians, Cartagena, Channel 1940, Channel 1942, Darwin, English Channel, Odessa, Philippines, Sardegna, Slovenia, The Slot Aug 42, The Slot Dec 42, The Slot Jan 44, The Slot Jul 43, The Slot Oct 43.
If relevant, edit your Airbase_Layouts table and ensure that repeated records (identical Dispersal_Order values) for airbase 2005 are removed.
The SQL for the 2005 airbase layout is:
Cheers,
4Shades
In sector-specific databases, this airbase is often not used, but it is used in the following sectors:
Aleutians, Cartagena, Channel 1940, Channel 1942, Darwin, English Channel, Odessa, Philippines, Sardegna, Slovenia, The Slot Aug 42, The Slot Dec 42, The Slot Jan 44, The Slot Jul 43, The Slot Oct 43.
If relevant, edit your Airbase_Layouts table and ensure that repeated records (identical Dispersal_Order values) for airbase 2005 are removed.
The SQL for the 2005 airbase layout is:
Code: Select all
DELETE FROM `Airbase_Layouts` WHERE Airbase_Type=2005;
INSERT INTO `Airbase_Layouts` VALUES ('6685', '2005', 'AAA', '15', '-120', '360', '0'), ('6702', '2005', 'AB_Fuel4_30', '-75', '-230', '360', '0'), ('6628', '2005', 'ACHS', '45', '-90', '390', '0'), ('6594', '2005', 'ACHS', '45', '-60', '390', '0'), ('6576', '2005', 'ACHS', '45', '-30', '390', '0'), ('6575', '2005', 'ACHS', '15', '-90', '390', '0'), ('6498', '2005', 'ACHS', '15', '-60', '390', '0'), ('6473', '2005', 'ACHS', '15', '-30', '390', '0'), ('6434', '2005', 'ACHS', '-15', '-90', '390', '0'), ('6325', '2005', 'ACHS', '-15', '-60', '390', '0'), ('6129', '2005', 'ACHS', '-15', '-30', '390', '0'), ('6113', '2005', 'LANDING', '15', '0', '0', '0'), ('6021', '2005', 'TAKEOFF', '-15', '0', '0', '0');
4Shades
IV/JG7_4Shades
SEOW Developer
SEOW Developer
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Minor MP bug when requesting an escort flight. Hawk_5 reported a curious "conflicting orders" bug in the MP when requesting an escort flight that had flown in the previous 11 hours. This was also reported by someone else, but Hawk_5 gave the definitive error report that allowed it to be located easily.
I have fixed this; available via update. MP v4.724.
I have fixed this; available via update. MP v4.724.
IV/JG7_4Shades
SEOW Developer
SEOW Developer
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Broken airbase layout for airbase type = 413 (Hatzerim Airfield in the Sinai sector). This causes some wierd MP behaviour for this and other airbases, depending on map view. This bug only applies to Sinai databases or complete Reference databases.
Fix: execute the following SQL statement to add the missing data to your Airbase_Layouts table:
4Shades
Fix: execute the following SQL statement to add the missing data to your Airbase_Layouts table:
Cheers,INSERT INTO `Airbase_Layouts` VALUES ('17', '413', 'AB_Fuel1_100', '300', '0', '360', '0'), ('16', '413', 'LANDING', '659.37', '0', '360', '0');
4Shades
IV/JG7_4Shades
SEOW Developer
SEOW Developer
-
- Posts: 2211
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Bug in SEDB32G, reported by EAF331_Starfire:
Bad aircraft identifier strings for Typhoon classes in AircraftLoadout. For fix see http://seowhq.net/seowforum/viewtopic.php?t=708.
Bad aircraft identifier strings for Typhoon classes in AircraftLoadout. For fix see http://seowhq.net/seowforum/viewtopic.php?t=708.
IV/JG7_4Shades
SEOW Developer
SEOW Developer