Re: Idea: What if when your pilot jumps out he says, "Bailing out!!!"
Psudo Code
Not really that hard to do. Here's a sample sound file too if you want to put it in the game:
or something more realistic:
Originally posted by cramhains
Code:
OnKeyEvent('E')
{
if (Player.SpeedOfVehicle > 50)
{
Player.WriteToTeam('Bailing Out!!!')
Player.PlaySound('Bailing Out!!!')
Player.WriteToConsole('Bailing Out!!!')
}
}
or something more realistic:
Comment