Stellaris

Stellaris

Acquisition of Technology
This topic has been locked
Ben_D⚜ May 16, 2022 @ 3:27pm
Mod Suggestion
Hello Frag Jacker,

I see you've emptied out the discussions section on your mod page, which isn't a bad thing :). I posted here a while ago about the graphics of habitats in conjunction with the Machine Shipset mod, which you ultimately addressed in due time. It leaves me to wonder if it's still alright to post here, though.

I'll assume that I can and go ahead with something else that caught my attention a while ago now; a job given by the Extra-dimensional Experimentation resolution by the Galactic Community is unaccounted for in the buildings made by A.C.o.T. & A.o.T.. The resolution is as follows:

resolution_galacticstudies_extradimensional_experimentation

This resolution gives access to an extra job on a planet with (vanilla) Advanced Research Facilities through a planetary decision:
job_dimensional_portal_researcher_add

I'll say that I know that you know all about this already, but I'm just being overly specific to make sure I don't miscommunicate. I'll say that I don't expect any of this to be done, of course, because it's just a suggestion.

I dug into your files again and ended up searching through these ones:
\2178603631\common\buildings\z_aot_ae_buildings_overwrite.txt
\2178603631\common\buildings\z_aot_stellarite_buildings.txt

A.C.o.T. has it the relevant building for the Delta Tier:
\1419304439\common\buildings\acot_00_delta_buildings.txt

I'm sure you know the file directory quite well at this point, so I'll just move on here. I'll also assume that you can easily compare the changes I've made, but I can make it clearer if needed.

