-
Posts
372 -
Joined
-
Last visited
Posts posted by niro
-
-
I don't have Killed :9 errors anymore update everything in Cydia and don't just move perl to the new directory, it has to be in both /usr/bin and /usr/local/bin
I tried fixing the killed 9 error and got this ?
After every command I try this happens ?
-
-
-
-
Not sure why this happens but it's every time. What I did was copied and extracted my theos that did work from iOS 8 and now I'm trying to use it on iOS 9, I just updated perl and now I get a bad interpreter error! And on top of that I get a no target found etc, I am using both iOS 7.1 and 8.1 SDKs (I have both in my folder) I have done the Darwin64 thing etc etc, could someone that has a working theos upload it to Dropbox
Errors:
-
-
Trying this out thank you
-
Use theos. It compiles it into a deb and checks for errors
I know, I can't seem to set it up correctly, as well as I'm waiting for PAM to update
-
Trying to make a tweak just to understand the language more but I can't compile, looking for someone to compile for me and to report back with the deb or with any errors, please pm me
Thank you
-
hey ive downloaded cygwin since PAM hasnt been updates. Just a moment ago I compiled fine (but i forgot to add ARCHS at the top of my makefile) now that I have fixed the error I go and try to compile again and now this is the output.
/home/niro/FolderColors/theos/makefiles/targets/Cygwin/iphone.mk:38: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries. /home/niro/FolderColors/theos/makefiles/master/tweak.mk:20: warning: overriding recipe for target 'FolderColors' /home/niro/FolderColors/theos/makefiles/master/bundle.mk:17: warning: ignoring old recipe for target 'FolderColors' Making all for bundle FolderColors... Copying resource directories into the bundle wrapper... Compiling FolderColors.mm... Linking bundle FolderColors... ld: can't open output file for writing: /tmp/-e6dd15.out, errno=2 for architecture armv7 armv7-apple-darwin11-clang: error: linker command failed with exit code 1 (use -v to see invocation) /home/niro/FolderColors/theos/makefiles/instance/bundle.mk:34: recipe for target 'obj/FolderColors.bundle/FolderColors.1b5b9d6a.unsigned' failed make[2]: *** [obj/FolderColors.bundle/FolderColors.1b5b9d6a.unsigned] Error 1 /home/niro/FolderColors/theos/makefiles/instance/bundle.mk:24: recipe for target 'internal-bundle-all_' failed make[1]: *** [internal-bundle-all_] Error 2 /home/niro/FolderColors/theos/makefiles/master/rules.mk:54: recipe for target 'FolderColors.all.bundle.variables' failed make: *** [FolderColors.all.bundle.variables] Error 2
everything is perfect up until this
ld: can't open output file for writing: /tmp/-e6dd15.out, errno=2 for architecture armv7 armv7-apple-darwin11-clang: error: linker command failed with exit code 1 (use -v to see invocation) /home/niro/FolderColors/theos/makefiles/instance/bundle.mk:34: recipe for target 'obj/FolderColors.bundle/FolderColors.1b5b9d6a.unsigned' failed make[2]: *** [obj/FolderColors.bundle/FolderColors.1b5b9d6a.unsigned] Error 1 /home/niro/FolderColors/theos/makefiles/instance/bundle.mk:24: recipe for target 'internal-bundle-all_' failed make[1]: *** [internal-bundle-all_] Error 2 /home/niro/FolderColors/theos/makefiles/master/rules.mk:54: recipe for target 'FolderColors.all.bundle.variables' failed make: *** [FolderColors.all.bundle.variables] Error 2
So what I thought was I had to add the Darwin64 thing. What I did was wget theos from putty and used WinSCP to move those files over to my theos on my PC, and I am still getting the same error, At this point ive searched google but i cant seem to find anything.
Anyone know what the problem is?
-
Most of you may know about the jailbreak for iOS9 anyways I'm trying to make a tweak from my iDevice or putty and WINSCP from my PC, but whenever I try I get a "killed: 9" or a "You don't have proper permission" are there any work arounds for this ;(
Thank you
-
okay, I've posted something similar to this before and I need a descriptive answer that I would understand, things like [DoSomething SomethineElse] etc confuse me, so what I'm trying to do is call methods/functions from other classes, so let's say I send a message with the string "!info" that info would call a method from a different class and display the data into the message kind of like a command, so I have an example
@interface KikUser : NSObject - (NSString *)groupMembersString; @end %hook CoreDataConversationManager - (void) sendTextMessage:(id)command withRenderInstructionSet:(id)arg2 toConversation:(id)arg2 isSuggestedResponse:(BOOL)arg3 { if [(command isEqualToString:@"!type")] command = groupMembersString; return %orig; } %end
As you can see I'm trying to call the string from the header KikUser, and the method to send a message within Kik is on a DIFFERENT Header, and I'm trying to return the data from the groupMembersString upon typing and clicking enter with !info typed, now I have a lot more questions that I can't really phrase and it would be better to show you "live" (me screen recording) so if anyone could help me out that would be fantastic, my Kik is @a3t and my Skype is @notniro someone please help! -
Looking for someone to dump the Kik version 8.8 headers for me, I cant seem to figure out how to do it! I would be greatful if someone could dump them for me and then upload them!
-
Nope. You could ignore it (if it's not fatal) or you could do this:
%hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:(NSUInteger)[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
Hey, so I made this, now it only does the first one in the array, how would I make it loop so it is equal to the first one and then the second??
%hook KikStanzaChangeGroupName -(id) initWithGroup:(id)group andNewName:(id)name { NSArray *verified_users = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < verified_users.count; i++) { group = [verified_users objectAtIndex:i]; } return %orig; } %end
-
I'm not trying to system wide it, I just can't get some UIViews for my tweak to work
so I thought if I searched far and wide I would find something. Thanks for the response though
-
Could someone explain where they hook so it affects every app? And so that if I like color UIView it doesn't make the whole screen pitch black
Any info will help!
Thank you
-
The errors are related to type casting and stuff
Do this:
%hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:(NSUInteger)[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
that seemed to fix one, it still says the group = jidd is an unused expression... so would I do this?: [NSString stringWithFormat:@"%@", jidd]
-
-
It's quite simple, you used the wrong accessor method.
To get the index of an item in an array, it makes more sense to use the "objectAtIndex:" method
%hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
https://gyazo.com/cf12bca73e6dbab40042f119db4c9746
I copied and pasted what you did and I got this :S?
-
Hey So im trying to Loop through an NSArray I created and i keep coming back with
error: unused variable 'jidd'
here is my code.
%hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = jid[i]; group = @"%@", jidd; } return %orig; } %end
could someone tell me what I am doing wrong/fix it?
I was thinking that i needed a .m or .h files but im not 100% positive.
Okay so the second question I have is, how would I call another header within a header? what i mean is this. If I for example, did
%hook CoreDataConversationManager - (void) sendTextMessage:(id)command withRenderInstructionSet:(id)arg1 toConversation:(id)arg2 isSuggestedResponse:(BOOL)arg3 { if ([command isEqualToString:@"$ChangeName"]) command = @"new name"; return %orig; } %end
okay so if I typed out $ChangeName and clicked enter, it would do the same action as above (KikStanzaChangeGroupName) and change the name without actually having to go to that ChangeGroup Name ViewController and clicking save.
-
-
-
Hey, so im trying to make commands for my tweak! so I would be using cURL (i think) and it would be a HTTP GET,
so for example if i wrote $ud niro in the text box and hit enter it would return https://K8.reko.io/v1/api?ud=niro, how would i make it so that it carries over the "niro" and puts it into the url?
Even better how could i make it return all the data from the GET?
if ([command hasPrefix:@"$ud"]) command =@"https://K8.reko.io/v1/api?ud=";
here is what i have, so if i wrote $ud it returns the URL, im trying to get it to be if i typed $ud niro it returns the url and =niro at the end? and if possible how could i make it return the get response so if i typed $ud niro it returns in the command=@"GET DATA HERE"
sorry for being confusing :S
-
Hey trying to include all the springboard apps in a custom preference bundle I'm making
how would I do that?
Theos errors. Like always..
in Help & Support
Posted
Hmm, then what else could be giving me the Killed9 error? Should I just start over with installing theos from scratch?