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
| // ==UserScript== | |
| // @name EmuParadise Download Workaround | |
| // @version 1.2.3 | |
| // @description Replaces the download button link with a working one | |
| // @author infval (Eptun) | |
| // @match https://www.emuparadise.me/*/*/* | |
| // @grant none | |
| // ==/UserScript== | |
| // https://www.reddit.com/r/Piracy/comments/968sm6/a_script_for_easy_downloading_of_emuparadise_roms/ |
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
| #-*- coding: utf-8 -*- | |
| #!/usr/bin/env python3 | |
| """ | |
| Pursuit Force: Extreme Justice (PSP) | |
| VDB/VIB extractor | |
| VAG без заголовка | |
| В MFAudio аудиофайлы можно задать как: |
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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import sys | |
| import math | |
| import argparse | |
| from collections import OrderedDict | |
| from PIL import Image, ImageDraw |
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
| #!/usr/bin/env python3 | |
| import re | |
| import pathlib | |
| from struct import unpack | |
| pathlib.Path('./EXTRACTED').mkdir(exist_ok=True) | |
| with open("SLPM_552.63", "rb") as f: | |
| bexe = f.read() |
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
| #!/usr/bin/env python3 | |
| import io | |
| import struct | |
| from pathlib import Path | |
| def decompress(inpt, artAddress): | |
| inpt.seek(artAddress) | |
| output = io.BytesIO() |
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
| #!/usr/bin/env python3 | |
| __version__ = "1.0" | |
| __author__ = "infval" | |
| import argparse | |
| from pathlib import Path | |
| from struct import unpack, pack |
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
| #!/usr/bin/env python3 | |
| """Fix pirated PlayStation 1 BIN for OpenEmu, Mednafen | |
| usage: | |
| script.py Image.bin [0|1|2] | |
| 0 - Japan, 1 - USA, 2 - Europe. Default: 1 | |
| examples: | |
| script.py "Chrono Cross (USA) (Disc 1).bin" | |
| script.py "Chrono Cross (USA) (Disc 1).bin" 1 | |
| script.py "Sexy Parodius (Japan).bin" 0 |
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
| #!/usr/bin/env python3 | |
| from pathlib import Path | |
| from os import system | |
| import sys | |
| overwrite = '' | |
| if len(sys.argv) > 1 and sys.argv[1] == '-y': | |
| overwrite = '-y' | |
| p = Path('.') |
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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| [Wii] Coraline | |
| .dxt <-> PNG | |
| Requirements: | |
| pip install -U pillow | |
| Usage: |
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
| #!/usr/bin/env python3 | |
| """ | |
| Converts between QD and FDS disk images | |
| """ | |
| import struct | |
| def create_fds_header(side_count): | |
| return b"FDS\x1A" + bytes([side_count & 0xFF]) + bytes(11) |
NewerOlder