Recent content by ranfan06

  1. Tool Unity Assets Bundle Extractor

    Thanks :tumbsup:
  2. Help! How to mod Struct member ?

    // RVA: 0x9CEA24 Offset: 0x9CEA24 VA: 0x9CEA24 public void InitBaseTowerData(BaseUnitData data, int levelUpgrade, int levelUpgradeStarPurple) { } This is from the dump.cs. Following it into IDA got me to that point. First they get the soldier's ID, then assign their attributes by taking the...
  3. Help! How to mod Struct member ?

    I have similar issues. Tried setting this->fields.maxHealth = 100; but the health became zero instead. This is the pseudocode from il2cpp.so. LODWORD(this->fields.maxHealth) = ((int (__fastcall *)(LocalData_BaseUnitData_o *, int32_t, int32_t, int32_t, const MethodInfo...