Jump to content

Tay-K 47

Member
  • Posts

    40
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone Xr
  • iOS Version
    14.3
  • Jailbroken
    Yes
  • Android Device
    None
  • Android Version
    None
  • Rooted
    No
  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Tay-K 47's Achievements

Rookie

Rookie (2/14)

  • 3 Years In
  • 2 Years In
  • Collaborator
  • First Post
  • Conversation Starter

Recent Badges

1

Reputation

1

Community Answers

  1. Can you do function pointers on jailed devices? And pass those pointers as an argument in another function pointer?
  2. Im on an iPhone XR on ios 14.3, jailbroken with taurine. I even tried using openSSH with a macbook but i got the same error
  3. Ight so im trying to debug apps with lldb. Thing is that when I try to attach to an app I get some error. here it is: % iPhone:~ mobile% su Password: # iPhone:/var/mobile root# lldb-10 (lldb) attach qwe.qwe.sdd zsh: segmentation fault lldb-10 # iPhone:/var/mobile root# idrk how to fix this sh!t, lemme know if you guys know how
  4. are u serious? wasn't the picture enough? You toggle the apps you want to decrypt and run it, then select what you want to do. Then the decrypted binary will be in a "decrypted" folder in filza. Hope that was enough for you
  5. Until the apps expire no, usually they last about a week
  6. So Ive been trying to hook an array for enemy players through photon. I used this header that I found on GitHub: template <typename T> struct monoArray { void* klass; void* monitor; void* bounds; int max_length; void* vector [1]; int getLength() { return max_length; } T getPointer() { return (T)vector; } }; I used this hook and pointer for the function I was trying to hook: //pointer monoArray<void *> *(*PhotonNetwork_get_OtherPlayers)() = (monoArray<void *> *(*)())getRealOffset(0x1018291A8); //hook monoArray<void **> *otherPlayers = PhotonNetwork_get_OtherPlayers(); for (int i = 0; i < otherPlayers->getLength(); ++i) { void *ePlayerr = otherPlayers->getPointer()[i]; //run my code for the hack im trying to do. examples = telekill, masskill, scale players ect.. } I get this error tho: Tweak.xm:531:21: error: cannot initialize a variable of type 'monoArray<void **> *' with an rvalue of type 'monoArray<void *> *' monoArray<void **> *photonplayers = PhotonNetwork_get_OtherPlayers(); How do I fix this? Already tried on my own and looking it up, Just gave me even more errors
  7. Fixed it, idk what was wrong with it, I just copied the control file from one of my other tweaks
  8. I'm making a preference bundle for a game I wanted to cheat in, well when I compiled I got this error when I ran make package ERROR: control file '/Users/dollaz/Desktop/bcwmcc/.theos/_/DEBIAN/control' is missing a Version field at /Users/dollaz/theos/bin/dm.pl line 77. make: *** [internal-package] Error 255 I was looking online for about an hour and only found things on "parse error fix". Does anyone know how to fix this. I know its caused by the control file so here is mine. Package: com.tk47.test Name: Test Depends: mobilesubstrate, preferenceloader Version: 1.0 Architecture: iphoneos-arm Description: TEST Maintainer: tk47 Author: tk47 Section: Tweaks
×
  • 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