Giter Club home page Giter Club logo

Comments (5)

XaeroDegreaz avatar XaeroDegreaz commented on August 30, 2024 3

Looks like they just updated the game on October 28th, and the game version is now 1.5.0.0.

These lines show acceptable versions for the patcher:

internal const string PROCESS_EXE_VERSION = "1.4.0.0";
internal static readonly string[] PROCESS_EXE_VERSION_SUPPORTED = new string[2]
{
"1.3.0.0",
"1.2.0.0"

These lines perform the version checks:

string gameFileVersion = FileVersionInfo.GetVersionInfo(procList[0].MainModule.FileName).FileVersion;
if (gameFileVersion != GameData.PROCESS_EXE_VERSION && Array.IndexOf(GameData.PROCESS_EXE_VERSION_SUPPORTED, gameFileVersion) < 0 && !_settingsService.ApplicationSettings.gameVersionNotify)
{
MessageBox.Show(string.Format("Unknown game version '{0}'.\nSome functions might not work properly or even crash the game. " +
"Check for updates on this utility regularly following the link at the bottom.", gameFileVersion), "Sekiro FPS Unlocker and more", MessageBoxButton.OK, MessageBoxImage.Warning);
ClearConfiguration();
_settingsService.ApplicationSettings.gameVersionNotify = true;
}
else
_settingsService.ApplicationSettings.gameVersionNotify = false;
// give the game some time to initialize
_gameInitializing = true;
UpdateStatus("game initializing...", Brushes.Orange);
return Task.FromResult(false);
}

These lines deal with the death penalty offset:

if (_offset_deathpenalties2 == 0x0)
{
UpdateStatus("death penalties not found...", Brushes.Red);
LogToFile("death penalties not found...");
this.cbDeathPenalty.IsEnabled = false;
}

Seems like some work needs to be done :D

from sekirofpsunlockandmore.

AlexanderKhrenov avatar AlexanderKhrenov commented on August 30, 2024 1

https://github.com/AlexanderKhrenov/SekiroFpsUnlockAndMore/blob/master/README.md
made quick fix

from sekirofpsunlockandmore.

uberhalit avatar uberhalit commented on August 30, 2024 1

Fixed in version 1.2.5.2, updated necessary code for death penalties.

from sekirofpsunlockandmore.

AlexanderKhrenov avatar AlexanderKhrenov commented on August 30, 2024

just copied this repository, sorry if this was not polite, I will delete it if you (uberhalit) want me to do so.

from sekirofpsunlockandmore.

AlexanderKhrenov avatar AlexanderKhrenov commented on August 30, 2024

didn't updated anything but supported game version list, just wanted my sekiro to run faster xd

from sekirofpsunlockandmore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.