Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Community Answers

  1. Ted2's post in iTunes restore / 11.1.2 -> 10.2 / error 3600 was marked as the answer   
    Downgrading to a lower iOS is not possible, unless it's signed. However there's no signed iOS which is also jailbreakable. You'll need to wait iOS 11 gets a jailbreak.
  2. Ted2's post in Enable Hack was marked as the answer   
    That hack is outdated + no mod menu.
    Use this: https://iosgods.com/topic/56206-angry-birds-2-v2161-4-hacks-unlimited-all/
  3. Ted2's post in Critical Ops crashes when i install VIP hack (CrashReport included) was marked as the answer   
    What device & ios?
    btw the crash reporter thing is useless I guess lol.
  4. Ted2's post in Need help finding a Snapchat 9.32.0.0 / 9.32.3 IPA was marked as the answer   
    Why don't you download the tweak 'AppAdmin'? Then you can just downgrade.
  5. Ted2's post in LLDB download source was marked as the answer   
    If you download the newest IDA, you can use the build in debugger. If you don't understand the build in debugger, see tutorial section, there's a tutorial pinned.
  6. Ted2's post in What happens if we dont remove aslr? was marked as the answer   
    I have answered this in multiply posts.
     
    when you debug with aslr not removed in the binary, you have to calculate everytime with the offset you get + the aslr slide.
     
    on armv7, you can remove aslr.
    on arm64, it will crash.
     
    see this to see how to deal with aslr:
     
  7. Ted2's post in Should I bother with IDA? Has it got a big learning curve? was marked as the answer   
    You don't really need to know any coding languages.
    You'll need to understand the basic instructions first, ADD(s), SUB(s), MOV(s), STR, LDR.
     
    You'll need to know how to work with registers (r1, r2, r3).
    Although that's not always true, lots of people don't debug cause they use tools  
     
     
    all instructions work from right to left, except a STR.
     
    So if for example R5 holds the gold reward & R1 is our normal gold.
     
    ADD R1, R5 --> ADD R5(reward) into R1(our gold)
     
    OR
     

    STR R5, R1 (SToRe R5(reward) into R1(gold)
     
    Once you understand those things, it will be easier & easier
     
     
  8. Ted2's post in Please correct my tweak.xm was marked as the answer   
    #include <substrate.h> %hook XBXAchievement -(BOOL)isSecret { return FALSE; } %end %hook XBXAchievement -(void)setIsSecret:(BOOL)arg1 { arg1 = FALSE; return %orig; } %end %hook XBXSLSAchievementTileLocator +(id)getTileSubPath:(id)arg1 dimensions:(unsigned short)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end %hook XBXSLSAchievementTileLocator +(id)getTileLocationForImageId:(unsigned int)arg1 fromTitleId:(unsigned int)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end %hook XBXSLS360TitleAchievementsResponse -(id)getAchievementImageUrl:(unsigned int)arg1 titleId:(unsigned int)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end  
    You were close, you forgot to add arg4 in the function name but did return it
  9. Ted2's post in Games to practice? IDA onward? was marked as the answer   
    Everyone uses ida, nothing elese xD. Yea or Flex lol.
     
    Zenonia 4 is good game, but maybe too complicated yet dunno
  10. Ted2's post in How Long is the wait for is the wait for a pending order on this site? was marked as the answer   
    Max 24 hours i guess. Basicly you have to wait for DiDA
  11. Ted2's post in Ms hooking to IPA ? was marked as the answer   
  12. Ted2's post in Modded IPAs crashing was marked as the answer   
    I just tested it. Cydia Impactor signs the entire .ipa, also the binary.
     
    Filza & AppCake don't sign the binary, which causes a crash.
     
    You'll need to manually sign the binary.
     
    How?
    - Install the .ipa
    - Go to your app folder
    - Copy the binary (name is 'Magicarp) to var/mobile
    - Go to terminal
    - cd to /var/mobile ( cd /var/mobile)
    - sign the binary (ldid -s Magikarp)
    - Place it back in app folder
    - Set premissions to 777 if still crash.
  13. Ted2's post in Question about Autolipo was marked as the answer   
    There is no point of adding the binary if you only hack arm64. Just doesn't make sense, because arm64 can't be load on arm32 devices.
     
    if you hack 32bit, you use autlipo.
     
    if you only hack arm64, those arm32 won't be able to use your hacks, ever.
     
    so idk why slater said that, but he's wrong.
     
    gn
  14. Ted2's post in How do I type this in ? was marked as the answer   
    %hook DSMLinearVideoAdsManager -(id) providerPrePodPromo { return NILL; } %end or %hook DSMLinearVideoAdsManager -(id) providerPrePodPromo { return NULL; } %end  
  15. Ted2's post in Flex tweaks into IPA ? was marked as the answer   
    Theos-jailed.
  16. Ted2's post in Respawnables club request was marked as the answer   
    You can create it yourself
  17. Ted2's post in Anyone can help me? About jailbreak was marked as the answer   
    You can not as of now.
  18. Ted2's post in Thumb hex or ARM HEX? was marked as the answer   
    You need to know if its arm or thumb, which you do by opening IDA.
     
    Or just test both & see which one works & not crash.
  19. Ted2's post in Why i got codes like this in LLDB was marked as the answer   
    Maybe you should look then up in ida before judging. It's not always the code what lldb says. You'll have to look around.
     
    also make sure aslr is removed from offsets u get*, otherwise its useless
  20. Ted2's post in iFunbox "Please jailbreak your device first" was marked as the answer   
    put the cable from your phone & then plug it back in your phone.
    I have this too sometimes
  21. Ted2's post in LDOE Putty attach Error, no _syscall was marked as the answer   
    You need to disable ptrace
  22. Ted2's post in Foundation folder EMPTY was marked as the answer   
    /var/theos/sdks/yoursdks/system/libary/frameworks/foundation.framework/headers/foundation.h
     
    Is it there?
  23. Ted2's post in Tweak.xm & Preferences Plist somebody to insert for me... was marked as the answer   
    Read what I wrote after // in both the tweak.xm & preferences.plist
     
    Tweak.xm
     
    007.plist (in /'yourprojectfolder/007/Resources/007.plist
     
  24. Ted2's post in Tweak.xm & Preferences Plist TEMPLATE was marked as the answer   
    You don't have the preferences.h file. Get headers for theos 
  25. Ted2's post in Hack stopped working was marked as the answer   
    Reinstall it using Cydia Impactor without removing the app, so you won't loose data.
    You only have 1 week to play most of time when installed using Cydia Impactor, you are pretty lucky since you said you played 2 weeks.
×
  • 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