This file contains hidden or 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
| import os | |
| path_assets = r"C:\Users\virtue\Desktop\Project\Python\PixelPrinterMod\assets" | |
| path_mod = r"C:\Users\virtue\Desktop\Project\Python\PixelPrinterMod\mod\ModName" | |
| for root, dirs, files in os.walk(path_assets, topdown = False): | |
| for name in files: | |
| print(os.path.join(root, name)) | |
| if not name.endswith(".png"): |
This file contains hidden or 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
| <?xml version="1.0" encoding="iso-8859-1"?> | |
| <!DOCTYPE muclient> | |
| <!-- Saved on Friday, August 14, 2009, 6:13 AM --> | |
| <!-- MuClient version 4.93 --> | |
| <!-- Plugin "Consider_Window" generated by Plugin Wizard --> | |
| <!-- Updates Made by Strazor on September 6, 2014 | |
| 1) Updated sPat variable to correctly escape in LUA and capture "-" and "." in mob names | |
| 2) Updated some of the triggers to regular expressions | |
| 3) Triggers should now capture Auras of Mobs in Minwin. This is not perfect but works. |
OlderNewer