Jump to content

Ted2

Senior Member
  • Posts

    4,933
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 13 Pro
  • iOS Version
    16.0
  • Jailbroken
    No
  • Rooted
    No
  • Gender
    Male
  • Location
    Netherlands
  • Interests
    Coding, parkour, reverse engineering
  • Donor
    Member has made a donation to iOSGods.

Recent Profile Visitors

58,826 profile views

Ted2's Achievements

  1. kitty memory error any fix? sprintf deprecated tried using snprintf cuz they its an alternative then a error no matching funtion call so i add sizeof() worked but game froze -_- help plz.

    1. Ted2

      Ted2

      I'm not the maintainer of KittyMemory, so you ask him instead. Alternatively, don't use the latest available SDKs.

    2. HPBattery
    3. HPBattery

      HPBattery

      ima try a different sdk

       

  2. you need to set the correct bundle, otherwise it doesn't know where to inject to edit; oh just saw you already figured that out yourself.
  3. you came back

    1. Ted2

      Ted2

      ????????

    2. Zahir

      Zahir

      Welcome back @Ted2 :highfive: 

  4. You're not getting the same error if you've replaced your old hook with the one I provided. I just tested this on my machine. However, your tweak.xm is full of errors. It's probably best if you go online to learn the basics of programming syntax. Alternatively, for every change you make to the tweak.xm, do a "make package", so you know exactly when you did something wrong. Because right now, there are multiple errors in multiple places.
  5. Your hook function is written wrong, it should be; float(*old_GetGhostMaxSpeed)(void *this_); float GetGhostMaxSpeed(void *this_) { if([switches isSwitchOn:@"SpeedHack"]) { return old_GetGhostMaxSpeed * [[switches getValueFromSwitch:@"SpeedHack"] floatValue]; } // Note I'm closing the if statement here!!!!!!!!!!!!! return old_GetGhostMaxSpeed(this_); }
  6. For anyone that uses my mod menu template, it should now support the palera1n jailbreak. Xina jailbreak no idea, but you can give it a try.

  7. You'll have to write your own Objective-C code, as the menu does not support this by default.
  8. It might be that the template I used in this guide is outdated for theos. You could try to make a menu instead with this template: https://github.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos
  9. Hmm, pretty strange. Could you try and change this "5": https://github.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/blob/master/template/Tweak.xm#L111 In your tweak.xm to 15 or something? Maybe the framework isn't properly loaded yet for some reason. Otherwise I've no idea why it wouldn't work tbh.
×
  • 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