Please help me with my Buff probelms menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Sig77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Please help me with my Buff probelms

    First of all

    my english is not good
    I reaaaaly do not know how to change anyting and how this program works
    so please tell me what to change precisely
    Sorry for the bad photo
    alt + c dosen't capture TH overlay (only diablo)
    I tried to put in a full screenshot but the size was too big

    1.jpg
    2.jpg
    Please help me with my Buff probelms-3-jpg


    I am using minimalize plugin ( I dont think that has anything to do with my problem but just in case)
    I only changed the parts below from the PlayerBottomBuffListPlugin.cs
    I found the buff numbers using [V9.0] [ENG] [RNN] MyBuffs

    RuleCalculator.Rules.Add(new BuffRule(134872) { IconIndex = null, MinimumIconCount = 1, ShowStacks = true, ShowStacks = true, ShowTimeLeft = true }); // Arcon
    RuleCalculator.Rules.Add(new BuffRule(430674) { IconIndex = 1, MinimumIconCount = 1, ShowTimeLeft = true }); // COE
    RuleCalculator.Rules.Add(new BuffRule(208823) { IconIndex = 2, MinimumIconCount = 1, ShowStacks = true }); // Arcane_dynamo_stacks

    The problem is
    I see 2 arcon buff icons(I only want to see one...In double arcon stacks I see 4 icons)
    the coe icon only shows up in arcane (I would like to see the coe always)
    I can't see the arcane dynamo stacks icon

    Thank you for reading

    Please help me with my Buff probelms
  2. #2
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    plugin.RuleCalculator.Rules.Add(new BuffRule(134872) { IconIndex = 5, MinimumIconCount = 1, ShowStacks = true, ShowTimeLeft = true }); // stacks
    plugin.RuleCalculator.Rules.Add(new BuffRule(134872) { IconIndex = 2, MinimumIconCount = 1, ShowStacks = true }); // stacks
    plugin.RuleCalculator.Rules.Add(new BuffRule(430674) { IconIndex = null, MinimumIconCount = 1, ShowTimeLeft = true }); // COE

  3. #3
    Sig77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thankyou !!

    It works very well

    just one more thing

    right now coe is in the middle if I don't use any skills
    but if I use arcon the coe buff move to the right a bit
    like ↓

    only coe: @@@@@@@@coe@@@@@@@@@@
    arcon and coe: @@@arcon coe@@@@@@@@@

    I might add new buffs in the future so i'd like to fix the position
    is there a way to fix the coe icon to be in the center always?

  4. #4
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    No, you will have to search for a specific plugin for the coe.
    There they are displayed according to the order of the rules (place the Coe rule at the beginning or end and you will locate it better)

  5. #5
    Sig77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    No, you will have to search for a specific plugin for the coe.
    There they are displayed according to the order of the rules (place the Coe rule at the beginning or end and you will locate it better)

    oh I see, thanks

  6. #6
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    The other time I responded quickly and maybe something was not clear.

    134872
    IconIndex = 5 -> Old stacks, from a previous archon.
    IconIndex = 2 -> Stacks of the current archon.

    (when you become archon the first time, the stacks are stored in index 2, and when the archon ends they move to index 5)

    430674
    IconIndex = null -> If I'm not mistaken, it is used to draw all indexes that have an associated texture, not a specific index. For Coe it works fine, but with the archon he will draw two icons
    Last edited by RNN; 12-24-2019 at 08:49 AM.

  7. #7
    Sig77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I kinda get the feeling

    just one more thing
    Is it possible to put a cooldown icon next to the buffs?
    I'd like to use [Gigi] PartyBuffPlugin but I dont know where to put the codes in...( if i knew where to put the codes in..I think I could make it myself looking at the example code)
    dia...uffplugin.html

    I tried to change this ↓ by deleting the calsses I dont need and putting cooldowns I want but it dosent work at all...
    https://www.ownedcore.com/forums/dia...-downtime.html

    Thanks ~

  8. #8
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,043
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    Cooldowns are for skills, not for buffs.
    Skills can result in one or more buffs and a buff does not have to be related to a skill
    In summary, the Gigi plugin is not designed to show possible cooldowns and it is easier to make a specific plugin to show specific buffs (+ possible cooldowns) than to modify that plugin to get it.

  9. #9
    Sig77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont know how to make cooldown icons
    I tried to search in forums but could only find gigi's cooldown
    people just write codes but idk where to put them

Similar Threads

  1. Queue in AB or WSG with deserter buff on
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 04-07-2006, 07:28 AM
  2. No deserter buff for Holy Priests
    By Matt in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 04-06-2006, 10:53 AM
  3. Sunfruit STACKS for insane Strength Buff
    By Matt in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 04-02-2006, 03:12 AM
  4. AFK Out of BG without deserter buff
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 03-29-2006, 09:51 AM
  5. Getting into BG with that pesky deserters buff!
    By janzi9 in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 03-06-2006, 11:35 PM
All times are GMT -5. The time now is 09:41 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