Search results

  1. Help! How can i hook a field that has no update function?

    void (*old_update)(void* _this); void update(void* _this) { if(_this != NULL) { void *MoneyClass = *(void**)((uint64_t)_this + 0x20); { if(Coin != NULL) { *(int *) ((uint64_t) MoneyClass + 0x10) = 999; } } } old_update(_this); }
  2. Help! How can i hook a field that has no update function?

    dont worry dont worry i found a code similar to urs
  3. Help! How can i hook a field that has no update function?

    my hook should be like A64hookfunction((void*)getAbsoluteAddress(UpdateOffset), (void*)Update, (void**)&old_Update);
  4. Help! How can i hook a field that has no update function?

    the class NetworkPlayer has 2 fields with "Item" the first image is field one wich field offset is "0x10" the second one is = 0x58
  5. Help! How can i hook a field that has no update function?

    It cant be hooked directly since it will go to the fields in class NetworkPlayer and edit the fields only
  6. Help! How can i hook a field that has no update function?

    Now i went to the the suposed Item field in NetworPlayer and the field offset in NetworkPlayer is 0x58 should i still hook Class Item normally with the update function of Class NetworkPlayer?
  7. Help! How can i hook a field that has no update function?

    This on the rigth side is class Item i on the rigth side beneath you see that its used by NetworkPlayer
  8. Help! How can i hook a field that has no update function?

    My Field Doenst have an update function but i analysed it in dnspy and found related classes that have an update function, how can i hook the update function from that related class to modify the fields? class Item //Does not have an update function //field Money = 0x30 //Method //nothing...