Created 7 years ago2017-03-31 21:07:17 UTC by hfc
if ( playersOnTeam > 2 )
{
result = 8.0;
if ( playersOnTeam > 5 )
{
result = 10.0;
if ( playersOnTeam > 7 )
{
result = 11.0;
if ( playersOnTeam > 9 )
{
result = 12.0;
if ( playersOnTeam > 11 )
{
result = 13.0;
if ( playersOnTeam > 13 )
result = 14.0;
}
}
}
}
}
[/quote]