Skip to content

Instantly share code, notes, and snippets.

@Zeffuro
Created November 30, 2019 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zeffuro/1bede85d6fc22494b3dc65cc745c4254 to your computer and use it in GitHub Desktop.
Save Zeffuro/1bede85d6fc22494b3dc65cc745c4254 to your computer and use it in GitHub Desktop.
Test with other background bars
#bars {
position: relative;
top: 20px; /* Space for pull counter */
left: 100px; /* Space for some left buffs */
}
#hp-bar {
background-image: url("https://raw.githubusercontent.com/Zeffuro/Zeffuro-s-Trigger-Repository/master/Resources/Images/Bar.png");
background-repeat: no-repeat;
position: relative;
width: 154px;
height: 15px;
}
#mp-bar {
background-image: url("https://raw.githubusercontent.com/Zeffuro/Zeffuro-s-Trigger-Repository/master/Resources/Images/Bar.png");
background-repeat: no-repeat;
position: relative;
width: 154px;
height: 15px;
}
.bar-border-color {
background-color: transparent;
}
.hp-color {
background-color: transparent;
}
.mp-color {
background-color: transparent;
}
'use strict';
Options.LowerOpacityOutOfCombat = false;
Options.HPBarImage = "https://raw.githubusercontent.com/Zeffuro/Zeffuro-s-Trigger-Repository/master/Resources/Images/HP-Fill.png";
Options.MPBarImage = "https://raw.githubusercontent.com/Zeffuro/Zeffuro-s-Trigger-Repository/master/Resources/Images/MP-Fill.png";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment