-
Posts
372 -
Joined
-
Last visited
Everything posted by niro
-
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.
-
So ive been trying nearly everything and nothing is working. Ive found what it is in flexible but its no use, I have no idea why it wont work, and if I do get it to work it changes the whole UIView which is NOT what I want. http://i.imgur.com/jjcnxnN.jpg you can see the 'highlighted' one is the background I need to change. http://i.imgur.com/sUui2kp.jpg Trying to change the "grey white" to dark, I have done everything but it.
-
patched i cant send coins, i can only fill accounts if you give me a password
-
making tweaks OBJ C in general, should have been more specific, my bad.
-
Hey, Im looking for a mentor that can help me when I need it on skype/kik I know the basics but im trying to get into the bigger stuff I just dont want to spam the forums thank you :DDDD
-
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
when you right click and click properties do you see anything like this http://gyazo.com/e5f22224c79a194963bf90f4ffc2d4ba your antivirus may still be connected, other than that it may be still running in the background processes, you can click CTRL + ALT + DELETE and choose task manager, then i would try to do a restore/refresh on your laptop -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
try right clicking then properties -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
you could try refreshing it, may have installed weird, and now that the anitvirus is off it may make a difference or 1) Press WINDOWS KEY + R 2) Type ncpa.cpl, and press ENTER 3) From the list, untick the item winpkFilter LightWeight Filter and press OK 4) If it didn't solve your issue immediately, just run the troubleshooter and let it finish the fix for you. -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
are you on a cracked OS? you may need to reinstall the whole OS, or are you on windows 8? -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
if that doesnt work try this, i found it on the web Method 1: Reset the router and check. a. Disconnect the cable that connects the computer to the router. b. Turn off the router. Note: If the router does not have a power switch, disconnect the power cord to the router. c. Reconnect the computer to the router. d. Make sure that all network cables are securely connected. e. Turn on (or reconnect the power cord to) the router. f. Wait 20 seconds, and then restart your computer. g. Start Internet Explorer. Method 2: Try resetting TCP/IP and check if it works. a. Boot to the desktop view. b. Open command prompt, right click in the left corner when the Start window appear and select command prompt (admin). c. At the command prompt, copy and paste (or type) the following command and then press ENTER: netsh int ip reset c:\resetlog.txt Note: If you do not want to specify a directory path for the log file, use the following command: netsh int ip reset resetlog.txt d. Reboot the computer. -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
okay, you can try this run cmd as an admin then type netsh winsock reset then click enter and then restart your PC -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
it could have put up a firewall, see if you can disable them? -
Help/Support Laptop- Limited Connection (Not Connected)
niro replied to Klepto 's topic in Help & Support
have you tried connecting with ethernet? or restarting laptop/router -
giveaway over. @cxrlton won ))))))))
-
hey! so im trying to make a button have a UIAlert, this is what i have so far, just from looking around the site. [mutableNewArr addObject:[[[%c(SettingsOptionButton) alloc] initWithTitle:@"Credits" iconImage:nil executeOnTap:^(void) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Welcome to k8" message:@"Thank you for trying out k8 atomikpanda and I appreciate it, before you get started you must know that the new settings will be in the Kik settings itself or in the group/chat settings no more going back to the settings app! Enjoy!" delegate:nil cancelButtonTitle:@"Yay! Thank you!" otherButtonTitles:nil]; [alert show]; [alert release]; } but when I try to compile, it I get this error.... http://gyazo.com/8f0b5e5c5bc0c9cc4dfdf813e0d57b40