Initial Commit

This commit is contained in:
kittentm 2026-03-28 03:18:41 +01:00
commit 29564f0e0b
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
11 changed files with 1270 additions and 2210 deletions

View file

@ -3,12 +3,12 @@ import requests
import oead
import os
import xml.etree.ElementTree as ET
from config import settings
from config import settings, BASE_DIR
def process_boss_file():
temp_boss = "bosstemp.bin"
output_yaml = "boss.yaml"
decrypt_script = os.path.join("services", "decrypt.js")
decrypt_script = os.path.join(BASE_DIR, "services", "decrypt.js")
if not os.path.exists(decrypt_script):
print(f"{decrypt_script} is missing!")