{}wgmods.dev

Introduction

Getting Started with World of Tanks Modding

World of Tanks modding (WoT modding) allows you to customize and enhance your tank warfare experience through Python scripts, Flash components, and configuration modifications.

World of Tanks has different modding areas:

Python Scripts

Handle game logic, mechanics, and backend functionality. Most mods interact with the Python layer for gameplay features.

Flash UI Components

ActionScript 3 components that control the visual interface, HUD elements, and user interactions in battle and garage.

Configuration Files

XML files that define game settings, vehicle parameters, and interface layouts.

Assets & Resources

Interface textures and icons that can be modified for visual customization.

Decompiled Source Available

This documentation references the decompiled World of Tanks client source code from wot-src to help you understand the game's internal workings.

Prerequisites

Development Knowledge: Basic to intermediate Python 2.7, some ActionScript 3 for UI mods.

Wargaming Fair Play Policy: All mods must comply with official guidelines.

Some experience with game modding would be helpful for advanced customizations.

Quick Setup

Get started with World of Tanks modding in minutes.

Set up Python development environment:

# Install Python 2.7 (WoT client still uses Python 2.7)
python --version

# Install code editor (VS Code recommended)
# Install Python extension for VS Code

Note: World of Tanks still uses Python 2.7 even in version 2.0+.

Essential tools for WoT modding:

# Decompiler for .pyc files
# WoT Mod Tools (community tools)
# Flash development tools (for AS3 mods)

Most tools are available through the WoT modding community.

Key directories in WoT decompiled source:

# Python scripts: sources/res/scripts/
# ActionScript 3: sources-as3/
# GUI resources: sources/res/gui/
# Reference: https://github.com/izeberg/wot-src

Always backup original files before modifying.

New to Modding?

Start with simple configuration changes before diving into Python scripting.

FAQ

Common questions about World of Tanks modding.

Learn More

Ready to dive deeper into World of Tanks modding?

Essential Guides

Advanced Topics

Last updated on