Advanced Solar Panel Configuration

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Xapos

New Member
Jul 29, 2019
5
0
0
I need help configuring the Advanced Solar Panel mod v3.3.4. The recipes in my opinion are too expensive. I'm trying to disable hard mode. I can accomplish this server side, but not client. Any help would be appreciated. Thanks!
 
  • Like
Reactions: Monkey_Tastic

lavarthan

New Member
Jul 29, 2019
2,437
0
0
Have you tried copying the config over to Edit:from the server? Sorry if you have tried, but it is a question I ask to be sure.

This is how you want the config to look for the easiest possible solars. This is just an exert from the section you want to change. Please feel free to report if this does not work.
Code:
####################
# recipes settings
####################
 
"recipes settings" {
    B:"Disable Advanced Solar Helmet recipe"=false
    B:"Disable AdvancedSolarPanel recipe"=false
    B:"Disable DoubleSlab recipe"=false
    B:"Disable Hybrid Solar Helmet recipe"=false
    B:"Disable HybridSolarPanel recipe"=false
    B:"Disable Ultimate Solar Helmet recipe"=false
    B:"Disable UltimateSolarPanel recipe"=false
    B:"Enable hard recipes"=false
    B:"Enable simple Advanced Solar Panel recipe"=true

Note that if the server Edit:client is updated from 1.0.1 of ultimate or 3.3.3 of Advanced Solar Panels it might not have the same lines of text. You want a fresh config started from 3.3.4 of Advanced Solars or Ultimate 1.0.2 to edit.
 

Xapos

New Member
Jul 29, 2019
5
0
0
Have you tried copying the config over to the server? Sorry if you have tried, but it is a question I ask to be sure.

This is how you want the config to look for the easiest possible solars. This is just an exert from the section you want to change. Please feel free to report if this does not work.
Code:
####################
# recipes settings
####################
 
"recipes settings" {
    B:"Disable Advanced Solar Helmet recipe"=false
    B:"Disable AdvancedSolarPanel recipe"=false
    B:"Disable DoubleSlab recipe"=false
    B:"Disable Hybrid Solar Helmet recipe"=false
    B:"Disable HybridSolarPanel recipe"=false
    B:"Disable Ultimate Solar Helmet recipe"=false
    B:"Disable UltimateSolarPanel recipe"=false
    B:"Enable hard recipes"=false
    B:"Enable simple Advanced Solar Panel recipe"=true

Note that if the server is updated from 1.0.1 of ultimate or 3.3.3 of Advanced Solar Panels it might not have the same lines of text. You want a fresh config started from 3.3.4 of Advanced Solars or Ultimate 1.0.2 to edit.

I got the server to work with it, I just literally can't find the config for the client side. Is it possibly in a class file?
 

lavarthan

New Member
Jul 29, 2019
2,437
0
0
Nope it is in the modpack's folder. So it is something like this for folder structure. C:\FTB\Ultimate\minecraft\config

Edit: Note that the C:\FTB is your starting folder in the 'Install folder...' in the options tab.
 

Xapos

New Member
Jul 29, 2019
5
0
0
Thank you! I couldn't ever find the darn thing.[DOUBLEPOST=1367361221][/DOUBLEPOST]Uh oh. Now that I've changed it I'm getting world ID mismatches
ID 30831 ModID: AdvancedSolarPanel, type advsolar.ItemAdvanced is missing
ID 194 ModID: AdvancedSolarPanel, type advsolar.ItemADvSolarPanel is missing
 

lavarthan

New Member
Jul 29, 2019
2,437
0
0
You just need to change them to the correct IDs. According to my fresh install of Ultimate 1.0.2 the IDs are:
Code:
####################
# items
####################
 
items {
    I:advSolarHelmetID=30101
    I:hybridSolarHelmetID=30102
    I:itemsID=30100
    I:ultimateSolarHelmetID=30103
}
Make sure to edit them both to this and it will stop giving you that error.

Edit: I'm telling you to use these since they are default and not custom. For the modpacks each mod is assigned a spread of IDs they can use to better ensure these types of errors do not happen.
 

Xapos

New Member
Jul 29, 2019
5
0
0
You just need to change them to the correct IDs. According to my fresh install of Ultimate 1.0.2 the IDs are:
Code:
####################
# items
####################
 
items {
    I:advSolarHelmetID=30101
    I:hybridSolarHelmetID=30102
    I:itemsID=30100
    I:ultimateSolarHelmetID=30103
}
Make sure to edit them both to this and it will stop giving you that error.

Edit: I'm telling you to use these since they are default and not custom. For the modpacks each mod is assigned a spread of IDs they can use to better ensure these types of errors do not happen.

I've edited both to those ID's but I still get ID 194 advsolar.ItemAdvSolarPanel is missing :/
\
 

Xapos

New Member
Jul 29, 2019
5
0
0
I figured it out. It was the block's ID: Derp[DOUBLEPOST=1367362606][/DOUBLEPOST]I believe I figured it all out with your help. Thank you for being considerate and willing. I hope you have a great day. :D
 

lavarthan

New Member
Jul 29, 2019
2,437
0
0
Yea I saw that also after you mentioned it. Not sure why it was separate from the others. Your welcome and thank you I will.