Server Emulator for the Online Game Ez2On.
The project is intended for educational purpose only, we strongly discourage operating a public server. This repository does not distribute any game related assets or copyrighted material, pull requests containing such material will not be accepted. All files have been created from scratch, and are subject to the copyright notice of this project. If a part of this repository violates any copyright or license, please state which files and why, including proof and it will be removed.
The project is splitted into different sub projects.
[Command Line Interface] tool to execute all tasks that are related to the server and its development. It mainly helps to kickstart and run the code from the core libaries.
[Library] that includes helper methods that are used across the project.
[Library] containing the core logic related to ez2on game data.
[Library] containing the core logic related to ez2on server.
- starting R13 server
- starting Solista server
[Unit Test] Used to define tests that run to ensure the integrity of methods.
- Ensure you have .NET Core 2.0 or higher
- Clone the project:
git clone https://github.com/Arrowgene/Arrowgene.Ez2Off.git
- Change to the 'Command Line Interface'-Project:
cd Arrowgene.Ez2Off/Arrowgene.Ez2Off.CLI
- Restore the project dependencies:
dotnet restore
- Run the Server:
dotnet run
- Download VSCode https://code.visualstudio.com/
- Install the C# Extension https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp
- Make changes :)
-
Ensure you have .NET Core 2.0 or higher https://www.microsoft.com/net/download/windows
-
Clone the project:
git clone https://github.com/Arrowgene/Arrowgene.Ez2Off.git
- Open to the Project in Visual Studio and run the 'Command Line Interface'-Project. I'm not sure about the exact steps as I havent tested this on a Windows box yet. I Will update this tutorial once I know the exact steps
The client that is compatible with this server is ez2on reboot from 2013. We assigned the arbitary name "Reboot13" or "R13" to it.
To Run the game on OSX you will need wine
-
Follow the tutorial until you completed Part 4:
https://www.davidbaumgold.com/tutorials/wine-mac/ -
Copy the game directory to your wine 'C' drive. The 'C'-drive can usually be found at your home directory
cd ~/.wine/drive_c
TODO
If the server is running the game should connect to the Server.
TODO
The separator used is a '|' symbol, in some systems you might need to escape it.
ez.exe "session|account|hash|9999"
osx
wine ez.exe "session^|account^|hash^|9999"
win
ez.exe session\|account\|hash\|9999
IF YOU ARE A REVERSE ENGINEER, PLEASE HELP TO FIND A WAY TO START THE EXECUTABLE.
We would like to develop the server against the latest official client (ez2on reboot from 2014 (Reboot14/R14). The executable was packet with VMProtect 2.07 and we were able to unpack the executable, so it can be loaded into a debugger.
BUT we have not found out how to start the game or which parameters it requires, we always get a message stating "Please start the game from the web". If you can find out how to correctly start this version of ez2on reboot, please let us know. For more details feel free to contact us or open an issue.
Thanks alot!
- Request a Session from the API by providing credentials (Account + Password).
- Provide the Session along with Account and Password to the client (Session Account Password).
- Sebastian Heinz
- System.Data.SQLite (https://system.data.sqlite.org/)
- bcrypt.net (https://github.com/BcryptNet/bcrypt.net)
- JavaScript-MD5 (https://github.com/blueimp/JavaScript-MD5)
- xUnit.net (https://github.com/xunit/xunit)
- .NET Standard (https://github.com/dotnet/standard)
- Arrowgene.Services (https://github.com/Arrowgene/Arrowgene.Services)
Thank you all, without your work this would never be possible!