A simple Windows Forms tool for generating Frida hook scripts from Unity (il2cpp) RVA addresses.
- Enter RVA of setter/getter methods from Unity dump
- Set a value to force via Frida
- Instantly get a ready-to-use Frida script for patching
- Get RVA values for the setter and getter from your Unity dump (look for
RVA: 0x...
lines). - Enter the setter RVA in the "RVA SETTER" field.
- Enter the getter RVA in the "RVA GETTER" field.
- Enter the value you want to force (as integer).
- Click "Generate".
- Copy the script from the right and use it in your Frida session.
If your dump has: RVA: 0x1234568 public static int get_TeamPoint() { }
RVA: 0x1234567 public static void set_TeamPoint(int value) { }
Use:
- RVA SETTER:
0x1234567
- RVA GETTER:
0x1234568
- Value:
9999
See LICENSE.
- Ratmirage (https://github.com/Ratmirage)