Phoenix Point

Phoenix Point

View Stats:
Blech Aug 13, 2022 @ 2:17pm
Unable to attack pandoran lair?
I have a lair that showed up after a base defence on my own base. I flew a loaded transport to it but when the transport arrives no option to attack it appears. When i click the Lair, I would expect a "Deploy" button to appear but no options appear, even though the "click" action sound plays,.
I have tried flying another transport there instread, I have activated the base that is next to the Lair, and I have restarted the game. Nothing works. How do I fix it so I can attack the lair?
Originally posted by Vaigl:
Here is a workaround via console commands:

move mouse cursor on the lair
open console and type: alien_promote_base
The lair becomes citadel and it is possible to attack it.
In case you do not want to fight the citadel load the tactical mission, open console and type win.


How to activate console:

Open notepad or any other software that allows you to create text documents. Create a new document. Add only this sentence into the document:

disable_console_access = false

Save the document and name it autoexec.cfg

Move this document to your Phoenix Point folder. Where this folder is depends on where you installed Phoenix Point but for example default path for Steam installation is: Program Files (x86)\Steam\steamapps\common\Phoenix Point\

Once the autoexec.cfg file is there, start Phoenix Point and press ; (semicolon) to open the console.
< >
Showing 1-12 of 12 comments
Seresu Aug 14, 2022 @ 6:59pm 
Encountered the same issues as well, with similar attempts to fix not working either.
rametap Aug 15, 2022 @ 4:22am 
Same thing happened to me. Tried restarting, tried using a different transport, deploy button doesn't appear.
pascal.difolco Aug 15, 2022 @ 6:00am 
You should send your savegame at PP support email : support@snapshotgames.com
haze Aug 15, 2022 @ 6:17am 
I have the same issue
Blech Aug 15, 2022 @ 6:54am 
Well, at least their gamebreaking bugs are consistent...
rametap Aug 18, 2022 @ 6:06pm 
Thanks pascal.difolco! They were very helpful, and gave me a console command to take care of it.
Blech Aug 19, 2022 @ 7:09am 
Originally posted by rametap:
Thanks pascal.difolco! They were very helpful, and gave me a console command to take care of it.
Would you mind sharing? They didn't get back to me
kha4214 Aug 21, 2022 @ 1:59pm 
I have the same problem.
Bifrons Sep 14, 2022 @ 7:10pm 
Originally posted by Blech:
Originally posted by rametap:
Thanks pascal.difolco! They were very helpful, and gave me a console command to take care of it.
Would you mind sharing? They didn't get back to me

Anyone figured this out yet? My reputation keeps taking hits every 4 days because I can't get rid of a Lair exactly as OP describes (I can attack other nests/lairs just fine).
The author of this thread has indicated that this post answers the original topic.
Vaigl  [developer] Sep 15, 2022 @ 3:43am 
Here is a workaround via console commands:

move mouse cursor on the lair
open console and type: alien_promote_base
The lair becomes citadel and it is possible to attack it.
In case you do not want to fight the citadel load the tactical mission, open console and type win.


How to activate console:

Open notepad or any other software that allows you to create text documents. Create a new document. Add only this sentence into the document:

disable_console_access = false

Save the document and name it autoexec.cfg

Move this document to your Phoenix Point folder. Where this folder is depends on where you installed Phoenix Point but for example default path for Steam installation is: Program Files (x86)\Steam\steamapps\common\Phoenix Point\

Once the autoexec.cfg file is there, start Phoenix Point and press ; (semicolon) to open the console.
TheCloudish May 13, 2023 @ 8:34am 
After much faffing around, I also learnt you need to be in mod mode to use the console commands.
Enforcer Feb 8, 2024 @ 5:44am 
It seems for some reason mission is not attached to this site.
Due to source code the following method should fix this (below):
just point to this geo site and type in console alien_base_fix_mission
I used dnspy to edit Assembly-CSharp.dll.
I used GeoAlienBase.PromoteBase as a reference.
Need to add method to some class other than GeoAlienBase because adding method to GeoAlienBase breaks the game.

using System;
using Base.Utils.GameConsole;
using PhoenixPoint.Common.Core;
using PhoenixPoint.Geoscape.Entities;

namespace PhoenixPoint.Geoscape.Levels
{
public partial class GeoLevelControllerHelper
{
[ConsoleCommand(Command = "alien_base_fix_mission", Description = "Fix alien base mission for alien base site under cursor")]
public static void FixAlienBaseMission(IConsole console)
{
GeoSite geoSite = GeoSite.SelectSiteUnderCursor(true);
if (geoSite.Type != GeoSiteType.AlienBase)
{
throw new ConsoleCommandException("Must select active base!");
}
geoSite.CreateAlienBaseMission();
}
}
}
Last edited by Enforcer; Feb 8, 2024 @ 7:08am
< >
Showing 1-12 of 12 comments
Per page: 1530 50

Date Posted: Aug 13, 2022 @ 2:17pm
Posts: 12