Jump to content

aQReh

Senior Member
  • Posts

    136
  • Joined

  • Last visited

7 Followers

Profile Information

  • iDevice
    iPhone 11
  • iOS Version
    14.3
  • Jailbroken
    Yes
  • Rooted
    No
  • Gender
    Not Telling
  • Interests
    Islam

Recent Profile Visitors

1,590 profile views

aQReh's Achievements

Enthusiast

Enthusiast (6/14)

  • 4 Years In
  • Senior Member
  • Full Member
  • Appreciating Others
  • 3 Years In

Recent Badges

460

Reputation

4

Community Answers

  1. 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.
  2. @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 ?
  3. @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); }
  4. @batchhi see a field but its in other class called OtherPlayerController: private Quaternion m_TargetRotation; // 0x39C
  5. @batchh will this method help ??? // RVA: 0x101158C public Void SetRotation(Quaternion rotation) { }
  6. 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
  7. @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() { }
  8. 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
  9. 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

  10. Let me give it a try to ida. I will get back to you if I have any problem.
  11. @batchh @carpoa that dlls are not working with dnspy. But can we use that script with IDA ? Or is it working or not ?
  12. 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.
  13. 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.
  14. @Rook is iGSpoof still only for jailbroken or is it now work on jailed.
×
  • 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