Search results

  1. Help! offset edit don't work

    he uses just such ones, I checked this offset in the tester, and everything worked fine.
  2. Help! offset edit don't work

    No, speed this field offset, im use hook for field Offset. // WeaponScr [Address(RVA = "0x744594", Offset = "0x744594", VA = "0x744594")] private void Update() [FieldOffset(Offset = "0x18")] public int ShootTime;
  3. Help! offset edit don't work

    No, I'm dont use Mshookfunction + hook_lib, i have used them individually.
  4. 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) {...
  5. Solved Decrypt Obscured

    Oh bro, thx. But no need, i find and decrypt. But im check github, thx!
  6. Solved Hook

    Upd: {Don't work}
  7. Solved Decrypt Obscured

    Anyone, how to decrypt: [Il2CppDummyDll.FieldOffset(Offset = "0x1C")] public ObscuredFloat Hp; im need decrypt ObscuredFloat, but how?(this unity anticheat, toolkit)
  8. 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...