Last edited by User5981; 12-05-2018 at 05:41 PM.
Supported version for all Resu plugins
here is an updated version: Zippyshare.com
- notify at start if the .exe.config file doesn't exists (so only the .exe was removed but not the .exe.config) or if the "aspnet:RoslynCompilerLocation" appsetting does not exists in the .exe.config
- log roslyn initialization exceptions to the usual exceptions file
you have 5 minutes to test and then I go to sleep
Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...
Supported version for all Resu plugins
Supported version for all Resu plugins
I installed the updated net framework 4.7.2 and using TurboHUD 18.12.5.0. Everything does work fine except for one plugin that stops TurboHud from even running.
User5981 this is for you. the plugin ParagonPercentagePlugin causing un-ending exceptions and does not let Turbohud load. error is
2018.12.05 18:48:47.244 18.12.5.0 overlay paint error (System.NullReferenceException: Object reference not set to an instance of an object.
at Turbo.Plugins.Resu.ParagonPercentagePlugin.<>c__DisplayClass57_0.<Load>b__1()
at Turbo.Plugins.Default.TopLabelDecorator.Paint(Single x, Single y, Single w, Single h, HorizontalAlign align)
at Turbo.Plugins.Resu.ParagonPercentagePlugin.PaintTopInGame(ClipState clipState)
at Turbo.Basic.PluginManager.*************.**** ********()
at Turbo.Basic.PluginManager.************(IPlugin , String , Action , Boolean )
at Turbo.Basic.PluginManager.**********(Object , EventArgs )
at Turbo.Basic.Overlay.**************())
Same error over and over. If I remove that plugin everything works fine as far as I can tell. I have about 12 or so of your plugins and that is the only one that throws errors. The others seem to be fine so far. no other errors so far from any other plugins from other users as well.
for me is working perfect the first experimental version
Img Safe | Free Image Host | Home
All plugins are working properly except for renaming
I am using version 18.12.5.1
Just FYI....the official announcement for the seasons ending and start.
https://us.battle.net/forums/en/d3/topic/20770676889
Did you tried this?
Zippyshare.com
Renaming works properly for me.
Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...
the issue with that plugin is the following (warning: developers will understand only)
public override void Load(IController hud) {
..........
var experiencePlugin = Hud.GetPlugin<TopExperienceStatistics>();
..........
HintFunc = () => "Paragon level " + (Hud.Game.Me.CurrentLevelParagon + 1) + " in " + experiencePlugin.TimeToParagonLevel(Hud.Game.Me.CurrentLevelParagon + 1, false) + Environment.NewLine + "EXP/h : " + ValueToString(Hud.Game.CurrentHeroToday.GainedExperiencePerHourPlay, ValueFormat.ShortNumber),
};
the main problem here is that you can't access other plugins in the Load phase. Only if your plugin implements ICustomizer and then in the void Customize() method.
This is caused because the order of plugin creation is nondeterministic so there is a good chance to get null when calling Hud.GetPlugin<T>(); in your Load() method.
Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...
Supported version for all Resu plugins