Jump to content

DzhiLord

Senior Member
  • Posts

    293
  • Joined

  • Last visited

Everything posted by DzhiLord

  1. Hi dear guys I’ve been trying to do aimbot but as it seems it doesn’t work on the new version here is the example of the code And if there’s new one could you provide it please? - (void)aimbot { if (!(self.overlayView.isAimbot || self.overlayView.isBulletTrack1)) return; if (self.isFire) { if (IsValidAddress(self.lockActor)) { float targetHp = Read<float>(self.lockActor + 0xd08); float localPlayerHp = Read<float>(self.localPlayer.base + 0xcbc); if (targetHp >= 0 && localPlayerHp > 0) { if (self.overlayView.isBulletTrack1) { Vector3 lockBoneV3 = [self getBoneWorldPos:self.lockActor index:self.overlayView.aimbotPart1]; Vector3 diffV3 = lockBoneV3 - POV.Location; float pitch = atan2f(diffV3.Z, sqrt(diffV3.X * diffV3.X + diffV3.Y * diffV3.Y)) * 57.29577951308f; float yaw = atan2f(diffV3.Y, diffV3.X) * 57.29577951308f; if (IsValidAddress(controlRotation)) { if (Read<float>(controlRotation) != 0) { Write<float>(controlRotation, pitch); } if (Read<float>(controlRotation + 0x4) != 0) { Write<float>(controlRotation + 0x4, yaw); } } } } else { self.lockActor = 0; self.isFire = false; } } } else { self.lockActor = 0; self.isFire = false; } }
  2. Use sdk path SDK_PATH = $(THEOS)/sdks/iPhoneOS11.2.sdk/ $(info ===> Setting SYSROOT to $(SDK_PATH)...) SYSROOT = $(SDK_PATH) else TARGET = iphone:clang:latest:8.0 endif And also Don’t forget to download the sdk and which version of SDK you’re downloading You should change it, for example now I use 11.2 and also rename your plist file the same tweak you named from makefile
  3. Please could you provide it as code and also where to input thank you so much🤍
  4. Hi iosgods members I have a problem, in theos I want to patch offsets inside /var/containers/Bundle/Application/BA7FA730-6F56-4350-AD6C-727AC0E4E06E/ShadowTrackerExtra.app/Frameworks But I always end it up with Binary How Could I Change the link from binary to frameworks
×
  • 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