Posts

Showing posts from July, 2019

HeileiOSX - The real iOS emulator (Chinese)

Image
Disclaimer: None of the software, the author, nor the forum owner is affiliated with, or sponsored or authorized by, Apple Inc. or its affiliates. While browsing around the chinese softwares, I found HeileiOSX, the real iOS emulator. Yes, it's 100% real. Not fake (simulator) like ipadian and such. Forget all about simulators, you can try this free emulator but language is only chinese This emulator runs iOS 9.2 and is based on ARM64 Note: It's not possible to install mod IPA at the moment. Jailbreak not possible AMD not supported yet. Stay tuned Official website:  iOS 手游模拟器 - 苹果模拟器 -iOS 模拟器 - 杭州几维逻辑科技有限公司 System Requirements: CPU:  Intel I3 and above RAM:  8G memory Graphics card:  Support for openGL Hard Disk:  SSD Description: China No.1 Ten years waiting for the people to create Experience Apple mobile apps and games on the PC at any time Unparalleled big screen experience Give full play to the superior computing power of computer performance,

Unity camera modding

Image
After the official Dead by Daylight got released, the company who made shitty 2.5D DBD rip off game shutted down my mod apk against platinmods that i'm from and all apk sites even they host original apk. I don't know where I can share the mod safety so I don't bother modding this shity game anymore Here is how I made camera zoom out mod: Look inside CameraController class, there is Awake method private void Awake()            {                       float num = (float)Screen.width / (float)Screen.height;                       this.thirdPersonCamera.fieldOfView = 1920f / num / 100f;                       this.firstPersonCamera.fieldOfView = 1920f / num / 100f * 6f;                       this.oldCamera.fieldOfView = 1920f / num / 100f;                       ...            } Change the camera float number 100f to anything below 100f to zoom out. example: 35f Example: Original Modified   Video example: streamja.com/6nm5 S

Manually dump il2cpp unity 2019.x.x on Android games

Image
Dump libil2cpp.so and global-metadata.dat file Input correct unity version you have found in any asset files... Just put 2019.1 When the error occur, do NOT close cmd. Remember the offset of MetadataRegistration In the GUI version of dumper, it will also write the MetadataRegistration offset for you Disassemble libil2cpp.so file with IDA Pro and let it finish loading for a while Press G and jump to address of MetadataRegistration Press X to view xrefs as follows. Double-click on the blue selection in the figure to jump. armeabi-v7a: The CodeRegistration offset is right below MetadataRegistration arm64-v8a: Press space to switch to graph mode and look way above Can't press space due to red instructions? Click on the loc_xxxxx and press X to view xrefs as follows.   Double-click on the blue selection in the figure to jump. Click on the loc_xxxxx and press X to view xrefs again   And double-click on the blue se

Manually dump il2cpp on iOS games

Image
This is for x64 binary only on iOS games Dump decrypted binary file and global-metadata.dat file When the error occur, do NOT close cmd. Remember the offset of codeRegistration In the GUI version of dumper, it will also write the CodeRegistration offset for you Disassemble binary file with IDA Pro and let it finish loading for a while Press G and jump to address of CodeRegistration Press X to view xrefs as follows. Double-click on the blue selection in the figure to jump. Look at the red box, It's the unk offset of MetadataRegistration Relaunch il2cppdumper and dump manually with the offsets you have found