Search results

  1. Help! Void

    Hello! Can you please tell me how to break this offset? Connected to these methods, but did not work.
  2. Help! help

    Hello! This library has encrypted offsets. Please help me decipher them.
  3. Solved void

    Hello! Help me please. This code increases the coins in the game. After each stage, a lot of coins are added, and after several stages, when there are a lot of coins, the game just freezes. Help fix this so that a lot of coins are not added. Or freeze this value (999999) void...
  4. Help! Help

    Tell me please! Through the game guardian, I found out that this value is responsible for the number of coins "int _coinCount; // 0x3C" There is no update method in this class, tried all methods in this class. Can you tell me how to find the correct update method?
  5. Help! void

    Please tell me, am I calling the "LocalStore" class correctly, in which I need to change the field "int _coinCount; // 0x3C"? void* LocalStore; void (*old_update)(void* instance); void update(void* instance){ if(instance != NULL && LocalStore != NULL){ *(int *)((uint64_t)LocalStore +...
  6. Help! Hook

    Hello! Can you please tell me how to correctly call the method - AddCoins? AddCoins=0x11E3164 Update=0xAA4104 void (*AddCoins)(void *instance, int num); void (*old_Update)(void *instance); void Update(void *instance){ if(instance != NULL) { AddCoins(instance, 999999); }...
  7. Help! Hook

    Привет! Подскажите, пожалуйста, правильно ли я написал код? void (*old_ForceUpdate)(void *instance); недействительным ForceUpdate (недействительным * экземпляр) { если (экземпляр! = NULL) { //монеты *(bool *)((uint64_t)экземпляр + 0x28) = истина; }...