pixeltris/Lotd

Compiled .exe

Yogg45 opened this issue · 6 comments

Hello there. Would somebody mind uploading a compiled exe for the Link evolution tool. I'm unable to compile it with Visual Studio, because it its quite the heavy space program and my internet isn't good at all. Any help would be appreciated.

There are compiled files on the releases page https://github.com/pixeltris/Lotd/releases

Thank you for the quick reaction. And is it possible to get it working on pirated versions ?

This code would need to be changed to point to the path of where the yugioh game is located. This isn't something I'm personally going to add so you'll need to change it yourself / compile it.

public static string GetInstallDirectory(GameVersion version)

The problem is that i can't get Visual Studio for the reasons i stated in the original post, and in addition i have honestly no clue how exactly to do the changes that you suggested. Sorry if I'm annoying you.

You can compile it with MSBuild (comes with .NET runtime), something like:

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe C:\Lotd\Lotd.sln

You would want to change GetInstallDirectory to do the following:

public static string GetInstallDirectory(GameVersion version)
{
    return "C:/your_yugioh_install_directory/";
}

Sorry for spamming but I apparently am unable to understand how to proceed. I inputted the upper command you posted, but then afterwards i'm utterly confused. I have no compiling or coding experience. Sorry for annoying you