![]() |
|
|
|
#1
|
|||
|
|||
|
Quote:
Hc_wolf@optusnet.com.au
__________________
__________________ 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
|
|||
|
|||
|
Simply add this script:
Code:
using maddox.game;
using maddox.game.world;
using part;
public class Mission : AMission
{
public override void OnPlaceEnter(Player player, AiActor actor, int placeIndex)
{
base.OnPlaceEnter(player, actor, placeIndex);
AiAircraft aircraft = actor as AiAircraft;
if (aircraft != null)
{
GamePlay.gpLogServer(null, "Sprit: {0}", new object[]{ aircraft.getParameter(ParameterTypes.S_FuelReserve, -1)});
}
}
}
Ive tested the Heinkles with 50% Fuel - no problems in Game they have 50% Fuel. |
![]() |
|
|