Empyrion - Galactic Survival

Empyrion - Galactic Survival

Reforged Eden 2 Beta
Chippy Sep 13, 2024 @ 10:52am
Mission - Tasks
I see that missions were reset after the latest update. Is it possible to manually complete tasks to get back to prior progress? I do see that chapters can be unlocked using PDA commands via console, but within the chapters there are tasks that cannot be manually completed. Like visiting a POI or location. Are there admin commands that allow us to complete these?
< >
Showing 1-5 of 5 comments
ravien_ff  [developer] Sep 13, 2024 @ 12:07pm 
No unfortunately.
Chippy Sep 13, 2024 @ 12:20pm 
Gotcha. If I added the ability to AllowManualCompletion: true to each task. Would this need to be made into it's own Scenario?
Chippy Sep 15, 2024 @ 11:02am 
For anyone that also is looking to fast track their missions, whether because it broke during a patch, or for testing. I made the following script that can be used on empyrion-homeworld.net to edit the pda file. Basically this allows you to manually complete all tasks.

//Maybe this is easier
var pda = ECT.pda;
//Chapter Level
$.each(pda.chapters,function(){

//Chapter Level
//console.log('Chapter - ' + this.ChapterTitle);
$.each(this.Tasks,function(){

//Task Level
//console.log('Task - ' + this.TaskTitle);
$.each(this.Actions, function(){
if(this.AllowManualCompletion != null)
{
//console.log('Action - ' + this.AllowManualCompletion);
this.AllowManualCompletion = true;
}
else
{
this.AllowManualCompletion = true;
}
});
});
})
World's Eyebrow Oct 27, 2024 @ 8:07am 
Okay, but where in my game folders do I put this? And what command do I put into the console to tap into it? Or is it a GUI addition? What "format.*" do I set it as?

tl;dr: INSTRUCTIONS UNCLEAR, CAN'T IMPLEMENT
treker_ed Oct 27, 2024 @ 8:55am 
This is not a console item - you have to physically edit a file. And it is clear as it states "to edit the pda file"

I would respectfully suggest that if you cant follow this, or understand any of whats being explained, that you shouldn't really be trying to play around with the game files as it could seriously screw stuff up and you could lose your save.
< >
Showing 1-5 of 5 comments
Per page: 1530 50