![]() |
|
![]() |
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
![]() Quote:
C:\Users\.......\Documents\1C SoftClub\il-2 sturmovik cliffs of dover\missions\Multi\Dogfight\HellsCircus to play go to multiplayer > Server > navigate to Multi\Dogfight\HellsCircus and select a mission
__________________
__________________ Win7, 64bit Ultra Asus P8P67Pro MB Intel i7-2600K Coursair 16GB (4x 4GB), DDR3-1600MHz Gainward Nvidia 580GTX 3GB DDR5 850-Watt Modular Power Supply WIN7 and COD on Gskill SSD 240GB 40" Panasonic LCD TrackIR5 + Thrustmaster Warthog stick, throttle & pedals |
#2
|
|||
|
|||
![]()
I was trying to figure out aircraft limiting script in the Channel mission. I think it is missing a part which deducts aircraft numbers when exiting a plane.
Code:
public override void OnPlaceLeave(Player player, AiActor actor, int placeIndex) { base.OnPlaceLeave(player, actor, placeIndex); if (actor != null && actor is AiAircraft) { //check limited aircraft switch ((actor as AiAircraft).InternalTypeName()) { case "bob:Aircraft.Bf-109E-3": current109s--; break; case "bob:Aircraft.SpitfireMkI": currentSpitIs--; break; case "bob:Aircraft.HurricaneMkI": currentRotols--; break; } } Timeout(1, () => { damageAiControlledPlane(actor); } ); } Maybe it should be added. Can number of planes be limited in the France and Fields missions as well? To start with I think it is reasonable to limit say: Spit 2a by 10 109E4 by 15 110C7 by 3 Stuka by 3 Please remove 109-E3B and 109-E4B completely if possible. I noticed that Fields mission has this code Code:
GamePlay.gpHUDLogCenter(new Player[] { player }, "Your Task: Wait for Server to be Restarted. All markers are Captured"); // GamePlay.gpLogServer(pl, " GAME OVER!! score now is Red {0}:{1} Blue", new object[] { ScoreRed,ScoreBlue }); GamePlay.gpHUDLogCenter(new Player[] { player }, "GAME OVER: Restart Server Game"); Thank you again for your great missions and support you provide. Sorry if I misunderstand something. BigRepa probably plans to run the France HCv6 map on Repka #3 and maybe the Fields map on Repka #2 in rotation with Steppe map if he figures out how rotation works and if it works correctly. edit. HCv6a.cs has a different filename than a .mis file. Last edited by Ataros; 10-04-2011 at 08:57 PM. |
![]() |
|
|