-
Member
Paragon capture causes TH to go permanently blank
So, I normally don't use the paragon capture thing (really don't see a use for it), but since KJ wants to test it, here's what I get.
I got a paragon point and the second I did, the TH overlay disappears (THIS part is how it used to be), but then it never comes back. I had to close TH and restart it to get the overlay back on. TH was running (saw it in the task manager), but I couldn't get an overlay to come back.
I'll be disabling the paragon capture plugin until the next build.
Sorry, KJ. But I thought you'd want to know, at least.
-
Member
Same to me,
Although I disabled the capture from the config file
<paragon_capture hide_overlay="0" enabled="0"/>
but still the capture remains and the disabling remains
-
Member
go on
turbohud directory file > Plugin > ParagonCapturePlugin (right click and open with notepad) > change true for false.
public ParagonCapturePlugin()
{
Enabled = true;
-
Post Thanks / Like - 2 Thanks
-
Member
-
Contributor
Originally Posted by
azertyjklm
go on
turbohud directory file > Plugin > ParagonCapturePlugin (right click and open with notepad) > change true for false.
public ParagonCapturePlugin()
{
Enabled = true;
thats a bad solution because it will be overwritten in the next release. do it like this:
in your customizer/main plugin add this line:
Hud.TogglePlugin<ParagonCapturePlugin>(false);
read this if you dont know how to use it:
Default theme customization 101
-
Post Thanks / Like - 1 Thanks
Buzzy62 (1 members gave Thanks to prrovoss for this useful post)
-
Member
Good morning fellas, and thank you KJ again for one of the best apps on the internet.
But, my computer seems to be a problem with this one also,
-
Contributor
-
Member
Originally Posted by
prrovoss
disable it for now
I did what you told us in the post above - didn't work.
-
Contributor
Originally Posted by
freyrsi
I did what you told us in the post above - didn't work.
ill quote the thread ive linked:
"(if you have not configured any plugins yet, the file is a .txt, rename the extension to .cs if needed.)"
-
Member
Ok maybe we're not talking about the same problem? 
But I linked a picture with my first post, maybe you didn't see it - but I uploaded on imgur now
Imgur: The most awesome images on the Internet
-
Contributor
Originally Posted by
freyrsi
so its not related to the paragon capture feature?! than dont post it in this thread^^
-
Active Member
Fix:
public ParagonCapturePlugin()
{
Enabled = true;
StopRenderingWhenCapturing = true;
SubFolderName = "capture_paragon";
DelayBetweenFrames = 200;
}
to
public ParagonCapturePlugin()
{
Enabled = false;
StopRenderingWhenCapturing = false;
SubFolderName = "capture_paragon";
DelayBetweenFrames = 200;
}
-
Member
Originally Posted by
xblade2k7
Fix:
public ParagonCapturePlugin()
{
Enabled = true;
StopRenderingWhenCapturing = true;
SubFolderName = "capture_paragon";
DelayBetweenFrames = 200;
}
to
public ParagonCapturePlugin()
{
Enabled = false;
StopRenderingWhenCapturing = false;
SubFolderName = "capture_paragon";
DelayBetweenFrames = 200;
}
Except, as prrovoss said, that file gets overwritten every update. Better fix is to edit your PluginEnablerOrDisablerPlugin.cs with:
Hud.TogglePlugin<ParagonCapturePlugin>(false);
-
Post Thanks / Like - 1 Thanks
Sascan (1 members gave Thanks to Buzzy62 for this useful post)
-
Member
Thanks for that Buzzy, honestly the only annoying thing about TurboHUD!
-
did anybody actually tried to find the bug in the plugin, or just disabled it?
Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...