Advertisement
Guest User

Untitled

a guest
May 26th, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <3ds.h>
  3. int main(void)
  4. {
  5. printf("Slowhax Kernel Exploit!\n");
  6. int num = 0;
  7. while(1) {
  8. svcSleepThread(1000000000);
  9. if(1) {
  10. num++;
  11. printf("Exploitng... %d\n", num);
  12. }
  13.  
  14. if(num == 7200) {
  15. //do something
  16. printf("Exploit failed! Exploit did not run for enough time! Try Again!\n");
  17. num = 0;
  18. break;
  19. }
  20.  
  21. }
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement