[ENGLISH] [Gigi] EliteBarPlugin menu

User Tag List

Page 3 of 15 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 221
  1. #31
    flyingst's Avatar Member
    Reputation
    2
    Join Date
    Apr 2017
    Posts
    17
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I put the .cs file into plugins\Gigi

    now do I need to do anything with PluginEnablerOrDisablerPlugin.txt in user folder?

    [ENGLISH] [Gigi] EliteBarPlugin
  2. #32
    GFuryan's Avatar Member
    Reputation
    2
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome plugin. I have one request though, I've enable the ShowHitBox on boss but I'd also like to show hit boxes on all elites (Rares/Champs too). I'd prefer to run just this plugin versus having to load a completely separate plugin to show elite hit boxes....Thoughts?

  3. #33
    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 GFuryan View Post
    Awesome plugin. I have one request though, I've enable the ShowHitBox on boss but I'd also like to show hit boxes on all elites (Rares/Champs too). I'd prefer to run just this plugin versus having to load a completely separate plugin to show elite hit boxes....Thoughts?
    No plans to add this to the plugin. You'll have to have a seperate plugin for that.

    Originally Posted by flyingst View Post
    I put the .cs file into plugins\Gigi

    now do I need to do anything with PluginEnablerOrDisablerPlugin.txt in user folder?
    No, you are done. Only if you want to deactivate one of the features you'll need to do it from your own user customization.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  4. #34
    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 Skrip078 View Post
    Attachment 51586

    Would recommend small change
    That is exactly why the customization on position is there.
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  5. #35
    JuicyCool26's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    6
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where should I add this code in EliteBarPlugin.cs ??

    thx for answer.

  6. #36
    JuicyCool26's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    6
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by d3gigi View Post
    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!"); 


    Where should I add this code in EliteBarPlugin.cs ??

  7. #37
    patricos's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    8
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JuicyCool26 View Post
    Where should I add this code in EliteBarPlugin.cs ??
    file "PluginEnablerOrDisablerPlugin.cs"
    inside "public void Customize(){"
    Code:
    Hud.RunOnPlugin<Gigi.EliteBarPlugin>(plugin => 
    { 
    plugin.DisplayAffix.Add(MonsterAffix.Frozen, "IceIceBaby!"); 
    plugin.DisplayAffix.Add(MonsterAffix.Wormhole, "Wormwhore!"); 
    plugin.DisplayAffix.Add(MonsterAffix.Illusionist, "LetsRemake!");  
    });

  8. #38
    Straken's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    2
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not sure what these errors mean exactly, new to this unfortunately. Sorry if its a stupid easy fix.

    2017.04.27 05:52:01.637 error while initializing plugins
    2017.04.27 05:52:01.638 e:\Games\Turbohud\plugins\Gigi\EliteBarPlugin.cs(7,34) : error CS1514: { expected
    2017.04.27 05:52:01.639 e:\Games\Turbohud\plugins\Gigi\EliteBarPlugin.cs(7,44) : error CS1519: Invalid token ',' in class, struct, or interface member declaration
    2017.04.27 05:52:01.639 e:\Games\Turbohud\plugins\Gigi\EliteBarPlugin.cs(8,5) : error CS1519: Invalid token '{' in class, struct, or interface member declaration
    2017.04.27 05:52:01.639 e:\Games\Turbohud\plugins\Gigi\EliteBarPlugin.cs(32,38 ) : error CS1519: Invalid token ',' in class, struct, or interface member declaration

  9. #39
    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)
    paste the content of the EliteBarPlugin.cs from the first post again to the file on your PC (e:\Games\Turbohud\plugins\Gigi\EliteBarPlugin.cs) looks like there's something messed up, the error states that on line 7 there is a bracket "{" missing.
    Wanna customize THUD the easy way? Check out
    ..:: TCT | TurboHUD Customization Tool ::..
    in the TurboHUD Plugin Review Zone

  10. Thanks Straken (1 members gave Thanks to RealGsus for this useful post)
  11. #40
    Straken's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    2
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks RealGsus looks like it was actually missing a :
    I tried to duplicate how I managed to copy/paste or download it without that but no luck.

  12. #41
    gjuz's Avatar Contributor
    Reputation
    121
    Join Date
    Mar 2017
    Posts
    228
    Thanks G/R
    49/118
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    so your problem is fixed??
    if not, post your lines which causes the errors and the code around it.


    greetz gjuz

  13. #42
    moiiom050579's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted...
    Last edited by moiiom050579; 05-01-2017 at 07:03 AM.

  14. #43
    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 moiiom050579 View Post
    deleted...
    What are you talking about ?
    I won't give any support (or answer requests) via private messaging. Ask your questions about a plugin within its thread!

  15. #44
    Lumen361's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a dumb question, how do I get the cs file??? Where can i download it??? Never installed a plugin so far but this one seems to be really helpful

  16. #45
    moiiom050579's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here : plugins/EliteBarPlugin.cs at master * d3gigi/plugins * GitHub

    right click on the "raw" button and save linked as

    after put it in "yourTHUDfolder\plugins\Gigi"

Page 3 of 15 FirstFirst 1234567 ... 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 10:40 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