Jump to content

Vegito

Senior Member
  • Posts

    663
  • Joined

  • Last visited

Everything posted by Vegito

  1. PlayBox HD works for me though try reinstalling it make sure your internet is good , i think Movie Box is way better than PlayBox i admit that PlayBox uploads new movies in no time but their print is of Cam-rip while movie box uploads HD movies
  2. Yes it's completely safe , if you still feel it's not safe then remove the profile as well as the app you installed excluding those apps which you wanted to install but i can assure you it's 101% safe man. You're welcome !
  3. This is my first tutorial on iOSGods! I love how people show their altruism to people who need help ! Anyway i have seen a lot of people asking for MovieBox ,PlayBox HD and other game emulators to be installed without Jailbreak. So here we go--> [Hidden Content]
  4. Hmmm yep but there's semi-tethered jailbreak made by TaiG team but the problem is there's this another video on youtube saying TaiG team's semi-tethered JB is fake. Plus i am scared as f**k ,as i have heard about these rumors about ios 9 is going to be rootless so there will be no jailbreak after ios 8.4 . Hopefully there'll be an untethered Jailbreak for ios 8.3.
  5. So yesterday my iPad got bricked , i wasn't able to go further beyond the Apple boot logo.. I tried a lot of methods to bring back my beloved Jail-broken iPad to life but finally i had to Restore and update it. Now i have updated my os version to 8.3. My question is - > Is there going to be a Untethered Jailbreak for ios 8.3? (I have searched it up on google as well on youtube, got no answers) Would you be kind enough to reply me..? Thank you
  6. duh =_= nvm. metaspoilt maybe
  7. damn man but there have been rumours that people can get into your iphone through ssh(different network)
  8. I have an iPhone whose ssh has been turned on and it's far away from my place. I have it's ip addressas well as dns too! How can i access it ? (i do know WInScp but i think it's only used to access iphone which is connected to same network ) EDIT- (Sorry i forgot to post it on Help/Support instead of posting here)
  9. Function are hooked properly lol
  10. hold on let me check! Damn ! it's called header image! been searching preference loader image everywhere! Thanks man!
  11. I am curious about how people add an image inside the settings. for example this-->
  12. You're right! the problem is with preference bundle ! Well guess what, i copied the whole code from my tweak.xm and made a new tweak without prefloader. It worked fine! So it seems like i am not doing the prefbundle part properly .
  13. alright, No need to help me out if you're here to troll. It's not a wrong bundle id nor a useless tweak. Not even a wrong keyname. Maybe it's the tweak.xm which i didn't configure well.
  14. Alright, i have made my tweak as well as it's preference loader.Compiled and installed it successfully, now guess what? Toggling those switches ON or oFF have no effect on the app ~_~ .... what should i do now..is this happening because i didn't configure xxx.mm properly ?
  15. i didn't copy any code from anywhere, i have made my tweak.xm backup on pc, i am simply copying it and pasting it here damn man thanks! let me try! i have given opening and closing parenthesis properly. It's not the opening of code block i guess.
  16. %hook SSJailbreakCheck + (id)runningProcesses { if(GetPrefBool(@"kJail")) { return [NSNumber numberWithInt:0]; } return %orig; } + (int)filesExistCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)symbolicLinkCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)systemCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)fstabCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)processesCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)plistCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)inaccessibleFilesCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)cydiaCheck { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } + (int)urlCheck { return 0; } return %orig; } + (int)jailbroken { if(GetPrefBool(@"kJail")) { return 0; } return %orig; } %end you mean i should use %end everytime i use if(GetPrefBool(@"kXyz")? No, i compiled the tweak without any preference loader in a noob way, it started to show me errors as soon as i started with preference loader
  17. hmm ,well, when i compile it , it says "you fell off the face of earth '{'
  18. what if it's like this %hook SSJailbreakCheck + (id)runningProcesses { return [NSNumber numberWithInt:0]; } + (int)filesExistCheck { return 0; } + (int)symbolicLinkCheck { return 0; } + (int)systemCheck { return 0; } + (int)fstabCheck { return 0; } + (int)processesCheck { return 0; } + (int)plistCheck { return 0; } + (int)inaccessibleFilesCheck { return 0; } + (int)cydiaCheck { return 0; } + (int)urlCheck { return 0; } + (int)jailbroken { return 0; } %end Do i need to put if(GetPrefBool(@"kJail")) in every target method?
  19. hmm for example, i have one class and under it are 8 targets. class is about jailbreak something bla bla and those 8 targets do the work of changing the jailbreak state. what i am trying to say is , do i need to keep putting if(GetPrefBool(@"kCoin")) in every single target? Because it's going to be a single switch for it not multiple switches
  20. So now i am really confused because the tutorials about preference bundles are not of complex type. how do i attach this to preference loader. i know this--> if(GetPrefBool(@"kXyz")) my point is how am i going to implement it for example-> %hook DeviceInfoPayload_Builder - (id)setJailbroken:(BOOL)fp8 { fp8=false; return %orig; } now how do i put if(GetPrefBool(@"kXyz"))in it? you mean like this? %hook DeviceInfoPayload_Builder - (id)setJailbroken:(BOOL)fp8 { if(GetPrefBool(@"kXyz")) fp8=false; return %orig; } return %orig; } ?????
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines