Search results

  1. Tool ImGui Il2cpp Tool

    Nice!
  2. Solved Unlink Fields Other Class Problem

    Solved, the Heal is Actually Work for team and enemy while other features like Poison it Can be Enemy or Team
  3. Solved Unlink Fields Other Class Problem

    tried using the Unlink Method, but there's no tutorial on how to create function pointers for Team or Enemy. What should I do? Problem: When I Active HealTeam or HealEnemy it Heal Both I found the following classes: Class Unit : Class Team : if I use the Team class, it only works for...
  4. Help! How to hook enum

    Example Hooking: int CurrencySelectedType; void(*old_Currency)(void*instance,int CurrencyType); void Currency(void*instance,int CurrencyType) { if (instance != NULL) { if (CurrencySelectedType) { old_Currency(instance,CurrencySelectedType); return; } } old_Currency(instance,CurrencyType); }...
  5. Help! Getting Error In Mono Araay!!!

    Cast the void* pointer to a PhotonPlayer* pointer using static_cast: auto photonPlayer = static_cast<PhotonPlayer*>(PhotonPlayer->getPointer())[i];
  6. Help! Getting Error In Mono Araay!!!

    The error "Subscript of Pointer to Incomplete type 'void'" is because you're trying to use the subscript operator ([]) on a void* pointer, which is not allowed. In your code, players->getPointer() returns a void* pointer, and you're trying to use it as an array with player =...
  7. Help! How to add mod menu in game that has pairip protection?

    To add the LGL mod menu to "FRAG Pro Shooter" with pairip protection: 1. Identify the pairip protection pattern using a memory editor or IDA Pro. 2. Find a vulnerability in the protection implementation. 3. Create an offset tester to find correct memory addresses and values. 4. Modify the...
  8. Discussion no update function

    # class for ammo but does not have update offset public class Item // TypeDefIndex: 4824 { // Fields public string itemName; // 0x8 public int itemId; // 0xC public string itemDescription; // 0x10 public Sprite itemIcon; // 0x14 public float range; // 0x18 public int maxAmo; // 0x1C...
  9. Help! How To Fix When I Open Modded Game It Will crash?

    Permission,Service,and invoke problem maybe
  10. Help! app crashing after removing ads

    Check your build.gradle file and ensure Hermes engine is properly configured. Also, review your React Native configuration and library dependencies for potential conflicts.
  11. Help! Small critical Question

    the original offsets from the lib.so file are not directly executed to get to the CA allocation or anonymous region in the game. Instead, the game likely uses a combination of the offset, base addresses of different regions, and possibly some calculations to arrive at the final memory address...
  12. Help! Apply changes from Dump.cs

    1. Edit dump.cs to modify game logic. 2. Recompile using il2cpp with the game's source code. 3. Replace the original libil2cpp.so with the new one. 4. Test the modified game. Note: This assumes you have access to the game's source code and the ability to recompile the game
  13. Help! Help Spawn Items in Granny

    void *(*Instantiate)(void*, Vector3 pos, Quaternion rot); Vector3 (*get_position)(void * t); void (*set_position)(void* t, Vector3 value); Quaternion (*get_rotation)(void * t); void *(*get_transform_GameObject)(void * t); void *(*get_gameObject_component)(void * t); Vector3 (*get_forward)(void *...
  14. Help! ESP Draw not properly (Unity)

    Try using resizeMode and resizeMethod props on Expo Image components to optimize image rendering.
  15. Help! I spent 2 days, can't figure out

    Try re-downloading the unsigned APK, granting necessary permissions, and installing on a different device or custom OS to troubleshoot the issue.
  16. Help! How to place Android / data & obb files inside apk file? SaveToGame doesn't unpack files properly for Android 13

    To manually implement Android/data and Android/obb files into an APK file for Android 13 devices, follow these steps: Step 1: Extract the APK file Use a tool like APKTool or 7-Zip to extract the APK file. Step 2: Create a new folder structure Create a new folder named assets inside the...
  17. Help! Editing the mod menu interface

    You likely forgot to update the native method signature in Setup.h to match the new Java method signature in Menu.java
  18. Help! How to mod Struct member ?

    Wrong Place To Ask
  19. Help! How to mod Struct member ?

    You can access the members of a struct in C++ using the dot (.) operator.
  20. Help! Find key cocosd2lua no see key

    1. Open the .lua or .luac file with Notepad++ to check the signature. 2. Open the libcocos2dlua.so file with IDA Pro and search for the signature you found in step 1. 3. In IDA Pro, you should be able to find the signature and the key. 4. Use the signature and the key to decrypt the .lua or...
  21. Help! The game detects my mod menu lib

    Did You Put MainActivity Of The Mod Menu?
  22. Help! Getting Error In Mono Araay!!!

    To fix this error, you need to cast the void* pointer to the correct type before accessing its members.
Back
Top Bottom