Jump to content

help to make zoom-out with IDA


Go to solution Solved by bR34Kr,

6 posts in this topic

Recommended Posts

Posted (edited)

 

Hi all. i have been trying to hack an online game and i want to make zoom out for better view to see enemies. such as like Agario zoom hack

but this one looks hard for me cuz im not that pro cheater with IDA Pro.

So here is the function that i need it to be hacked.

 

.il2cpp:0000000102875048 var_18          = -0x18
.il2cpp:0000000102875048 var_10          = -0x10
.il2cpp:0000000102875048 var_s0          =  0
.il2cpp:0000000102875048
.il2cpp:0000000102875048                 SUB             SP, SP, #0x30
.il2cpp:000000010287504C                 STP             X20, X19, [SP,#0x20+var_10]
.il2cpp:0000000102875050                 STP             X29, X30, [SP,#0x20+var_s0]
.il2cpp:0000000102875054                 ADD             X29, SP, #0x20
.il2cpp:0000000102875058                 MOV             X19, X0
.il2cpp:000000010287505C                 ADRP            X20, #qword_104D8EC30@PAGE
.il2cpp:0000000102875060                 LDR             X1, [X20,#qword_104D8EC30@PAGEOFF]
.il2cpp:0000000102875064                 CBNZ            X1, loc_10387508C
.il2cpp:0000000102875068                 ADRP            X0, #aUnityengineCam@PAGE ; "Cam::get_View()"
.il2cpp:000000010287506C                 ADD             X0, X0, #aUnityengineCam@PAGEOFF ; "Cam::get_View()"
.il2cpp:0000000102875070                 BL              sub_101124E8C
.il2cpp:0000000102875074                 MOV             X1, X0
.il2cpp:0000000102875078                 CBNZ            X0, loc_103875088
.il2cpp:000000010287507C                 ADRP            X0, #aUnityengineCam@PAGE ; "Cam::get_View()"
.il2cpp:0000000102875080                 ADD             X0, X0, #aUnityengineCam@PAGEOFF ; "Cam::get_View()"
.il2cpp:0000000102875084                 STR             X1, [SP,#0x20+var_18]
.il2cpp:0000000102875088                 BL              sub_1011216EC
.il2cpp:000000010287508C                 MOV             X1, #0
.il2cpp:0000000102875090                 BL              sub_101120410
.il2cpp:0000000102875094 ; ---------------------------------------------------------------------------
.il2cpp:0000000102875094                 LDR             X1, [SP,#0x20+var_18]
.il2cpp:0000000102875098
.il2cpp:0000000102875098 loc_103875088                           ; CODE XREF: Cam$$get_View+30j
.il2cpp:0000000102875098                 STR             X1, [X20,#qword_104D8EC30@PAGEOFF]
.il2cpp:000000010287509C
.il2cpp:000000010287509C loc_10387508C                           ; CODE XREF: Cam$$get_View+1Cj
.il2cpp:000000010287509C                 MOV             X0, X19
.il2cpp:0000000102875100                 LDP             X29, X30, [SP,#0x20+var_s0]
.il2cpp:0000000102875104                 LDP             X20, X19, [SP,#0x20+var_10]
.il2cpp:0000000102875108                 ADD             SP, SP, #0x30 ; '0'
.il2cpp:000000010287510C                 BR              X1
.il2cpp:000000010287510C ; End of function Cam$$get_View

 

this is the right function of camera view

all what i want is to make slide switch hack "the slide is to custom the zoom in/out"

 

all what i can do is to zoom-in i couldn't find out how to zoom-out.

 

all what i did is take the offset: 102875048 change to fmov s0, #31

 

now fmove s0, #10 super zoom-in if we increase the number we go zoom out until fmov s0, #31 the max value

but the game original zoom is #29 if change to #31 not a big difference it's like useless.

 

i tried everything i know only (fmove s0, #31) worked, 

 

Any possible way/method to zoom out more?

 

 

 

 

Updated by L O V A
  • Agree 1
  • Informative 1
  • Solution
Posted

Unity is in a 3D environment as far as I know, so basically you want to find the function to set the Camera location. This way you can move it up or down or whatever. The reason it does that is because of ARM's way of handling floating point. I think in the Club "IDA tips" there should be something detailing your issue. But for the set location you'd want to call that function by making a function pointer to it. If it's too complicated you can find the GetCameraLocation and move on an axis but again, you are limited by the floats in ARM

  • Like 1
Posted (edited)

Or just find the fov in the player class or in camera class from the dump and modify the float value(slider or just simple modification). Or search field of view inside dump and find the right class, if there isn't in player class or camera class. Example of a camera class where fov can be modified 

// Namespace: 
[RequireComponent] // RVA: 0x1002C437C Offset: 0x2C437C
[VoodooPresetSourceAttribute] // RVA: 0x1002C437C Offset: 0x2C437C
public class vp_FPCamera : vp_Component // TypeDefIndex: 14388
{
	// Fields
	public vp_FPController FPController; // 0x98
	private vp_FPInput m_FPInput; // 0xA0
	[CompilerGeneratedAttribute] // RVA: 0x1002F1C0C Offset: 0x2F1C0C
	private IAimController <AimController>k__BackingField; // 0xA8
	public Vector2 MouseSensitivity; // 0xB0
	public int MouseSmoothSteps; // 0xB8
	public float MouseSmoothWeight; // 0xBC
	public bool MouseAcceleration; // 0xC0
	public float MouseAccelerationThreshold; // 0xC4
	public float MouseAccelerationForce; // 0xC8
	protected Vector2 m_MouseMove; // 0xCC
	protected List<Vector2> m_MouseSmoothBuffer; // 0xD8
	public float RenderingFieldOfView; // 0xE0
	public float RenderingZoomDamping; // 0xE4
	protected float m_FinalZoomTime; // 0xE8
	public Vector3 PositionOffset; // 0xEC
	public float PositionGroundLimit; // 0xF8
	public float PositionSpringStiffness; // 0xFC
	public float PositionSpringDamping; // 0x100
	public float PositionSpring2Stiffness; // 0x104
	public float PositionSpring2Damping; // 0x108
	public float PositionKneeling; // 0x10C
	public int PositionKneelingSoftness; // 0x110
	protected vp_Spring m_PositionSpring; // 0x118
	protected vp_Spring m_PositionSpring2; // 0x120
	protected bool m_DrawCameraCollisionDebugLine; // 0x128
	public Vector2 RotationPitchLimit; // 0x12C
	public Vector2 RotationYawLimit; // 0x134
	public float RotationSpringStiffness; // 0x13C
	public float RotationSpringDamping; // 0x140
	public float RotationKneeling; // 0x144
	public int RotationKneelingSoftness; // 0x148
	public float RotationStrafeRoll; // 0x14C
	protected float m_Pitch; // 0x150
	protected float m_Yaw; // 0x154
	protected vp_Spring m_RotationSpring; // 0x158
	protected Vector2 m_InitialRotation; // 0x160
	public float ShakeSpeed; // 0x168
	public Vector3 ShakeAmplitude; // 0x16C
	protected Vector3 m_Shake; // 0x178
	public Vector4 BobRate; // 0x184
	public Vector4 BobAmplitude; // 0x194
	public float BobInputVelocityScale; // 0x1A4
	public float BobMaxInputVelocity; // 0x1A8
	public bool BobRequireGroundContact; // 0x1AC
	protected float m_LastBobSpeed; // 0x1B0
	protected Vector4 m_CurrentBobAmp; // 0x1B4
	protected Vector4 m_CurrentBobVal; // 0x1C4
	protected float m_BobSpeed; // 0x1D4
	public vp_FPCamera.BobStepDelegate BobStepCallback; // 0x1D8
	public float BobStepThreshold; // 0x1E0
	protected float m_LastUpBob; // 0x1E4
	protected bool m_BobWasElevating; // 0x1E8
	protected Vector3 m_CameraCollisionStartPos; // 0x1EC
	protected Vector3 m_CameraCollisionEndPos; // 0x1F8
	protected RaycastHit m_CameraHit; // 0x204
	public float HeadImpactMultiplier; // 0x230
	[ObsoleteAttribute] // RVA: 0x1002F1C1C Offset: 0x2F1C1C
	public Vector2 AttackRecoil; // 0x234
	[CompilerGeneratedAttribute] // RVA: 0x1002F1C2C Offset: 0x2F1C2C
	private Vector2 <AttackRecoilNew>k__BackingField; // 0x23C
	private vp_FPAutoAimFovHelper autoAimHelper; // 0x248
	private FOVRecalculator fovRecalculator; // 0x250
	private vp_FPMSPlayerEventHandler m_Player; // 0x258
	private ShellShockEffectController m_ShellShock; // 0x260
	private Camera cachedCamera; // 0x268
	private int shakeIndex; // 0x270

	// Properties
	public bool IsMouseMoved { get; }
	public IAimController AimController { get; set; }
	public Vector2 AttackRecoilNew { get; set; }
	private float renderingFieldOfViewWithAutoAim { get; }
	public bool DrawCameraCollisionDebugLine { get; set; }
	private vp_FPMSPlayerEventHandler Player { get; }
	public Vector2 Angle { get; set; }
	public Vector3 Forward { get; }
	public float Pitch { get; set; }
	public float Yaw { get; set; }
	protected virtual Vector2 OnValue_Rotation { get; set; }
	protected virtual Vector3 OnValue_Forward { get; }

	// Methods
	public bool get_IsMouseMoved() { } // RVA: 0x101EED8E4 Offset: 0x1EED8E4
	[CompilerGeneratedAttribute] // RVA: 0x10033A490 Offset: 0x33A490
	public IAimController get_AimController() { } // RVA: 0x101EEDA90 Offset: 0x1EEDA90
	[CompilerGeneratedAttribute] // RVA: 0x10033A4A0 Offset: 0x33A4A0
	private void set_AimController(IAimController value) { } // RVA: 0x101EEDA98 Offset: 0x1EEDA98
	[CompilerGeneratedAttribute] // RVA: 0x10033A4B0 Offset: 0x33A4B0
	public Vector2 get_AttackRecoilNew() { } // RVA: 0x101EEDAA0 Offset: 0x1EEDAA0
	[CompilerGeneratedAttribute] // RVA: 0x10033A4C0 Offset: 0x33A4C0
	public void set_AttackRecoilNew(Vector2 value) { } // RVA: 0x101EEDAAC Offset: 0x1EEDAAC
	private float get_renderingFieldOfViewWithAutoAim() { } // RVA: 0x101EEDAB8 Offset: 0x1EEDAB8
	public bool get_DrawCameraCollisionDebugLine() { } // RVA: 0x101EEDB80 Offset: 0x1EEDB80
	public void set_DrawCameraCollisionDebugLine(bool value) { } // RVA: 0x101EEDB88 Offset: 0x1EEDB88
	private vp_FPMSPlayerEventHandler get_Player() { } // RVA: 0x101EEDB90 Offset: 0x1EEDB90
	public Vector2 get_Angle() { } // RVA: 0x101EEDCF0 Offset: 0x1EEDCF0
	public void set_Angle(Vector2 value) { } // RVA: 0x101EEDD24 Offset: 0x1EEDD24
	public Vector3 get_Forward() { } // RVA: 0x101EEDDCC Offset: 0x1EEDDCC
	public float get_Pitch() { } // RVA: 0x101EED96C Offset: 0x1EED96C
	public void set_Pitch(float value) { } // RVA: 0x101EED974 Offset: 0x1EED974
	public float get_Yaw() { } // RVA: 0x101EEDE00 Offset: 0x1EEDE00
	public void set_Yaw(float value) { } // RVA: 0x101EEDD4C Offset: 0x1EEDD4C
	protected override void Awake() { } // RVA: 0x101EEDE08 Offset: 0x1EEDE08
	protected override void OnEnable() { } // RVA: 0x101EEEAAC Offset: 0x1EEEAAC
	protected override void OnDisable() { } // RVA: 0x101EEEE00 Offset: 0x1EEEE00
	protected override void Start() { } // RVA: 0x101EEEEC0 Offset: 0x1EEEEC0
	protected override void Init() { } // RVA: 0x101EEEF18 Offset: 0x1EEEF18
	public void ManualUpdate() { } // RVA: 0x101EEEF1C Offset: 0x1EEEF1C
	protected override void FixedUpdate() { } // RVA: 0x101EEEFD4 Offset: 0x1EEEFD4
	protected override void LateUpdate() { } // RVA: 0x101EEF06C Offset: 0x1EEF06C
	private void UpdateCameraRotation() { } // RVA: 0x101EEF070 Offset: 0x1EEF070
	protected virtual void DoCameraCollision() { } // RVA: 0x101EEF5D0 Offset: 0x1EEF5D0
	public virtual void AddForce(Vector3 force) { } // RVA: 0x101EEFAEC Offset: 0x1EEFAEC
	public virtual void AddForce(float x, float y, float z) { } // RVA: 0x101EEFB44 Offset: 0x1EEFB44
	public virtual void AddForce2(Vector3 force) { } // RVA: 0x101EEFB98 Offset: 0x1EEFB98
	public void AddForce2(float x, float y, float z) { } // RVA: 0x101EEFBF0 Offset: 0x1EEFBF0
	public virtual void AddRollForce(float force) { } // RVA: 0x101EEFC44 Offset: 0x1EEFC44
	public virtual void AddRotationForce(Vector3 force) { } // RVA: 0x101EEFCFC Offset: 0x1EEFCFC
	public void AddRotationForce(float x, float y, float z) { } // RVA: 0x101EEFD54 Offset: 0x1EEFD54
	public void UpdateCamera(float mouseX, float mouseY) { } // RVA: 0x101EEEFA4 Offset: 0x1EEEFA4
	protected virtual void UpdateMouseLook(float mouseX, float mouseY) { } // RVA: 0x101EEFDA8 Offset: 0x1EEFDA8
	protected virtual void UpdateZoom() { } // RVA: 0x101EF0434 Offset: 0x1EF0434
	public virtual void Zoom() { } // RVA: 0x101EF05A4 Offset: 0x1EF05A4
	public virtual void SnapZoom() { } // RVA: 0x101EF05D4 Offset: 0x1EF05D4
	protected virtual void UpdateShakes() { } // RVA: 0x101EF069C Offset: 0x1EF069C
	protected virtual void UpdateBob() { } // RVA: 0x101EF081C Offset: 0x1EF081C
	protected virtual void DetectBobStep(float speed, float upBob) { } // RVA: 0x101EF0DC0 Offset: 0x1EF0DC0
	protected virtual void UpdateSwaying() { } // RVA: 0x101EF1128 Offset: 0x1EF1128
	protected virtual void UpdateSprings() { } // RVA: 0x101EF127C Offset: 0x1EF127C
	public virtual void DoBomb(Vector3 positionForce, float minRollForce, float maxRollForce) { } // RVA: 0x101EF12E8 Offset: 0x1EF12E8
	public override void Refresh() { } // RVA: 0x101EF1360 Offset: 0x1EF1360
	public virtual void SnapSprings() { } // RVA: 0x101EF169C Offset: 0x1EF169C
	public virtual void StopSprings() { } // RVA: 0x101EF1860 Offset: 0x1EF1860
	public virtual void Stop() { } // RVA: 0x101EF18C0 Offset: 0x1EF18C0
	public virtual void SetRotation(Vector2 eulerAngles, bool stop = True, bool resetInitialRotation = True) { } // RVA: 0x101EF1910 Offset: 0x1EF1910
	protected virtual void OnMessage_FallImpact(float impact) { } // RVA: 0x101EF19E8 Offset: 0x1EF19E8
	protected virtual void OnMessage_HeadImpact(float impact) { } // RVA: 0x101EF1BB8 Offset: 0x1EF1BB8
	public void BombShake(BombShakeArgs args) { } // RVA: 0x101EF1CF0 Offset: 0x1EF1CF0
	protected virtual void OnStart_Zoom() { } // RVA: 0x101EF1DC4 Offset: 0x1EF1DC4
	protected virtual bool CanStart_Run() { } // RVA: 0x101EF1E7C Offset: 0x1EF1E7C
	protected virtual Vector2 get_OnValue_Rotation() { } // RVA: 0x101EF1F78 Offset: 0x1EF1F78
	protected virtual void set_OnValue_Rotation(Vector2 value) { } // RVA: 0x101EF1FAC Offset: 0x1EF1FAC
	protected virtual void OnMessage_Stop() { } // RVA: 0x101EF1FD4 Offset: 0x1EF1FD4
	protected virtual Vector3 get_OnValue_Forward() { } // RVA: 0x101EF1FE4 Offset: 0x1EF1FE4
	private void OnMouseControllerChanged() { } // RVA: 0x101EEEB74 Offset: 0x1EEEB74
	public void ResetSmoothBuffer() { } // RVA: 0x101EF1FE8 Offset: 0x1EF1FE8
	public void .ctor() { } // RVA: 0x101EF2048 Offset: 0x1EF2048
}

This float can be modified to get fov modification : "private float get_renderingFieldOfViewWithAutoAim() { } // RVA: 0x101EEDAB8 Offset: 0x1EEDAB8"

Updated by Max-Q
  • Like 1
Posted (edited)

@Max-Q  i have been doing that but when i make package no luck or i picked wrong class

 

can i share the work with you?

Updated by L O V A
Posted (edited)
5 hours ago, L O V A said:

@Max-Q  i have been doing that but when i make package no luck or i picked wrong class

 

can i share the work with you?

How you want. But you can just post the ss with the error compile, then if need you can send over. 

You can use also live offset patcher to do much faster things in a game, and test offsets, to avoid compiling everytime.

Updated by Max-Q
Posted
18 minutes ago, Max-Q said:

How you want. But you can just post the ss with the error compile, then if need you can send over. 

You can use also live offset patcher to do much faster things in a game, and test offsets, to avoid compiling everytime.

ok i will PM everything

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Magical Girl : Idle Pixel Hero v6.31 +2 Jailed Cheats
      Modded/Hacked App: Magical Girl : Idle Pixel Hero By SuperPlanet corp.
      Bundle ID: com.superplanet.magical
      App Store Link: https://apps.apple.com/us/app/magical-girl-idle-pixel-hero/id6450410750?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Loot Multiplier

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue 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
        • Like
      • 0 replies
    • Heroes vs. Hordes: Survivor v3.7.1 [ +11 Cheats ] Currency Max
      Modded/Hacked App: Heroes vs. Hordes: Survivor By Swift Games GmbH
      Bundle ID: com.swiftgames.roguelikesurvival
      iTunes Store Link: https://apps.apple.com/us/app/heroes-vs-hordes-survivor/id1608898173?uo=4

       
      Hack Features

      - Currency

      - Resource

      - Gold Unlimited [ Bonus Wave ]

      - Ch Unlocked [ Play All Off ]

      - Always Last Wave

      - Talents Cost 0

      - Hero DMG Only

      - HP & DMG [ Just Equip & Unequip ]

      - Enemy Freeze

      - Enemy ATK NO

       
      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Thanks
        • Winner
        • Like
      • 54 replies
    • Heroes vs. Hordes: Survivor v3.7.1 [ +11 Jailed ] Currency Max
      Modded/Hacked App: Heroes vs. Hordes: Survivor By Swift Games GmbH
      Bundle ID: com.swiftgames.roguelikesurvival
      iTunes Store Link: https://apps.apple.com/us/app/heroes-vs-hordes-survivor/id1608898173?uo=4

       

       

      Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      Hack Features

      - Currency

      - Resource

      - Gold Unlimited [ Bonus Wave ]

      - Ch Unlocked [ Play All Off ]

      - Always Last Wave

      - Talents Cost 0

      - Hero DMG Only

      - HP & DMG [ Just Equip & Unequip ]

      - Enemy Freeze

      - Enemy ATK NO


      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
        • Agree
        • Thanks
        • Winner
        • Like
      • 67 replies
    • Adventure Bay - Farm Games v1.37.14 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Adventure Bay - Farm Games By Gamegos Teknoloji A.S.
      Bundle ID: com.gamegos.adventure.bay.paradise.farm
      iTunes Store Link: https://apps.apple.com/us/app/adventure-bay-farm-games/id1578449819?uo=4
       

      🤩 Hack Features

      - Gems
      - Coins
      - Energy
      - Avatar Unlock
        • Like
      • 8 replies
    • Adventure Bay - Farm Games v1.37.14 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Adventure Bay - Farm Games By Gamegos Teknoloji A.S.
      Bundle ID: com.gamegos.adventure.bay.paradise.farm
      iTunes Store Link: https://apps.apple.com/us/app/adventure-bay-farm-games/id1578449819?uo=4


      🤩 Hack Features

      - Gems
      - Coins
      - Energy
      - Avatar Unlock
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 12 replies
    • Pocket Necromancer v1.4.1 [ +11 Cheats ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:
      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Winner
        • Like
      • 43 replies
    • Pocket Necromancer v1.4.1 [ +11 Jailed ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:

      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]

       
      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App
        • Informative
        • Agree
        • Winner
        • Like
      • 44 replies
    • Galaxy Attack Alien Shooter v5.12.0 [ +3 Jailed ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Hack Features:
      - Max Bullet
      - Max Life
      - DMG



      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Winner
        • Like
      • 36 replies
    • Galaxy Attack Alien Shooter v5.12.0 [ +3 Cheats ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By ABIGAMES PTE. LTD
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Max Life 
      - Damage Multi [PvP Use Only Boss ] 
      - Max Bullet



      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content

      Download Hack
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 192 replies
    • SuperStar STARSHIP Cheats v3.24.3 +3
      Modded/Hacked App: SuperStar STARSHIP By Dalcomsoft Inc.
      Bundle ID: com.dalcomsoft.sss
      iTunes Store Link: https://apps.apple.com/us/app/superstar-starship/id1480181152?uo=4


      Hack Features:
      - Never Lose
      - Auto Dance
      - Always S.Perfect


      iOS Hack Download Link: https://iosgods.com/topic/164185-superstar-starship-cheats-v378-3/
        • Agree
        • Haha
        • Like
      • 128 replies
    • Merge Studio: Fashion Makeover v3.5.0 +50++ Jailed Cheats [ Debug Menu ]
      Modded/Hacked App: Merge Studio: Fashion Makeover By Paxie Games Oyun ve Yazilim Anonim Sirketi
      Bundle ID: com.paxiegames.mergestudio
      iTunes Store Link: https://apps.apple.com/us/app/merge-studio-fashion-makeover/id1615964753?uo=4


      Hack Features:
      - Debug Menu -> Head over to Settings and toggle the Sound button.


      Jailbreak required hack(s): [Mod Menu Hack] Merge Studio: Fashion Makeover v2.3.0 +50++ Cheats [ Debug Menu ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 54 replies
    • Merge Studio: Fashion Makeover v3.5.0 +50++ Cheats [ Debug Menu ]
      Modded/Hacked App: Merge Studio: Fashion Makeover By Paxie Games Oyun ve Yazilim Anonim Sirketi
      Bundle ID: com.paxiegames.mergestudio
      iTunes Store Link: https://apps.apple.com/us/app/merge-studio-fashion-makeover/id1615964753?uo=4


      Hack Features:
      - Debug Menu -> Head over to Settings and toggle the Sound button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Merge Studio: Fashion Makeover v2.3.0 +50++ Jailed Cheats [ Debug Menu ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 45 replies
×
  • 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