[v7.3] [INTERNATIONAL] [Resu] CraftersDelightPlugin menu

User Tag List

Page 9 of 13 FirstFirst ... 5678910111213 LastLast
Results 121 to 135 of 195
  1. #121
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Anthem2134 View Post
    Hi i have this strange issue basically when i do rift and i go in the second lvl the plugin stop work!
    if u need any log let me know

    https://s15.postimg.cc/a26qip2kb/Catt2ura.png
    According to the screenshot, this is clearly a Bounty party, not a rift...
    - What am I supposed to see on the screenshot?
    - How many times did it happen?
    - Are you on the latest TurboHUD version?
    Supported version for all Resu plugins

    [v7.3] [INTERNATIONAL] [Resu] CraftersDelightPlugin
  2. #122
    Anthem2134's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    32
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    on that screen ye and the same issue happen on the rift aswell, in the screenshot u can see i have 0 and 0 hatred and discipline and stop show on the minimap the drop of the gems and item.
    happen randmly
    and ye last version

  3. #123
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Anthem2134 View Post
    on that screen ye and the same issue happen on the rift aswell, in the screenshot u can see i have 0 and 0 hatred and discipline and stop show on the minimap the drop of the gems and item.
    happen randmly
    and ye last version
    If resource dops to 0 at the same time then it looks like a more general TurboHUD bug, how many plugins do you have?
    Supported version for all Resu plugins

  4. #124
    Anthem2134's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    32
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just this plugin

  5. #125
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Anthem2134 View Post
    just this plugin
    weird...
    - TurboHUD 18.8.17.0 ?
    - Have you downloaded the sound files for this plugin ?
    - double check the version of this plugin (3rd line)
    // Crafter's Delight Plugin for TurboHUD Version 15/08/2018 21:53
    (you can also redownload / overwrite to be sure)

    If all above is good and it reproduces, report in a TurboHUD problems/bugs thread ;-)
    Supported version for all Resu plugins

  6. #126
    Anthem2134's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    32
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes
    yes and yes i have the last one
    i 'll thx

  7. #127
    Saah's Avatar Member
    Reputation
    4
    Join Date
    Sep 2013
    Posts
    62
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you rename your thread, so it either is no longer "v7.3" (should be v7.7), or remove that versioning tag if allowed by forum rules

  8. #128
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saah View Post
    can you rename your thread, so it either is no longer "v7.3" (should be v7.7), or remove that versioning tag if allowed by forum rules
    no i can't
    Supported version for all Resu plugins

  9. #129
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated :
    - Same item as equipped (purple circle around dropped items on minimap (with a white E) & purple lines around item in inventory / stash) now works only for ancient & primals.
    - Same item as equipped now works with the 3 items selected in cube (in case it is better to switch equipped and cubed items for best results).
    Supported version for all Resu plugins

  10. #130
    rambo99jose's Avatar Member
    Reputation
    4
    Join Date
    Nov 2007
    Posts
    26
    Thanks G/R
    20/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really nice plugin but normal chests drove me nuts.

    To add a toggle for normal chest display:

    1----add this line near the top of "public class CraftersDelightPlugin" in the 'CraftersDelightPlugin.cs' file

    HTML Code:
    public bool NormalChests { get; set; }
    2----search for "var normalChests" and convert it to this

    HTML Code:
    if (NormalChests)
    {            
        var normalChests = Hud.Game.Actors.Where(x => !x.IsDisabled && !x.IsOperated && x.SnoActor.Kind == ActorKind.ChestNormal);
        foreach (var actor in normalChests)
        {
            var NormalTexture = Hud.Texture.GetTexture(4061587565);
            Hud.Render.GetMinimapCoordinates(actor.FloorCoordinate.X, actor.FloorCoordinate.Y, out float textureX, out float textureY);
            NormalTexture.Draw(textureX-17, textureY-20, 34.5f, 41f, 1f);
         }
    }
    3----now you can add the toggle to the plugin customization in 'PluginEnablerOrDisablerPlugin.cs'

    HTML Code:
    plugin.NormalChests = false;  //false= do not show normal chests
    Last edited by rambo99jose; 01-20-2019 at 10:36 PM.

  11. #131
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated :
    Customization Toggle for lore chests, normal chests, resplendent chests display (see Github readme for details)
    Supported version for all Resu plugins

  12. Thanks johnbl, TobiaSBooN (2 members gave Thanks to User5981 for this useful post)
  13. #132
    TobiaSBooN's Avatar Member
    Reputation
    4
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    143/3
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    hi

    since the last updates always exceptions.

    overlay paint error (System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
    bei Turbo.Plugins.*****.Items.Items.CraftersDelightPlugin.SameAsEquipped(UInt32 ThatItemSno)
    bei Turbo.Plugins.*****.Items.Items.CraftersDelightPlugin.PaintTopInGame(ClipState clipState)
    bei Turbo.Basic.PluginManager.‫‪‫‏‬​*​*​​‫‪‫**‎​‫‪‎‪*‪‬*.*‫‪‎‪ ‏‏*‬****‬‎‎‬‏*‬*()
    bei Turbo.Basic.PluginManager.*‎‬​‪​**‏‎**‬*‎‪‬‫‬‫‬‬***(IPlugin , String , Action , Boolean )
    bei Turbo.Basic.PluginManager.‏*‫‬‎‫‎*‫‎‎‎​*‫*‏*‫‬‏‬‫‎****(Object , EventArgs )
    bei Turbo.Basic.Overlay.‪**‬**‪*‫‎‫‏‬‫*‏​‏‬*‪‏‏**‪‏‪‬**())

    thx

  14. #133
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TobiaSBooN View Post
    hi

    since the last updates always exceptions.

    overlay paint error (System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
    bei Turbo.Plugins.*****.Items.Items.CraftersDelightPlugin.SameAsEquipped(UInt32 ThatItemSno)
    bei Turbo.Plugins.*****.Items.Items.CraftersDelightPlugin.PaintTopInGame(ClipState clipState)
    bei Turbo.Basic.PluginManager.‫‪‫‏‬​*​*​​‫‪‫**‎​‫‪‎‪*‪‬*.*‫‪‎‪ ‏‏*‬****‬‎‎‬‏*‬*()
    bei Turbo.Basic.PluginManager.*‎‬​‪​**‏‎**‬*‎‪‬‫‬‫‬‬***(IPlugin , String , Action , Boolean )
    bei Turbo.Basic.PluginManager.‏*‫‬‎‫‎*‫‎‎‎​*‫*‏*‫‬‏‬‫‎****(Object , EventArgs )
    bei Turbo.Basic.Overlay.‪**‬**‪*‫‎‫‏‬‫*‏​‏‬*‪‏‏**‪‏‪‬**())

    thx
    Redownload it, I fixed a problem.
    retry and report
    Apparently the exceptions occur because you don't have 3 items in your 3 cube slots...
    tell me if it is fixed.
    Supported version for all Resu plugins

  15. Thanks TobiaSBooN (1 members gave Thanks to User5981 for this useful post)
  16. #134
    TobiaSBooN's Avatar Member
    Reputation
    4
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    143/3
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    thx

    now it work´s

  17. #135
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TobiaSBooN View Post
    thx

    now it work´s
    Great! enjoy it!
    Supported version for all Resu plugins

  18. Thanks TobiaSBooN (1 members gave Thanks to User5981 for this useful post)
Page 9 of 13 FirstFirst ... 5678910111213 LastLast

Similar Threads

  1. [v7.2] [INTERNATIONAL] [glq] MonsterRiftProgressionPlugin
    By SeaDragon in forum TurboHUD Community Plugins
    Replies: 23
    Last Post: 09-07-2021, 04:46 AM
  2. [V7.2][International][Grischu] Override for InventoryAndStashPlugin.cs
    By Grischu in forum TurboHUD Community Plugins
    Replies: 27
    Last Post: 05-21-2019, 08:32 PM
  3. [v7.2] [INTERNATIONAL] [Jack] ItemDropSoundAlertPlugin
    By JackCeparou in forum TurboHUD Community Plugins
    Replies: 22
    Last Post: 07-17-2017, 08:27 PM
  4. [V7.2][International][Grischu] Buffstatistics
    By Grischu in forum TurboHUD Community Plugins
    Replies: 20
    Last Post: 04-05-2017, 02:27 AM
All times are GMT -5. The time now is 12:00 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search