Holy jesus christ can somebody post the EXACT COMMAND ! I have to type into the console to give myself AI CORES
I tried -
GAME.ship.loadWare "ITMAICore" - DOES NOTHING
GAME.ship.loadWare ITMAICore - DOES NOTHING
GAME.ship.loadWare (ITMAICore) - DOES NOTHING
GAME.ship.loadWare ("ITMAICore") - DOES NOTHING
For a single AI Core type in:
GAME.ship.loadWare("ITMAICore")
For several try this:
for x in range(10): GAME.ship.loadWare("ITMAICore")
Just copy/paste the one you want. Your issue seems to be a space between Ware and the first bracket.
Edit: I was so beaten to this, my brain is too tired and the other solution was better. Just a random thing though, we have a new command that auto sorts:
GAME.addItemSmart("ITMAICore")
This auto sorts the item into either storage or your inventory depending on what it is. The solution with the * operator might not work with the new command, but you can for sure use the one I mentioned like this:
for x in range(10): GAME.addItemSmart("ITMAICore")
Change the number 10 to any number you want.