[ENGLISH] [Gigi] EliteBarPlugin menu

User Tag List

Page 2 of 15 FirstFirst 123456 ... LastLast
Results 16 to 30 of 221
  1. #16
    freak000's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    2
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey... thank u for the nice plugin.

    i dont see the monsteraffix above the the monsterbox.
    whats wrong?

    thank u for ur answer

    [ENGLISH] [Gigi] EliteBarPlugin
  2. #17
    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 freak000 View Post
    hey... thank u for the nice plugin.

    i dont see the monsteraffix above the the monsterbox.
    whats wrong?

    thank u for ur answer
    You have to set the displays you want to have for an affix via a customization. Either use the example to see them all

    PHP Code:
        foreach(MonsterAffix afx in Enum.GetValues(typeof(MonsterAffix)))    
            
    plugin.DisplayAffix.Add(afxafx.ToString("G")); 
    or do them by hand

    PHP Code:
        plugin.DisplayAffix.Add(MonsterAffix.Frozen"IceIceBaby!");
        
    plugin.DisplayAffix.Add(MonsterAffix.Wormhole"Wormwhore!");
        
    plugin.DisplayAffix.Add(MonsterAffix.Illusionist"LetsRemake!"); 
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  3. Thanks freak000 (1 members gave Thanks to d3gigi for this useful post)
  4. #18
    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 Csavo View Post
    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
    whoops.. next time i'll put it in the proper place. thanks

  5. #19
    dinzorama's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello!

    Having some issues making a customization file that works.
    I have made a file called change.cs in the same folder as the EliteBarPlugin.cs file.

    My change.cs file contains the following: using System.Linq; using System.Collections.Generic; using Turbo.Plugins.Defau - Pastebin.com

    I was wondering if anyone can see where I went wrong with the code? Also, which items must a customization file always contain?

    Is it possible to change so only Haunt and Locust swarm in a larger font with a different color?

    Thanks in advance

  6. #20
    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 dinzorama View Post
    I have made a file called change.cs in the same folder as the EliteBarPlugin.cs file.

    My change.cs file contains the following: using System.Linq; using System.Collections.Generic; using Turbo.Plugins.Defau - Pastebin.com

    I was wondering if anyone can see where I went wrong with the code? Also, which items must a customization file always contain?
    Take a look at : Default theme customization 101
    There is an example within the default EnablerDisabler, you will easily see what's missing in your file.
    Last edited by JackCeparou; 03-29-2017 at 06:36 AM.
    Hide the Rum! --> Default theme customization 101 <--

  7. #21
    dinzorama's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Take a look at : Default theme customization 101
    There is an example within the default EnablerDisabler, you will easily see what's missing in your file.
    Been at it for an hour now, trying everything and still unable to make it work.

    // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // *.txt files - Pastebin.com

    This is what I have. Getting a lot of exceptions.

    Am I over doing it? I don't have any knowledge of coding, nor how the functions work. So really hard to see what I am doing wrong.

  8. #22
    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 dinzorama View Post
    So really hard to see what I am doing wrong.
    Many things ;p

    Put this pastebin inside /plugins/user/EliteBarConfig.cs
    Hide the Rum! --> Default theme customization 101 <--

  9. Thanks Wasted74, Craze10 (2 members gave Thanks to JackCeparou for this useful post)
  10. #23
    dinzorama's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Many things ;p

    Put this pastebin inside /plugins/user/EliteBarConfig.cs
    Thanks alot. I see what i did wrong now. 👍

    So about the other issue. Is it possible to have Haunt and Locust swarm in a bigger font and different color?
    Judging by looking at the main file it should be possible, just not sure how i should transfer it to the config file..

  11. #24
    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 dinzorama View Post
    Judging by looking at the main file it should be possible, just not sure how i should transfer it to the config file..
    Afaik there is only one font and the text is drawn in once.
    Possible to change the font, but not only for those two debuffs.
    Hide the Rum! --> Default theme customization 101 <--

  12. #25
    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 dinzorama View Post
    Thanks alot. I see what i did wrong now. ��

    So about the other issue. Is it possible to have Haunt and Locust swarm in a bigger font and different color?
    Judging by looking at the main file it should be possible, just not sure how i should transfer it to the config file..
    It's not possible via a customization. You'd have to fork the plugin and maintain your own version to have the functionality I won't add "build/meta-specific"functionality to the plugin as a default option - this is supposed to be a generic plugin providing healthbars that is not specific to a meta/build.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  13. #26
    everknown's Avatar Active Member
    Reputation
    17
    Join Date
    Jun 2012
    Posts
    121
    Thanks G/R
    33/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey D3Gigi,

    Upon encountering The Choker GR Boss, the HP bar on the display box went all the way to maximum width of screensize. Don't think this is suppose to happen?
    i saw the hp bar (plugin) says 48xx % HP instead of 100%.#

    Edit: On the second time i encounter The Choker, i didn't see this bug again. Weird...
    Last edited by everknown; 03-29-2017 at 03:43 PM.

  14. #27
    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 everknown View Post
    Hey D3Gigi,

    Upon encountering The Choker GR Boss, the HP bar on the display box went all the way to maximum width of screensize. Don't think this is suppose to happen?
    i saw the hp bar (plugin) says 48xx % HP instead of 100%.
    Hey man, ty for reporting. I'll add it to my observation list. Next time you encounter sth like this: Please make sure to make a screenshot.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  15. #28
    everknown's Avatar Active Member
    Reputation
    17
    Join Date
    Jun 2012
    Posts
    121
    Thanks G/R
    33/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey D3Gigi, Apparently SeaDragon also encountered this. This is the exact same thing that happened when i encountered one. HP beyond 100% and the Bar is also max width of screen size.
    Monster maxhealthy occasionally abnormal

    But now i'm wondering if it's actually the plugin itself or hud files that have this issue.

  16. #29
    Skrip078's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [ENGLISH] [Gigi] EliteBarPlugin-untitled-gif

    Would recommend small change

  17. #30
    Stormreaver's Avatar Contributor
    Reputation
    152
    Join Date
    Jul 2012
    Posts
    290
    Thanks G/R
    40/136
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Love this plugin. But I did I move it to the right as well because it overlaps pets.

Page 2 of 15 FirstFirst 123456 ... 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 07:08 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