-
Active Member
[Ez] AlwaysUseYourParagon
Playing GR Speed I usually use paragon points as soon as they are available and I thought about automating the process by designing a plugin that would increase the main stat (int, dex, str) when there are unassigned points in the first tab. The initial idea was that it would work in 2 situations:
- When we return to the town
- When we are in the town and suddenly the button appears notifying us that we have increased our paragon level (which can happen when closing a GR).
To make it more versatile but without moving away from the initial purpose, I added more options:
- Increase vitality instead of the main stat when you are a support (will check if you have the toxin or iceblink gem equipped, but only if SupportVit is set to true).
- Maximize movement speed, it will take priority over the main stat or vitality (only if MaxSpeed is set to true).
- Work from a certain configurable paragon level, which will be 800 by default, but can be changed to, for example, 400 or even 0 (use ParagonMin to specify a value).
- Also work when entering a new game (only if AlsoInNewGame is set to true). If you have AlwaysActOne installed, this plugin may delay its operation by 10 seconds.
This plugin assumes that you have the P key assigned to open the Paragon Window. If not, you need to edit the plugin and change the value of KeyParagonWindow (default is Keys.P)
It's automation, use it at your own risk.
Download => Plugins\Ez\AlwaysUseYourParagon.cs
Custom Code for PluginEnablerOrDisablerPlugin:
Code:
Hud.RunOnPlugin<Ez.AlwaysUseYourParagon>(plugin =>
{
plugin.Enabled = true; // Enable or Disable plugin.
plugin.ParagonMin = 800; // Minimum Paragon required for this plugin to start working.
plugin.SupportVit = true; // Increases Vit instead of the Main Stat if you have toxin or icebLink equipped.
plugin.MaxSpeed = true; // Increase movement speed first.
plugin.AlsoInNewGame = true; // Work also when you enter a new game.
});
Last edited by EzGo; 2 Days Ago at 02:14 PM.
Reason: GreaterRifts VictoryScreen fix
-
Post Thanks / Like - 2 Thanks
-
Active Member
Updated: Removed an unnecessary check to make it faster.
-
Post Thanks / Like - 2 Thanks
-
Active Member
Updated: GreaterRifts VictoryScreen prevented pressing the confirmation button, now the plugin waits for it to close.