Jump to content

Amuyea

ViP Pro
  • Posts

    11,503
  • Joined

  • Last visited

Everything posted by Amuyea

  1. Giveaway has ended & the winner(s) has/have been announced. Topic locked.
  2. x64 are here https://iosgods.com/topic/58988-ios11-support-one-piece-treasure-cruise-global-version-v710-4-free-jailed-cheats/ What?
  3. Check theos/include directory and if the header file is there
  4. Multiple threads Locked This topic is now closed to further replies.
  5. Locked This topic is now closed to further replies.
  6. iBackupBot for Windows not "iCopyBot" for Windows
  7. SHouldn't it be -(void)setIsVipMember -(bool)isVipMember -(bool)isVipMember ? It have to be exact the same spelling, lower case etc. Like in this picture. https://imgur.com/a/Ihhai
  8. I meant remove the deb, and see if it's crashing. Try this. http://cydia.saurik.com/package/crash-reporter/
  9. Depends on the game, you start from beginning or whatever with hacked items/currency
  10. Remove the deb
  11. You need the file "Preferences.h" in your theos
  12. Explain more in details.
  13. Tweak.xm?
  14. Did you install the deb right? In flex, it's fine?
  15. I see that you have the error. Try this. %hook CupidIAPHelper -(void)setIsVipMember:(bool)arg1 { arg1 = TRUE; } %end Guide: https://iosgods.com/topic/831-tutorial-how-to-hack-using-mobile-substrate-method-hooking/
  16. In some of the apps, when you try to hack a class with a "." or a dot function. Flex to Tweak.xm Tutorial: https://iosgods.com/topic/904-tutorialvideo-hack-games-with-flex-and-convert-it-to-deb-tweak/ There are more on this kind, check them out! Let's get started! In Flex, it would work fine, but when you try to convert flex to tweak.xm and make package. It gives you an error, "error: cannot use dot operator on a type" *I don't hack this application, it's an example to solve this issue* Using the tutorial, flex to tweak.xm. I get this, %hook OkCupid.OKMessage -(BOOL)read { return TRUE; } %end It will throw me an error after "make package" command in terminal. A way around the error template: %hook AnyRandomNameHere - (id)description { return %orig(); } %end %ctor { %init(AnyRandomNameHere = objc_getClass("ClassNameWithADotHere")); } Now, I will convert it in this way. Final Code: %hook CupidMess -(BOOL)read { return TRUE; } %end %ctor { %init(CupidMess = objc_getClass("OkCupid.OKMessage")); }; I saved the file and use "make package" command and it proceed without error! Adding 2 or more dot functions Guide Credits: @Amuyea for this tutorial. @AnotherLurker for this post regard to this issue in Help & Support. https://iosgods.com/topic/41019-theos-errorswift/?do=findComment&comment=1340552
  17. I nearly forgot what I did before But yeah, it's nice way around this issue.
×
  • 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