GrindFest

GrindFest

Not enough ratings
God Mode
By RobustToolbox
Copy and paste into your character's file and run it.

All it is doing is updating the stats to be godlike.
   
Award
Favorite
Favorited
Unfavorite
GodMode
static void BecomeGod(AutomaticParty party, int amountToBoost) { foreach (var h in party.Party.Heroes) { // makes you godlike h.Character.BaseDexterity = amountToBoost; h.Character.BaseIntelligence = amountToBoost; h.Character.BaseStrength = amountToBoost; h.Character.Health.CurrentHealth = h.Character.Health.MaxHealth; h.Character.Mana.BaseMana = amountToBoost; h.Character.Mana.CurrentMana = amountToBoost; } } static void KeepGodAlive(AutomaticHero hero) { hero.Character.Health.CurrentHealth = hero.Character.Health.MaxHealth; }

Usage
BecomeGod(Hero.Party,1000); KeepGodAlive(Hero.SelectedHero); Hero.Idle();