Search results

  1. Solved Hook to the Nullable structure

    Good evening, There is such a structure in the dump public struct Nullable<T> // TypeDefIndex: 386 { // Fields internal T value; // 0x0 internal bool has_value; // 0x0 // Properties public bool HasValue { get; } public T Value { get; } ... I'm trying to reproduce it...
  2. Help! Hook not working on ARM64v8

    Good evening. I ran into a problem, I'm modifying the game Jurassic World Alive, the previous version worked on ARMv7 and there were no problems, after updating ARMv7 it stopped running. Therefore, I began to make hooks on ARM64v8, everything works fine on Nox x64, and as soon as I launch...