├── .gitattributes ├── .gitignore ├── README.md ├── aiscripts ├── engineer.ai.xml ├── fight.attack.object.bigtarget.xml ├── fight.attack.object.fighter.xml ├── interrupt.attacked.xml ├── interrupt.changedsector.xml ├── interrupt.restock.xml ├── kuertee_aait_interrupts.xml ├── lib.calculate.miningefficiency.xml ├── lib.respond.inspected.xml ├── move.attack.object.capital.xml ├── move.collect.ship.smallship.xml ├── move.evade.xml ├── move.flee.boost.xml ├── move.flee.dock.xml ├── move.flee.highway.xml ├── move.flee.maneuver.xml ├── move.flee.xml ├── move.gate.xml ├── move.generic.xml ├── move.idle.xml ├── move.kuertee.avoid.xml ├── move.kuertee.engage.position.xml ├── move.kuertee.step.forward.xml ├── move.kuertee.withdraw.xml ├── move.park.xml ├── move.seekenemies.xml ├── move.undock.xml ├── move.unpark.xml ├── order.build.deploy.xml ├── order.build.find.task.xml ├── order.dock.xml ├── order.fight.attack.inrange.xml ├── order.fight.attack.object.xml ├── order.fight.board.xml ├── order.fight.escort.xml ├── order.fight.patrol.xml ├── order.fight.protect.position.xml ├── order.fight.protect.ship.xml ├── order.fight.protect.station.xml ├── order.fight.tactical.xml ├── order.mining.routine.xml ├── order.move.follow.xml ├── order.move.recon.xml ├── order.move.wait.xml ├── order.repair.xml ├── order.supply.xml ├── order.trade.routine.xml ├── order.wait.signal.xml ├── order.wait.xml ├── orders.base.xml ├── trade.find.free.xml └── trade.station.xml ├── assets └── props │ └── engines │ └── macros │ ├── thruster_gen_l_allround_01_mk1_macro.xml │ ├── thruster_gen_l_allround_01_mk2_macro.xml │ ├── thruster_gen_l_allround_01_mk3_macro.xml │ ├── thruster_gen_xl_allround_01_mk1_macro.xml │ ├── thruster_gen_xl_allround_01_mk2_macro.xml │ └── thruster_gen_xl_allround_01_mk3_macro.xml ├── content.xml ├── deadairaitweaks-read-me.md ├── kuertee-attack-ai-tweaks-read-me.txt ├── libraries └── icons.xml ├── md ├── conversations.xml ├── deadairtweaksoptions.xml ├── factiongoal_hold_space.xml ├── factiongoal_invade_space.xml ├── job_helper.xml ├── kuertee_aait.xml └── notifications.xml └── t ├── 0001-l007.xml ├── 0001-l033.xml ├── 0001-l044.xml ├── 0001-l049.xml ├── 0001-l081.xml ├── 0001-l086.xml └── 0001.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /aiscripts/engineer.ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/engineer.ai.xml -------------------------------------------------------------------------------- /aiscripts/fight.attack.object.bigtarget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/fight.attack.object.bigtarget.xml -------------------------------------------------------------------------------- /aiscripts/fight.attack.object.fighter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/fight.attack.object.fighter.xml -------------------------------------------------------------------------------- /aiscripts/interrupt.attacked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/interrupt.attacked.xml -------------------------------------------------------------------------------- /aiscripts/interrupt.changedsector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/interrupt.changedsector.xml -------------------------------------------------------------------------------- /aiscripts/interrupt.restock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/interrupt.restock.xml -------------------------------------------------------------------------------- /aiscripts/kuertee_aait_interrupts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/kuertee_aait_interrupts.xml -------------------------------------------------------------------------------- /aiscripts/lib.calculate.miningefficiency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/lib.calculate.miningefficiency.xml -------------------------------------------------------------------------------- /aiscripts/lib.respond.inspected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/lib.respond.inspected.xml -------------------------------------------------------------------------------- /aiscripts/move.attack.object.capital.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.attack.object.capital.xml -------------------------------------------------------------------------------- /aiscripts/move.collect.ship.smallship.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.collect.ship.smallship.xml -------------------------------------------------------------------------------- /aiscripts/move.evade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.evade.xml -------------------------------------------------------------------------------- /aiscripts/move.flee.boost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.flee.boost.xml -------------------------------------------------------------------------------- /aiscripts/move.flee.dock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.flee.dock.xml -------------------------------------------------------------------------------- /aiscripts/move.flee.highway.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.flee.highway.xml -------------------------------------------------------------------------------- /aiscripts/move.flee.maneuver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.flee.maneuver.xml -------------------------------------------------------------------------------- /aiscripts/move.flee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.flee.xml -------------------------------------------------------------------------------- /aiscripts/move.gate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.gate.xml -------------------------------------------------------------------------------- /aiscripts/move.generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.generic.xml -------------------------------------------------------------------------------- /aiscripts/move.idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.idle.xml -------------------------------------------------------------------------------- /aiscripts/move.kuertee.avoid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.kuertee.avoid.xml -------------------------------------------------------------------------------- /aiscripts/move.kuertee.engage.position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.kuertee.engage.position.xml -------------------------------------------------------------------------------- /aiscripts/move.kuertee.step.forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.kuertee.step.forward.xml -------------------------------------------------------------------------------- /aiscripts/move.kuertee.withdraw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.kuertee.withdraw.xml -------------------------------------------------------------------------------- /aiscripts/move.park.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.park.xml -------------------------------------------------------------------------------- /aiscripts/move.seekenemies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.seekenemies.xml -------------------------------------------------------------------------------- /aiscripts/move.undock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.undock.xml -------------------------------------------------------------------------------- /aiscripts/move.unpark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/move.unpark.xml -------------------------------------------------------------------------------- /aiscripts/order.build.deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.build.deploy.xml -------------------------------------------------------------------------------- /aiscripts/order.build.find.task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.build.find.task.xml -------------------------------------------------------------------------------- /aiscripts/order.dock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.dock.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.attack.inrange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.attack.inrange.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.attack.object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.attack.object.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.board.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.escort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.escort.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.patrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.patrol.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.protect.position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.protect.position.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.protect.ship.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.protect.ship.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.protect.station.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.protect.station.xml -------------------------------------------------------------------------------- /aiscripts/order.fight.tactical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.fight.tactical.xml -------------------------------------------------------------------------------- /aiscripts/order.mining.routine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.mining.routine.xml -------------------------------------------------------------------------------- /aiscripts/order.move.follow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.move.follow.xml -------------------------------------------------------------------------------- /aiscripts/order.move.recon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.move.recon.xml -------------------------------------------------------------------------------- /aiscripts/order.move.wait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.move.wait.xml -------------------------------------------------------------------------------- /aiscripts/order.repair.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.repair.xml -------------------------------------------------------------------------------- /aiscripts/order.supply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.supply.xml -------------------------------------------------------------------------------- /aiscripts/order.trade.routine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.trade.routine.xml -------------------------------------------------------------------------------- /aiscripts/order.wait.signal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.wait.signal.xml -------------------------------------------------------------------------------- /aiscripts/order.wait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/order.wait.xml -------------------------------------------------------------------------------- /aiscripts/orders.base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/orders.base.xml -------------------------------------------------------------------------------- /aiscripts/trade.find.free.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/trade.find.free.xml -------------------------------------------------------------------------------- /aiscripts/trade.station.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/aiscripts/trade.station.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_l_allround_01_mk1_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_l_allround_01_mk1_macro.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_l_allround_01_mk2_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_l_allround_01_mk2_macro.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_l_allround_01_mk3_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_l_allround_01_mk3_macro.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_xl_allround_01_mk1_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_xl_allround_01_mk1_macro.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_xl_allround_01_mk2_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_xl_allround_01_mk2_macro.xml -------------------------------------------------------------------------------- /assets/props/engines/macros/thruster_gen_xl_allround_01_mk3_macro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/assets/props/engines/macros/thruster_gen_xl_allround_01_mk3_macro.xml -------------------------------------------------------------------------------- /content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/content.xml -------------------------------------------------------------------------------- /deadairaitweaks-read-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/deadairaitweaks-read-me.md -------------------------------------------------------------------------------- /kuertee-attack-ai-tweaks-read-me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/kuertee-attack-ai-tweaks-read-me.txt -------------------------------------------------------------------------------- /libraries/icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/libraries/icons.xml -------------------------------------------------------------------------------- /md/conversations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/conversations.xml -------------------------------------------------------------------------------- /md/deadairtweaksoptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/deadairtweaksoptions.xml -------------------------------------------------------------------------------- /md/factiongoal_hold_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/factiongoal_hold_space.xml -------------------------------------------------------------------------------- /md/factiongoal_invade_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/factiongoal_invade_space.xml -------------------------------------------------------------------------------- /md/job_helper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/job_helper.xml -------------------------------------------------------------------------------- /md/kuertee_aait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/kuertee_aait.xml -------------------------------------------------------------------------------- /md/notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/md/notifications.xml -------------------------------------------------------------------------------- /t/0001-l007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l007.xml -------------------------------------------------------------------------------- /t/0001-l033.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l033.xml -------------------------------------------------------------------------------- /t/0001-l044.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l044.xml -------------------------------------------------------------------------------- /t/0001-l049.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l049.xml -------------------------------------------------------------------------------- /t/0001-l081.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l081.xml -------------------------------------------------------------------------------- /t/0001-l086.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001-l086.xml -------------------------------------------------------------------------------- /t/0001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuertee/x4-mod-da-ku-ai-tweaks/HEAD/t/0001.xml --------------------------------------------------------------------------------