Paragon capture causes TH to go permanently blank menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Buzzy62's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    105
    Thanks G/R
    18/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    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.

    Paragon capture causes TH to go permanently blank
  2. #2
    cherouvim13's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    212
    Thanks G/R
    258/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  3. #3
    azertyjklm's Avatar Member
    Reputation
    3
    Join Date
    Oct 2017
    Posts
    1
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    go on
    turbohud directory file > Plugin > ParagonCapturePlugin (right click and open with notepad) > change true for false.

    public ParagonCapturePlugin()
    {
    Enabled = true;

  4. Thanks cherouvim13, TobiaSBooN (2 members gave Thanks to azertyjklm for this useful post)
  5. #4
    cherouvim13's Avatar Member
    Reputation
    14
    Join Date
    Mar 2017
    Posts
    212
    Thanks G/R
    258/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    worked thanks

  6. #5
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by azertyjklm View Post
    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

  7. Thanks Buzzy62 (1 members gave Thanks to prrovoss for this useful post)
  8. #6
    freyrsi's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    25
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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,



  9. #7
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    disable it for now

  10. #8
    freyrsi's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    25
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    disable it for now
    I did what you told us in the post above - didn't work.

  11. #9
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by freyrsi View Post
    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.)"

  12. #10
    freyrsi's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    25
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  13. #11
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by freyrsi View Post
    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
    so its not related to the paragon capture feature?! than dont post it in this thread^^

  14. #12
    xblade2k7's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2009
    Posts
    278
    Thanks G/R
    101/32
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Fix:

    public ParagonCapturePlugin()
    {
    Enabled = true;
    StopRenderingWhenCapturing = true;
    SubFolderName = "capture_paragon";
    DelayBetweenFrames = 200;
    }

    to

    public ParagonCapturePlugin()
    {
    Enabled = false;
    StopRenderingWhenCapturing = false;
    SubFolderName = "capture_paragon";
    DelayBetweenFrames = 200;
    }

  15. #13
    Buzzy62's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    105
    Thanks G/R
    18/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xblade2k7 View Post
    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);

  16. Thanks Sascan (1 members gave Thanks to Buzzy62 for this useful post)
  17. #14
    Sascan's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    10
    Thanks G/R
    31/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for that Buzzy, honestly the only annoying thing about TurboHUD!

  18. #15
    KillerJohn's Avatar TurboHUD HUDmaster CoreCoins Purchaser Authenticator enabled
    Reputation
    3696
    Join Date
    Jul 2012
    Posts
    2,532
    Thanks G/R
    46/3338
    Trade Feedback
    0 (0%)
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    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...

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 14
    Last Post: 04-29-2012, 11:01 AM
  2. Guide to .go where you really want to go
    By idusy-org in forum World of Warcraft Emulator Servers
    Replies: 41
    Last Post: 02-19-2008, 04:17 PM
  3. need a new crack sire/forum to go on pls!:P
    By mchugh in forum Community Chat
    Replies: 1
    Last Post: 06-01-2007, 08:56 PM
  4. The four ways to go beneathOutlandund
    By totos in forum World of Warcraft Exploits
    Replies: 4
    Last Post: 03-31-2007, 10:09 AM
  5. Yet another website to go to to pass the time
    By KOLOSSAL in forum World of Warcraft General
    Replies: 1
    Last Post: 10-07-2006, 02:51 AM
All times are GMT -5. The time now is 12:35 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search