Mr.N0b0di
Member-
Posts
24 -
Joined
-
Last visited
Everything posted by Mr.N0b0di
-
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
I see if I can make a guide @Laxus any updates or is this done, for this app -
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
If this helps if I inject data manager and make a backup I can restore and regain all my currencies and gems -
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
OK thank you. -
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
Currencies not freezing -
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
@Laxus the mod seems a bit broken. -
Idle Lumber Empire - Wood Game Hack
Mr.N0b0di replied to iOSGods App Updates 's topic in iOSGods No Jailbreak App Store
On the latest update, if you go to the event, the freeze currencies does not work. -
Thanks, does it work with iOS 13?
-
Any plans to update for iOS 13?
-
Thx
-
[iOS 11] Free IAP purchases - 11.0>11.1.2
Mr.N0b0di replied to kay11's topic in iOSGods Archives's General Cydia
thanks -
Patcher Hack iOSGods iAP Cracker - iAP Tweak Modifier
Mr.N0b0di replied to Laxus 's topic in Free Jailbreak Cheats
thanks -
I'll try it out
-
thanks that did it.
-
heres my files Makefile export ARCHS = armv7 arm64 include theos/makefiles/common.mk TWEAK_NAME = WeChatEnhancer WeChatEnhancer_FILES = Tweak.xm include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" WeChatEnhancer.plist { Filter = { Bundles = ( "com.apple.springboard" ); }; } Tweak.xm %hook MMImagePickerController -(int)maxImageCount{ return 999; } -(void)setMaxImageCount:(int)arg1 { arg1 = 999; } %end %hook MMImagePickerManagerOptionObj -(long long)maxImageCount { return 999; } -(void)setMaxImageCount:(long long)arg2 { arg2 = 999; } %end control Package: com.marcos.wechatenhancer Name: WeChat Enhancer Depends: mobilesubstrate Version: 0.0.1 Architecture: iphoneos-arm Description: An awesome MobileSubstrate tweak! Maintainer: Marcos Author: Marcos Section: Tweaks any ideas whats going wrong? it compiles and installs but doesnt work. I make the same changes in Flex 2 and those work...?
-
im still stuck any help pleae
-
ok it compile and installs but doesn't work; where as the flex tweak does. heres my tweak. %hook MMImagePickerController -(void)setMaxImageCount:(int)arg1 { arg1 = 999; } %end %hook MMImagePickerManagerOptionObj -(void)setMaxImageCount:(long long)arg2 { arg2 = 999; } %end %hook MMFICImageFormat -(void)setMaxImageCount:(unsigned int)arg3 { arg3 = 999; } %end
-
thanks found the problem had to remove "" arround 999
-
hello can someone please help me with this? i have tried this %hook MMImagePickerController -(void)setMaxImageCount:(int)arg1{ arg1 = @"999"; %orig(arg1); } %end and this %hook MMImagePickerController -(void)setMaxImageCount:(int)arg1{ return 999 } %end but i keep getting errors like this. Preprocessing Tweak.xm... Compiling Tweak.xm... Tweak.xm:11:7: error: assigning to 'int' from incompatible type 'NSString *' arg1 = @"999"; ^ ~~~~~~ 1 errors generated. make[2]: *** [obj/Tweak.xm.fe3034f2.o] Error 1 make[1]: *** [internal-library-all_] Error 2 any help would be nice. I'm trying to learn this.