Jump to content

Parxdy  

Cheater 
  • Posts

    1,897
  • Joined

  • Last visited

Community Answers

  1. Parxdy's post in Where can I find an iPad Pro (M1 2021) on iOS 15.x for Dopamine was marked as the answer   
    @Rook You won’t find any serial numbers from main sellers like Walmart/Amazon/Best buy. But I found this on eBay you can just contact the seller for serial number or any other post you find on eBay. Might not be anywhere else except offerup or any other app seller apps out there. Here’s the link
    Updated link for m1. It has a serial in the pic but it’s blurry so contact seller
  2. Parxdy's post in (Solved) Hooking in LGL Mod Menu was marked as the answer   
    the way i was able to solve this to call a method is to make sure you change your targetLibName the il2cpp lib under the includes in main.cpp
    #define targetLibName OBFUSCATE("libil2cpp.so") Have these under the includes:
    bool WinToggle; void (*WinMatch)(void *instance); void (*old_Update)(void *instance, float delta); void Update(void *instance, float delta) { if(instance != NULL && WinToggle) { WinMatch(instance); } old_Update(instance, delta); } then in your "void *hack_thread(void *)" make sure your lib is loaded first and call your MSHook then add your method you want to call
    do { sleep(1); } while (!isLibraryLoaded(targetLibName)); MSHookFunction((void*)getAbsoluteAddress(targetLibName, OFFSET), (void*)Update, (void **)&old_Update); WinMatch= (void (*)(void *))getAbsoluteAddress(targetLibName, OFFSET); under your features put a toggle
    OBFUSCATE("101_Toggle_Auto Win Game"), then make a case for that toggle under "switch (featNum)"
    case 101: WinToggle = boolean; break; you have to set = boolean; at the end or it wont work
    if you have any questions PM me
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines