-
Posts
193 -
Joined
-
Last visited
Everything posted by dzcracker
-
how to write -(id) and -(void) code to make ut NUUL and pas-trouve in tweak.xm http://i.imgur.com/xxAL2ST.jpg http://i.imgur.com/TW2bJ1j.jpg %hook SBAppSwitcherPageViewController -(id)displayLayouts { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k@"] boolValue]){ //what should i do here to make it NULL } [prefs release]; return %orig; } -(void)handleReachabilityModeDeactivated { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k@"] boolValue]){ //What should i do here to make it pas-trough } [prefs release]; return %orig; } %end %end
-
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
Ok thx man I will try -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
Get this error http://i.imgur.com/lD0h61t.jpg This is m'y tweak.xm #import <Foundation/Foundation> #define kPath @"/var/mobile/Library/Preferences/SBMultiFunction.plist" %hook SpringBoard -(long long)homeScreenRotationStyle { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k3"] boolValue]){ return 2; } [prefs release]; return %orig; } -(BOOL)lockScreenCameraSupported { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k1"] boolValue]){ return false; } [prefs release]; return %orig; } %end %hook SBFolderBackgroundView -(bool)_shouldUseDarkBackground { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k4"] boolValue]){ return TRUE; } [prefs release]; return %orig; } %end %hook SBFWallpaperSettings -(bool)replaceBlurs { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"ka"] boolValue]){ return TRUE; } [prefs release]; return %orig; } %end %hook SBIconColorSettings -(double)colorAlpha { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"ka"] boolValue]){ return 0; } [prefs release]; return %orig; } -(double)whiteAlpha { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"ka"] boolValue]){ return 0; } [prefs release]; return %orig; } -(bool)blurryFolderIcon { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"ka"] boolValue]){ return false; } [prefs release]; return %orig; } %end %hook SBFolderSettings -(BOOL)allowNestedFolders { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kc"] boolValue]){ return TRUE; } [prefs release]; return %orig; } -(void)setAllowNestedFolders:(BOOL)fp8 { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kc"] boolValue]){ %orig(fp8); fp8 = TRUE; } [prefs release]; return %orig; } %end %hook SBLockOverlayStyleProperties -(double) blurRadius{ NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kB"] boolValue]){ return 0; } [prefs release]; return %orig; } -(double)tintAlpha { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kB"] boolValue]){ return 0; } [prefs release]; return %orig; } %end %hook SBSearchScrollView -(BOOL)gestureRecognizerShouldBegin:(id)fp8{ NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kC"] boolValue]){ return false; } [prefs release]; return %orig; } %end %hook SBLockScreenManager -(BOOL) _shouldAutoUnlockFromUnlockSource:(int)fp8 { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"kD"] boolValue]){ return TRUE; } [prefs release]; return %orig; } %end %hook SBLockScreenView - (id)_defaultSlideToUnlockText { NSDictionary *unlocktext = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/var/mobile/Library/Preferences/SBMultiFunction.plist"]]; return [[unlocktext objectForKey:@"kKey"] intValue]; NSLog(unlocktext); return 0; } %end -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
Thank you si much man I will try this -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
castix thank you man castix i want to build a custom slider text can u help me ? like PSTextEditor -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
ok thank you man -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
http://i.imgur.com/Iw5Tpbg.jpg The chief the class is not outdated it work with flex I Will try with pstexteditor -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
Castix its not outdated its for ios8 i get it from flex i on l'y get the NSStringmutable from google I want to build text editor for slider I dont know how to make it with this I make a tweaks with some function i want to add slider text custom -
Help/Support [help]custom lock screen slider
dzcracker replied to dzcracker's topic in Help & Support
Thank you guys i will try -
I want to make a prefBundle for customing lockScreen slider text i found this class on google but wont work Can anybody help me please %hool SBLockScreenView -(void)setCustomSlideToUnlockText:(id)fp8 animated:(BOOL)fp12 { NSMutableString *string = [[NSMutableString alloc] init]; [string appendString:@"hey"]; NSLog("%@", string); } %end
-
Thanks Mc5 is free on AppStore
-
[MSHook] Modern Combat 2 1.2.6 iOS 8 Source
dzcracker replied to mehdiphone's topic in Coding Center
thnk you man -
Help/Support First argument to word must be greater than 0
dzcracker replied to RanZ's topic in Help & Support
download the sdk and extract it then go to /var/theos and create new folder and name it sdks and copy the sdk and past it in sdks folder and sorry for my bad english -
Help/Support How can I downgrade to iOs 8.1.2?
dzcracker replied to Dragonian's topic in Help & Support
wait for new tinyumbrela it will give u posibility to save ur ios 8 ssh -
Thanks
-
Help/Support iPhone 6 search sim without result
dzcracker replied to dzcracker's topic in Help & Support
Ok Thabks you DIDA -
Help/Support iPhone 6 search sim without result
dzcracker replied to dzcracker's topic in Help & Support
The device is unlocked an dit was work perfectly And now wont find the network it blocked on search without find the sim network -
Help/Support iPhone 6 search sim without result
dzcracker replied to dzcracker's topic in Help & Support
Yes It was work -
Iphone 6 wont find any sim still on search mode without result
-
Help/Support First argument to word must be greater than 0
dzcracker replied to RanZ's topic in Help & Support
thanks -
Help/Support First argument to word must be greater than 0
dzcracker replied to RanZ's topic in Help & Support
DIDA 7.1 wont extract for me -
Help/Support First argument to word must be greater than 0
dzcracker replied to RanZ's topic in Help & Support
u r welcome -
Help/Support First argument to word must be greater than 0
dzcracker replied to RanZ's topic in Help & Support
http://iphone.howett.net/sdks/ try this one