Jump to content

YeetDisDude

Member
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPad Air (4th gen)
  • iOS Version
    16.6.1
  • Jailbroken
    No
  • Rooted
    No
  • Gender
    Male
  • Location
    Alpha Centauri A

Recent Profile Visitors

2,904 profile views

YeetDisDude's Achievements

Explorer

Explorer (4/14)

  • Mega Dedicated
  • Very Popular Rare
  • Collaborator
  • 3 Years In
  • Popular Rare

Recent Badges

2.2k

Reputation

  1. hello, i need help on getting an ios device's UDID programmatically, im using objective c and i need to get the device's udid to use for me auth system since uuid changes again, i need udid, not uuid
  2. just... why youd have to learn how to use ida to do this stuff
  3. hello, so i am currently making a cheat for Pixel Gun3D and i'm making a ESP mod which uses Unity's WorldToScreenPoint function public Vector3 WorldToScreenPoint(Vector3 position) { Vector3 result; return result; } i am using the one above and here is my code for calling it Vector3 screenPos = WorldToScreenPoint(get_cam(), position); the position is the enemy's position but then the worldtoscreen's return isnt accurate so i do this to get a better result float xPos = screenPos.X- (SCREEN_WIDTH * 0.5); // SCREEN_WIDTH - (SCREEN_WIDTH - screenPos.X); float yPos = SCREEN_WIDTH - screenPos.Y; then draw it with ImGui: ImVec2 startPoint = ImVec2((SCREEN_WIDTH / 2), 5); ImVec2 endPoint = ImVec2(xPos, yPos); ImGui::GetBackgroundDrawList()->AddLine(startPoint, endPoint, [self getImU32:Color::Black], 2.0f); it still doesnt work like expected because it draws lines to places that are/arent near the enemy (picture below) if anyone could help me to calculate the actual screen position i'd really apppreciate it
×
  • 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