Jump to content

castix

Senior Member
  • Posts

    2,379
  • Joined

  • Last visited

Everything posted by castix

  1. Copying from my Gameloft Unban tool
  2. I don't think you want to wait so long but I am writing an anti-tracking tweak which includes MAC address
  3. This should work #include <spawn.h> pid_t pid; int status; const char* args[] = {"killall", "-9", "SpringBoard", NULL}; posix_spawn(&pid, "/usr/bin/killall", NULL, NULL, (char* const*)args, NULL); waitpid(pid, &status, WEXITED); alternatively you can enable the use of system commands int system_no_deprecation(const char *command) { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" return system(command); #pragma GCC diagnostic pop }
  4. #include <spawn.h> extern char **environ; //Rest of your code pid_t pid; char *argv[] = { system("killall -9 SpringBoard"); NULL } posix_spawn(&pid, argv[0], NULL, NULL, argv, environ); waitpid(pid, NULL, 0);
  5. Is it available on your repo?
  6. This error means you downloaded the wrong firmware. Perhaps the wrong iDevice
  7. @@OnE_KiLLer ,can you enlarge your screenshot please
  8. Passed all my final exams! Let's hope for the best =)

    1. Show previous comments  1 more
    2. castix

      castix

      I know I passed them but still I want the result :p

    3. FuroowHD
    4. mehdiphone

      mehdiphone

      Exam of what?

    5. Klepto

      Klepto

      Have you gotten accepted to any University? If you have, and you have all your credits, then it doesn't matter if you pass the exams or not :)

    6. Amuyea
  9. @@Gh0stByte is responsible for that. He knows how to add shitload of stuff to your patcher
  10. system("reboot") & system("poweroff")
  11. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Respring"]) { system("killall -9 SpringBoard"); } } You know what to do with it hopefully
  12. Nice to have you here but seriously stop bumping all your old topics
  13. Cell type doesn't have to be one of your list
  14. Try the following commands apt-get update sudo aptitude update sudo aptitude -f install If it doesn't work sudo dpkg --force all --remove
  15. I think he has some files in the installing/removal queue which can't be deleted. Clear it and then try again
  16. Haha of course you don't have permissions to remove system files like evasi0n7.untether
  17. Nobody does Islam is a really young religion so they think everything is now being correct. Judaism is with over 3000 years the oldest religion but though they don't say "Hey, we are the oldest religion, we are creators of everything". I like it how Muslim followers stand up and stay for their religion but seriously claiming you respect other religions but then saying Allah is the god of everything is just paradoxical
  18. I really like your picture and you have my full respect but it's kinda offending other religions and right now we have the situation that radical muslims are trying to instil their religion with a war to people world wide. I know it's not all of them and lots of people in those countries are victims of the violence. I personally don't believe in any god but I found this really offending
  19. @operaspin Yea but this is frightening me a bit off
  20. I really like the clean and plain layout. They still use the old Internet Explorer tile on the bottom when you download something which is a bit of a fall back for 2015 and a whole new browser project. YouTube audio backrgounding is really imortant to me when I work on some code and music is something that accompanies me all the time. However it does fit more to Windows 10 in my opinion more than Chrome and Firefox and I'm pretty sure if there isn't a tweak market or add-on there surely will be in the future. I'm expecting this browser to be more customizeable than the others with more user interactions. Back to the layout, the font looks a bit thin to me and I'll have to look if I can adjust it a bit for my personal touch. I'm right now downloading the Windows 10 ISO and looking forward to test the new Project Spartan and also give some more feedback.
  21. Popups are really annoying sometimes because they load up everytime you launch the app, go back from the app switcher or quickly check something in Control Center. The cheaters don't want that either but since they do their best to protect the cheats from leeching they have to go back on this uncomfortable way. Not anymore ! By using this method your UIAlertView (popup) will only appear once the specific app/game has launched. [Hidden Content]
  22. I will post a tutorial how you can encrypt your bundle files maybe
  23. #indef encryption //Your code #endif Not the exact code but how it works
  24. Noob worst hack ever. I saw better Flex patches for this Jk haha awesome cheat mate
×
  • 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