Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. using System.Linq;
  2. using System.Collections.Generic;
  3. using Turbo.Plugins.Default;
  4.  
  5. namespace Turbo.Plugins.Gigi
  6. {
  7.  
  8. Hud.RunOnPlugin<Gigi.EliteBarPlugin>(plugin =>
  9. {
  10. //Colors and Fonts
  11. plugin.BossBrush = Hud.Render.CreateBrush(255, 125, 120, 120, 0); //different boss BossBrush
  12. plugin.NameFont = Hud.Render.CreateFont("tahoma", 6f, 200, 255, 0, 0, false, false, true); //different MonsterType Font
  13.  
  14. //Display Options
  15. plugin.JuggernautHighlight = false; //disable red jugger JuggernautHighlight
  16. plugin.CircleNonIllusion = false; //disable non-clone detection
  17. plugin.MissingHighlight = false; //disable notification for missing blues
  18. plugin.ShowRareMinions = false; //disable rare minions in list
  19. plugin.ShowDebuffAndCC = false; //disable debuff and cc in list
  20. plugin.ShowMonsterType = false; //disable monstertype in healtbar
  21. plugin.ShowBossHitBox = false; //disable hitbox on bosses
  22. plugin.PercentageDescriptor = "0.0"; //Change %-Numbers to X.X%
  23. foreach(MonsterAffix afx in Enum.GetValues(typeof(MonsterAffix)))
  24. plugin.DisplayAffix.Add(afx, afx.ToString("G")); //set affix string for each affix you want to be displayed
  25.  
  26. //Position and Scaling
  27. plugin.XPos = Hud.Window.Size.Width * 0.150f; //move elitebar to XPos
  28. plugin.YPos = Hud.Window.Size.Height * 0.200f; //move elitebar to YPos
  29.  
  30. });
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement