perineum 0 Posted January 25, 2017 Can anyone recommend a CTI mission for Tanoa that is relatively bug free with the bonus of working well as a coop mission? The one I currently have only works with real players on both sides. Share this post Link to post Share on other sites
R0adki11 3949 Posted January 27, 2017 On 25/01/2017 at 2:36 AM, perineum said: Can anyone recommend a CTI mission for Tanoa that is relatively bug free with the bonus of working well as a coop mission? The one I currently have only works with real players on both sides. That maybe because since CTI was created back in OFP. It was designed to be played with players on both sides. Share this post Link to post Share on other sites
RSF TheCapulet 59 Posted January 28, 2017 http://steamcommunity.com/sharedfiles/filedetails/?id=727846871&tscn=1475361827 If this is the one you're using, I've recently fixed the commander AI in an upcoming update, so that co-op play can be had again. Will be a couple weeks longer before I get to it, but it will get updated. If you want to fix it yourself in the meantime, dePBO the mission, and go to "\Common\Config\Base" and replace the relevant code block in both Base_West.sqf and Base_East.sqf with this: //--- Commander course of action ["Action", Parameter(s), Condition] missionNamespace setVariable [format["CTI_%1_Commander_Path", _side], [ ["build-structures", CTI_BARRACKS, {true}], ["build-structures", CTI_LIGHT, {true}], ["build-structures", CTI_CONTROLCENTER, {true}], ["upgrade", [CTI_UPGRADE_GEAR, 1], {true}], ["upgrade", [CTI_UPGRADE_BARRACKS, 1], {true}], ["upgrade", [CTI_UPGRADE_LIGHT, 1], {true}], ["upgrade", [CTI_UPGRADE_TOWNS, 1], {true}], ["upgrade", [CTI_UPGRADE_SUPPLY, 1], {true}], ["upgrade", [CTI_UPGRADE_GEAR, 2], {true}], ["upgrade", [CTI_UPGRADE_BARRACKS, 2], {true}], ["upgrade", [CTI_UPGRADE_GEAR, 3], {true}], ["upgrade", [CTI_UPGRADE_BARRACKS, 3], {true}], ["build-structures", CTI_HEAVY, {true}], ["upgrade", [CTI_UPGRADE_LIGHT, 2], {true}], ["build-structures", CTI_REPAIR, {true}], ["build-structures", CTI_AMMO, {true}], ["upgrade", [CTI_UPGRADE_HEAVY, 1], {true}], ["upgrade", [CTI_UPGRADE_LIGHT, 3], {true}], ["upgrade", [CTI_UPGRADE_SUPPLY, 2], {true}], ["build-structures", CTI_AIR, {true}], ["upgrade", [CTI_UPGRADE_TOWNS, 2], {true}], ["upgrade", [CTI_UPGRADE_SUPPLY, 2], {true}], ["upgrade", [CTI_UPGRADE_AIR, 1], {true}], ["upgrade", [CTI_UPGRADE_HEAVY, 2], {true}], // ["upgrade", [CTI_UPGRADE_HEAVY, 3], {true}], ["upgrade", [CTI_UPGRADE_TOWNS, 3], {true}], ["upgrade", [CTI_UPGRADE_SUPPLY, 3], {true}], ["upgrade", [CTI_UPGRADE_AIR, 2], {true}], ["upgrade", [CTI_UPGRADE_AIR, 3], {true}], ["upgrade", [CTI_UPGRADE_SUPPLY, 4], {true}], ["upgrade", [CTI_UPGRADE_SATELLITE, 1], {true}] ]]; Share this post Link to post Share on other sites