[ENG] RG Skill Cool Down menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 51
  1. #16
    WRG's Avatar Member
    Reputation
    2
    Join Date
    Jun 2019
    Posts
    9
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    you mean all the plugins, setting of myself?
    Yea, like a compressed file with all of the plugins you use and their settings. I'd like to get more out of Hud than just what the default features but I know nothing about customization when it comes to most of these plugins and you are clearly more knowledgeable than I am.

    [ENG] RG Skill Cool Down
  2. #17
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Hey s4, your plugin is helping me so much, but I noticed it has a problem with a specific boss, the Cooldowns for BLIGHTER are not being showed up, none of them, it has Plagued Line, PlagueStorm, and some others. Could you please take a look ?

  3. #18
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    Hey s4, your plugin is helping me so much, but I noticed it has a problem with a specific boss, the Cooldowns for BLIGHTER are not being showed up, none of them, it has Plagued Line, PlagueStorm, and some others. Could you please take a look ?
    The data is from evan6944, unless he or you provide an updated data, no new skill will be added

  4. #19
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    The data is from evan6944, unless he or you provide an updated data, no new skill will be added
    I found this:
    //Blighter
    plugin.WarmingMessage.Add(AnimSnoEnum._creepmob_attack_04_in, "Plagued Line");
    plugin.WarmingMessage.Add(AnimSnoEnum._creepmob_generic_cast, "Poison Nova");
    plugin.WarmingMessage.Add(AnimSnoEnum._creepmob_attack_01, "Smack");
    plugin.WarmingMessage.Add(AnimSnoEnum._creepmob_attack_04_middle, "Plaguestorm");
    but dont know how to add the bar and cooldown timer. Thanks for your attention.

    Added this to code, gonna test it further later.

    // Blighter
    //Good Skills
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_middle), new DAV_BossSkill("Blighter", "PlagueStorm", 1f, 5, "Stun for Krysbins", "> Procs 5 ticks of thorns per pool @ 100%/tick"));
    // Normal Skills
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_in), new DAV_BossSkill("Blighter", "Plagued Line", 1f, 5));
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_generic_cast), new DAV_BossSkill("Blighter", "Poison Nova", 1f, 15, "", "> Unlocks at 50% HP"));
    Last edited by Saico; 09-26-2019 at 09:21 PM.

  5. #20
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    give me the follow data & I will code for you
    the AnimSnoEnum, skill name, skill ready when at RG x% life, CD of the skill, shot desc (optional), hide desc (optional)

  6. #21
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    give me the follow data & I will code for you
    the AnimSnoEnum, skill name, skill ready when at RG x% life, CD of the skill, shot desc (optional), hide desc (optional)
    //Blighter
    AnimSnoEnum._creepmob_attack_04_in //Plagued Line, CD 5
    AnimSnoEnum._creepmob_generic_cast //Poison Nova, CD 5-10 sec
    AnimSnoEnum._creepmob_attack_04_middle //PlagueStorm CD 10 sec

    (AnimSnoEnum, SkillName, CoolDown) Dont know what Shot Desc and Hide Desc are exactly.

    Found these info, if you could code it into your plugin would help so much, I can improve timers and text later with further testing in this boss.

    Ps: Foun this Sheet that have this info, idk if it helps. > Screenshot_1.png

  7. #22
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    skill for blighter
    Code:
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_in), new DAV_BossSkill("Blighter", "Plagued Line", 1f, 5));
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_generic_cast), new DAV_BossSkill("Blighter", "Poison Nova", 1f, 5));
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_middle), new DAV_BossSkill("Blighter", "Plague Storm", 0.5f, 10));

  8. Thanks iThinkiWin (1 members gave Thanks to s4000 for this useful post)
  9. #23
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    skill for blighter
    Code:
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_in), new DAV_BossSkill("Blighter", "Plagued Line", 1f, 5));
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_generic_cast), new DAV_BossSkill("Blighter", "Poison Nova", 1f, 5));
    BossSkill_List.Add(new DAV_KeyAnime("Blighter", AnimSnoEnum._creepmob_attack_04_middle), new DAV_BossSkill("Blighter", "Plague Storm", 0.5f, 10));
    Thank you, gonna test it later.

    Is there a way to have the plugin to work out of GR ? I would like to test it in some rifts and found no Custom Code or bool about it.
    Last edited by Saico; 09-28-2019 at 08:28 AM.

  10. #24
    BeeAntOS's Avatar Active Member
    Reputation
    30
    Join Date
    Oct 2017
    Posts
    119
    Thanks G/R
    239/28
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    Is there a way to have the plugin to work out of GR ? I would like to test it in some rifts and found no Custom Code or bool about it.
    You can temporarily disable the line 219 & 220
    Code:
            if (Hud.Game.SpecialArea != SpecialArea.GreaterRift) return ;
            if (Hud.Game.RiftPercentage < 100) return;
    "When you reach the top, get ready to drop!"

  11. #25
    lordvane's Avatar Member
    Reputation
    1
    Join Date
    Aug 2019
    Posts
    20
    Thanks G/R
    9/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    //Orlash
    plugin.WarmingMessage.Add(AnimSnoEnum._terrordemon_attack_firebreath, "Lightning Breath");
    plugin.WarmingMessage.Add(AnimSnoEnum._terrordemon_attack_01, "Smack");
    plugin.WarmingMessage.Add(AnimSnoEnum._terrordemon_generic_cast, "Summoning");
    Is there any way to add Orlash's skills to this, or are we still missing the cooldown times? I couldn't find that info.

  12. #26
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lordvane View Post
    Is there any way to add Orlash's skills to this, or are we still missing the cooldown times? I couldn't find that info.
    evan's comment: skills on cooldowns in a difficult pattern
    so current no data for orlash

  13. Thanks lordvane (1 members gave Thanks to s4000 for this useful post)
  14. #27
    s4000's Avatar Contributor
    Reputation
    285
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/272
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    v1.1
    - add zhTW language, for those need english one, delete the chinese and the /* & */ at the begin & end of the english
    - Fuck you hacked thud, steal my plugin & encrypt for money

  15. #28
    iThinkiWin's Avatar Active Member
    Reputation
    28
    Join Date
    Oct 2018
    Posts
    104
    Thanks G/R
    25/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    BossActor_List.Add(new DAV_KeyActor("Agnidox", ActorSnoEnum._diablo_expandingfire_projectile), new DAV_BossSkill("Agnidox", "Flame Nova", 0.5f, 30, "", "> Unlocks at 50% HP"));

  16. #29
    nkyp's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    17
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ............
    Last edited by nkyp; 11-08-2019 at 04:22 AM.

  17. #30
    lordmessias's Avatar Member
    Reputation
    1
    Join Date
    Oct 2019
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i didnt get how i can put this in english.. tried to delet the chinese but it didnt work..


    + NVM, i was being a potato.
    Last edited by lordmessias; 11-09-2019 at 08:05 AM.

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 07-31-2018, 05:33 PM
  2. Reset all cool downs for Brawlers fights
    By drm420 in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 03-21-2014, 05:32 PM
  3. [New] Reset Random Dungeoun Q Cool Down
    By godmodeon in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 10-05-2011, 09:51 AM
  4. [server restart] How to make the cool down on your hearth stone low
    By ~Jagris in forum World of Warcraft Exploits
    Replies: 22
    Last Post: 06-09-2009, 11:54 AM
  5. No global cool down on Curse of Agony (maybe other instant casts to)
    By ~Jagris in forum World of Warcraft Exploits
    Replies: 51
    Last Post: 07-18-2008, 11:03 AM
All times are GMT -5. The time now is 02:34 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