-
Member
Replace
verb take the place of.
barH = 1080 * 0.012f;
barW = 1920 * 0.09f;
-
Member
Originally Posted by
s4000
very wrong, =.=
change Hud.Window.Size.Width to 1920, Hud.Window.Size.Height to 1080
I really thought I was wrong! I'm just curious! hahaha Now it worked!
XPos = 1920 * 0.2f;
YPos = 1080 * 0.005f;
barH = 1080 * 0.012f;
barW = 1920 * 0.11f;
Thank you very much for the help.
-
Member
XPos = 1920 * 0.2f;
YPos = 1080 * 0.005f;
barH = 1080 * 0.012f;
barW = 1920 * 0.11f;
Work perfectly!
Thank you very much
-
Post Thanks / Like - 1 Thanks
bbrandao85 (1 members gave Thanks to FoxPox for this useful post)
-
Member
You may have the same positioning issue with other plugins, the solution is the same
-
Member
Originally Posted by
ezequiel56
You may have the same positioning issue with other plugins, the solution is the same
Exactly! I fixed several plugins using these entries. I thank the community that even after so long is willing to help!
-
Member
hi, why my elite health bar is not different colors?
-
Contributor
Originally Posted by
FutureNick
hi, why my elite health bar is not different colors?
Any picture?
-
Member
How can I fix this exception ?
2024.03.11 17:53:50.439 24.1.10.2 exception in plugin action: DAV_EliteInfoPlugin.PaintWorld (System.InvalidOperationException: λ°°μ΄μ λ μμλ₯Ό λΉκ΅νμ§ λͺ»νμ΅λλ€. ---> System.Collections.Generic.KeyNotFoundException: μ§μ ν ν€κ° μ¬μ μ μμ΅λλ€.
μμΉ: System.ThrowHelper.ThrowKeyNotFoundException()
μμΉ: System.Collections.Generic.Dictionary`2.get_Item(TKey key)
μμΉ: Turbo.Plugins.DavMonster.DAV_EliteInfoPlugin.<PaintWorld>b__58_6(ISnoMonsterAffi x a, ISnoMonsterAffix b)
μμΉ: System.Collections.Generic.ArraySortHelper`1.InsertionSort(T[] keys, Int32 lo, Int32 hi, IComparer`1 comparer)
μμΉ: System.Collections.Generic.ArraySortHelper`1.IntrospectiveSort(T[] keys, Int32 left, Int32 length, IComparer`1 comparer)
μμΉ: System.Collections.Generic.ArraySortHelper`1.Sort(T[] keys, Int32 index, Int32 length, IComparer`1 comparer)
--- λ΄λΆ μμΈ μ€ν μΆμ μ λ ---
μμΉ: System.Collections.Generic.ArraySortHelper`1.Sort(T[] keys, Int32 index, Int32 length, IComparer`1 comparer)
μμΉ: System.Array.Sort[T](T[] array, Int32 index, Int32 length, IComparer`1 comparer)
μμΉ: System.Collections.Generic.List`1.Sort(Comparison`1 comparison)
μμΉ: Turbo.Plugins.DavMonster.DAV_EliteInfoPlugin.PaintWorld(WorldLayer layer)
μμΉ: β«4β¬.*ββͺ5β3(IPlugin , String , Action ))
in the Greatrift not happen ( no error )
There seems to be an infinite repetition error in the Enmity Portal or field
Last edited by dcac; 03-11-2024 at 05:31 AM.
-
Contributor
Add the new MonsterAffix as follow
DisplayAffix.Add(MonsterAffix.Enervating, new Tuple<int, string, string>(999, "Enervating", "Normal"));
DisplayAffix.Add(MonsterAffix.Necrotic, new Tuple<int, string, string>(999, "Necrotic", "Normal"));
Originally Posted by
dcac
How can I fix this exception ?
2024.03.11 17:53:50.439 24.1.10.2 exception in plugin action: DAV_EliteInfoPlugin.PaintWorld (System.InvalidOperationException: λ°°μ΄μ λ μμλ₯Ό λΉκ΅νμ§ λͺ»νμ΅λλ€. ---> System.Collections.Generic.KeyNotFoundException: μ§μ ν ν€κ° μ¬μ μ μμ΅λλ€.
μμΉ: System.ThrowHelper.ThrowKeyNotFoundException()
μμΉ: System.Collections.Generic.Dictionary`2.get_Item(TKey key)
μμΉ: Turbo.Plugins.DavMonster.DAV_EliteInfoPlugin.<PaintWorld>b__58_6(ISnoMonsterAffi x a, ISnoMonsterAffix b)
μμΉ: System.Collections.Generic.ArraySortHelper`1.InsertionSort(T[] keys, Int32 lo, Int32 hi, IComparer`1 comparer)
μμΉ: System.Collections.Generic.ArraySortHelper`1.IntrospectiveSort(T[] keys, Int32 left, Int32 length, IComparer`1 comparer)
μμΉ: System.Collections.Generic.ArraySortHelper`1.Sort(T[] keys, Int32 index, Int32 length, IComparer`1 comparer)
--- λ΄λΆ μμΈ μ€ν μΆμ μ λ ---
μμΉ: System.Collections.Generic.ArraySortHelper`1.Sort(T[] keys, Int32 index, Int32 length, IComparer`1 comparer)
μμΉ: System.Array.Sort[T](T[] array, Int32 index, Int32 length, IComparer`1 comparer)
μμΉ: System.Collections.Generic.List`1.Sort(Comparison`1 comparison)
μμΉ: Turbo.Plugins.DavMonster.DAV_EliteInfoPlugin.PaintWorld(WorldLayer layer)
μμΉ: β«4β¬.*ββͺ5β3(IPlugin , String , Action ))
in the Greatrift not happen ( no error )
There seems to be an infinite repetition error in the Enmity Portal or field
-
Post Thanks / Like - 1 Thanks
731113 (1 members gave Thanks to s4000 for this useful post)
-
Member
is it possible to disable elite circle, health bar on elite, elite line?
thanks
-
Member
hi S4000. i want to ask. How to increase the size of the rectangular box showing health percentage? I want to make it twice as long as it is now.
Can you help me? Thank you
-
Contributor
Originally Posted by
nghia
hi S4000. i want to ask. How to increase the size of the rectangular box showing health percentage? I want to make it twice as long as it is now.
Can you help me? Thank you
// bar on fixed screen
barH = Hud.Window.Size.Height * 0.012f; //0.014f
barW = Hud.Window.Size.Width * 0.11f;
// bar on monster
barHmon = barH * 1.6f; // 1.4f
barWmon = barW * 0.35f;
-
Post Thanks / Like - 1 Thanks
nghia (1 members gave Thanks to s4000 for this useful post)
-
Member
Thank you very much S4000