Search results

  1. Help! offset edit don't work

    Im use nepmods tester and test any offset. All offset work, but if im add offset in mod menu, 90% offset don't work. Im check all offset, all. Right, without error. Im try use HOOK_LIB/Mshookfunction, but all don't work. Codes: void (*old_Speed)(void *instance); void Speed(void *instance) {...
  2. Solved Decrypt Obscured

    Anyone, how to decrypt: [Il2CppDummyDll.FieldOffset(Offset = "0x1C")] public ObscuredFloat Hp; im need decrypt ObscuredFloat, but how?(this unity anticheat, toolkit)
  3. Solved Hook

    Im bypaas anticheat toolkit. Encryption Obscured, i know if make generate key then value nor changed. value ^ 0 = value. Im make cod: unsigned char old_genkey(void *instance); unsigned char genkey(void *instance) { return 0; } HOOK_LIB("libil2cpp.so", "0x77C0E4", genkey, old_genkey); But this...