This is part of post from this topic:
http://www.subsim.com/radioroom/show...=165886&page=4
NoLine put information abou propably wrong game code - probably it is the reason that the AI is behaving badly in the game.
Quote:
Originally Posted by NoLine
aircraft.aix:
Code:
action
{
Plane:FireCannons()
}
to
Code:
action
{
Plane:FireCannons();
}
or in ships-navigation.aix
Code:
action
{
Ship:EndCurrentTactic()
}
to
Code:
action
{
Ship:EndCurrentTactic();
}
in submarine.aix
Code:
strategies
{
EvadeEscortDay,
}
to
Code:
strategies
{
EvadeEscortDay
}
also
Code:
strategies
{
EvadeEscortNight,
}
to
Code:
strategies
{
EvadeEscortNight
}
not sure it works but those seem to be wrong
cheers
Noline
|