View Full Version : Detailed damage info?
machoo
06-02-2011, 09:34 AM
I read somewhere on here that you can make up info boxs and it will tell you what part of the enemy part you are damaging. How do you do this?
Strike
06-02-2011, 10:21 AM
I read somewhere on here that you can make up info boxs and it will tell you what part of the enemy part you are damaging. How do you do this?
As far as I know you can only see your own damage details. You need to CTRL or ALT + rightclick or leftclick the info-window or create a new one and select what parameters to show. I think "Server" shows the "AI killed" messages whilst damage details or something like that shows what's happening to your own plane.
Vengeanze
06-02-2011, 10:31 AM
As far as I know you can only see your own damage details. You need to CTRL or ALT + rightclick or leftclick the info-window or create a new one and select what parameters to show. I think "Server" shows the "AI killed" messages whilst damage details or something like that shows what's happening to your own plane.
Wish we could refer to the manual but it's trial and error and asking here.
Tiger27
06-02-2011, 11:02 AM
Its actually quite a good system, although as you say undocumented, you can select a box to show your damage and various other things, by creating a new box, right click on it while holding tab, then select your options, you can also make the borders of boxes dissapear and the titles, so you take up less space.
Server shows when you destroy a plane or "murder" a gunner etc, not sure if console output would show more detailed info, but it is nice knowing when you have taken out a gunner ;)
fireship4
06-02-2011, 11:53 AM
I would like it if the ability to see some of theses things was part of the server difficulty settings, especially your own damage.
Strike
06-02-2011, 11:56 AM
I would like it if the ability to see some of theses things was part of the server difficulty settings, especially your own damage.
+1
I think the damage report is unrealistic and might actually give you a hint to when to "knock off" from the battle.
It would be great to have that "oh crap" feeling when being hit, not knowing how serious it is :p
Trooper117
06-02-2011, 12:37 PM
Agreed mate..
PeterPanPan
06-02-2011, 01:38 PM
Agreed too, but what would be nice would be to have a mechanic's debrief after you land telling you just what you broke/damaged on your kite.
Strike
06-02-2011, 01:40 PM
Agreed too, but what would be nice would be to have a mechanic's debrief after you land telling you just what you broke/damaged on your kite.
Or better yet; just a complete list of damaged stuff and perhaps the time they occured during flight (so you know what you might have broken on crash landing, after the fight).
I'd like the ability to "review" my aircraft from a First-person view type thing, walk around and inspect the aircraft.. Would be great :)
Blackdog_kt
06-02-2011, 05:35 PM
Wish we could refer to the manual but it's trial and error and asking here.
You can, it's in (your CoD folder)\manual.
In fact, the manual might not explain much about the aircraft but it does explain the interface quite well.
Vengeanze
06-02-2011, 06:04 PM
You can, it's in (your CoD folder)\manual.
In fact, the manual might not explain much about the aircraft but it does explain the interface quite well.
They are called Info Window in-games so I searched the manual for Window. Got 12 hits of which only one talked about overlayed windows.
Don't care to read the hole thing. Could you give me a pageno. plz. :-D
jimbop
06-03-2011, 02:08 AM
Yes, this would be a great feature and has been asked for several times - would be nice to see it included eventually. It would need to be a server option but would be very useful to learn how best to take specific planes down.
machoo
06-03-2011, 04:18 AM
I don't care about online , I don't play online , nobody plays so why bother. I just mean for offline.
Rattlehead
06-03-2011, 07:17 AM
Agreed too, but what would be nice would be to have a mechanic's debrief after you land telling you just what you broke/damaged on your kite.
Nice idea.
FG28_Kodiak
06-03-2011, 08:35 AM
I read somewhere on here that you can make up info boxs and it will tell you what part of the enemy part you are damaging. How do you do this?
You can use a script
like
using System;
using maddox.game;
using maddox.game.world;
public class Mission : maddox.game.AMission
{
public override void OnAircraftDamaged(int missionNumber, string shortName, AiAircraft Aircraft, AiDamageInitiator DamageFrom, part.NamedDamageTypes WhatDamaged)
{
base.OnAircraftDamaged(missionNumber, shortName, Aircraft, DamageFrom, WhatDamaged);
if (DamageFrom.Player != null )
{
GamePlay.gpLogServer (null, "{0} hits {1} : {2} \n", new object [] {DamageFrom.Player, shortName, WhatDamaged});//Test
}
}
}
The script shows the damaged part in the chat bar and in console (or serverlog if enabled).
May be usefull for training missions.
Sample Mission in Attach Bf109 against single Anson, it's a single Mission so copy the files to "\Documents\1C SoftClub\il-2 sturmovik cliffs of dover\missions\Single"
vBulletin® v3.8.4, Copyright ©2000-2025, Jelsoft Enterprises Ltd.