Created
August 31, 2023 20:40
-
-
Save lambdan/a60c29a0c5d43aada0f9a86cadc38236 to your computer and use it in GitHub Desktop.
World of Warcraft font replacer bat script
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
@echo off | |
REM put this in your .../World of Warcraft/_game_version_/Fonts folder | |
REM then drag n drop a font onto it to replace the games fonts | |
del ARIALN.ttf | |
del DAMAGE.ttf | |
del FRIENDS.ttf | |
del FRIZQT__.ttf | |
del MORPHEUS.ttf | |
del skurri.ttf | |
copy %1 ARIALN.ttf | |
copy %1 DAMAGE.ttf | |
copy %1 FRIENDS.ttf | |
copy %1 FRIZQT__.ttf | |
copy %1 MORPHEUS.ttf | |
copy %1 skurri.ttf | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment