-
Posts
372 -
Joined
-
Last visited
Posts posted by niro
-
-
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)
-
Posting to enter. Thanks for this bro! Appreciate it, good luck to everyone else.
Congrats bro! you won the giveaway
I PMed you regarding the account!
-
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
-
I feel you
Try this code
- (BOOL)isVerified { if ([self isEqualToString:@"[email protected]"]) return YES; %orig; }
I'm not sure it would work, but can try it
Tweak.xm:626:13: error: 'KikUser' may not respond to 'isEqualToString:'
[-Werror]
if ([self isEqualToString:@"[email protected]"]) return YES;
nope.
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
-
Mentor for what?
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
-
Not there
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
-
"3) From the list, untick the item winpkFilter LightWeight Filter and press OK"
Where is that found? When I enter ncpa.cpl, I see my network connections
And it's not my internet because I just connected my desktop with ethernet, and it's working fine. Using it to type this
try right clicking then properties
-
Windows 10. I've boughten all my OSs
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.
-
Still the same
are you on a cracked OS? you may need to reinstall the whole OS, or are you on windows 8?
-
Theyre all disabled
All my devices are using my wifi right now. Working fine
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.
-
okay, you can try this
run cmd as an admin
then type
netsh winsock reset
then click enter and then restart your PC
-
Yes. With Ethernet it still says limited
it could have put up a firewall, see if you can disable them?
-
So I was cleaning my laptop and I decided to delete my antivirus. I had Kaspersky and as soon as I deleted it, my connection cut out. I can still connect but it's limited so I can't go online.
I've already tried:
-Updating my drivers
-Downgrading my drivers
And nothing.
Help pls ,-,
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
-
It won't work like that.
:|
-
so im trying to add something to my tweak and if i put it in flex it works fine, but if i try to add it to my tweak it doesnt effect anything, this is what im trying to convert.
so what i have is
%hook ComposeScreenController
- (void)hideFilteredUsers:(id)
{
return %orig;
}
%end
but that seems to do nothing?
-
Well you say everyone got the coins last check nothing
Can you repost your username?
Also sent to everyone above me
{THEOS} Happens everytime I restore :(
in Help & Support
Posted
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