Exemplo n.º 1
0
 private static void ChangeTierTwoCost(int cost)
 {
     PerSaveOptions.Instance.CostOfTierTwoPrestige = cost;
     PerSaveOptions.Save();
 }
Exemplo n.º 2
0
 private static void ChangeRecipeReset(bool resetRecipes)
 {
     PerSaveOptions.Instance.ResetRecipesOnPrestige = resetRecipes;
     PerSaveOptions.Save();
 }
Exemplo n.º 3
0
 private static void ChangeExperiencePerPainlessPrestige(int experienceNeeded)
 {
     PerSaveOptions.Instance.ExperienceNeededPerPainlessPrestige = experienceNeeded;
     PerSaveOptions.Save();
 }
Exemplo n.º 4
0
 private static void ChangePainlessPrestigeMode(bool usePainlessPrestigeMode)
 {
     PerSaveOptions.Instance.PainlessPrestigeMode = usePainlessPrestigeMode;
     PerSaveOptions.Save();
 }
Exemplo n.º 5
0
 private static void ChangePointsPerPrestige(int points)
 {
     PerSaveOptions.Instance.PointsPerPrestige = points;
     PerSaveOptions.Save();
 }
Exemplo n.º 6
0
 private static void ChangeUseExperienceMultiplier(bool useExperienceMultiplier)
 {
     PerSaveOptions.Instance.UseExperienceMultiplier = useExperienceMultiplier;
     PerSaveOptions.Save();
 }