File tree Expand file tree Collapse file tree 4 files changed +228
-254
lines changed Expand file tree Collapse file tree 4 files changed +228
-254
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,9 @@ garden_moonphase_matters: 0
130
130
garden_pot_matters: 0
131
131
garden_mh_aura_matters: 0
132
132
133
+ #Use current retail skill up rates and margins (Retail: High Skill-Up rate; Skill-Up when at or under 10 levels above synth recipe level.)
134
+ craft_modern_system: 1
135
+
133
136
#Craft level limit from witch specialization points beging to count. (Retail: 700; Level 75 era:600)
134
137
craft_common_cap: 700
135
138
Original file line number Diff line number Diff line change @@ -1041,6 +1041,7 @@ int32 map_config_default()
1041
1041
map_config.garden_moonphase_matters = false ;
1042
1042
map_config.garden_pot_matters = false ;
1043
1043
map_config.garden_mh_aura_matters = false ;
1044
+ map_config.craft_modern_system = 1 ;
1044
1045
map_config.craft_common_cap = 700 ;
1045
1046
map_config.craft_specialization_points = 400 ;
1046
1047
map_config.mob_tp_multiplier = 1 .0f ;
@@ -1380,6 +1381,10 @@ int32 map_config_read(const int8* cfgName)
1380
1381
{
1381
1382
map_config.craft_amount_multiplier = (float )atof (w2);
1382
1383
}
1384
+ else if (strcmp (w1, " craft_modern_system" ) == 0 )
1385
+ {
1386
+ map_config.craft_modern_system = atof (w2);
1387
+ }
1383
1388
else if (strcmp (w1, " craft_common_cap" ) == 0 )
1384
1389
{
1385
1390
map_config.craft_common_cap = atoi (w2);
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ struct map_config_t
101
101
bool garden_moonphase_matters; // Enable/disable Moon phase factor in gardening results
102
102
bool garden_pot_matters; // Enable/disable Pot element factor in gardening results
103
103
bool garden_mh_aura_matters; // Enable/disable Mog house aura factor in gardening results
104
+ bool craft_modern_system; // Enable/disable current retail margins and rates.
104
105
uint16 craft_common_cap; // Used in crafting, in synthutils.cpp. Defines skill limit before specialization system
105
106
uint16 craft_specialization_points; // Used in crafting, in synthutils.cpp. Defines the maximum points of the specialization system.
106
107
float mob_tp_multiplier; // Multiplies the amount of TP mobs gain on any effect that would grant TP
You can’t perform that action at this time.
0 commit comments