PL_Andrev
03-29-10, 10:38 AM
This is part of post from this topic:
http://www.subsim.com/radioroom/showthread.php?t=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.
aircraft.aix:
action
{
Plane:FireCannons()
}to
action
{
Plane:FireCannons();
}or in ships-navigation.aix
action
{
Ship:EndCurrentTactic()
} to
action
{
Ship:EndCurrentTactic();
} in submarine.aix
strategies
{
EvadeEscortDay,
}to
strategies
{
EvadeEscortDay
}also
strategies
{
EvadeEscortNight,
}to
strategies
{
EvadeEscortNight
}not sure it works but those seem to be wrong
cheers
Noline
http://www.subsim.com/radioroom/showthread.php?t=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.
aircraft.aix:
action
{
Plane:FireCannons()
}to
action
{
Plane:FireCannons();
}or in ships-navigation.aix
action
{
Ship:EndCurrentTactic()
} to
action
{
Ship:EndCurrentTactic();
} in submarine.aix
strategies
{
EvadeEscortDay,
}to
strategies
{
EvadeEscortDay
}also
strategies
{
EvadeEscortNight,
}to
strategies
{
EvadeEscortNight
}not sure it works but those seem to be wrong
cheers
Noline