Tuesday, 21 December 2021

Second Extinction free from Epic Games store

We've had one, yes. What about Second Extinction? If you don't know about Second Extinction, it's free in the Epic Store until the next Epic nightfall. Link[www.epicgames.com] Details: - Account/DRM required: Epic Games (NOT Steam) - Offer good through December 22, 1600 GMT - Steam store page for evaluation Next up, elevenses, luncheon, afternoon tea, dinner, supper, and then a new mystery game. LH On the sixth day of Christmas, Epic gave to me Six Breeds of Dinos...

from iOSGods RSS Feed https://ift.tt/3Jb00rG

Monday, 20 December 2021

Loop Hero free from Epic Games store

Today's Epicmas freebie is Loop Hero. It won't repeat forever though, you need to grab it in the next 24 hours. Link[www.epicgames.com] Details: - Account/DRM required: Epic Games (NOT Steam) - Offer good through December 21, 1600 GMT - Steam store page for evaluation Tomorrow? By now, you know the drill. LH On the fifth day of Christmas, Epic gave to me Five Timeless Loops...

from iOSGods RSS Feed https://ift.tt/3Fk34zt

PAKO 3 v1.0.2 +1

Modded/Hacked App: PAKO 3 By Tree Men Games OY Bundle ID: com.treemengames.pako3 iTunes Store Link: https://ift.tt/3pdxfTu Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - Filza / iMazing or any other file managers for iOS. - Cydia Substrate, Substitute or libhooker depending on your jailbreak. - PreferenceLoader (from Cydia or Sileo). Hack Features: - All Cars Unlocked - - Non-Jailbroken & No Jailbreak required hack(s): https://ift.tt/2xrjgjw Modded Android APK(s): https://ift.tt/36BCz7P For more fun, check out the Club(s): https://ift.tt/2NSn17b iOS Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen. STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - AlyssaX64 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/3J5ecm7

RPG - Blue princess2 v1.0.5 +2 Cheats

Modded/Hacked App: RPG - Blue princess2 By atsushi ichikawa Bundle ID: com.TownSoft.BluePrincess2 iTunes Store Link: https://ift.tt/3p7IAEv Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - Filza / iMazing or any other file managers for iOS. - Cydia Substrate, Substitute or libhooker depending on your jailbreak. - PreferenceLoader (from Cydia or Sileo). Hack Features: - Unlimited Gold [Spend to Gain] - Unlimited Prayer [Spend to Gain] Non-Jailbroken & No Jailbreak required hack(s): https://ift.tt/2xrjgjw Modded Android APK(s): https://ift.tt/36BCz7P For more fun, check out the Club(s): https://ift.tt/2NSn17b iOS Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen. STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - Zahir Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/3pdokRL

Sunday, 19 December 2021

ARM64 Unity String Function Hooking LGL Menu

Hooking string functions for libil2cpp games is a little different than hooking int or bool functions because unity uses a different type of string. Create a header file e.g. Strings.h #include "Includes/Utils.h" typedef struct _monoString { void *klass; void *monitor; int length; char chars[1]; int getLength() { return length; } char *getChars() { return chars; } } monoString; Paste this code into it. This is a typedef so we can handle mono string types. Now inside of your Main.cpp include this header #include "Includes/Strings.h" // location relative to Main.cpp if its in a higher hiarchy use "../" Now inside Main.cpp create your function pointers I put mine just below the My_Patches struct. monoString *(*String_CreateString)(void *_this, const char *str); void (*get_StringInstance); Now inside your hackthread function assign your String_CreateString and get_StringInstance. String_CreateString = (monoString*(*)(void *,const char *))getAbsoluteAddress(targetLibName, 0x1646CA0); get_StringInstance = (void (*))getAbsoluteAddress(targetLibName,0x1646CA0); To find the offsets Search in your dump.cs for a createstring method, which takes in only one variable called sbyte* value. put that offset in both get_StringInstance and String_CreateString. now you can hook string functions. here is a hook for function. First we hook the update function in the playercontroller class. then inside that class is a function Debug_MoveToPointImmediate which takes a monostring parameter. void (*Debug_MoveToPointImmediate)(void *instance, monoString * PointID); bool MoveToCastle = false; bool MoveToHome = false; void(* old_UpdateMap)(void * instance); void UpdateMap(void*instance) { if(instance != NULL ) { if(MoveToCastle) { MoveToCastle = false; Debug_MoveToPointImmediate(instance,String_CreateString(get_StringInstance,"castle")); } if(MoveToHome) { MoveToHome = false; Debug_MoveToPointImmediate(instance,String_CreateString(get_StringInstance,"home")); } } old_UpdateMap(instance); } when passing the string into the parameter use String_CreateString(get_StringInstance,"string you want to pass") now we assign the pointer function and hook the player update inside the hackthread. A64HookFunction((void*)getAbsoluteAddress(targetLibName, 0x19DDDD4), (void*)UpdateMap, (void**)&old_UpdateMap); Debug_MoveToPointImmediate = (void (*)(void *,monoString *))getAbsoluteAddress(targetLibName, 0x19E07A4); and your done. You can use the String_CreateString(get_StringInstance,"string you want to pass") in any function which takes a string. If its a string returning function you could use return String_CreateString(get_StringInstance,"string you want to return"). connecting to a button is simple. add the features : add the cases: Because the function is in a update that is called 60 times per second, we set it to true when the button is clicked and then inside the update function set it to false once it is run. This is so it isn't called more than once. you would do this differently if it was a function you want to keep being called like a toggle function. DONE.

from iOSGods RSS Feed https://ift.tt/3qaEquX