Jump to content

 Something great is coming! 🤖

Stay tuned for the big reveal happening here on iOSGods on the 20th of February!

The countdown has finished!

aQReh

Senior Member
  • Posts

    165
  • Joined

  • Last visited

Everything posted by aQReh

  1. Still same problem after installing those.
  2. @batchh I have test on 3 different unity games and all give same error. I am on iOS 14.3 using uncover jailbreak. deb injected via igamegod
  3. i got error: ["Unable to find load 248"]
  4. Sorry How to view console ?
  5. If youy dont mind can you help me if i provide you with my source and dump. i have limited knowledge. I still dont understand much.
  6. @batchh will this method rotate from transform class from unityEngine work ? public Quaternion localRotation { [Token(Token = "0x6000A5E")] [Address(RVA = "0x26B3A2C", Offset = "0x26B3A2C", VA = "0x26B3A2C")] get { return default(Quaternion); } [Token(Token = "0x6000A5F")] [Address(RVA = "0x26B3AC4", Offset = "0x26B3AC4", VA = "0x26B3AC4")] set { } } or it need to be in class player class ?
  7. @batchh is like this correct: void (*setRotation)(void *player, Quaternion rotation) = (void (*)(void *, Quaternion))getRealOffset(0x101158C); // Calculate the rotation needed to aim at the closest enemy Quaternion rotation = Quaternion::LookRotation(closestEnemyPosition - Vector3(0, 0.5f, 0) - myPosition); if (CheatState::Aimbot) { setRotation(myplayer, rotation); }
  8. @batchhi see a field but its in other class called OtherPlayerController: private Quaternion m_TargetRotation; // 0x39C
  9. @batchh will this method help ??? // RVA: 0x101158C public Void SetRotation(Quaternion rotation) { }
  10. so i need to find a method with Quaternion Type like: Private Quaternion UpdatePlayerRotation or something() { } sorry i am still learning and this types really make me confuse
  11. @batchh i need help here please. here you have used field but but this game i am making aimbot for PlayerController doesnot have rotaion field. Instead it have a method called UpdatePlayerRotation when i ret this method with offset it stop my player from rotation so i think this controll myplayer rotation. But now to use this instead of field please help. here // RVA: 0x1025060 Private Void UpdatePlayerRotation() { }
  12. I am making fly function which will make my character fly but its not working as it should be i dont know why its not working. It was done similarly on android i recreated it on ios here is what i have done. void (*Old_PlayerController_Update)(void *myPlayer); void PlayerController_Update(void *myPlayer) { if (myPlayer != NULL) { // Function pointers for Rigidbody methods void (*set_velocity)(void *, Vector3 value) = (void (*)(void *, Vector3))getRealOffset(0x2785420); void (*MovePosition)(void *, Vector3 position) = (void (*)(void *, Vector3))getRealOffset(0x2785E10); Vector3 (*get_posRigidbody)(void *) = (Vector3 (*)(void *))getRealOffset(0x2785C18); if (show_fly){ void *myRigidbody = *(void **)((uint64_t)myPlayer + 0x428); // Get Rigidbody pointer if (myRigidbody != NULL) { Vector3 MyPos = get_posRigidbody(myRigidbody); // Get current position set_velocity(myRigidbody, Vector3(0.0f, 0.0f, 0.0f)); // Fly up if (setFly) { MovePosition(myRigidbody, Vector3(MyPos.x, MyPos.y + valueFly, MyPos.z)); setFly = false; // Reset after moving } // Fly down if (setFly2) { MovePosition(myRigidbody, Vector3(MyPos.x, MyPos.y - valueFly, MyPos.z)); setFly2 = false; // Reset after moving } } } } return Old_PlayerController_Update(myPlayer); } and i hook uodate like this: HOOK(0x101E7C8, PlayerController_Update, Old_PlayerController_Update); here functions from dump.cs: functions or offsets in dll arelike this: // RVA: 0x2785E10 public Void MovePosition(Vector3 position) { } // RVA: 0x2785420 public Void set_velocity(Vector3 value) { } // RVA: 0x2785C18 public Vector3 get_position() { } Here is preview what it does when i activate this function try to fly: https://file.io/OZrl5THtXDf7
  13. Hello brother. i need some help, can i send you DM please.

    1. AlyssaX64
    2. aQReh

      aQReh

      I need help with my code please, 

       

    3. aQReh

      aQReh

      Check DM please i have sent

  14. Let me give it a try to ida. I will get back to you if I have any problem.
  15. @batchh @carpoa that dlls are not working with dnspy. But can we use that script with IDA ? Or is it working or not ?
  16. Yes I want it for a specific app. Please if you can point me to something or reference I will really Appreciate it. And thanks for all those answers.
  17. Sorry for silly question but what is difference between jailbreak and rootful jailbreak. Is rootful as in full jailbreak which we do with Cydia Is there anyway I can change my iOS version on jail device. Maybe with hook or something.
  18. @Rook is iGSpoof still only for jailbroken or is it now work on jailed.
  19. Thansk
×
  • 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