[ENG] Elite Info menu

User Tag List

Page 3 of 6 FirstFirst 123456 LastLast
Results 31 to 45 of 84
  1. #31
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by takayo72 View Post
    sometimes i saw an exclamation mark on the elite info bar
    what is that mark meaning of ?

    Attachment 68755
    It means the elite is not in screen (within hud detection range)

    [ENG] Elite Info
  2. #32
    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 takayo72 View Post
    sometimes i saw an exclamation mark on the elite info bar
    what is that mark meaning of ?

    Attachment 68755
    That means that the elite is "missing" from your screen. You can see other elites that are part of that group but that particular one is off screen somewhere nearby.

  3. #33
    bizte's Avatar Member
    Reputation
    1
    Join Date
    Sep 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi, awsone plugins S400..thanks for that!

    is there any chance to have bane of the stricken stacks on boss?

    have the 2 plugins but they dont work.

  4. #34
    juergenfunke's Avatar Member
    Reputation
    1
    Join Date
    Oct 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    we i can installed the plugin?

  5. #35
    rogue00722's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    45
    Thanks G/R
    22/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How can you showRareMinions ?

    i want show RareMinions

    [ENG] Elite Info-bvuxdfi-png
    Last edited by rogue00722; 12-27-2019 at 02:35 PM.

  6. #36
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rogue00722 View Post
    i want show RareMinions

    [ENG] Elite Info-bvuxdfi-png
    I wont do that

  7. #37
    Gilavar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    67
    Thanks G/R
    17/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi. Is it possible to use textDebuff sting instead of HP % text? I need to see if an elite is under Haunt OR Locust debuff . No need for its HP%. I can see the Health by the top left bar. It is better just write 'Ring of Emptiness' . Cos now either Haunt or Locust proc Ring of Emptiness 300% damage buff.
    Last edited by Gilavar; 03-06-2020 at 06:48 PM.

  8. #38
    rogue00722's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    45
    Thanks G/R
    22/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    summoned by Orlash.
    How do you mark a circle?
    I can't see it on the screen.

    Do you have to revise this part?
    line(96)
    var bosses = Hud.Game.AliveMonsters.Where(m => (m.Rarity == ActorRarity.Boss || m.Rarity == ActorRarity.Unique) && m.SummonerAcdDynamicId == 0);

  9. #39
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rogue00722 View Post
    summoned by Orlash.
    How do you mark a circle?
    I can't see it on the screen.

    Do you have to revise this part?
    line(96)
    var bosses = Hud.Game.AliveMonsters.Where(m => (m.Rarity == ActorRarity.Boss || m.Rarity == ActorRarity.Unique) && m.SummonerAcdDynamicId == 0);
    won't show Orlash clone,
    if you want to show that , delete the following code
    && m.SummonerAcdDynamicId == 0

  10. #40
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gilavar View Post
    Hi. Is it possible to use textDebuff sting instead of HP % text? I need to see if an elite is under Haunt OR Locust debuff . No need for its HP%. I can see the Health by the top left bar. It is better just write 'Ring of Emptiness' . Cos now either Haunt or Locust proc Ring of Emptiness 300% damage buff.
    no plan to modify that, you can modify the info you need in the following code

    Code:
    if (monster.IsOnScreen){
    				var Mon_X = monster.FloorCoordinate.ToScreenCoordinate().X - barWmon / 2;
    				var Mon_Y = monster.FloorCoordinate.ToScreenCoordinate().Y + barHmon + offset;
    
    				Brush_BG.DrawRectangle(Mon_X, Mon_Y, barWmon, barHmon);
    				Brush_Health.DrawRectangle(Mon_X, Mon_Y, (float) CurPercent * barWmon, barHmon);
    				if (monster.Invulnerable) Brush_Invulnerable.DrawRectangle(Mon_X, Mon_Y, barWmon, barHmon);
    				else Brush_Border.DrawRectangle(Mon_X, Mon_Y, barWmon, barHmon);
    
    				var textLayout2 = Font_Mon.GetTextLayout(HPtext); // modify this line for any text or information you need
    				Font_Mon.DrawText(HPtext, Mon_X + (barWmon - textLayout2.Metrics.Width)/2 , Mon_Y + (barHmon - textLayout2.Metrics.Height)/2);
    			}

  11. #41
    dcac's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    26
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want remove elite circle

    how can I delete circle?

    -----------------------------------------------

    Solved
    Last edited by dcac; 03-07-2020 at 01:05 AM.

  12. #42
    Gilavar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    67
    Thanks G/R
    17/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4000 View Post
    no plan to modify that, you can modify the info you need in the following code
    Yes but how do I get the string line with "Emptiness" text if a monster has Haunt AND/OR Locust on him?

  13. #43
    rogue00722's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    45
    Thanks G/R
    22/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gilavar View Post
    Yes but how do I get the string line with "Emptiness" text if a monster has Haunt AND/OR Locust on him?
    show on the screen

    line(217~

    private string Debuff(IMonster m, bool showDebuff) {
    if (!showDebuff) return "";

    string textDebuff = null;
    if (m.Locust) textDebuff += "Locust";
    if (m.Haunted) textDebuff += (textDebuff == null ? "Haunt" : ", Haunt");
    if (m.Palmed) textDebuff += (textDebuff == null ? "Palm" : ", Palm");

  14. #44
    Gilavar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    67
    Thanks G/R
    17/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I changed the plugin by adding a new function

    Code:
    private string EmptyRing(IMonster m, bool showDebuff) {
    
    			if (!showDebuff) return "";
    		
    			string emptyDebuff = null;
    			if (m.Locust) emptyDebuff += "Locust";
    			if (m.Haunted) emptyDebuff += (emptyDebuff == null ? "Haunt" : ", Haunt");
    			
    			var output = emptyDebuff;
    			return output;
    		}
    and then changing a line :
    Code:
    var textLayout2 = Font_Mon.GetTextLayout(EmptyRing(monster, showDebuff));
    but I get lots of errors when I haunt an elite in game. Before haunting it - there's no errors. Errors are :
    Code:
    2020.03.07 22:42:11.194	20.3.4.1	minimap draw error (System.ArgumentNullException: Value cannot be null.
    Parameter name: key
       at System.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument)
       at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)
       at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue& value)
       at ‎**‬*‎**‎‬**‎*‫​*‬​‎‎​‬**.***‬‪‏​‫‫*‎*‎‫‬*​​*​**‎*(String , Boolean )
       at Turbo.Plugins.User.DAV_EliteInfo.DrawInfo(WorldLayer layer, IMonster monster, Single Pos_X, Single& Pos_Y, Single offset, Boolean showDebuff, Boolean showCurse)
       at Turbo.Plugins.User.DAV_EliteInfoPlugin.PaintWorld(WorldLayer layer)
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.‏‏‏‬*‪*‏‬***‫*****​**‎‫***.​​**​**‎‫*‫‪‎​***​​*‬*‬**‬*()
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.‪*‬‎*‪*‏‫‏**​​‫‪‎*‪‬‫​*‪*(IPlugin , String , Action )
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.**‫​‏‬*‪‫***‬***​‏​‬*‪​‪*(Object , EventArgs )
       at *​*‪‫‎*‏‬‪*‪‏‫‫‪*‬‎**‏***.​****‪‏‫​*‬**‬‏*‪‎*​*‪‪**())
    2020.03.07 22:42:11.195	20.3.4.1	overlay paint error (System.ArgumentNullException: Value cannot be null.
    Parameter name: key
       at System.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument)
       at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)
       at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue& value)
       at ‎**‬*‎**‎‬**‎*‫​*‬​‎‎​‬**.***‬‪‏​‫‫*‎*‎‫‬*​​*​**‎*(String , Boolean )
       at Turbo.Plugins.User.DAV_EliteInfo.DrawInfo(WorldLayer layer, IMonster monster, Single Pos_X, Single& Pos_Y, Single offset, Boolean showDebuff, Boolean showCurse)
       at Turbo.Plugins.User.DAV_EliteInfoPlugin.PaintWorld(WorldLayer layer)
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.**‬*‫‫***‎‬**‏*‫‬‪‫‏‬‏‎*‫**.​​*‎***‪*‬*‏​‫‏*‬****‬**‬‎*‎*()
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.‪*‬‎*‪*‏‫‏**​​‫‪‎*‪‬‫​*‪*(IPlugin , String , Action )
       at *​​**‫‫‪‎*‬‫‏‪*‫‬*‪‪**‎‬*.‫‬*​**‎*‪***​*‏**‎‫‪**‏‬‫​*(Object , EventArgs )
       at *​*‪‫‎*‏‬‪*‪‏‫‫‪*‬‎**‏***.***‬*‬***‪‪*‏‬‪*‏‪*‬‫‬‫*())
    can someone please help to understand what 's wrong with my code?
    Last edited by Gilavar; 03-07-2020 at 01:56 PM.

  15. #45
    s4000's Avatar Contributor
    Reputation
    284
    Join Date
    Oct 2018
    Posts
    489
    Thanks G/R
    18/271
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    not tested,

    var textLayout2 = Font_Mon.GetTextLayout((monster.Locust || monster.Haunted) ? "Emptiness" : "NO Emptiness XXX");

Page 3 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [WTT] Steam Account(Info inside) for Pirox pvpTools lifetime elite
    By andykh in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 2
    Last Post: 12-06-2009, 09:13 AM
  2. [Info] Norwegian Elite DB 5.0 Progress
    By knaur in forum World of Warcraft Emulator Servers
    Replies: 50
    Last Post: 09-10-2008, 03:04 PM
  3. WTT 10-50 Scammed accounts [Full Info] and Elite Glider Key for a 70
    By xIxVoLcOmxIx in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 2
    Last Post: 07-09-2008, 06:37 AM
  4. Collected Naxx info
    By impulse102 in forum World of Warcraft General
    Replies: 1
    Last Post: 06-04-2006, 01:44 AM
  5. Info on taking Ragnaros (And other MC general info)
    By Cush in forum World of Warcraft Guides
    Replies: 4
    Last Post: 05-28-2006, 03:53 AM
All times are GMT -5. The time now is 08:24 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