hampta / WOG-dump

πŸ”« Script for downloading, decryption and unpacking models from World of Guns: Gun Disassembly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ”« World of Guns model dumper

World of Guns

πŸ“™ Description

This script allows you to download, decrypt and unpack models from the game World of Guns: Gun Disassembly

πŸ”— Requirements

  • Python 3.10+
  • AssetStudio - for unpacking assets
  • C compiler - for compile xor.c (optional)

πŸͺ„ How it works

  1. Download asset with texture atlas and filter weapons from it
  2. Download key for decryption
  3. Decrypts and unpacks models
  4. Ez profit

πŸ§‘β€πŸ­ Usage

Windows

git clone https://github.com/hampta/WOG-dump    # Clone repository
cd WOG-dump                                     # Go to directory
pip install -r requirements.txt                 # Install requirements
python wog_dump.py                              # Run

Linux

git clone https://github.com/hampta/WOG-dump    # Clone repository
cd WOG-dump                                     # Go to directory
pip3 install -r requirements.txt                # Install requirements
python3 wog_dump.py                             # Run

βž• Addtional

Use xor decrypter:

# Windows 64 bit
./bin/windows/64bit/xor.exe <encrypted_file> <key> <output_file>

# Windows 32 bit
./bin/windows/32bit/xor.exe <encrypted_file> <key> <output_file>

# Linux
./bin/linux/64bit/xor <encrypted_file> <key> <output_file>

Convert Unity normal maps:

# Windows
python convert_normal_map.py <path> 

#Linux 
python3 convert_normal_map.py <path> 

πŸ«‚ Special thanks

DeadZoneGarry - helping with decryption

Noble Empire Corp. - game and assets

About

πŸ”« Script for downloading, decryption and unpacking models from World of Guns: Gun Disassembly


Languages

Language:Python 91.4%Language:C 8.6%