Skip to content

Commit

Permalink
[Sonic Frontiers] Always Have Max Boost Gauge
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperbx committed Nov 11, 2023
1 parent 659d5ad commit 401d02f
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Code "Always Have Max Boost Gauge" in "Cheats/Upgrades/100%" by "Hyper" does
/*
Gives the player the maximum level for the boost gauge.

WARNING: this will affect your save data!
*/
//
#include "SaveData" noemit
//
{
SAVE_SET_PARAM(character.boostGaugeLevel, 32);

for (int i = 0; i < 3; i++)
SAVE_SET_PARAM(extraCharacters.characters[i].boostGaugeLevel, 32);
}

0 comments on commit 401d02f

Please sign in to comment.