This is a recreation of Diablo 2 game from Blizzard.
The game is at a very early stage of development - work in progress.
No commercial use is intended. All images and sounds used are from Diablo 2 and are property of the original game creators.
Requirements:
Requirements:
Steps:
Scenes/MainMenu.scene
filePlay
Press enter to open the in-game console. Some commands to test:
Spawn Immortal King Set under the cursor /spawn itemset immortal
Spawn diablo under the cursor /spawn diablo
Spawn 100 skeletons under the cursor /spawn skeleton1 100
Go to act 1 /act 1
Go to act 2 /act 2
Go to act 3 /act 3
Go to act 4 /act 4
Go to act 5 /act 5
From highest priority to lowest:
Unity is simple yet powerful game engine. It saves a lot of time for doing very basic stuff. There a lot of people who already familiar with Unity. Also it simple enough to dive into for new developers. A lot of people have performance concerns about Unity. It shouldn't be an issue, and in case of serious bottlenecks it's possible to offload heavy computations to C++ libraries (as it's already done with MPQ loading code). New Unity Data-Oriented Tech Stack is also available and provides great performance.
C# is popular, simple and performance enough language for today to make a game like Diablo. The main reason however is because using Unity implies using C#.
No, you can't. Original game resources are property of Blizzard and distributing it is not legal.
Yes! This is one of the main goals of the project.
Yes. The project consists of two parts: Engine and Game. One of the Diablerie goals is to have good separation of the Game (which is actually Diablo II remaster) and the Engine, which can be used to create Diablo II clones.
Paul Siramy - ds1edit editor, great thanks for source code. Very helpful and detailed tutorials related to diablo 2 internals.
Bilian Belichev - DCC file format documentation and sample decoder.
Ladislav Zezula - StormLib
Phrozen Keep - A lot of various information about diablo 2 files.