Jump to content

DeMoN3X

Senior Member
  • Posts

    215
  • Joined

  • Last visited

1 Follower

Profile Information

  • iDevice
    iPhone 7 Plus
  • iOS Version
    iOS 14
  • Jailbroken
    Yes

Recent Profile Visitors

914 profile views

DeMoN3X's Achievements

Apprentice

Apprentice (3/14)

  • Super Dedicated
  • 5 Years In
  • 4 Years In
  • Posting Machine Rare
  • 3 Years In

Recent Badges

25

Reputation

  1. Hello all ! How can I locate a unity framework address? Because on LLDB it shows me an address with 0x10 in addition. Is there a specific calculation to do to get the address in unity framework? Thank you in advance for your help !
  2. I took a paid membership for a developer apple id, now I get this error: "ERROR: Guru Meditation b4822c@1016:d3cfef Error -3 while decompressing data: invalid stored block lengths" Is it because the ipa file is too big?
  3. I too get the following error: ERROR: Guru Meditation 0db732@217:3aea77 Login failed (-36607): Unable to sign you in to your Apple ID. Try again later. IOS 15.3.1 Iphone 7 +
  4. Hello, I have a problem following the following tutorial: https://iosgods.com/topic/58415-educational-how-to-use-ida-v70s-ios-live-debugger/ I managed to hang the game with debugserver, but once I want to launch the process, I have two error messages that appear, yet the executable is present in the specified path. https://i.postimg.cc/J0SkxT0Y/3-EC5-DB94-335-C-4549-98-AB-3-C899-C81-F421.jpghttps://i.postimg.cc/C1LkxB97/49312-D30-2509-42-B0-94-A4-5202-BEB2-C8-F2.jpg Thank you in advance for your help.
  5. Hello, The method works for one switch, but when I try on several switches the game crashes, why? Code : float userValue = [[switches getValueFromSwitch:NSSENCRYPT("Custom speed")] floatValue]; float(*old_get_speed)(void *this_); float get_speed(void *this_) { if([switches isSwitchOn:@"Custom speed"]) { return old_get_speed(this_) * [[switches getValueFromSwitch:@"Custom speed"] floatValue]; } return old_get_speed(this_); } float userValue2 = [[switches getValueFromSwitch:NSSENCRYPT("Custom speed2")] floatValue]; float(*old_get_speed2)(void *this_); float get_speed2(void *this_) { if([switches isSwitchOn:@"Custom speed2"]) { return old_get_speed2(this_) * [[switches getValueFromSwitch:@"Custom speed2"] floatValue]; } return old_get_speed2(this_); } float userValue3 = [[switches getValueFromSwitch:NSSENCRYPT("Custom FOV")] floatValue]; float(*old_get_fov)(void *this_); float get_fov(void *this_) { if([switches isSwitchOn:@"Custom FOV"]) { return old_get_fov(this_) * [[switches getValueFromSwitch:@"Custom FOV"] floatValue]; } return old_get_fov(this_); } %ctor { MSHookFunction((void *)getRealOffset(0x101XXXXXX), (void *)get_speed, (void **)&old_get_speed); MSHookFunction((void *)getRealOffset(0x101XXXXXX), (void *)get_speed2, (void **)&old_get_speed2); MSHookFunction((void *)getRealOffset(0x101XXXXXX), (void *)get_fov, (void **)&old_get_fov); } void setup() { Thank you in advance for your help
  6. I also tried this, with several different launch times, the problem persists.
  7. I checked, but it seems that MShook is not the problem, I tried another template, and it works. But I would like it to work on Ted2 template, it's a strange problem, where does the problem come from then?
  8. What could be the reason? I just tried substitute, and my mod menu crashed. And that in I install Cydia Substrate, it works.
  9. Hello, Friends of mine can't use my mod menu because they have devices above iPhone 8 and so they use Substitute. The mod menu crashes on opening for them, how to add support for their devices with the ted2 template? Thank you in advance for your help.
×
  • 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