hikiasi
Member-
Posts
50 -
Joined
-
Last visited
Everything posted by hikiasi
-
Good news, i could make some changes, but not for all. I'll show video of progress now, but will try another ways for other currencies
-
-
I will check
-
Hello everyone! Today I want to share my experience of hacking Filwords and explain how you can add coins, rating and some other goodies using iGameGod. 📌 DIY Requirements Non-Jailbroken or Jailbroken iPhone or iPad. H5GG / iGameGod Non-Jailbroken / iGameGod App Game App Store link First attempt: offsets & dnSpy First of all, I tried to inspect the game dump using dnSpy. I found several interesting offsets: Coins 0x974020 Hints 0x974030 NoAds (bool) 0x974050 However, all of them are located in Scripts.dll, not in Assembly-CSharp.dll. Because of that, when I tried to patch them using Offset Patcher, nothing changed in the game at all. So at this point offsets didn’t work for me, and I decided to try another approach. Second attempt: direct value search (failed) Next, I tried to modify values directly via iGameGod: Coins Hints RocketHints I searched for their current values and tried to change them, but it quickly became clear that all these values are encrypted. Even after changing them, the real balance in the game stayed the same. So this approach didn’t work either. Working solution: changing reward value Then I noticed something important. In the game, there is a flask that fills up as you complete levels. After the flask is full, you can watch an ad and receive coins. So instead of changing the total amount of coins, I decided to change the amount of coins that are added to the flask. And this method actually worked. 📖 DIY Instructions Coins via iGameGod (step-by-step) Open iGameGod Select New Search → Exact Search Enter the current number of coins in the flask Choose value type int32 Play a few levels so the flask value changes Go back to iGameGod → Refine Search → Exact Search Enter the new value Repeat this process until you have around 3 results Change these values to any number you want (for example, 10000000) Tap Confirm Watch the ad → receive your coins Rating & profile stats With rating, everything was much easier. The rating value is NOT encrypted Just search for the initial value Play a few games until it changes Refine search until only a few results remain Change them to whatever you want I also tested other profile characteristics, and they work exactly the same way — no encryption there. Important tip You can disable internet while filling the flask to avoid watching ads after every level. Once the flask is full, just enable internet again and watch the ad one time to get all the coins. Final notes 📷 Cheat Video/Screenshots I’m attaching a video showing the whole process step by step. If anyone can explain how to properly use those offsets from Scripts.dll and make them actually work, I’d be happy to try building a mod menu later. For now, unfortunately, I couldn’t get offsets working — only iGameGod did the job. Thanks for reading 🙌 🙌 Credits - hikiasi
-
Mod Menu Hack Tile Connect - Classic Match +1 Cheat 1.17.11
hikiasi replied to hikiasi's topic in Free Jailbreak Cheats
Thank you very much, I really appreciate it!! -
Mod Menu Hack Tile Connect - Classic Match +1 Cheat 1.17.11
hikiasi replied to hikiasi's topic in Free Jailbreak Cheats
thank you so much!!! -
Hello everyone! Could anybody please tell me, for example with Unity games it is possible to get dummy DLL through armconverter with the help of which it will be possible to find functions and necessary offsets. but how to do the same for applications, like for playing music, photoediting and others ? for example there is an application, I decrypted it with IGDecrypt and going into payload and looking at the folders I saw that apparently it is written in swift. So, could you please tell me how to do all this not with a game, but with an application, to find the necessary functions and implement my changes ? I tried flex, but it says couldn't be processed
-
Hex Codes for ARM64 modding | True | False | NOP | High Value |
hikiasi replied to aQReh's topic in Coding Center
thanks for sharing!! -
thanks!!
-
thanks!
-
DIY Hack [ iGameGod ] Township [ All iOS Versions ] +3 Cheats
hikiasi replied to IK_IK's topic in DIY Cheats
nice working, but got banned for high values😂 UPD: after wipe all data and start on new account, tried doing the same thing many times again, but for some reason it doesn't work anymore. I don't know what happened, but I've already calculated all 47 values as accurately as possible, but for some reason nothing changes as it did the first time -
sorry, its for jailbroken, mistaken
-
Mod Menu Hack Idle Lumbercat - Wood Games + 1 CHEATS
hikiasi replied to Lolite's topic in Free Jailbreak Cheats
good job, thanks for you work! -
Patcher Hack iOSGods iAP Cracker - iAP Tweak Modifier
hikiasi replied to Laxus 's topic in Free Jailbreak Cheats
good job, thanks! -
Glad to help, hope it works out!😉
-
I get your point, in that case you could try this %hook CheatAccountSetEnergy - (int)Energy { int Energy = 99999999; // Replace the original value with 999999 return Energy; } %end %hook CheatAccountSetEnergy - (void)sendRequestToServer { %orig; // Call the original method to send the request to the server } %end but I'm not sure about it to be honest, because I've never encountered it myself
-
thank you!!
-
If I understood you correctly, you want to make a tweak, in this case the code will be like this: %hook CheatAccountSetEnergy - (int)Energy { int Energy = 9999999; return Energy; } %end I may be wrong, but I think you should look for another class where there will be values for example GetEnergy or get_Energy, because in this example I think you can't do for example offset patch from 0x3742160 on 00F0271EC0035FD6. Like in this example: [Token(Token = "0x6000356")] [Address(RVA = "0x25D0B6C", Offset = "0x25D0B6C", VA = "0x25D0B6C")] public int GetGold() { return 0; } We can make offset patch with Custom Live Offset Patcher on offset 25D0B6C and change it to 00F0271EC0035FD6 But you should try, it'll be really nice if it does work out