![]() |
|
IL-2 Sturmovik: Cliffs of Dover Latest instalment in the acclaimed IL-2 Sturmovik series from award-winning developer Maddox Games. |
![]() |
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
![]()
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?
|
#2
|
|||
|
|||
![]()
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.
|
#3
|
|||
|
|||
![]() Quote:
|
#4
|
|||
|
|||
![]()
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 ![]() |
#5
|
|||
|
|||
![]()
I would like it if the ability to see some of theses things was part of the server difficulty settings, especially your own damage.
|
#6
|
|||
|
|||
![]() Quote:
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 |
#7
|
|||
|
|||
![]() Quote:
like Code:
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 } } } 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" Last edited by FG28_Kodiak; 06-03-2011 at 08:37 AM. |
![]() |
|
|