-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
37 additions
and
44 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Interface: 11305 | ||
## Title: BetterDamage | ||
## DefaultState: Enabled | ||
## Author: Epodox | ||
## Version: 1.0 | ||
## Notes: Makes your damage text better. | ||
# Retail:80300, Classic:11305 | ||
|
||
Luas\BetterDamage.lua |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
-- Shows addon loaded in chat window. | ||
print("BetterDamage v1.0") | ||
|
||
-- Locals | ||
local damagefont_FONT_NUMBER = "Interface\\AddOns\\BetterDamage\\Fonts\\font.ttf"; | ||
|
||
-- Code Base | ||
BetterDamage = CreateFrame("Frame", "BetterDamage"); | ||
|
||
function BetterDamage:ApplySystemFonts() | ||
DAMAGE_TEXT_FONT = damagefont_FONT_NUMBER; | ||
end | ||
|
||
BetterDamage:SetScript("OnEvent", | ||
function() | ||
if (event == "ADDON_LOADED") then | ||
BetterDamage:ApplySystemFonts() | ||
end | ||
end); | ||
|
||
BetterDamage:RegisterEvent("ADDON_LOADED"); | ||
BetterDamage:ApplySystemFonts() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
Description | ||
This addon is an update to the outdated CoolDamageFont. The previous addon used the PEPSI font as its default font. This font is missing key symbols needed for the Shadowlands expansion. This addon replaces the default font with Roboto Black Italic, as well as updates some base code. It should be noted that the old PEPSI font is still included in the CoolDamageFont2 addon folder but be warned you will get strange symbols in your damage text if used during Shadowlands and later. | ||
|
||
Changes: | ||
- Updates default font with one that works in the Shadowlands expansion. | ||
- Updates base code. | ||
Description: | ||
This addon changes the damage font. | ||
|
||
Instuctions: | ||
You can change the font to any of the 6 included fonts or download your own .ttf file. | ||
You can change the font to any of the 5 included fonts or download your own .ttf file. | ||
|
||
Note: Make sure your showing file extensions in windows explorer. For instructions on how to do that go HERE | ||
Note: Make sure your showing file extensions in windows explorer. For instructions on how to do that go https://www.howtogeek.com/205086/beginner-how-to-make-windows-show-file-extensions/ | ||
|
||
1. Navigate to ...World of Warcraft\_retail_\Interface\Addons\CoolDamageFont2, for classic change "_retail_" to "_classic_". | ||
1. Navigate to ...World of Warcraft\_retail_\Interface\Addons\BetterDamage, for classic change "_retail_" to "_classic_". | ||
2. Rename font.ttf to something different. | ||
3. Rename the new font file you want to use to font.ttf | ||
4. Close and reopen World of Warcraft. | ||
|
||
Issues: | ||
Post your issues and request features at https://www.curseforge.com/wow/addons/cooldamagefont-2-0/issues | ||
|
||
Credit: | ||
Original credit for this addon goes to r3voluti0. Please see his original version at https://www.curseforge.com/wow/addons/cooldamagefont big thanks to him for the creation of this addon. | ||
Post your issues and request features at https://www.curseforge.com/wow/addons/betterdamage/issues |