[ENGLISH] [Gigi] EliteBarPlugin menu

User Tag List

Page 1 of 15 12345 ... LastLast
Results 1 to 15 of 221
  1. #1
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [ENGLISH] [Gigi] EliteBarPlugin

    [ENGLISH] [Gigi] EliteBarPlugin-bvuxdfi-png

    Example Customization:

    PHP Code:
    Hud.RunOnPlugin<Gigi.EliteBarPlugin>(plugin =>
    {
        
    //Colors and Fonts
        
    plugin.BossBrush Hud.Render.CreateBrush(2551251201200);   //different boss BossBrush
        
    plugin.NameFont Hud.Render.CreateFont("tahoma"6f20025500falsefalsetrue); //different MonsterType Font
        
        //Display Options
        
    plugin.JuggernautHighlight false;                                 //disable red jugger JuggernautHighlight
        
    plugin.CircleNonIllusion false;                                   //disable non-clone detection
        
    plugin.MissingHighlight false;                                    //disable notification for missing blues
        
    plugin.ShowRareMinions false;                                     //disable rare minions in list
        
    plugin.ShowDebuffAndCC false;                                     //disable debuff and cc in list
        
    plugin.ShowMonsterType false;                                     //disable monstertype in healtbar
        
    plugin.ShowBossHitBox false;                                      //disable hitbox on bosses
        
    plugin.PercentageDescriptor "0.0";                                //Change %-Numbers to X.X%
        
    foreach(MonsterAffix afx in Enum.GetValues(typeof(MonsterAffix)))   
            
    plugin.DisplayAffix.Add(afxafx.ToString("G"));                //set affix string for each affix you want to be displayed 

        //Position and Scaling
        
    plugin.XPos Hud.Window.Size.Width 0.125f;                       //move elitebar to XPos
        
    plugin.YPos Hud.Window.Size.Height 0.0333f;                     //move elitebar to YPos
        
    plugin.XScaling 0.8f;                                             //shrink XScaling (width) of elitebar to 80%
        
    plugin.YScaling 1.05f;                                            //stretch YScaling (height) of elitebar by 5% (hint: alignment doesn't adapat!)
    }); 
    Changelog:
    • v2.0: recommited to ownedcore



    Source: \plugins\Gigi\EliteBarPlugin.cs
    Last edited by d3gigi; 03-26-2017 at 01:25 PM. Reason: fixed typo

    [ENGLISH] [Gigi] EliteBarPlugin
  2. #2
    MrOne's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2017
    Posts
    322
    Thanks G/R
    66/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    Have little problem with this plugin:
    2017.03.26 18:50:31.214 Change.cs(80,13) : warning CS0162: Unreachable code detected.
    2017.03.26 18:50:31.214 Change.cs(80,33) : error CS0103: The name "Enum" does not exist in the current context.

    line 80 my file:
    80: foreach(MonsterAffix afx in Enum.GetValues(typeof(MonsterAffix)))
    81: plugin.DisplayAffix.Add(afx, afx.ToString("G")); //set affix string for each affix you want to be displayed

    When i comment this two lines exception gone

  3. #3
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrOne View Post
    Hi,

    Have little problem with this plugin:
    2017.03.26 18:50:31.214 Change.cs(80,13) : warning CS0162: Unreachable code detected.
    2017.03.26 18:50:31.214 Change.cs(80,33) : error CS0103: The name "Enum" does not exist in the current context.

    line 80 my file:
    80: foreach(MonsterAffix afx in Enum.GetValues(typeof(MonsterAffix)))
    81: plugin.DisplayAffix.Add(afx, afx.ToString("G")); //set affix string for each affix you want to be displayed

    When i comment this two lines exception gone
    The problem is not in the plugin - it's your customization file. You are missing a directive in your customization file, because you blindly copied & pasted the example configuration without running it through an IDE first or chechking in before usage.

    Either add each affix you want to be displayed by hand with a descriptor of your choice or use the correct directive to be able to make use of the name "Enum".
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  4. #4
    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)
    Well, you have issue configuring it, not with the plugin itself.

    Add a 'using System;' in your Change.cs file ; )
    Last edited by JackCeparou; 03-26-2017 at 12:16 PM. Reason: typo
    Hide the Rum! --> Default theme customization 101 <--

  5. #5
    DaBear78's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    I don't get it... I have put the plugin to \plugins\Gigi\EliteBarPlugin.cs and started the game + TurboHUD. Should I already see the plugin if there are elites around, or is there anything I have to do before it appears? All other plugins I tried seemed to work, but I don't see any bars from your plugin. Please help me.

  6. #6
    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)
    Just retested it, works here.

    or is there anything I have to do before it appears?
    Nope, it should work out of the box.

    Dumb question but : have you copy/pasted the code block or the code inside the external link ?
    Hide the Rum! --> Default theme customization 101 <--

  7. #7
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DaBear78 View Post
    Hi,

    I don't get it... I have put the plugin to \plugins\Gigi\EliteBarPlugin.cs and started the game + TurboHUD. Should I already see the plugin if there are elites around, or is there anything I have to do before it appears? All other plugins I tried seemed to work, but I don't see any bars from your plugin. Please help me.
    It should work out of the box - same way as any other plugin. Make sure you copied the correct file - as Jack mentioned. If you are certain you copied the correct files, post your logs for plugins.txt and exceptions.txt for one startup of thud.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  8. #8
    Vern1701's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    316
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can @RealGsus use this for his tool? It would be a good addition, I feel.

  9. #9
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vern1701 View Post
    Can @RealGsus use this for his tool? It would be a good addition, I feel.
    He has my blessings.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  10. Thanks bobbydigital12 (1 members gave Thanks to d3gigi for this useful post)
  11. #10
    RealGsus's Avatar Contributor
    Reputation
    104
    Join Date
    Mar 2017
    Posts
    114
    Thanks G/R
    85/99
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's already on my ToDo list
    Wanna customize THUD the easy way? Check out
    ..:: TCT | TurboHUD Customization Tool ::..
    in the TurboHUD Plugin Review Zone

  12. #11
    blackpc's Avatar Member
    Reputation
    4
    Join Date
    Jul 2014
    Posts
    48
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    someone upload the file please?? i cant seem to get this to work.

    edit: nevermind sorry got it working. had to change gibi to default
    Last edited by blackpc; 03-27-2017 at 03:38 PM.

  13. #12
    d3gigi's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    55
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blackpc View Post
    someone upload the file please?? i cant seem to get this to work.
    No worries man. I can see how this can be troublesome for a few people. This should point you into the right direction:



    Originally Posted by blackpc View Post
    edit: nevermind sorry got it working. had to change gibi to default
    Default is not the correct folder. Once again: The screenshot will point you towards the correct direction (where to put the file). It's my nickname: Gigi
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  14. #13
    blackpc's Avatar Member
    Reputation
    4
    Join Date
    Jul 2014
    Posts
    48
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by d3gigi View Post
    No worries man. I can see how this can be troublesome for a few people. This should point you into the right direction:

    Default is not the correct folder. Once again: The screenshot will point you towards the correct direction (where to put the file). It's my nickname: Gigi
    sorry, i knew that was the link for it, what i ment was "namespace Turbo.Plugins.Default" is what i had to change for it too work for me.

  15. #14
    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)
    Originally Posted by RealGsus View Post
    It's already on my ToDo list
    Yes RealGsus, because there are people like me who are clueless from customizing with codes and this is very very helpful plugin.

  16. #15
    Csavo's Avatar Active Member
    Reputation
    30
    Join Date
    Mar 2017
    Posts
    121
    Thanks G/R
    17/29
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blackpc View Post
    sorry, i knew that was the link for it, what i ment was "namespace Turbo.Plugins.Default" is what i had to change for it too work for me.
    blackpc, my son! what gigi, and all of us are trying to tell you is to NOT put your plugins into \plugins\User folder. Put them in a new folder in plugins named "Gigi" in this case (just like the download link writes \plugins\Gigi\EliteBarPlugin.cs

Page 1 of 15 12345 ... LastLast

Similar Threads

  1. [v7.2] [ENGLISH] [Gigi] RiftTrackerPlugin
    By d3gigi in forum TurboHUD Community Plugins
    Replies: 13
    Last Post: 04-07-2017, 06:29 AM
  2. [Guide] Proper English Language
    By aggiish in forum Community Chat
    Replies: 31
    Last Post: 02-04-2008, 02:29 PM
  3. Omg,Funniest Thing I ever saw!!! ENGLISH PWNED!!!!
    By anmer in forum Screenshot & Video Showoff
    Replies: 10
    Last Post: 11-12-2007, 10:15 AM
  4. Chinese Names in English WoW
    By pandaman in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 08-12-2006, 05:40 AM
All times are GMT -5. The time now is 06:35 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