Recent content by TimidNova

  1. Help! How does a skin changer work?

    Ok so here's the thing I'm working on. Here's my function // Token: 0x06001EBB RID: 7867 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6001EBB")] [Address(RVA = "0x16BE680", Offset = "0x16BE680", VA = "0x16BE680")] public static AELEPACEJDO GetDungeonData(int...
  2. Help! Field offset hooking with switch

    Also If I use an Update function outside of the class how exactly would that work? Would I have to do anything special
  3. Help! Field offset hooking with switch

    Also can I use the Awake function instead of Update function if my class doesn't have it?
  4. Help! Field offset hooking with switch

    so here's my hook void (*old_isPremium)(void *instance); void isPremium(void *instance) { instanceBtn = instance; if (instance != NULL) { if (Premium) { *(bool *) ((uint32_t) instance + 0x320) = true; } } return old_isPremium(instance); }...