When you start the pvp scenario, a few technologies have already been researched, but the corresponding setting is set to "none". Both with and without the space age mods. This could be reproduced on several accounts.
[Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
-
- Burner Inserter
- Posts: 18
- Joined: Sat Jul 02, 2016 7:37 am
- Contact:
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
I was about to log this as well.
Have a group that were keen to play but we'll wait and cross fingers.
I did try using the below as admin, which works, but also disables the ability to research once run.
Have a group that were keen to play but we'll wait and cross fingers.
I did try using the below as admin, which works, but also disables the ability to research once run.
Code: Select all
/c for _,v in pairs(game.player.force.technologies) do v.researched=false end
Last edited by pinecoffin on Mon Oct 21, 2024 3:15 pm, edited 1 time in total.
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Same here, already trying to find workarounds too. Will post here if we find a good temporary solution
Edit: Your solution works. The research at the beginning just seems to be going differently than usual. craft 10 copper plates to unlock the green circuit technology e.g.
Or did you have problems later on?
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Hello ! i'm having the same issue, i think it's just the tech that are ressource-based that cause issue, to reset the research of all force i did this command :
(i added filters to not change other faction, idk if it matter)
i did research the first tech just fine (copper one) and it seems to be the same behavior as with normal gamemode
I just hope it will not break other things down the line
Code: Select all
/c for _,force in pairs(game.forces) do if (force.name == "enemy" or force.name == "player" or force.name == "neutral") then else for _,v in pairs(force.technologies) do v.researched=false end end end
i did research the first tech just fine (copper one) and it seems to be the same behavior as with normal gamemode
I just hope it will not break other things down the line
-
- Burner Inserter
- Posts: 18
- Joined: Sat Jul 02, 2016 7:37 am
- Contact:
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Ah geez, it was getting late for us and we just saw that the research button was greyed out where it wasn't before running the command. I didn't realise that the research system had changed.scarry wrote: ↑Mon Oct 21, 2024 2:31 pmSame here, already trying to find workarounds too. Will post here if we find a good temporary solution
Edit: Your solution works. The research at the beginning just seems to be going differently than usual. craft 10 copper plates to unlock the green circuit technology e.g.
Or did you have problems later on?
I've just tested again by running the same command and confirmed it is working.
Last edited by pinecoffin on Mon Oct 21, 2024 3:40 pm, edited 1 time in total.
-
- Burner Inserter
- Posts: 18
- Joined: Sat Jul 02, 2016 7:37 am
- Contact:
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Does running the above mean I don't need to make each player admin and run what I posted previously?porigonop wrote: ↑Mon Oct 21, 2024 3:01 pm Hello ! i'm having the same issue, i think it's just the tech that are ressource-based that cause issue, to reset the research of all force i did this command :(i added filters to not change other faction, idk if it matter)Code: Select all
/c for _,force in pairs(game.forces) do if (force.name == "enemy" or force.name == "player" or force.name == "neutral") then else for _,v in pairs(force.technologies) do v.researched=false end end end
i did research the first tech just fine (copper one) and it seems to be the same behavior as with normal gamemode
I just hope it will not break other things down the line
-
- Burner Inserter
- Posts: 18
- Joined: Sat Jul 02, 2016 7:37 am
- Contact:
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
I just saw on Discord that someone has a PvP scenario going and they can't launch the rocket... I've turned off all win conditions, as we just want to play with separate research, so hoping we don't run in to this issue as well. Maybe we need to wait until the scenarios get updated?
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Hi,
Thanks for the report,
The trigger techs being unlocked is fixed for the next release
For other issues please make a new bug report
Thanks for the report,
The trigger techs being unlocked is fixed for the next release
For other issues please make a new bug report
-
- Burner Inserter
- Posts: 18
- Joined: Sat Jul 02, 2016 7:37 am
- Contact:
Re: [Klonan] [2.0.7] Already researched technologies in pvp/mp scenario
Awesome, and thank you!