In the Alpha tier building file, I did the following (starting at line 2748):
building_ae_enigmatic_lab = { base_buildtime = 680 can_build = no can_demolish = yes category = research allow = { has_ascended_capital = yes } upgrades = { building_stellarite_enigmatic_lab } triggered_planet_modifier = { potential = { exists = owner owner = { is_regular_empire = yes } } modifier = { job_acot_researcher_add = 4 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_gestalt = yes } } modifier = { job_acot_researcher_drone_add = 4 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_regular_empire = yes is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" has_modifier = pm_extradimensional_experimentation } modifier = { job_dimensional_portal_researcher_add = 1 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_gestalt = yes is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" has_modifier = pm_extradimensional_experimentation } modifier = { job_dimensional_portal_researcher_gestalt_add = 1 } } resources = { category = planet_buildings cost = { minerals = 50 sr_dark_matter = 500 acot_sr_dark_energy = 500 } produces = { trigger = { has_modifier = acot_modifier_ascended_city } physics_research = 50 engineering_research = 50 society_research = 50 } upkeep = { trigger = { has_modifier = acot_modifier_ascended_city } sr_dark_matter = 4 acot_sr_dark_energy = 4 } upkeep = { trigger = { owner = { is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" planet = { has_modifier = pm_extradimensional_experimentation } } sr_zro = 1 } } prerequisites = { "tech_ae_enigmatic_lab" } ai_weight = { weight = 50 modifier = { factor = 0 owner = { has_monthly_income = { resource = sr_dark_matter value <= 3 } } } modifier = { factor = 0 owner = { has_monthly_income = { resource = energy value <= 10 } } } } }

In the Sigma tier building file, I did the following (starting at line 1455):
building_stellarite_enigmatic_lab = { base_buildtime = 900 can_build = no can_demolish = yes category = research allow = { has_stellarite_capital = yes } upgrades = { building_phanon_enigmatic_lab } triggered_planet_modifier = { potential = { exists = owner owner = { is_regular_empire = yes } } modifier = { job_stellarite_researcher_add = 4 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_gestalt = yes } } modifier = { job_stellarite_researcher_drone_add = 4 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_regular_empire = yes is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" has_modifier = pm_extradimensional_experimentation } modifier = { job_dimensional_portal_researcher_add = 1 } } triggered_planet_modifier = { potential = { exists = owner owner = { is_gestalt = yes is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" has_modifier = pm_extradimensional_experimentation } modifier = { job_dimensional_portal_researcher_gestalt_add = 1 } } resources = { category = planet_buildings cost = { energy = 2000 minerals = 2000 acot_sr_stellarite = 800 } upkeep = { energy = 20 acot_sr_stellarite = 10 sr_dark_matter = 5 #Mod Pack: added upkeep acot_sr_dark_energy = 5 #Mod Pack: added upkeep } upkeep = { trigger = { owner = { is_galactic_community_member = yes } is_active_resolution = "resolution_galacticstudies_extradimensional_experimentation" planet = { has_modifier = pm_extradimensional_experimentation } } sr_zro = 1 } } prerequisites = { "tech_stellarite_enigmatic_lab" } ai_weight = { weight = 50 modifier = { factor = 0 owner = { has_monthly_income = { resource = sr_dark_matter value <= 3 } } } modifier = { factor = 0 owner = { has_monthly_income = { resource = energy value <= 10 } } } } }

The Delta Tier building in A.C.o.T.'s directory also needs the same thing done (which I have done). I won't post it here since I think the idea comes across effectively at this point. I guess that would be up to you and the main man Chirumiru.

Thoughts?
Last edited by Ben_D⚜; May 16, 2022 @ 3:28pm
< >
Showing 1-12 of 12 comments
Frag Jacker  [developer] May 17, 2022 @ 4:50am 
Oh that is actually very nice!

Thanks for bringing that up to my attention. I particularly like code suggestions :3. What I'd like even more if you could make this to be a Pull Request over on my AoT repo on Github https://github.com/Fragjacker/Acquistion-of-Technology/pulls :steamhappy:. It's the cleanest and easiest way to incorporate changes!
Ben_D⚜ May 17, 2022 @ 5:09am 
Alright, I'll see to it later today then. Thanks for the reply.
Ben_D⚜ May 17, 2022 @ 9:50am 
So, I hope I went about it the right way. I'm not that experienced with GitHub. The changes are uploaded, along with some other stuff within those files. Of course, these are simply suggestions, and I don't expect any of them to be considered, let alone implemented. I state my case in the notes of the upload. I'm curious about what you think.

Edit: if you're inclined to do so, feel free to add me to your contact list(s).
Last edited by Ben_D⚜; May 17, 2022 @ 9:53am
Frag Jacker  [developer] May 18, 2022 @ 5:16am 
I see that you forked the AoT repo but you're not done yet. You need to clone this repository to your computer, then drop the changes you've made to that folder. Once you did that you need to commit and push these changes in order to appear inside your fork. Once done you can open the actual pull request to merge everything into the original AoT repository used for the live version.

https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository

For a beginner I would also suggest getting a GUI client like https://www.sourcetreeapp.com/ this should help getting your files pushed to Github.
Ben_D⚜ May 18, 2022 @ 6:09am 
Man, GitHub is not for the faint-hearted.... Thanks for the info. I'll try again later today.
Last edited by Ben_D⚜; May 18, 2022 @ 7:32am
Frag Jacker  [developer] May 18, 2022 @ 7:11am 
I admit that Git has a somewhat steep learning curve for a beginner but it's definitely worth it. It's the industry standard for collaboratively managing software projects. :steamhappy:
Ben_D⚜ May 18, 2022 @ 9:14am 
Alrighty, 2nd attempt at using GitHub now done. I feel like I have less than half a clue as to what I'm doing with GitHub lol, hopefully my improvisation doesn't frustrate you too much.
Ben_D⚜ May 20, 2022 @ 4:38am 
3rd attempt at a refined update and proposal is now done.
Frag Jacker  [developer] May 29, 2022 @ 4:53am 
Alright most of your changes have been adopted to the public version, congrats!
Ben_D⚜ May 29, 2022 @ 6:16pm 
I appreciate your consideration! There aren't many people that would do what you do, so thank you.
unit6484 Sep 1, 2023 @ 12:27pm 
Please, for God's sake, rework the Leader Resurrection system.

It's completely ruined my game.

I've already taken over half the galaxy and finally finished off Phanon.

And now this window has popped up for me - no one has died, but now I can't close it.

More precisely, I can - I have already closed two hundred windows, but under it all are new.

There is a Resurrection Device mod - it does not suffer from such false positives, you can use its principle as a basis.
Frag Jacker  [developer] Sep 2, 2023 @ 7:50am 
Originally posted by unit6484:
Please, for God's sake, rework the Leader Resurrection system.

It's completely ruined my game.

I've already taken over half the galaxy and finally finished off Phanon.

And now this window has popped up for me - no one has died, but now I can't close it.

More precisely, I can - I have already closed two hundred windows, but under it all are new.

There is a Resurrection Device mod - it does not suffer from such false positives, you can use its principle as a basis.
This issue should be fixed as of now. Just pushed an update for it. Now only leaders who have drank the Phanon KoolAid before are eligible at all for resurrection.
< >
Showing 1-12 of 12 comments
Per page: 1530 50