Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

That is an original COAS feature and we did not add an option for that, so you will have to edit a file:  Program\scripts\bountyhunters.c

Near the top, change this line to "return" from the function early, without processing:

void SeaHunterCheck()
{
    return; //Add this line
    int    j, i;
...
...

Also, in file, Program\loc_ai\LAi_login.c, line 259, comment out LandHunterReactionResult(location):
...

       LAi_CreateEncounters(location); 
       //LandHunterReactionResult(location); //Commented out with double slash in front
        CopyPassForAztecSkull();
    }
...
...