Match GC EP1 EXP patch row coverage to disc

This commit is contained in:
2026-05-24 12:10:32 -04:00
parent 5e94f2eac0
commit a292956151
3 changed files with 1044 additions and 205 deletions
+4 -12
View File
@@ -3715,12 +3715,12 @@ static asio::awaitable<void> dispatch_gc_v3_exp_patch(shared_ptr<Client> c) {
switch (l->episode) { switch (l->episode) {
case Episode::EP1: case Episode::EP1:
key = "PsoPeepsEP1EXP_internal"; key = "PsoPeepsEP1EXP_internal";
num_exp_labels = 204; num_exp_labels = 374;
break; break;
case Episode::EP2: case Episode::EP2:
key = "PsoPeepsEP2EXP_internal"; // The known-good GC disc patch does not modify BattleParamEntry_lab_on.dat.
num_exp_labels = 239; // Leave Episode 2 untouched until it is researched separately.
break; co_return;
default: default:
co_return; co_return;
} }
@@ -3731,14 +3731,6 @@ static asio::awaitable<void> dispatch_gc_v3_exp_patch(shared_ptr<Client> c) {
auto fn = make_shared<ClientFunctionIndex::Function>(*base_fn); auto fn = make_shared<ClientFunctionIndex::Function>(*base_fn);
for (size_t z = 0; z < num_exp_labels; z++) { for (size_t z = 0; z < num_exp_labels; z++) {
// GC V3 EP1 mitigation: leave known-problem Forest/Hilde rows at 1x.
// Rows 5 and 52 fixed the first TTF Hilde; related block-offset rows are
// included for the Dragon-gate Hilde variants that still show 0-damage.
if ((l->episode == Episode::EP1) &&
((z == 5) || (z == 52) || (z == 56) || (z == 103) ||
(z == 107) || (z == 154) || (z == 158))) {
continue;
}
string label = std::format("exp_{:03}", z); string label = std::format("exp_{:03}", z);
size_t offset = fn->label_offsets.at(label); size_t offset = fn->label_offsets.at(label);
File diff suppressed because it is too large Load Diff
@@ -1,8 +1,8 @@
.meta visibility="menu" .meta visibility="menu"
.meta key="PsoPeepsGCV3EXP_enabled" .meta key="PsoPeepsGCV3EXP_enabled"
.meta name="GC XP" .meta name="EP1 XP"
.meta client_flag="0x0000200000000000" .meta client_flag="0x0000200000000000"
.meta description="Enables server-scaled GC V3 EXP boost. Server applies the correct Episode 1 or Episode 2 table." .meta description="Enables server-scaled GC V3 Episode 1 EXP boost. Episode 2 is intentionally untouched for now."
.versions 3OE2 3OJ5 .versions 3OE2 3OJ5