Default theme customization 101 menu

User Tag List

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 67
  1. #31
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Afaik TurboMGR is not updated anymore.
    It's one of the feature from KJ, and from a developer PoV I can guess why he don't want to update it anymore ^^'
    Hide the Rum! --> Default theme customization 101 <--

    Default theme customization 101
  2. #32
    kxc0re's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can totally understand that as well, but its a pity having a searchable inventory/stash was really quite some help, im really bad at keeping my tabs organized :')

  3. #33
    yuyangfan's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to open the blood bar of the elite?

  4. #34
    yuyangfan's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Excuse me,How to open health bar of the elite?

  5. #35
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it possible to make "Customized" method switchable "on / off" with "keyEvent" ?

    i want to be able to change customization with hotkey

  6. #36
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JohnWick View Post
    is it possible to make "Customized" method switchable "on / off" with "keyEvent" ?

    i want to be able to change customization with hotkey
    I'm not sure if I understand what you mean.

    Put the code in the first line
    Code:
    using SharpDX.DirectInput;
    And then you can customization the hotkey like the following
    Code:
    Hud.GetPlugin<BountyTablePlugin>().ToggleKeyEvent = Hud.Input.CreateKeyEvent(true, Key.F10, false, false, false);

  7. #37
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    I'm not sure if I understand what you mean.

    Put the code in the first line
    Code:
    using SharpDX.DirectInput;
    And then you can customization the hotkey like the following
    Code:
    Hud.GetPlugin<BountyTablePlugin>().ToggleKeyEvent = Hud.Input.CreateKeyEvent(true, Key.F10, false, false, false);

    i want to toggle on / off

    RevealConfigurationExamplePlugin.cs

    with hotkey

  8. #38
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JohnWick View Post
    i want to toggle on / off

    RevealConfigurationExamplePlugin.cs

    with hotkey
    I think the current version may not be able to achieve your idea.:gusta:
    SceneReveal is a hard coded plugin

  9. #39
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    I think the current version may not be able to achieve your idea.:gusta:
    SceneReveal is a hard coded plugin
    sad

    thank you for response

  10. #40
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JohnWick View Post
    sad

    thank you for response
    Sorry, i tottally forgot this request... shame on me..

    That's pretty easy to do :
    Copy That to /plugins/Jack/MinimapTogglerPlugin.cs
    PHP Code:
    using System;
    using Turbo.Plugins.Default;

    namespace 
    Turbo.Plugins.Jack
    {
        public class 
    MinimapTogglerPlugin BasePluginIKeyEventHandler
        
    {
            public 
    SharpDX.DirectInput.Key Key getset; }

            public 
    MinimapTogglerPlugin()
            {
                
    Enabled true;

                
    Key SharpDX.DirectInput.Key.K;
            }

            public 
    void OnKeyEvent(IKeyEvent keyEvent)
            {
                if (
    keyEvent.Key == Key && !keyEvent.IsPressed)
                {
                    
    Hud.SceneReveal.MinimapClip = !Hud.SceneReveal.MinimapClip;
                }
            }
        }

    Hide the Rum! --> Default theme customization 101 <--

  11. Thanks SeaDragon, JohnWick (2 members gave Thanks to JackCeparou for this useful post)
  12. #41
    JohnWick's Avatar Member
    Reputation
    12
    Join Date
    Mar 2017
    Posts
    102
    Thanks G/R
    82/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Sorry, i tottally forgot this request... shame on me..

    That's pretty easy to do :
    Copy That to /plugins/Jack/MinimapTogglerPlugin.cs
    PHP Code:
    using System;
    using Turbo.Plugins.Default;

    namespace 
    Turbo.Plugins.Jack
    {
        public class 
    MinimapTogglerPlugin BasePluginIKeyEventHandler
        
    {
            public 
    SharpDX.DirectInput.Key Key getset; }

            public 
    MinimapTogglerPlugin()
            {
                
    Enabled true;

                
    Key SharpDX.DirectInput.Key.K;
            }

            public 
    void OnKeyEvent(IKeyEvent keyEvent)
            {
                if (
    keyEvent.Key == Key && !keyEvent.IsPressed)
                {
                    
    Hud.SceneReveal.MinimapClip = !Hud.SceneReveal.MinimapClip;
                }
            }
        }

    Thank you very much, Jack !

  13. #42
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JohnWick View Post
    Thank you very much, Jack !
    You are welcome, and this gave me an incentive to give birth to a new little plugin ;p
    Hide the Rum! --> Default theme customization 101 <--

  14. #43
    Madara_55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi! How do I change the colors of the buttons in the plugin of the AttributeLabelListPlugin to the colors I need? for example make the button of the Attack speed red

  15. #44
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Madara_55 View Post
    Hi! How do I change the colors of the buttons in the plugin of the AttributeLabelListPlugin to the colors I need? for example make the button of the Attack speed red
    Try this in a customized method :
    PHP Code:
                Hud.RunOnPlugin<AttributeLabelListPlugin>(=>
                {
                    
    p.LabelList.LabelDecorators[5].BackgroundBrush Hud.Render.CreateBrush(255255255 2550); // white
                
    }); 
    Not sure about the '5' value, but try it
    Hide the Rum! --> Default theme customization 101 <--

  16. #45
    Madara_55's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you please more details where to enter it?

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Custom] SnowElf Theme Login & Character Creation! + BONUS
    By Xel in forum World of Warcraft Model Editing
    Replies: 26
    Last Post: 04-23-2017, 04:44 AM
  2. [New/3DS] Custom Paladin 3DS Theme
    By Hazzbazzy in forum World of Warcraft General
    Replies: 0
    Last Post: 08-08-2016, 01:52 AM
  3. [Selling] Wts xbox custom themes
    By Holyinc in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 03-01-2012, 11:14 PM
  4. Custom Computer Build (opinions/comments?)
    By Matt in forum Community Chat
    Replies: 11
    Last Post: 07-23-2006, 12:57 PM
  5. New Custom Model Swapping Fix (1.11 Working)
    By Matt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 06-23-2006, 06:05 PM
All times are GMT -5. The time now is 11:48 PM. 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