-
Posts
372 -
Joined
-
Last visited
Everything posted by niro
-
Help/Support How to include another tweak upon installing a tweak?
niro replied to niro's topic in Help & Support
I have no idea lmao -
Help/Support How to include another tweak upon installing a tweak?
niro posted a topic in Help & Support
Title sounds confusing, I know and im sorry! But with the latest version of my tweak I need the user to have "libcolorpicker" downloaded from cydia, how do I include it automatically so it force downloads it upon installing/updating my tweak? -
wow! nice website ! rekO!
-
Introduction Hello world [a very brief intro]
niro replied to ThirElI's topic in Member Introductions
Hello reko :$ -
I am in !
-
Yeah sign in first on iPhone or register it through burp and the requests I've included
-
before bashing it, i suggest you try it
-
Hey guys! I found a way to get free followers on some ios apps ! The apps in question are get followers pro and get likes pro, my "friend" is now selling my method! So I am making it public! enjoy! Use the ViP Topic to get unlimited likes & followers. http://iosgods.com/topic/14086-ncloud-exploit-site-d-social-media-instagram-likes-follower-more/
-
Help/Support Block all non acsii characters? & others
niro replied to niro's topic in Help & Support
Sweet I'll try that! What if the character is non ACSII? I try saving and compiling with atom and theos and I get the error along the lines of "non ACSII Character's not allowed" -
Hey so I'm trying to fix an issue with lag for Kik but can't seem to figure it out, I'm trying to block all mom acsii characters but it only works if I have the literal string of characters and as "lag codes" come out everyday for Kik that's difficult so if possible, I want to block every message that has that certain character in it.. So an example would be %hook HybridSmileyLabel - (void)setText(id)arg1 { [arg1 ifStringisEqualTo : @"a"] arg1 = @"SPAM"; return %orig; } %end So I know the signs aren't in the right places but that should be give a clear example Now what I want is everything with "a" in it to be blocked so - (void)setText(id)arg1 { [arg1 ifStringisEqualTo : @"abcedfg"] arg1 = @"SPAM"; return %orig; } %end I want that to be blocked as well since it has the character "a" in it, hopefully that explains it ? Thank you
-
unlock them and then restart kik
-
//code// @interface SettingsOptionBase : NSObject @property(nonatomic, retain) NSString *optionKey; @property(nonatomic, retain) KESettingsViewController *KEManager; @end @interface SettingsOptionLabel : SettingsOptionBase - (id)initWithHeight:(double)arg1 text:(id)arg2; @end //code// %subclass KESettingsViewController : SettingsPane - (void)loadView { %orig; UIViewController *con = self.navigationController.previousViewController; if ([con isKindOfClass:%c(ProfileChatInfoViewController)]) { ProfileChatInfoViewController *profVC = (ProfileChatInfoViewController *)con; self.username = profVC.user.username; } } - (void)viewDidLoad { %orig; self.title = @"K8 Settings"; } %new - (NSString *)username { return objc_getAssociatedObject(self, @selector(username)); } %new - (void)setUsername:(NSString *)value { objc_setAssociatedObject(self, @selector(username), value, OBJC_ASSOCIATION_RETAIN_NONATOMIC); } %new - (void)saveOption:(NSObject *)obj forKey:(NSString *)key { saveOptionForKey(obj, key, self.username); [self reloadSettingsOptions]; } %new - (NSObject *)getOptionForKey:(NSString *)key { return getOptionForKey(key, self.username); } - (id)initWithCore:(id)core { self = %orig; self.username = kGlobalUser; // [self setup]; return self; } %new - (NSArray *)generateSettingsOptions { NSArray *newArr = @[ ]; NSMutableArray *mutableNewArr = [NSMutableArray arrayWithArray:newArr]; if (![self.username isEqualToString:kGlobalUser]) // not global { //code// } if ([self.username isEqualToString:kGlobalUser]) // global only { //code// [mutableNewArr addObject:[[[%c(SettingsOptionLabel) alloc] initWithHeight:90 text: @"test"] autorelease], } // [newArr addObject:[[%c(SettingsOptionSubPane) alloc] initWithTitle:@"Kik8 Options" iconImage:nil subPaneClass:%c(KESettingsViewController)]]; return (NSArray *)mutableNewArr; } %new - (void)dealloc { // [self.tableView release]; [self.username release]; // [super dealloc]; } %end
-
I think I did viewDidLoad and i put the UIabel in an NSArray so it was -(NSArray *)generateSettingsOption BLAH BLAH UI LABEL
-
hey! so recenlty ive ran into a problem, im trying to add UILabels, and ive been adding them with addObject:BLAH BLAH BLAH, well it works on idevices newer than the iphone 5s but everything under crashes instantly! If anyone might know what the problem is off top of their head that would be sweet if not i can post the code thanks skype - @kekigotrekt kik - @a3t or just respond here
-
swipe left and right when you are holding the smiley
-
Sure does adding a log out option today
-
repo got taken down for DCMA crap, its on the big boss repo now
-
i know how to cd etc etc ive done it 100x before, im now getting the error no rule to make "package" so ill keep looking
-
So I ran into a problem earlier today forcing me to restore, anyways EVERYTIME I try to reinstall theos it sucks because I ALWAYS run into errors, now I think I did everything, but now I get this error, niros-iPhone:/var/mobile/kik8 root# make package install Makefile:2: /opt/theos/makefiles/common.mk: No such file or directory Makefile:8: /tweak.mk: No such file or directory make: *** No rule to make target `/tweak.mk'. Stop. no idea what the problem is, I have those files in my theos that I installed from the github (in mobile terminal)
-
Congrats bro! you won the giveaway I PMed you regarding the account! PROOF https://gyazo.com/06c7a761f51789b96100b60022dc357b
-
im in thank you so much!
-
looking to be able to replace image files/plist files within an app bundle with a tweak. anyone have a detailed tutorial? thank you
-
Tweak.xm:626:13: error: 'KikUser' may not respond to 'isEqualToString:' [-Werror] if ([self isEqualToString:@"[email protected]"]) return YES; nope. %hook KikUser - (BOOL)isVerified { if ([self.username isEqualToString:@"a3t"]) return YES; return %orig; } %end i figured it out
-
:| i just want to know how to return a bool if it is equal to a certain string.. :| i know what i posted was wrong, it was just an example of what im trying to get.... and I have been using both YES/NO TRUE/FALSE and both work fine.
-
hey, so im trying to make a bool return as true only if the string equals XXX so i have - (BOOL)isVerified { if ([argument isEqualToString:@"[email protected]"]) return YES; %orig; } now i know thats wrong. BUT it helps explain what im striving for, So like i said, i only want it to return true if its equal to that string or my username. what else is there that i could use besides "isEqualToString" sorry I am terrible at explaining.